:root {
  --bg: #050607;
  --bg-soft: #090b0f;
  --surface: rgba(255, 255, 255, 0.045);
  --surface-strong: rgba(255, 255, 255, 0.075);
  --line: rgba(255, 255, 255, 0.11);
  --line-soft: rgba(255, 255, 255, 0.065);
  --text: #f5f7fb;
  --muted: rgba(245, 247, 251, 0.62);
  --muted-strong: rgba(245, 247, 251, 0.78);
  --blue: #4285f4;
  --red: #ea4335;
  --yellow: #fbbc05;
  --green: #34a853;
  --violet: #a78bfa;
  --max: 1180px;
}

@font-face {
  font-family: Geist;
  font-style: normal;
  font-weight: 100 900;
  font-display: optional;
  src: url("/_next/static/media/caa3a2e1cccd8315-s.p.0wgildi0cnwt9.woff2") format("woff2");
  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;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Geist", Arial, sans-serif;
  line-height: 1.65;
}

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

button,
summary {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(5, 6, 7, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.05;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-strong);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  font-size: 12px;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted-strong);
  font-size: 13px;
}

.nav-links > a:not(.button):hover {
  color: var(--text);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
  color: white;
  cursor: pointer;
  font-size: 25px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  background: var(--blue);
  box-shadow: 0 14px 34px rgba(66, 133, 244, 0.22);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.secondary {
  border-color: var(--line);
  background: var(--surface);
  box-shadow: none;
}

.button.compact {
  min-height: 42px;
  padding-inline: 17px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 100vh;
  padding: 120px 0 80px;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 24%, rgba(66, 133, 244, 0.13), transparent 31%),
    radial-gradient(circle at 88% 21%, rgba(234, 67, 53, 0.11), transparent 28%),
    radial-gradient(circle at 72% 90%, rgba(52, 168, 83, 0.07), transparent 25%),
    var(--bg);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-position: center;
  background-size: 80px 80px;
  content: "";
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.34), transparent 72%);
  opacity: 0.16;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  align-items: center;
  gap: 68px;
}

.pill {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 22px;
  padding: 9px 15px;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(52, 168, 83, 0.8);
  content: "";
}

main h1,
main h2,
main h3 {
  margin-top: 0;
  color: var(--text);
  letter-spacing: -0.035em;
  line-height: 1.06;
}

main h1,
main h2 {
  font-family: "Geist", Arial, sans-serif;
  font-weight: 650;
}

main h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(52px, 6vw, 78px);
}

main h1.pill {
  max-width: none;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

main h2 {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: clamp(38px, 4.5vw, 58px);
}

main h2.hero-title {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(52px, 6vw, 78px);
}

main h3 {
  margin-bottom: 12px;
  font-size: 21px;
}

strong {
  color: var(--text);
  font-weight: 750;
}

.google {
  white-space: nowrap;
}

.google span:nth-child(1),
.google span:nth-child(4) {
  color: var(--blue);
}

.google span:nth-child(2),
.google span:nth-child(6) {
  color: var(--red);
}

.google span:nth-child(3) {
  color: var(--yellow);
}

.google span:nth-child(5) {
  color: var(--green);
}

.lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted-strong);
  font-size: clamp(17px, 1.65vw, 20px);
}

.actions {
  display: flex;
  margin-top: 30px;
  flex-wrap: wrap;
  gap: 12px;
}

.proof-row {
  display: grid;
  max-width: 720px;
  margin: 34px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  list-style: none;
}

.proof-row li {
  padding: 13px 14px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.portrait {
  position: relative;
  height: 560px;
  min-height: 560px;
}

.portrait-glow {
  position: absolute;
  inset: 12% -14% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.23), rgba(234, 67, 53, 0.1) 46%, transparent 70%);
  filter: blur(24px);
}

.portrait-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.45);
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 62%, rgba(5, 6, 7, 0.68));
  content: "";
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.section {
  padding: 110px 0;
  border-top: 1px solid var(--line-soft);
}

.section.soft {
  background: var(--bg-soft);
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--violet);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 790px;
}

