:root {
  --ink: #0b1f3a;
  --muted: #475569;
  --soft: #dbeafe;
  --line: #d6e0ef;
  --panel: #ffffff;
  --accent: #2563eb;
  --accent-2: #1d4ed8;
  --warning: #d88428;
  --shadow: 0 24px 70px rgba(11, 31, 58, 0.1);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fafaf9;
}

@keyframes signalPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 0 rgba(37, 99, 235, 0.28),
      0 0 0 7px rgba(0, 169, 130, 0.12);
  }

  45% {
    transform: scale(1.12);
    box-shadow:
      0 0 0 9px rgba(37, 99, 235, 0),
      0 0 0 7px rgba(0, 169, 130, 0.12);
  }
}

@keyframes markerPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.2);
  }

  45% {
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% 8%, rgba(37, 99, 235, 0.1), transparent 24rem),
    linear-gradient(180deg, #fafaf9 0%, #f8fbff 48%, #eef5ff 100%);
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 1.55rem 0 0.8rem;
}

.brand,
.nav-links,
.language-switch,
.header-cta,
.primary-button,
.secondary-link {
  font-size: 0.88rem;
  font-weight: 700;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  letter-spacing: -0.01em;
}

.brand-logo img {
  display: block;
  width: clamp(15.5rem, 19vw, 19.5rem);
  height: auto;
}

.brand-mark {
  width: 1.08rem;
  height: 1.08rem;
  border: 2px solid var(--ink);
  border-radius: 50%;
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0.22rem;
  background: var(--accent);
  border-radius: inherit;
}

.nav-links {
  display: flex;
  gap: 1.35rem;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--ink);
}

.header-actions {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.16rem;
  min-height: 2.75rem;
  border: 1px solid rgba(11, 31, 58, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
  padding: 0.18rem;
}

.language-switch a,
.language-switch span {
  display: inline-flex;
  min-width: 2.28rem;
  min-height: 2.28rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 0.55rem;
}

.language-switch span {
  background: var(--ink);
  color: white;
}

.language-switch a:hover {
  color: var(--ink);
}

.header-cta {
  border: 1px solid rgba(11, 31, 58, 0.16);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  min-height: calc(84vh - 74px);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 4.2rem) 0 clamp(1.6rem, 3vw, 2.6rem);
}

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

.availability,
.section-heading span,
.audience-copy span,
.waitlist-copy span,
.card-label {
  display: block;
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.35rem;
  font-size: clamp(3.45rem, 7vw, 6.45rem);
  line-height: 0.88;
  letter-spacing: -0.055em;
}

h1 span {
  display: inline;
}

h1 em {
  position: relative;
  display: inline-block;
  color: var(--accent);
  font-style: normal;
  white-space: nowrap;
}

h1 em::after {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.04em;
  bottom: 0.03em;
  z-index: -1;
  height: 0.19em;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.14);
}

.hero-lede {
  max-width: 690px;
  color: #24302d;
  font-size: clamp(1.06rem, 1.8vw, 1.34rem);
  line-height: 1.56;
}

.hero-lede-mobile {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin: 2rem 0 1rem;
}

.primary-button,
.waitlist-form button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  padding: 0.95rem 1.25rem;
  box-shadow: 0 14px 34px rgba(11, 31, 58, 0.18);
  cursor: pointer;
}

.secondary-link {
  color: var(--muted);
}

.fineprint {
  max-width: 570px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.search-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  align-content: start;
  min-height: 0;
  padding: 1.15rem;
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(rgba(11, 31, 58, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 31, 58, 0.05) 1px, transparent 1px),
    rgba(255, 255, 255, 0.74);
  background-size: 34px 34px;
  box-shadow: var(--shadow);
  overflow: visible;
}

.scenario-card {
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.9);
  padding: 1.15rem;
  box-shadow: 0 16px 48px rgba(11, 31, 58, 0.08);
}

