@font-face {
  font-family: "Onest Variable";
  src: url("../../business/fonts/onest-cyrillic.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Onest Variable";
  src: url("../../business/fonts/onest-latin.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Manrope Variable";
  src: url("../../business/fonts/manrope-cyrillic.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "Manrope Variable";
  src: url("../../business/fonts/manrope-latin.woff2") format("woff2-variations");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --rep-night: #0b0e17;
  --rep-night-2: #111521;
  --rep-paper: #f2f0ea;
  --rep-paper-2: #e9e6dd;
  --rep-ink: #11131a;
  --rep-muted: #777a83;
  --rep-line-dark: rgba(255, 255, 255, .13);
  --rep-line-light: rgba(17, 19, 26, .14);
  --rep-accent-rgb: 186, 255, 26;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--rep-night);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--rep-paper);
  color: var(--rep-ink);
  font-family: "Manrope Variable", Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.has-rep-overlay {
  overflow: hidden;
}

body.admin-bar .rep-header {
  top: 32px;
}

[hidden] {
  display: none !important;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  color: inherit;
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

button,
a,
summary,
label {
  -webkit-tap-highlight-color: transparent;
}

img,
svg {
  display: block;
}

::selection {
  background: var(--rep-accent);
  color: var(--rep-night);
}

.rep-shell {
  width: min(calc(100% - 80px), 1360px);
  margin-inline: auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 650ms cubic-bezier(.2, .75, .2, 1), transform 650ms cubic-bezier(.2, .75, .2, 1);
  transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.rep-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 0 34px;
  border-bottom: 1px solid rgba(255, 255, 255, .11);
  background: rgba(11, 14, 23, .88);
  color: #fff;
  backdrop-filter: blur(18px);
}

.rep-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-family: "Onest Variable", Arial, sans-serif;
}

.rep-logo > span {
  display: grid;
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.rep-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.rep-logo strong {
  display: grid;
  gap: 1px;
  font-size: 17px;
  font-weight: 820;
  letter-spacing: -.035em;
  line-height: 1;
}

.rep-logo small {
  color: rgba(255, 255, 255, .43);
  font-family: "Manrope Variable", Arial, sans-serif;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.rep-header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 38px);
  min-width: 0;
}

.rep-header-nav a,
.rep-services-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 12px 0;
  background: transparent;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  font-weight: 700;
  transition: color 180ms ease;
}

.rep-header-nav a:hover,
.rep-services-trigger:hover,
.rep-services-trigger[aria-expanded="true"] {
  color: #fff;
}

.rep-services-trigger svg {
  transition: transform 180ms ease;
}

.rep-services-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.rep-header-cta,
.rep-primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 50px;
  padding: 0 20px;
  background: var(--rep-accent);
  color: #090b11;
  font-size: 12px;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.rep-header-cta:hover,
.rep-primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 36px color-mix(in srgb, var(--rep-accent) 23%, transparent);
}

.rep-mobile-trigger {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  background: transparent;
  color: #fff;
}

.rep-services-menu {
  position: fixed;
  z-index: 110;
  top: 78px;
  left: 50%;
  width: min(calc(100% - 68px), 1180px);
  max-height: calc(100dvh - 98px);
  overflow: auto;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, .15);
  background: #f5f3ed;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .4);
  color: var(--rep-ink);
}

.rep-services-menu::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
}

.rep-services-menu-head {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  min-height: 86px;
  padding: 0 26px;
  border-bottom: 1px solid var(--rep-line-light);
}

.rep-services-menu-head span {
  color: #81838a;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.rep-services-menu-head strong {
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 20px;
  letter-spacing: -.04em;
}

.rep-services-menu-head button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--rep-line-light);
  background: transparent;
}

.rep-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--rep-line-light);
}

.rep-services-grid a {
  --item-accent: var(--rep-accent);
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  min-height: 116px;
  padding: 24px;
  background: #f5f3ed;
  transition: background 180ms ease;
}

.rep-services-grid a:hover,
.rep-services-grid a.is-current {
  background: #fff;
}

.rep-services-grid a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--item-accent);
  content: "";
  transition: width 220ms ease;
}

.rep-services-grid a:hover::after,
.rep-services-grid a.is-current::after {
  width: 100%;
}

.rep-services-grid a > span {
  padding-top: 2px;
  color: #9b9da3;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
}

.rep-services-grid a strong {
  min-width: 0;
  padding-right: 16px;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 15px;
  font-weight: 770;
  line-height: 1.25;
}

.rep-services-grid a small {
  grid-column: 2;
  margin-top: 9px;
  color: #888a90;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rep-services-grid a svg {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
}

.rep-services-menu-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 26px;
}

.rep-services-menu-foot span {
  color: #85878e;
  font-size: 12px;
}

.rep-services-menu-foot button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 14px 18px;
  background: var(--rep-night);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.rep-hero {
  position: relative;
  min-height: 900px;
  padding: 78px 0 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 23%, color-mix(in srgb, var(--rep-accent) 15%, transparent), transparent 28%),
    var(--rep-night);
  color: #fff;
}

.rep-grid,
.rep-final-grid {
  position: absolute;
  inset: 0;
  opacity: .27;
  background-image:
    linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

.rep-hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(470px, .97fr);
  align-items: center;
  gap: 48px;
  width: min(calc(100% - 80px), 1360px);
  min-height: 690px;
  margin-inline: auto;
  padding: 68px 0 60px;
}

.rep-hero-copy {
  min-width: 0;
}

.rep-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 30px;
  color: var(--rep-accent);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.rep-kicker i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--rep-accent);
  box-shadow: 0 0 18px var(--rep-accent);
}

.rep-hero h1 {
  display: grid;
  gap: 0;
  max-width: 760px;
  margin: 0;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: clamp(58px, 6.5vw, 104px);
  font-weight: 790;
  letter-spacing: -.074em;
  line-height: .89;
}

.rep-hero h1 span {
  min-width: 0;
}

.rep-hero h1 .is-accent {
  color: transparent;
  -webkit-text-stroke: 1px color-mix(in srgb, var(--rep-accent) 80%, #fff);
}

.rep-hero-lead {
  max-width: 670px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, .61);
  font-size: 15px;
  line-height: 1.72;
}

.rep-hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 38px;
}

.rep-primary-button {
  min-height: 58px;
  padding: 0 24px;
}

.rep-text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, .73);
  font-size: 12px;
  font-weight: 760;
}