.section-intro.center {
  margin-inline: auto;
  text-align: center;
}

.section-intro.center h2 {
  margin-inline: auto;
}

.section-intro p:not(.eyebrow),
.body-copy,
.card p,
.step p,
.quote p,
.faq p {
  color: var(--muted);
}

.section-intro p:not(.eyebrow),
.body-copy,
.rich-copy p {
  font-size: 17px;
}

.rich-copy {
  max-width: 820px;
}

.rich-copy p + p {
  margin-top: 16px;
}

.section-cta-wrap {
  margin-top: 36px;
  text-align: center;
}

.answer-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.logos-section {
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: #07090c;
}

.logos-label {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.logos-track:hover {
  animation-play-state: paused;
}

.logo-tile {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 178px;
  height: 88px;
  margin-right: 12px;
  padding: 14px 16px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: #07090c;
}

.logo-tile img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  object-position: center;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.authority-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: 64px;
}

.authority-copy h2 {
  max-width: 16ch;
}

.authority-copy p:not(.eyebrow) {
  max-width: 48ch;
  margin-bottom: 16px;
}

.authority-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 28px;
}

.authority-person img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 12%;
}

.authority-person strong,
.authority-person span {
  display: block;
}

.authority-person strong {
  font-size: 14px;
}

.authority-person span {
  color: var(--muted);
  font-size: 12px;
}

.authority-stats {
  display: grid;
  padding: 6px 36px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.authority-stat {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 14px;
  padding: 28px 0;
}

.authority-stat + .authority-stat {
  border-top: 1px solid var(--line-soft);
}

.authority-stat strong {
  flex: 0 0 auto;
  width: auto;
  color: var(--text);
  font-family: "Geist", Arial, sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}

.authority-stat span {
  flex: 0 1 auto;
  min-width: 0;
  color: var(--muted-strong);
  font-size: 16px;
  line-height: 1.35;
}

.offer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 64px;
}

.offer-copy h2 {
  max-width: 18ch;
}

.offer-copy h2 span {
  color: var(--blue);
}

.offer-copy p:not(.eyebrow) {
  max-width: 52ch;
  margin-bottom: 28px;
}

.offer-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.offer-mark {
  width: 14px;
  height: 14px;
  background:
    linear-gradient(var(--blue), var(--blue)) 0 0 / 6px 6px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 8px 0 / 6px 6px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 0 8px / 6px 6px no-repeat,
    linear-gradient(var(--blue), var(--blue)) 8px 8px / 6px 6px no-repeat;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.offer-card {
  display: flex;
  min-height: 214px;
  padding: 28px 22px 24px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  text-align: center;
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.offer-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--blue) 42%, var(--line));
  background: linear-gradient(180deg, rgba(66, 133, 244, 0.08), rgba(255, 255, 255, 0.03));
}

.offer-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
  place-items: center;
  color: var(--blue);
}

.offer-icon svg {
  width: 28px;
  height: 28px;
}

.offer-card h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.offer-card p {
  margin: 0;
  max-width: 28ch;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.service-grid {
  display: grid;
  margin-top: 48px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022));
}

.card::after {
  position: absolute;
  right: -40px;
  bottom: -55px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: var(--accent, var(--blue));
  content: "";
  filter: blur(70px);
  opacity: 0.14;
}

.card-top {
  display: flex;
  margin-bottom: 22px;
  align-items: center;
  justify-content: space-between;
}

.service-number {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.service-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--accent, var(--blue)) 48%, transparent);
  border-radius: 11px;
  background: color-mix(in srgb, var(--accent, var(--blue)) 12%, transparent);
  color: var(--accent, var(--blue));
  font-size: 15px;
  font-weight: 800;
}

.card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
}

.decision-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 72px;
}

.ecosystem {
  position: relative;
  display: grid;
  min-height: 470px;
  place-items: center;
}