.scenario-card {
  width: auto;
}

.human-scenario {
  grid-column: 1 / 2;
  margin-top: 0;
}

.agent-scenario {
  grid-column: 2 / 3;
  margin-top: 3.8rem;
}

.scenario-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scenario-topline span {
  color: var(--accent);
}

.scenario-question {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.45;
}

.scenario-question span {
  color: #2563eb;
  font-weight: 800;
}

.scenario-result {
  display: grid;
  gap: 0.35rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.scenario-result span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.scenario-result b {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.4;
}

.human-scenario .scenario-result b {
  color: #bd2f2f;
}

.agent-scenario .scenario-result b {
  color: var(--warning);
}

.offer-section {
  margin: clamp(1rem, 3vw, 2.4rem) 0 0;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
  border-top: 1px solid rgba(11, 31, 58, 0.08);
  border-bottom: 1px solid rgba(11, 31, 58, 0.08);
  background:
    linear-gradient(90deg, rgba(37, 99, 235, 0.09), transparent 34%),
    rgba(255, 255, 255, 0.46);
}

.offer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.offer-copy span {
  display: block;
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.offer-copy h2 {
  max-width: 680px;
}

.offer-copy p {
  max-width: 600px;
  margin: 1.25rem 0 1.7rem;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.18rem);
  line-height: 1.62;
}

.offer-points {
  display: grid;
  gap: 1rem;
}

.offer-points article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 1rem;
  align-items: start;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

.offer-points article:last-child {
  border-bottom: 1px solid var(--line);
}

.offer-dot {
  grid-row: 1 / span 2;
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.42rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(0, 169, 130, 0.12);
  animation: signalPulse 3s ease-in-out infinite;
}

.offer-points article:nth-child(2) .offer-dot {
  animation-delay: 0.35s;
}

.offer-points article:nth-child(3) .offer-dot {
  animation-delay: 0.7s;
}

.offer-points h3 {
  margin-bottom: 0.15rem;
  font-size: clamp(1.28rem, 2.2vw, 1.75rem);
}

.offer-points p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  margin-bottom: 2.4rem;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.problem {
  border-top: 1px solid var(--line);
}

.problem-grid article {
  min-height: 260px;
  padding: 1.35rem 1.45rem 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.problem-grid article + article {
  padding-left: 1.45rem;
  border-left: 1px solid var(--line);
}

.problem-grid span {
  display: block;
  margin-bottom: 4.4rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.problem-grid p,
.check-list p,
.audience-copy p,
.waitlist-copy p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.check {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: start;
}

.check .section-heading {
  display: block;
  margin: 0;
  position: sticky;
  top: 110px;
}

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

.check-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.4rem 0;
  border-bottom: 1px solid var(--line);
}

.status-dot {
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 7px rgba(0, 169, 130, 0.12);
  animation: signalPulse 3s ease-in-out infinite;
}

.check-list article:nth-child(2) .status-dot {
  animation-delay: 0.3s;
}

.check-list article:nth-child(3) .status-dot {
  animation-delay: 0.6s;
}

.check-list article:nth-child(4) .status-dot {
  animation-delay: 0.9s;
}

.audience {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}

.audience-copy p {
  max-width: 620px;
  margin-top: 1.35rem;
  font-size: 1.08rem;
}

.audience-rail {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}

.audience-rail span {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: #24302d;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 750;
  letter-spacing: -0.025em;
}

.audience-rail span::after {
  content: "bereit";
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waitlist {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 3rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 30px;
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}

.waitlist h2 {
  color: white;
}

.waitlist-copy p,
.form-note {
  color: rgba(255, 255, 255, 0.68);
}

.waitlist-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.waitlist-form label {
  display: grid;
  gap: 0.45rem;
}

.waitlist-form .website-field {
  grid-column: 1 / -1;
}

.waitlist-form span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.waitlist-form input,
.waitlist-form select {
  min-height: 3.15rem;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0 0.92rem;
  font: inherit;
}

.waitlist-form small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  line-height: 1.45;
}

.waitlist-form select {
  color-scheme: dark;
}

.waitlist-form input:focus,
.waitlist-form select:focus {
  outline: 2px solid rgba(0, 169, 130, 0.7);
  outline-offset: 2px;
}

.waitlist-form button,
.form-note {
  grid-column: 1 / -1;
}

.waitlist-form button {
  background: white;
  color: var(--ink);
  box-shadow: none;
  font-size: 0.95rem;
  font-weight: 800;
}

.form-note {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.footer-legal {
  display: grid;
  gap: 0.55rem;
}

.footer-legal span {
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 850;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-legal a:hover {
  color: var(--ink);
}

.footer p {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 700;
}

.footer img {
  display: inline-block;
  width: clamp(9.5rem, 12vw, 13.5rem);
  height: auto;
  opacity: 1;
  vertical-align: middle;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero,
  .offer-inner,
  .section-heading,
  .check,
  .audience,
  .waitlist {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .search-map {
    min-height: 520px;
  }

  .check .section-heading {
    position: static;
  }

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

  .problem-grid article + article {
    padding-left: 0;
    border-left: 0;
  }

  .problem-grid span {
    margin-bottom: 2rem;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .offer-inner,
  .section,
  .waitlist,
  .footer {
    width: calc(100vw - 28px);
    max-width: 1180px;
  }

  .header-cta {
    display: none;
  }

  .site-header {
    gap: 0.8rem;
  }

  .header-actions {
    gap: 0;
  }

  .language-switch {
    min-height: 2.45rem;
    font-size: 0.78rem;
  }

  .language-switch a,
  .language-switch span {
    min-width: 2rem;
    min-height: 2rem;
    padding: 0 0.42rem;
  }

  .brand-logo img {
    width: clamp(12.5rem, 56vw, 15rem);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.75rem, 13vw, 3.25rem);
    line-height: 0.94;
  }

  h1 span {
    display: block;
  }

  .availability {
    max-width: 21rem;
    font-size: 0.66rem;
    line-height: 1.55;
  }

  .hero-lede {
    width: 100%;
    max-width: 21rem;
    font-size: 1.02rem;
  }

  .hero-lede-desktop {
    display: none;
  }

  .hero-lede-mobile {
    display: block;
  }

  .fineprint,
  .hero-actions {
    width: 100%;
    max-width: 21rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .scenario-card {
    max-width: 20.5rem;
    width: auto;
  }

  .search-map {
    display: block;
    min-height: auto;
  }

  .human-scenario {
    margin: 0 0 0.8rem;
  }

  .agent-scenario {
    margin: 0 0 0.8rem;
  }

  .offer-section {
    margin-top: 1.5rem;
    padding: 2.7rem 0;
  }

  .offer-copy .primary-button {
    width: 100%;
    max-width: 21rem;
  }

  .offer-points article {
    padding: 1rem 0;
  }

  .waitlist {
    padding: 1.3rem;
    border-radius: 22px;
  }

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

  .footer {
    display: block;
  }

  .footer p {
    margin-top: 0.8rem;
  }
}

.legal-page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(4rem, 9vw, 6rem);
}

.legal-page h1 {
  max-width: 820px;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.92;
}

.legal-page h2 {
  margin: 2.4rem 0 0.8rem;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.68;
}

.legal-page ul {
  padding-left: 1.2rem;
}

.legal-page a {
  color: var(--accent);
  font-weight: 750;
}

.legal-note {
  margin: 1.6rem 0 2.2rem;
  border-left: 4px solid var(--accent);
  background: rgba(37, 99, 235, 0.07);
  padding: 1rem 1.1rem;
}

@media (prefers-reduced-motion: reduce) {
  .status-dot,
  .offer-dot {
    animation: none;
  }
}