.rep-text-link:hover {
  color: #fff;
}

.rep-hero-proof {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 38px;
  color: rgba(255, 255, 255, .72);
}

.rep-hero-proof > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
}

.rep-hero-proof p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.rep-hero-proof strong {
  color: #fff;
  font-size: 11px;
}

.rep-hero-proof small {
  color: rgba(255, 255, 255, .41);
  font-size: 9px;
}

.rep-hero-visual {
  position: relative;
  min-width: 0;
  aspect-ratio: .92;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px),
    rgba(17, 21, 33, .72);
  background-size: 38px 38px;
  box-shadow: 0 36px 100px rgba(0, 0, 0, .32);
}

.rep-visual-chrome {
  position: absolute;
  z-index: 7;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .42);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .12em;
}

.rep-visual-chrome span {
  margin-right: auto;
}

.rep-visual-chrome i {
  width: 5px;
  height: 5px;
  margin-left: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
}

.rep-person {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, .35));
}

.rep-person-portrait {
  right: -10%;
  bottom: -31%;
  width: 80%;
  height: auto;
}

.rep-radar {
  position: absolute;
  z-index: 2;
  top: 18%;
  left: 8%;
  width: 60%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.rep-radar::before,
.rep-radar::after,
.rep-radar i {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  content: "";
}

.rep-radar::before {
  inset: 16%;
}

.rep-radar::after {
  inset: 32%;
}

.rep-radar i:nth-child(1) {
  inset: 48%;
  background: var(--rep-accent);
  box-shadow: 0 0 20px var(--rep-accent);
}

.rep-radar i:nth-child(2),
.rep-radar i:nth-child(3),
.rep-radar b,
.rep-radar em {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: var(--rep-accent);
  box-shadow: 0 0 17px var(--rep-accent);
}

.rep-radar i:nth-child(2) {
  top: 18%;
  right: 23%;
}

.rep-radar i:nth-child(3) {
  right: 11%;
  bottom: 31%;
}

.rep-radar b {
  bottom: 13%;
  left: 27%;
}

.rep-radar em {
  top: 29%;
  left: 9%;
}

.rep-radar span {
  position: absolute;
  inset: 38%;
  display: grid;
  place-items: center;
  color: var(--rep-night);
  background: var(--rep-accent);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.rep-status-card {
  position: absolute;
  z-index: 6;
  right: 7%;
  bottom: 8%;
  display: grid;
  gap: 5px;
  width: 210px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(11, 14, 23, .84);
  backdrop-filter: blur(12px);
}

.rep-status-card small {
  color: rgba(255, 255, 255, .43);
  font-size: 8px;
  text-transform: uppercase;
}

.rep-status-card strong {
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 15px;
}

.rep-status-card span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .54);
  font-size: 9px;
}

.rep-status-card span i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rep-accent);
  box-shadow: 0 0 12px var(--rep-accent);
}

.rep-thread {
  position: absolute;
  top: 18%;
  right: 8%;
  left: 8%;
  display: grid;
  gap: 14px;
}

.rep-thread > div {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  min-height: 90px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(20, 26, 42, .88);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .16);
}

.rep-thread > div:nth-child(2) {
  margin-left: 12%;
}

.rep-thread > div:nth-child(3) {
  margin-left: 4%;
}

.rep-thread > div > i {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--rep-accent) 24%, #111521);
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 850;
}

.rep-thread p {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0 12px;
}

.rep-thread p span {
  width: 92%;
  height: 5px;
  background: rgba(255, 255, 255, .19);
}

.rep-thread p span:last-child {
  width: 63%;
}

.rep-thread b {
  color: rgba(255, 255, 255, .38);
  font-size: 7px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rep-thread .is-checked {
  border-color: color-mix(in srgb, var(--rep-accent) 65%, transparent);
}

.rep-network {
  position: absolute;
  right: 11%;
  bottom: 10%;
  left: 11%;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, .48);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rep-network i {
  height: 1px;
  flex: 1;
  margin: 0 9px;
  background: linear-gradient(90deg, var(--rep-accent), rgba(255, 255, 255, .13));
}

.rep-map {
  position: absolute;
  inset: 12% 7% 14%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  background:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px),
    #111624;
  background-size: 48px 48px;
}

.rep-map .road {
  position: absolute;
  height: 8px;
  border: 2px solid color-mix(in srgb, var(--rep-accent) 70%, #fff);
  border-right: 0;
  border-left: 0;
  transform-origin: left center;
}

.rep-map .road-a {
  top: 27%;
  left: -8%;
  width: 84%;
  transform: rotate(21deg);
}

.rep-map .road-b {
  top: 63%;
  left: 21%;
  width: 94%;
  transform: rotate(-17deg);
}

.rep-map .road-c {
  top: 7%;
  left: 57%;
  width: 77%;
  transform: rotate(72deg);
}

.map-pin {
  position: absolute;
  z-index: 3;
  top: 27%;
  right: 23%;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 50% 50% 50% 4px;
  transform: rotate(-45deg);
  background: var(--rep-accent);
  color: var(--rep-night);
  box-shadow: 0 18px 35px color-mix(in srgb, var(--rep-accent) 28%, transparent);
}

.map-pin svg {
  transform: rotate(45deg);
}

.map-review {
  position: absolute;
  z-index: 4;
  bottom: 11%;
  left: 8%;
  display: grid;
  gap: 8px;
  width: 230px;
  padding: 19px;
  background: #f3f1ea;
  color: var(--rep-ink);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .28);
}

.map-review small {
  color: #85878c;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.map-review strong {
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 14px;
}

.map-review p {
  display: flex;
  gap: 3px;
  margin: 0;
}

.map-review p i {
  width: 9px;
  height: 9px;
  clip-path: polygon(50% 0, 62% 36%, 100% 38%, 69% 59%, 80% 100%, 50% 76%, 20% 100%, 31% 59%, 0 38%, 38% 36%);
  background: var(--rep-accent);
}

.rep-map-route {
  position: absolute;
  right: 11%;
  bottom: 5%;
  left: 11%;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, .45);
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.rep-map-route b {
  height: 1px;
  flex: 1;
  margin: 0 8px;
  background: rgba(255, 255, 255, .16);
}