.ecosystem-ring {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.ecosystem-ring.one {
  width: 390px;
  height: 390px;
}

.ecosystem-ring.two {
  width: 275px;
  height: 275px;
  border-style: dashed;
}

.ecosystem-core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 160px;
  height: 160px;
  padding: 24px;
  place-items: center;
  border: 1px solid rgba(66, 133, 244, 0.45);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(66, 133, 244, 0.2), rgba(66, 133, 244, 0.05));
  box-shadow: 0 0 70px rgba(66, 133, 244, 0.16);
  font-family: "Geist", Arial, sans-serif;
  font-size: 22px;
  font-weight: 650;
  line-height: 1.05;
  text-align: center;
}

.orbit-label {
  position: absolute;
  z-index: 3;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #0d1015;
  color: var(--muted-strong);
  font-size: 11px;
}

.orbit-label.a {
  top: 8%;
  left: 45%;
}

.orbit-label.b {
  top: 43%;
  right: 0;
}

.orbit-label.c {
  right: 15%;
  bottom: 8%;
}

.orbit-label.d {
  bottom: 11%;
  left: 5%;
}

.orbit-label.e {
  top: 32%;
  left: 0;
}

.check-list {
  display: grid;
  margin: 28px 0 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 14px 13px 38px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--surface);
  color: var(--muted-strong);
  font-size: 13px;
}

.check-list li::before {
  position: absolute;
  top: 12px;
  left: 14px;
  color: var(--green);
  content: "✓";
  font-weight: 800;
}