.rep-listing {
  position: absolute;
  top: 16%;
  right: 10%;
  left: 10%;
  display: grid;
  grid-template-columns: 43% 57%;
  min-height: 390px;
  overflow: hidden;
  background: #f4f2ed;
  color: var(--rep-ink);
  box-shadow: 0 28px 60px rgba(0, 0, 0, .3);
}

.listing-media {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
  padding: 12px;
  background: #dcd9d1;
}

.listing-media i {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--rep-accent) 42%, #252b3a), #151a27);
}

.listing-copy {
  display: grid;
  align-content: center;
  gap: 13px;
  padding: 28px;
}

.listing-copy span {
  width: 88%;
  height: 8px;
  background: #c9c7c0;
}

.listing-copy span:nth-child(2) {
  width: 64%;
}

.listing-copy span:nth-child(3) {
  width: 76%;
}

.listing-copy b {
  margin-top: 14px;
  color: #84868d;
  font-size: 8px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.listing-review {
  position: absolute;
  right: 7%;
  bottom: 8%;
  left: 36%;
  display: grid;
  grid-template-columns: 40px 1fr 34px;
  align-items: center;
  min-height: 76px;
  padding: 13px;
  border: 1px solid color-mix(in srgb, var(--rep-accent) 54%, #d1cec6);
  background: #fff;
}

.listing-review > i {
  color: var(--rep-accent);
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
}

.listing-review p {
  display: grid;
  gap: 7px;
  margin: 0;
}

.listing-review p span {
  width: 90%;
  height: 5px;
  background: #d4d2cc;
}

.listing-review p span:last-child {
  width: 60%;
}

.listing-review > b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: var(--rep-accent);
  color: #fff;
}

.rep-deal-line {
  position: absolute;
  right: 11%;
  bottom: 7%;
  left: 11%;
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, .48);
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.rep-deal-line i {
  height: 1px;
  flex: 1;
  margin: 0 8px;
  background: var(--rep-accent);
}

.rep-player {
  position: absolute;
  z-index: 2;
  top: 16%;
  right: 9%;
  left: 9%;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(16, 21, 35, .92);
  box-shadow: 0 30px 60px rgba(0, 0, 0, .36);
}

.player-frame {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 68% 32%, color-mix(in srgb, var(--rep-accent) 28%, transparent), transparent 34%),
    #080a10;
}

.player-frame > span {
  z-index: 2;
  display: grid;
  width: 68px;
  height: 68px;
  place-items: center;
  border-radius: 50%;
  background: var(--rep-accent);
  color: var(--rep-night);
}

.player-frame > i {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 36px 36px;
}

.player-timeline {
  position: relative;
  height: 26px;
  margin-top: 10px;
}

.player-timeline b {
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--rep-accent) 58%, rgba(255, 255, 255, .16) 58%);
}

.player-timeline i {
  position: absolute;
  top: 7px;
  left: var(--x);
  width: 2px;
  height: 13px;
  background: #fff;
}

.player-meta {
  display: grid;
  grid-template-columns: 44% 29% 1fr;
  align-items: center;
  gap: 10px;
}

.player-meta span {
  height: 6px;
  background: rgba(255, 255, 255, .2);
}

.player-meta small {
  color: var(--rep-accent);
  font-size: 7px;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.rep-youtube-result {
  position: absolute;
  z-index: 5;
  top: 72%;
  right: 3.2%;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  width: clamp(172px, 29%, 190px);
  min-height: 54px;
  padding: 8px 11px 8px 8px;
  border: 1px solid color-mix(in srgb, var(--rep-accent) 64%, rgba(255, 255, 255, .15));
  background:
    linear-gradient(108deg, color-mix(in srgb, var(--rep-accent) 17%, transparent), transparent 62%),
    rgba(10, 13, 21, .97);
  box-shadow:
    0 17px 34px rgba(0, 0, 0, .42),
    inset 0 0 0 1px rgba(255, 255, 255, .025);
  pointer-events: none;
  transform: translateY(-50%) rotate(-4deg);
  transform-origin: right center;
  backdrop-filter: blur(10px);
}

.rep-youtube-result::after {
  position: absolute;
  top: 5px;
  right: -2px;
  bottom: 5px;
  width: 3px;
  background: var(--rep-accent);
  box-shadow: 0 0 13px color-mix(in srgb, var(--rep-accent) 72%, transparent);
  content: "";
}

.rep-youtube-result-icon {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--rep-accent) 70%, #fff);
  background: color-mix(in srgb, var(--rep-accent) 18%, #0b0e17);
  color: #fff;
}

.rep-youtube-result-icon::after {
  position: absolute;
  width: 27px;
  height: 2px;
  background: var(--rep-accent);
  box-shadow: 0 0 8px color-mix(in srgb, var(--rep-accent) 70%, transparent);
  content: "";
  transform: rotate(-42deg);
}

.rep-youtube-result p {
  display: grid;
  gap: 2px;
  min-width: 0;
  margin: 0;
}

.rep-youtube-result small {
  color: rgba(255, 255, 255, .48);
  font-size: 6px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.rep-youtube-result strong {
  color: #fff;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 13px;
  font-weight: 790;
  letter-spacing: -.02em;
  line-height: 1;
  white-space: nowrap;
}

.rep-person-pointing {
  z-index: 4;
  right: -23%;
  bottom: -8%;
  width: 102%;
  height: auto;
}

.rep-person-hand {
  z-index: 6;
  right: -23%;
  bottom: -8%;
  width: 102%;
  height: auto;
  filter: none;
}

.rep-person-hand-left {
  clip-path: polygon(32% 43%, 49% 43%, 49% 62%, 32% 62%);
}

.rep-person-hand-right {
  clip-path: polygon(69% 36%, 79% 36%, 79% 52%, 69% 52%);
}

.rep-platform-rail {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  min-height: 132px;
  border-top: 1px solid rgba(255, 255, 255, .11);
}

.rep-platform-rail a {
  --rail-accent: var(--rep-accent);
  position: relative;
  display: grid;
  align-content: center;
  gap: 12px;
  min-width: 0;
  padding: 22px 28px;
  border-right: 1px solid rgba(255, 255, 255, .11);
  color: rgba(255, 255, 255, .48);
  transition: background 180ms ease, color 180ms ease;
}

.rep-platform-rail a:hover,
.rep-platform-rail a.is-current {
  background: rgba(255, 255, 255, .045);
  color: #fff;
}

.rep-platform-rail a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--rail-accent);
  content: "";
  transition: width 180ms ease;
}

.rep-platform-rail a:hover::after,
.rep-platform-rail a.is-current::after {
  width: 100%;
}

.rep-platform-rail span {
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
}

.rep-platform-rail strong {
  overflow-wrap: anywhere;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 12px;
  font-weight: 760;
}

.rep-signals {
  padding: 132px 0 122px;
  background: var(--rep-paper);
}

.rep-section-head {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(280px, .55fr);
  gap: 30px;
  align-items: start;
  padding-bottom: 58px;
  border-bottom: 1px solid var(--rep-line-light);
}

.rep-section-head > span,
.rep-process-title > span,
.rep-evidence-copy > span,
.rep-video-index,
.rep-faq-title > span,
.rep-article-head > span {
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 12px;
  font-weight: 750;
}

.rep-section-head > div p,
.rep-process-title > p,
.rep-evidence-copy > p,
.rep-article-head > div p,
.rep-faq-title > p {
  margin: 0 0 18px;
  color: #85878d;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.rep-section-head h2,
.rep-process-title h2,
.rep-evidence-copy h2,
.rep-faq-title h2,
.rep-article-head h2 {
  max-width: 760px;
  margin: 0;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: clamp(43px, 5vw, 76px);
  font-weight: 760;
  letter-spacing: -.06em;
  line-height: .98;
}

.rep-section-head > p {
  margin: 36px 0 0;
  color: #74767d;
  font-size: 13px;
  line-height: 1.7;
}

.rep-signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-right: 1px solid var(--rep-line-light);
  border-bottom: 1px solid var(--rep-line-light);
}

.rep-signal-grid article {
  min-width: 0;
  padding: 45px 38px 38px;
  border-left: 1px solid var(--rep-line-light);
}

.rep-signal-grid article > span {
  color: #9a9ca2;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 9px;
  font-weight: 750;
}

.rep-signal-icon {
  position: relative;
  width: 100%;
  height: 150px;
  margin: 34px 0 32px;
  overflow: hidden;
  border: 1px solid var(--rep-line-light);
  background:
    linear-gradient(rgba(17, 19, 26, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 26, .06) 1px, transparent 1px);
  background-size: 26px 26px;
}

.rep-signal-icon::before,
.rep-signal-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid color-mix(in srgb, var(--rep-accent) 50%, #b8b7b1);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.rep-signal-icon::before {
  width: 94px;
  height: 94px;
}

.rep-signal-icon::after {
  width: 50px;
  height: 50px;
}

.rep-signal-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 65%;
  height: 1px;
  transform-origin: left;
  background: linear-gradient(90deg, var(--rep-accent), transparent);
}

.rep-signal-icon i:nth-child(1) {
  transform: rotate(24deg);
}

.rep-signal-icon i:nth-child(2) {
  transform: rotate(143deg);
}

.rep-signal-icon b {
  position: absolute;
  top: calc(50% - 6px);
  left: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--rep-accent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--rep-accent) 75%, transparent);
}

.rep-signal-grid h3 {
  margin: 0 0 12px;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 21px;
  letter-spacing: -.035em;
}

.rep-signal-grid p {
  margin: 0;
  color: #777980;
  font-size: 12px;
  line-height: 1.7;
}

.rep-principle {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 22px;
  margin-top: 38px;
  padding: 25px;
  border: 1px solid var(--rep-line-light);
  background: #fff;
}

.rep-principle > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  background: var(--rep-accent);
}

.rep-principle p {
  display: grid;
  gap: 5px;
  margin: 0;
}

.rep-principle strong {
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 18px;
}

.rep-principle small {
  color: #7d7f86;
  font-size: 11px;
  line-height: 1.55;
}

.rep-principle button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 16px 18px;
  background: var(--rep-night);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
}

.rep-process {
  padding: 122px 0;
  overflow: hidden;
  background: var(--rep-night);
  color: #fff;
}

.rep-process-title {
  display: grid;
  grid-template-columns: 80px 1fr;
  padding-bottom: 62px;
}

.rep-process-title > p,
.rep-process-title h2 {
  grid-column: 2;
}

.rep-process-title > p {
  color: var(--rep-accent);
}

.rep-process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.rep-process-track article {
  position: relative;
  min-width: 0;
  min-height: 290px;
  padding: 29px 28px 24px;
  border-top: 1px solid var(--rep-line-dark);
  border-right: 1px solid var(--rep-line-dark);
}

.rep-process-track article:first-child {
  border-left: 1px solid var(--rep-line-dark);
}

.rep-process-track article > span {
  color: rgba(255, 255, 255, .35);
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 10px;
  font-weight: 750;
}

.rep-process-track article > i {
  position: absolute;
  top: -5px;
  left: 26px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rep-accent);
  box-shadow: 0 0 18px var(--rep-accent);
}

.rep-process-track h3 {
  margin: 120px 0 14px;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 24px;
  letter-spacing: -.045em;
}

.rep-process-track p {
  max-width: 210px;
  margin: 0;
  color: rgba(255, 255, 255, .46);
  font-size: 11px;
  line-height: 1.65;
}

.rep-evidence {
  padding: 128px 0;
  background: var(--rep-paper-2);
}

.rep-evidence-grid {
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 0;
}

.rep-evidence-copy {
  padding: 28px 74px 38px 0;
}

.rep-evidence-copy > p {
  color: #86888e;
}

.rep-evidence-copy h2 i,
.rep-article-head h2 i {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px var(--rep-ink);
}

.rep-final h2 i {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px var(--rep-accent);
}

.rep-evidence-copy > p:not(:first-of-type) {
  max-width: 480px;
  margin: 28px 0 34px;
  color: #707279;
  font-size: 13px;
  line-height: 1.75;
  text-transform: none;
  letter-spacing: normal;
}

.rep-evidence-copy .rep-primary-button {
  color: var(--rep-night);
}

.rep-evidence-board {
  align-self: start;
  border: 1px solid var(--rep-line-light);
  background: #f7f5ef;
}

.rep-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 24px;
  border-bottom: 1px solid var(--rep-line-light);
}

.rep-board-head span {
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 16px;
  font-weight: 760;
}

.rep-board-head small {
  color: #96989e;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .12em;
}

.rep-evidence-board > div:not(.rep-board-head) {
  display: grid;
  grid-template-columns: 48px 1fr 36px;
  align-items: center;
  min-height: 78px;
  padding: 0 23px;
  border-bottom: 1px solid var(--rep-line-light);
}