.comparison {
  display: grid;
  margin-top: 50px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.comparison .card {
  padding: 22px;
}

.comparison .featured {
  border-color: rgba(66, 133, 244, 0.46);
  background: linear-gradient(145deg, rgba(66, 133, 244, 0.13), rgba(66, 133, 244, 0.035));
}

.model-label {
  display: inline-flex;
  margin-bottom: 17px;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 72px;
}

.process-sticky {
  position: sticky;
  top: 110px;
}

.metrics {
  display: grid;
  margin-top: 36px;
  margin-bottom: 28px;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.metric {
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
}

.metric strong {
  display: block;
  font-family: "Geist", Arial, sans-serif;
  font-size: 32px;
  font-weight: 650;
  line-height: 1;
}

.metric span {
  color: var(--muted);
  font-size: 10px;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  display: grid;
  padding: 25px;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.step-number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--violet);
  font-size: 11px;
  font-weight: 800;
}

.step p {
  margin-bottom: 0;
}

.proof-layout {
  display: grid;
  margin-top: 50px;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 18px;
}

.portfolio-wall {
  display: grid;
  max-height: 680px;
  padding: 18px;
  overflow: hidden;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #0b0d11;
}

.portfolio-column {
  display: grid;
  align-content: start;
  gap: 14px;
  animation: float-column 12s ease-in-out infinite alternate;
}

.portfolio-column:last-child {
  animation-direction: alternate-reverse;
}

.portfolio-shot {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.portfolio-shot img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 363 / 727;
  object-fit: cover;
}

@keyframes float-column {
  to {
    transform: translateY(-55px);
  }
}

@keyframes portfolio-fade-3-a {
  0%,
  26%,
  100% {
    opacity: 1;
  }
  33%,
  93% {
    opacity: 0;
  }
}

@keyframes portfolio-fade-3-b {
  0%,
  26% {
    opacity: 0;
  }
  33%,
  59% {
    opacity: 1;
  }
  66%,
  100% {
    opacity: 0;
  }
}

@keyframes portfolio-fade-3-c {
  0%,
  59% {
    opacity: 0;
  }
  66%,
  92% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes portfolio-fade-2-a {
  0%,
  42%,
  100% {
    opacity: 1;
  }
  50%,
  92% {
    opacity: 0;
  }
}

@keyframes portfolio-fade-2-b {
  0%,
  42% {
    opacity: 0;
  }
  50%,
  92% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.testimonials {
  display: grid;
  gap: 14px;
}

.quote {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.quote blockquote {
  margin: 0 0 22px;
  color: var(--muted-strong);
  font-size: 14px;
}

.person {
  display: flex;
  align-items: center;
  gap: 12px;
}

.person img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.person strong,
.person span {
  display: block;
}

.person strong {
  font-size: 12px;
}

.person span {
  color: var(--muted);
  font-size: 10px;
}

.faq-layout {
  display: grid;
  gap: 48px;
}

.faq-layout .section-intro {
  max-width: 790px;
}

.contact-card {
  margin-top: 6px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--surface);
}

.contact-card p {
  margin-top: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-card .button {
  width: 100%;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq {
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--surface);
}

.faq summary {
  position: relative;
  padding: 20px 28px 20px 0;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

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

.faq summary::after {
  position: absolute;
  top: 19px;
  right: 0;
  color: var(--muted);
  content: "+";
  font-size: 20px;
}

.faq[open] summary::after {
  content: "−";
}

.faq p {
  margin: 0;
  padding: 0 0 20px;
}

.locations {
  margin-top: 48px;
}

.location-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.location-tab {
  display: inline-flex;
  min-width: 46px;
  height: 46px;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--surface-strong);
  color: var(--muted-strong);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.location-tab:hover {
  border-color: var(--line);
  color: var(--text);
}

.location-tab[aria-selected="true"] {
  background: var(--blue);
  color: #fff;
}

.location-hint {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.location-panels {
  margin-top: 8px;
}

.location-caption {
  margin: 18px 0 14px;
  color: var(--muted);
  font-size: 13px;
}

.location-cities {
  display: grid;
  margin: 0;
  padding: 8px 22px 18px;
  overflow: hidden;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0 18px;
  list-style: none;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: var(--surface);
}

.location-cities li {
  padding: 9px 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted-strong);
  font-size: 13px;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.final-cta {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  text-align: center;
  background:
    radial-gradient(circle at 50% 10%, rgba(66, 133, 244, 0.2), transparent 36%),
    radial-gradient(circle at 25% 80%, rgba(52, 168, 83, 0.08), transparent 27%),
    var(--bg-soft);
}

.final-cta h2,
.final-cta .lead {
  margin-inline: auto;
}

.final-cta .actions {
  justify-content: center;
}

.site-footer {
  padding: 58px 0 28px;
  border-top: 1px solid var(--line-soft);
  background: #050607;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 44px;
}

.footer-intro {
  max-width: 290px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.footer-col h3 {
  margin-bottom: 16px;
  font-family: "Geist", Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0;
}

.footer-col a,
.footer-col span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  margin-top: 45px;
  padding-top: 22px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line-soft);
  color: var(--muted);
  font-size: 11px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .nav-links.open {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: flex;
    padding: 22px 24px 26px;
    align-items: stretch;
    flex-direction: column;
    gap: 15px;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 6, 7, 0.98);
  }

  .menu-button {
    display: block;
  }

  .hero-grid,
  .offer-layout,
  .authority-layout,
  .decision-layout,
  .process-layout,
  .proof-layout,
  .answer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    order: 2;
  }

  .portrait {
    order: 1;
    width: min(560px, 100%);
  }

  .process-sticky {
    position: static;
  }

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

  .location-cities {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .container {
    width: calc(100% - 36px);
  }

  .hero {
    min-height: auto;
    padding: 72px 0 68px;
  }

  .hero > .container {
    width: 100%;
  }

  .hero-grid {
    gap: 0;
  }

  .hero-copy {
    padding: 12px 18px 0;
    text-align: left;
  }

  .pill {
    margin-inline: 0;
  }

  .portrait {
    width: 100%;
    height: 400px;
    min-height: 400px;
  }

  .portrait-frame {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 68%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 0%, #000 68%, transparent 100%);
  }

  .portrait-frame img {
    object-position: center top;
  }

  h1 {
    font-size: 43px;
  }

  h1.pill {
    font-size: 12px;
  }

  h2 {
    font-size: 37px;
  }

  main h2.hero-title {
    font-size: 32px;
    line-height: 1.15;
  }

  .actions {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .authority-stats {
    padding: 4px 22px;
  }

  .authority-stat {
    gap: 14px;
    padding: 22px 0;
  }

  .authority-stat strong {
    font-size: 26px;
  }

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

  .section {
    padding: 78px 0;
  }

  .service-grid,
  .comparison,
  .check-list,
  .portfolio-wall,
  .answer-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .location-cities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px 16px 14px;
  }

  .ecosystem {
    min-height: 390px;
    transform: scale(0.86);
  }

  .ecosystem-ring.one {
    width: 350px;
    height: 350px;
  }

  .ecosystem-ring.two {
    width: 240px;
    height: 240px;
  }

  .metrics {
    margin-bottom: 28px;
  }

  .step {
    grid-template-columns: 1fr;
  }

  .portfolio-wall {
    height: auto;
    max-height: none;
    overflow: hidden;
  }

  .portfolio-column {
    position: relative;
    display: block;
    aspect-ratio: 363 / 727;
    overflow: hidden;
    animation: none;
  }

  .portfolio-shot {
    position: absolute;
    inset: 0;
  }

  .portfolio-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: auto;
  }

  .portfolio-column:first-child .portfolio-shot:nth-child(1) {
    animation: portfolio-fade-3-a 12s infinite;
  }

  .portfolio-column:first-child .portfolio-shot:nth-child(2) {
    animation: portfolio-fade-3-b 12s infinite;
  }

  .portfolio-column:first-child .portfolio-shot:nth-child(3) {
    animation: portfolio-fade-3-c 12s infinite;
  }

  .portfolio-column:last-child .portfolio-shot:nth-child(1) {
    animation: portfolio-fade-2-a 12s infinite;
  }

  .portfolio-column:last-child .portfolio-shot:nth-child(2) {
    animation: portfolio-fade-2-b 12s infinite;
  }

  .final-cta {
    padding: 88px 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

.quiz-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  padding: 24px 16px;
  place-items: center;
  background: rgba(5, 6, 7, 0.72);
  backdrop-filter: blur(10px);
}

.quiz-overlay[hidden] {
  display: none;
}

.quiz-card {
  position: relative;
  display: flex;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  flex-direction: column;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #0b0d12;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.quiz-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
}

.quiz-head {
  padding: 28px 28px 18px;
  border-bottom: 1px solid var(--line-soft);
}

.quiz-promise {
  margin: 0 36px 8px 0;
  color: var(--text);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.quiz-badge {
  display: block;
  color: var(--text);
  font-size: 15px;
  font-weight: 750;
}

.quiz-urg {
  margin: 6px 0 16px;
  color: var(--muted);
  font-size: 13px;
}

.quiz-bar {
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.quiz-bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  transition: width 220ms ease;
}

.quiz-count {
  display: block;
  margin-top: 12px;
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
}

.quiz-body {
  padding: 22px 28px 8px;
}

.quiz-q {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 22px;
  font-weight: 750;
  line-height: 1.3;
}

.quiz-hint {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
}

.quiz-field {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.quiz-field span,
.quiz-sublabel {
  color: var(--muted-strong);
  font-size: 12px;
  font-weight: 700;
}

.quiz-sublabel {
  margin: 16px 0 10px;
}

.quiz-field input {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.quiz-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quiz-chip {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 13px;
  font-weight: 650;
}

.quiz-chip.is-on {
  border-color: color-mix(in srgb, var(--blue) 70%, transparent);
  background: color-mix(in srgb, var(--blue) 18%, transparent);
}

.quiz-consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
}

.quiz-consent a {
  color: var(--text);
  text-decoration: underline;
}

.quiz-err {
  margin: 12px 0 0;
  color: #f3b4ae;
  font-size: 13px;
}

.quiz-nav {
  display: flex;
  padding: 8px 28px 20px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.quiz-back {
  border: 0;
  background: transparent;
  color: var(--muted-strong);
  font-size: 13px;
  font-weight: 700;
}

.quiz-next {
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
}

.quiz-foot {
  padding: 0 28px 24px;
  border-top: 1px solid var(--line-soft);
}

.quiz-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  padding-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

.quiz-orbar {
  margin: 16px 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.quiz-wa {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.quiz-legal {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