.rep-evidence-board > div:last-child {
  border-bottom: 0;
}

.rep-evidence-board > div > span {
  color: #9a9ca1;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 9px;
  font-weight: 750;
}

.rep-evidence-board > div > strong {
  min-width: 0;
  font-size: 12px;
}

.rep-evidence-board > div > i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  background: var(--rep-accent);
}

.rep-outcomes {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 180px repeat(4, 1fr);
  gap: 0;
  margin-top: 42px;
  border: 1px solid var(--rep-line-light);
  background: #f7f5ef;
}

.rep-outcomes > span {
  padding: 25px 22px;
  color: #86888f;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rep-outcomes p {
  display: flex;
  gap: 11px;
  min-width: 0;
  margin: 0;
  padding: 25px 20px;
  border-left: 1px solid var(--rep-line-light);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.55;
}

.rep-outcomes p i {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--rep-accent);
}

.rep-outcomes > small {
  grid-column: 1 / -1;
  padding: 14px 20px;
  border-top: 1px solid var(--rep-line-light);
  color: #898b91;
  font-size: 9px;
}

.rep-video {
  padding: 110px 0;
  background: var(--rep-paper);
}

.rep-video-card {
  position: relative;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) 90px;
  align-items: center;
  min-height: 430px;
  padding: 55px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 35%, color-mix(in srgb, var(--rep-accent) 24%, transparent), transparent 28%),
    var(--rep-night);
  color: #fff;
}

.rep-video-card.has-video {
  background-image: linear-gradient(90deg, rgba(11, 14, 23, .93), rgba(11, 14, 23, .5)), var(--video-poster);
  background-position: center;
  background-size: cover;
}

.rep-video-grid {
  position: absolute;
  inset: 0;
  opacity: .26;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 46px 46px;
}

.rep-video-card > *:not(.rep-video-grid) {
  position: relative;
  z-index: 2;
}

.rep-video-copy {
  max-width: 760px;
}

.rep-video-copy > p {
  margin: 0 0 22px;
  color: var(--rep-accent);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.rep-video-copy h2 {
  margin: 0;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 760;
  letter-spacing: -.058em;
  line-height: .98;
}

.rep-video-copy > span {
  display: block;
  max-width: 630px;
  margin-top: 24px;
  color: rgba(255, 255, 255, .5);
  font-size: 12px;
  line-height: 1.7;
}

.rep-video-play {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border-radius: 50%;
  background: var(--rep-accent);
  color: var(--rep-night);
}

.rep-video-play:disabled {
  cursor: default;
  opacity: .42;
}

.rep-video-state {
  position: absolute !important;
  right: 54px;
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .48);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.rep-video-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rep-accent);
  box-shadow: 0 0 15px var(--rep-accent);
}

.rep-cross {
  padding: 0 0 115px;
  background: var(--rep-paper);
}

.rep-cross-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
  padding: 58px;
  border-left: 5px solid var(--rep-accent);
  background: #fff;
}

.rep-cross-card > div:first-child {
  max-width: 850px;
}

.rep-cross-card span {
  color: #85878d;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .14em;
}

.rep-cross-card h2 {
  margin: 22px 0 18px;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: clamp(36px, 4vw, 58px);
  letter-spacing: -.055em;
  line-height: .99;
}

.rep-cross-card p {
  max-width: 700px;
  margin: 0;
  color: #74767c;
  font-size: 12px;
  line-height: 1.72;
}

.rep-cross-actions {
  display: grid;
  gap: 10px;
  min-width: 230px;
}

.rep-cross-actions a,
.rep-cross-actions button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 18px;
  background: var(--rep-paper-2);
  font-size: 10px;
  font-weight: 800;
}

.rep-cross-actions button {
  background: var(--rep-night);
  color: #fff;
}

.rep-faq {
  padding: 125px 0;
  background: var(--rep-paper-2);
}

.rep-faq-shell {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 90px;
}

.rep-faq-title h2 {
  margin-bottom: 25px;
}

.rep-faq-title > p {
  margin-top: 22px;
}

.rep-faq-title > small {
  display: block;
  max-width: 330px;
  color: #777980;
  font-size: 11px;
  line-height: 1.65;
}

.rep-faq-list {
  border-top: 1px solid var(--rep-line-light);
}

.rep-faq-list details {
  border-bottom: 1px solid var(--rep-line-light);
}

.rep-faq-list summary {
  display: grid;
  grid-template-columns: 44px 1fr 32px;
  align-items: center;
  min-height: 82px;
  cursor: pointer;
  list-style: none;
}

.rep-faq-list summary::-webkit-details-marker {
  display: none;
}

.rep-faq-list summary > span {
  color: #9a9ca2;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 9px;
  font-weight: 750;
}

.rep-faq-list summary strong {
  padding-right: 24px;
  font-size: 13px;
}

.rep-faq-list summary > i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--rep-line-light);
}

.rep-faq-list details[open] summary > i svg {
  transform: rotate(180deg);
}

.rep-faq-list summary svg {
  transition: transform 180ms ease;
}

.rep-faq-list details > p {
  max-width: 680px;
  margin: -5px 0 28px 44px;
  color: #6f7178;
  font-size: 12px;
  line-height: 1.75;
}

.rep-article {
  padding: 128px 0;
  background: var(--rep-paper);
}

.rep-article-head {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(250px, .5fr);
  gap: 28px;
  align-items: start;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--rep-line-light);
}

.rep-article-head > p {
  margin: 35px 0 0;
  color: #74767c;
  font-size: 11px;
  line-height: 1.7;
}

.rep-article-copy {
  width: min(100%, 920px);
  margin: 68px auto 0;
}

.rep-article-copy .rep-article-lead {
  margin: 0 0 52px;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: clamp(23px, 2.7vw, 34px);
  font-weight: 610;
  letter-spacing: -.035em;
  line-height: 1.28;
}

.rep-article-copy section {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 50px;
  padding: 42px 0;
  border-top: 1px solid var(--rep-line-light);
}

.rep-article-copy h3 {
  margin: 0;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 20px;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.rep-article-copy section > p {
  grid-column: 2;
  margin: 0 0 17px;
  color: #676970;
  font-size: 13px;
  line-height: 1.85;
}

.rep-article-copy section > h3 + p {
  grid-row: 1;
}

.rep-final {
  position: relative;
  padding: 135px 0 105px;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 24%, color-mix(in srgb, var(--rep-accent) 22%, transparent), transparent 26%),
    var(--rep-night);
  color: #fff;
  text-align: center;
}

.rep-final .rep-shell {
  position: relative;
  z-index: 2;
}

.rep-final .rep-shell > span {
  color: var(--rep-accent);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .17em;
}

.rep-final h2 {
  margin: 25px 0;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: clamp(55px, 8vw, 112px);
  letter-spacing: -.075em;
  line-height: .88;
}

.rep-final .rep-shell > p {
  max-width: 660px;
  margin: 0 auto 36px;
  color: rgba(255, 255, 255, .52);
  font-size: 13px;
  line-height: 1.75;
}

.rep-final .rep-primary-button {
  margin-inline: auto;
}

.rep-final-contact {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
  color: rgba(255, 255, 255, .54);
  font-size: 11px;
}

.rep-final-contact a:hover {
  color: #fff;
}

.rep-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 40px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  background: var(--rep-night);
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .08em;
}

.rep-footer nav {
  display: flex;
  gap: 28px;
}

.rep-footer a:hover {
  color: #fff;
}

.rep-quote-modal {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  padding: 18px;
  overflow: auto;
  place-items: center;
  background: rgba(5, 7, 12, .83);
  backdrop-filter: blur(14px);
}

.rep-quote-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(540px, 1.28fr);
  width: min(1080px, 100%);
  min-height: 720px;
  overflow: hidden;
  background: #f4f2ec;
  box-shadow: 0 40px 110px rgba(0, 0, 0, .48);
}

.rep-quote-close {
  position: absolute;
  z-index: 5;
  top: 20px;
  right: 20px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--rep-line-light);
  background: transparent;
}

.rep-quote-aside {
  position: relative;
  display: grid;
  align-content: space-between;
  min-width: 0;
  padding: 43px 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 80%, color-mix(in srgb, var(--rep-accent) 23%, transparent), transparent 35%),
    var(--rep-night);
  color: #fff;
}

.rep-quote-aside::before {
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
}

.rep-quote-aside > * {
  position: relative;
}

.rep-quote-aside > span {
  color: var(--rep-accent);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: .14em;
}

.rep-quote-aside > div {
  display: grid;
  gap: 8px;
  margin-top: 85px;
}

.rep-quote-aside > div small {
  color: rgba(255, 255, 255, .43);
  font-size: 8px;
  text-transform: uppercase;
}

.rep-quote-aside > div strong {
  max-width: 270px;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 31px;
  letter-spacing: -.055em;
  line-height: 1;
}

.rep-quote-aside ul {
  display: grid;
  gap: 16px;
  margin: 60px 0 0;
  padding: 0;
  list-style: none;
}

.rep-quote-aside li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
}

.rep-quote-aside li i {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  margin-top: 4px;
  border-radius: 50%;
  background: var(--rep-accent);
  box-shadow: 0 0 12px var(--rep-accent);
}

.rep-quote-aside > p {
  margin: auto 0 0;
  padding-top: 44px;
  color: rgba(255, 255, 255, .42);
  font-size: 9px;
  line-height: 1.65;
}

.rep-quote-form {
  padding: 45px 52px 42px;
  overflow: auto;
}

.rep-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.rep-form-kicker {
  color: var(--rep-accent);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.rep-quote-form > h2 {
  margin: 18px 0 13px;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 56px;
  letter-spacing: -.07em;
  line-height: .92;
}

.rep-quote-form > p {
  max-width: 620px;
  margin: 0 0 28px;
  color: #7b7d83;
  font-size: 10px;
  line-height: 1.65;
}

.rep-form-field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.rep-form-field > span {
  display: flex;
  justify-content: space-between;
  color: #777980;
  font-size: 8px;
  font-weight: 750;
}

.rep-form-field > span b {
  color: var(--rep-accent);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rep-form-field > span i {
  color: #a2a4a8;
  font-size: 7px;
  font-style: normal;
  text-transform: uppercase;
}

.rep-form-field input,
.rep-form-field textarea {
  width: 100%;
  border: 1px solid #d4d2cb;
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, .66);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.rep-form-field input {
  height: 54px;
  padding: 0 15px;
}

.rep-form-field textarea {
  min-height: 122px;
  padding: 14px 15px 24px;
  resize: vertical;
  line-height: 1.55;
}

.rep-form-field input:focus,
.rep-form-field textarea:focus {
  border-color: var(--rep-accent);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--rep-accent) 15%, transparent);
}

.rep-form-message {
  position: relative;
}

.rep-form-message > small {
  position: absolute;
  right: 10px;
  bottom: 9px;
  color: #aaa;
  font-size: 7px;
}

.rep-files {
  margin-top: 14px;
}

.rep-files > input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.rep-dropzone {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  min-height: 76px;
  padding: 13px 15px;
  border: 1px dashed #bbb9b2;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.rep-dropzone:hover,
.rep-dropzone.is-dragging {
  border-color: var(--rep-accent);
  background: color-mix(in srgb, var(--rep-accent) 7%, #fff);
}

.rep-dropzone > span {
  display: grid;
  grid-row: 1 / 3;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--rep-accent) 16%, #fff);
}

.rep-dropzone strong {
  font-size: 10px;
}

.rep-dropzone small {
  color: #989a9f;
  font-size: 7px;
}

.rep-file-list {
  display: grid;
  gap: 6px;
  margin-top: 8px;
}

.rep-file-item {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 10px;
  background: #e9e7e0;
  font-size: 8px;
}

.rep-file-item strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rep-file-item span {
  color: #8c8e94;
}

.rep-file-item button {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  background: transparent;
}

.rep-upload-progress {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding: 12px;
  background: #e9e7e0;
}

.rep-upload-progress > span {
  height: 4px;
  overflow: hidden;
  background: #d1cfc8;
}

.rep-upload-progress > span i {
  display: block;
  width: var(--progress, 0%);
  height: 100%;
  background: var(--rep-accent);
  transition: width 160ms linear;
}

.rep-upload-progress > div {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
}

.rep-contact-methods {
  margin: 24px 0 19px;
  padding: 0;
  border: 0;
}

.rep-contact-methods legend {
  margin-bottom: 10px;
  color: #777980;
  font-size: 8px;
  font-weight: 750;
  text-transform: uppercase;
}

.rep-contact-methods > div {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.rep-contact-methods button {
  display: flex;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid #d4d2cb;
  background: rgba(255, 255, 255, .65);
  color: #74767d;
  font-size: 8px;
  font-weight: 760;
}

.rep-contact-methods button.is-active {
  border-color: var(--rep-accent);
  box-shadow: inset 0 -2px var(--rep-accent);
  color: var(--rep-ink);
}

.rep-form-row {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 10px;
}

.rep-form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  margin-top: 16px;
  padding: 0 20px;
  background: var(--rep-accent);
  font-size: 10px;
  font-weight: 850;
}

.rep-form-submit:disabled {
  cursor: wait;
  opacity: .62;
}

.rep-form-error {
  min-height: 16px;
  margin-top: 8px;
  color: #c72c3d;
  font-size: 8px;
}

.rep-form-privacy {
  display: block;
  color: #999ba0;
  font-size: 7px;
  line-height: 1.5;
}

.rep-form-privacy a {
  text-decoration: underline;
}

.rep-quote-success {
  grid-column: 2;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: 68px;
}

.rep-quote-success > span {
  display: grid;
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--rep-accent);
}

.rep-quote-success > small {
  color: var(--rep-accent);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: .14em;
}

.rep-quote-success h2 {
  margin: 19px 0;
  font-family: "Onest Variable", Arial, sans-serif;
  font-size: 58px;
  letter-spacing: -.07em;
  line-height: .92;
}

.rep-quote-success p {
  max-width: 460px;
  margin: 0 0 28px;
  color: #74767c;
  font-size: 11px;
  line-height: 1.65;
}

.rep-quote-success button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 18px;
  background: var(--rep-night);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
}

.rep-video-lightbox {
  position: fixed;
  z-index: 400;
  inset: 0;
  display: grid;
  padding: 32px;
  place-items: center;
  background: rgba(5, 7, 12, .94);
}

.rep-video-lightbox > button {
  position: absolute;
  top: 24px;
  right: 24px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

.rep-video-lightbox > div {
  width: min(1120px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
}

.rep-video-lightbox iframe,
.rep-video-lightbox video {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 1120px) {
  .rep-header {
    grid-template-columns: auto 1fr auto;
    padding-inline: 22px;
  }

  .rep-header-nav {
    gap: 16px;
  }

  .rep-header-nav > a:nth-last-child(-n+2) {
    display: none;
  }

  .rep-hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(390px, .85fr);
    gap: 30px;
    width: min(calc(100% - 48px), 1120px);
  }

  .rep-platform-rail a {
    padding-inline: 16px;
  }

  .rep-outcomes {
    grid-template-columns: repeat(2, 1fr);
  }

  .rep-outcomes > span {
    grid-column: 1 / -1;
  }

  .rep-outcomes p:nth-of-type(odd) {
    border-left: 0;
  }

  .rep-quote-card {
    grid-template-columns: 300px 1fr;
  }

  .rep-quote-form {
    padding-inline: 36px;
  }

  .rep-contact-methods > div {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  body.admin-bar .rep-header {
    top: 46px;
  }

  .rep-shell {
    width: min(calc(100% - 36px), 720px);
  }

  .rep-header {
    min-height: 70px;
    padding-inline: 14px;
  }

  .rep-logo > span {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .rep-logo strong {
    font-size: 15px;
  }

  .rep-logo small {
    font-size: 6px;
  }

  .rep-header-nav,
  .rep-header-cta {
    display: none;
  }

  .rep-mobile-trigger {
    display: grid;
    grid-column: 3;
  }

  .rep-services-menu {
    top: 70px;
    width: 100%;
    max-height: calc(100dvh - 70px);
    border: 0;
  }

  body.admin-bar .rep-services-menu {
    top: 116px;
    max-height: calc(100dvh - 116px);
  }

  .rep-services-menu-head {
    grid-template-columns: 1fr auto;
    min-height: 78px;
    padding: 0 18px;
  }

  .rep-services-menu-head span {
    display: none;
  }

  .rep-services-menu-head strong {
    font-size: 17px;
  }

  .rep-services-grid {
    grid-template-columns: 1fr;
  }

  .rep-services-grid a {
    min-height: 82px;
    padding: 17px 18px;
  }

  .rep-services-menu-foot {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
  }

  .rep-services-menu-foot button {
    justify-content: space-between;
  }

  .rep-hero {
    min-height: 0;
    padding-top: 70px;
  }

  .rep-hero-shell {
    display: flex;
    width: min(calc(100% - 36px), 720px);
    min-height: 0;
    flex-direction: column;
    gap: 52px;
    padding: 64px 0 46px;
  }

  .rep-hero-copy {
    width: 100%;
  }

  .rep-hero h1 {
    font-size: clamp(48px, 13vw, 76px);
  }

  .rep-hero-lead {
    font-size: 13px;
  }

  .rep-hero-visual {
    width: min(100%, 590px);
    align-self: center;
  }

  .rep-platform-rail {
    grid-template-columns: repeat(6, minmax(130px, 1fr));
    min-height: 108px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .rep-platform-rail a {
    scroll-snap-align: start;
  }

  .rep-section-head,
  .rep-article-head {
    grid-template-columns: 44px 1fr;
  }

  .rep-section-head > p,
  .rep-article-head > p {
    grid-column: 2;
    margin-top: 0;
  }

  .rep-signal-grid {
    grid-template-columns: 1fr;
  }

  .rep-signal-grid article {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 0 28px;
  }

  .rep-signal-grid article > span,
  .rep-signal-grid h3,
  .rep-signal-grid p {
    grid-column: 2;
  }

  .rep-signal-icon {
    grid-column: 1;
    grid-row: 1 / 5;
    height: 100%;
    min-height: 170px;
    margin: 0;
  }

  .rep-signal-grid h3 {
    margin-top: 45px;
  }

  .rep-principle {
    grid-template-columns: 54px 1fr;
  }

  .rep-principle button {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .rep-process-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .rep-evidence-grid {
    grid-template-columns: 1fr;
  }

  .rep-evidence-copy {
    padding-right: 0;
    padding-bottom: 58px;
  }

  .rep-outcomes {
    grid-column: 1;
  }

  .rep-video-card {
    grid-template-columns: 44px 1fr;
    min-height: 500px;
    padding: 38px;
  }

  .rep-video-play {
    grid-column: 2;
    width: 70px;
    height: 70px;
    margin-top: 30px;
  }

  .rep-cross-card {
    grid-template-columns: 1fr;
  }

  .rep-faq-shell {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .rep-article-copy section {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .rep-article-copy section > p {
    grid-column: 1;
  }

  .rep-article-copy section > h3 + p {
    grid-row: auto;
  }

  .rep-quote-modal {
    padding: 0;
    place-items: stretch;
  }

  .rep-quote-card {
    display: block;
    width: 100%;
    min-height: 100dvh;
    overflow: visible;
  }

  .rep-quote-aside {
    display: none;
  }

  .rep-quote-form {
    padding: 74px 22px 42px;
  }

  .rep-quote-success {
    min-height: 100dvh;
    padding: 70px 28px;
  }
}

@media (max-width: 520px) {
  .rep-shell,
  .rep-hero-shell {
    width: calc(100% - 28px);
  }

  .rep-logo strong {
    font-size: 14px;
  }

  .rep-logo small {
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .rep-hero-shell {
    padding-top: 48px;
  }

  .rep-kicker {
    margin-bottom: 23px;
    font-size: 8px;
  }

  .rep-hero h1 {
    font-size: clamp(43px, 14vw, 62px);
    line-height: .92;
  }

  .rep-hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .rep-primary-button {
    width: 100%;
    justify-content: space-between;
  }

  .rep-hero-proof {
    align-items: flex-start;
  }

  .rep-hero-visual {
    aspect-ratio: .82;
  }

  .rep-person-portrait {
    right: -12%;
    bottom: -18%;
    width: 94%;
  }

  .rep-status-card {
    right: 4%;
    bottom: 4%;
    width: 180px;
  }

  .rep-radar {
    top: 15%;
    left: 4%;
    width: 72%;
  }

  .rep-thread {
    top: 15%;
    right: 5%;
    left: 5%;
  }

  .rep-thread > div {
    grid-template-columns: 38px 1fr;
    min-height: 78px;
  }

  .rep-thread b {
    display: none;
  }

  .rep-map {
    inset: 13% 4% 12%;
  }

  .map-review {
    bottom: 8%;
    left: 5%;
    width: 205px;
  }

  .rep-listing {
    top: 14%;
    right: 5%;
    left: 5%;
    grid-template-columns: 1fr;
    min-height: 420px;
  }

  .listing-media {
    min-height: 180px;
  }

  .listing-copy {
    align-content: start;
  }

  .listing-review {
    right: 5%;
    bottom: 5%;
    left: 5%;
  }

  .rep-player {
    top: 15%;
    right: 4%;
    left: 4%;
  }

  .rep-youtube-result {
    top: 63%;
    right: 2%;
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 6px;
    width: 44%;
    min-height: 48px;
    padding: 7px 8px 7px 7px;
  }

  .rep-youtube-result::after {
    top: 5px;
    bottom: 5px;
  }

  .rep-youtube-result-icon {
    width: 28px;
    height: 28px;
  }

  .rep-youtube-result-icon svg {
    width: 12px;
    height: 12px;
  }

  .rep-youtube-result-icon::after {
    width: 22px;
  }

  .rep-youtube-result small {
    font-size: 4.5px;
    letter-spacing: .06em;
  }

  .rep-youtube-result strong {
    font-size: 10px;
  }

  .rep-person-pointing,
  .rep-person-hand {
    right: -28%;
    bottom: 0;
    width: 118%;
  }

  .rep-signals,
  .rep-process,
  .rep-evidence,
  .rep-faq,
  .rep-article {
    padding-block: 88px;
  }

  .rep-section-head,
  .rep-article-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .rep-section-head > p,
  .rep-article-head > p {
    grid-column: 1;
  }

  .rep-section-head h2,
  .rep-process-title h2,
  .rep-evidence-copy h2,
  .rep-faq-title h2,
  .rep-article-head h2 {
    font-size: 42px;
  }

  .rep-signal-grid article {
    display: block;
    padding: 28px 24px;
  }

  .rep-signal-icon {
    height: 150px;
    min-height: 0;
    margin: 25px 0;
  }

  .rep-signal-grid h3 {
    margin-top: 0;
  }

  .rep-principle {
    grid-template-columns: 1fr;
  }

  .rep-process-title {
    grid-template-columns: 1fr;
  }

  .rep-process-title > p,
  .rep-process-title h2 {
    grid-column: 1;
  }

  .rep-process-track {
    grid-template-columns: 1fr;
  }

  .rep-process-track article {
    min-height: 210px;
  }

  .rep-process-track h3 {
    margin-top: 76px;
  }

  .rep-evidence-board > div:not(.rep-board-head) {
    grid-template-columns: 36px 1fr 30px;
    padding-inline: 14px;
  }

  .rep-outcomes {
    grid-template-columns: 1fr;
  }

  .rep-outcomes p {
    border-top: 1px solid var(--rep-line-light);
    border-left: 0;
  }

  .rep-video {
    padding-block: 68px;
  }

  .rep-video-card {
    grid-template-columns: 1fr;
    min-height: 560px;
    padding: 30px 23px;
  }

  .rep-video-copy h2 {
    font-size: 41px;
  }

  .rep-video-play {
    grid-column: 1;
  }

  .rep-video-state {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .rep-cross {
    padding-bottom: 86px;
  }

  .rep-cross-card {
    padding: 35px 26px;
  }

  .rep-cross-card h2 {
    font-size: 36px;
  }

  .rep-faq-list summary {
    grid-template-columns: 32px 1fr 30px;
    min-height: 86px;
  }

  .rep-faq-list summary strong {
    padding-right: 12px;
    font-size: 11px;
  }

  .rep-faq-list details > p {
    margin-left: 32px;
    font-size: 11px;
  }

  .rep-article-copy {
    margin-top: 45px;
  }

  .rep-final {
    padding-block: 100px 80px;
  }

  .rep-final h2 {
    font-size: 58px;
  }

  .rep-final-contact {
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }

  .rep-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 26px 18px;
  }

  .rep-footer nav {
    flex-wrap: wrap;
    gap: 18px;
  }

  .rep-quote-form > h2,
  .rep-quote-success h2 {
    font-size: 47px;
  }

  .rep-contact-methods > div {
    grid-template-columns: repeat(2, 1fr);
  }

  .rep-contact-methods button:last-child {
    grid-column: 1 / -1;
  }

  .rep-form-row {
    grid-template-columns: 1fr;
  }

  .rep-video-lightbox {
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
