@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Variable.ttf") format("truetype");
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("/assets/fonts/Unbounded-Variable.ttf") format("truetype");
  font-weight: 400 800;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #f7f3e9;
  --muted: #a7afbd;
  --bg: #0b0e13;
  --panel: #151a22;
  --panel-2: #1d2430;
  --line: #303948;
  --blue: #3761e6;
  --blue-soft: #85a2ff;
  --yellow: #ffd75a;
  --coral: #ff7c6b;
  --green: #69d596;
  --max: 1180px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    linear-gradient(rgba(133, 162, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(133, 162, 255, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
  color: var(--ink);
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 440px;
  z-index: -1;
  background: radial-gradient(circle at 72% 0%, rgba(55, 97, 230, 0.25), transparent 48%);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--yellow);
  color: #111824;
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(48, 57, 72, 0.85);
  background: rgba(11, 14, 19, 0.88);
  backdrop-filter: blur(18px);
}

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

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.05em;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  font-weight: 700;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid var(--blue-soft);
  border-radius: 999px;
  color: var(--blue-soft) !important;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--panel);
  color: var(--ink);
  cursor: pointer;
}

.menu-button span,
.menu-button::before,
.menu-button::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: currentColor;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(360px, 0.93fr);
  align-items: center;
  min-height: 720px;
  gap: clamp(44px, 8vw, 104px);
  padding-block: 72px 90px;
}

.eyebrow,
.kicker {
  margin: 0 0 20px;
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 3px;
  margin: 0 10px 3px 0;
  background: var(--yellow);
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-family: "Unbounded", sans-serif;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(46px, 6.1vw, 82px);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.3vw, 58px);
}

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

.hero-copy > p:not(.eyebrow):not(.microcopy) {
  max-width: 660px;
  margin: 0 0 32px;
  color: #c8ced8;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.55;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

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

.button-primary {
  background: var(--yellow);
  color: #111824;
}

.button-secondary {
  border-color: var(--line);
  background: var(--panel);
  color: var(--ink);
}

.button-blue {
  background: var(--blue);
  color: white;
}

.microcopy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.phone-stage {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}

.phone-stage::before,
.phone-stage::after {
  content: "";
  position: absolute;
  border: 1px solid var(--line);
}

.phone-stage::before {
  inset: 9% 1% 4% 12%;
  border-radius: 54% 46% 46% 54%;
  transform: rotate(-7deg);
}

.phone-stage::after {
  width: 124px;
  height: 124px;
  right: -6px;
  top: 30px;
  background: repeating-linear-gradient(45deg, transparent 0 8px, rgba(255, 215, 90, 0.55) 8px 10px);
  border-color: transparent;
  border-radius: 50%;
}

.phone {
  position: relative;
  z-index: 2;
  width: min(72vw, 338px);
  padding: 9px;
  border: 1px solid #424d5f;
  border-radius: 42px;
  background: #07090d;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.58), 0 0 0 8px rgba(55, 97, 230, 0.08);
  transform: rotate(2deg);
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 33px;
}

.marker-note {
  position: absolute;
  z-index: 3;
  left: -26px;
  bottom: 110px;
  max-width: 210px;
  padding: 13px 15px;
  border: 2px solid var(--yellow);
  background: rgba(21, 26, 34, 0.96);
  box-shadow: 8px 8px 0 var(--yellow);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
}

.proof-strip {
  border-block: 1px solid var(--line);
  background: rgba(21, 26, 34, 0.75);
}

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

.proof-item {
  padding: 25px 28px;
  border-left: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 1px solid var(--line);
}

.proof-item strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.proof-item span {
  color: var(--muted);
  font-size: 14px;
}

.section {
  padding-block: clamp(80px, 11vw, 148px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.section-heading p,
.lede {
  color: var(--muted);
  font-size: 20px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.feature {
  grid-column: span 4;
  min-height: 275px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 26, 34, 0.86);
}

.feature.wide {
  grid-column: span 8;
}

.feature.yellow {
  border-color: transparent;
  background: var(--yellow);
  color: #111824;
}

.feature.yellow h3,
.feature.yellow p {
  color: #111824;
}

.feature.blue {
  border-color: transparent;
  background: var(--blue);
}

.feature.blue p {
  color: #e8edff;
}

.feature-number {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 55px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Unbounded", sans-serif;
  font-size: 12px;
}

.feature p {
  margin: 0;
  color: var(--muted);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(50px, 9vw, 120px);
  align-items: center;
}

.showcase.reverse .showcase-copy {
  order: 2;
}

.showcase.reverse .screen-stack {
  order: 1;
}

.showcase-copy p {
  color: var(--muted);
  font-size: 19px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
}

.check-list li {
  position: relative;
  padding: 12px 0 12px 34px;
  border-bottom: 1px solid var(--line);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

.screen-stack {
  position: relative;
  min-height: 650px;
  overflow: clip;
}

.screen-card {
  position: absolute;
  width: min(72%, 330px);
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: #080b10;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.screen-card img {
  width: 100%;
  border-radius: 25px;
}

.screen-card:first-child {
  left: 4%;
  top: 0;
  transform: rotate(-4deg);
}

.screen-card:last-child {
  right: 2%;
  bottom: 0;
  transform: rotate(4deg);
}

@media (max-width: 1000px) {
  .screen-card:first-child,
  .screen-card:last-child {
    transform: none;
  }
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.audience-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--panel);
  overflow: hidden;
}

.audience-card:first-child {
  background: linear-gradient(150deg, #234dd1, #3d67e9 60%, #223f9f);
}

.audience-card:last-child {
  background: var(--yellow);
  color: #111824;
}

.audience-card:last-child h3,
.audience-card:last-child p,
.audience-card:last-child .kicker {
  color: #111824;
}

.audience-card h3 {
  font-size: clamp(30px, 4vw, 46px);
}

.audience-card p {
  max-width: 510px;
  margin: 0 0 30px;
  color: #e7ebf6;
  font-size: 18px;
}

.audience-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.3fr auto;
  align-items: center;
  gap: 40px;
  padding: clamp(32px, 6vw, 68px);
  border: 1px solid var(--blue-soft);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(55, 97, 230, 0.25), rgba(21, 26, 34, 0.95));
}

.cta-panel h2 {
  max-width: 790px;
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 50px);
}

.cta-panel p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(7, 9, 13, 0.8);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(2, 1fr);
  gap: 50px;
  padding-block: 58px;
}

.footer-copy {
  max-width: 430px;
  color: var(--muted);
  font-size: 15px;
}

.footer-title {
  margin: 0 0 15px;
  color: var(--ink);
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 8px;
  align-content: start;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

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

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

.page-hero {
  max-width: 900px;
  padding-block: 110px 80px;
}

.page-hero h1 {
  font-size: clamp(44px, 7vw, 78px);
}

.page-hero .lede {
  max-width: 760px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: clamp(44px, 8vw, 100px);
  align-items: start;
  padding-bottom: 120px;
}

.legal-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel);
}

.legal-nav a {
  padding: 7px 9px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.legal-nav a:hover {
  background: var(--panel-2);
  color: var(--ink);
}

.legal-copy h2 {
  margin-top: 60px;
  font-family: "Manrope", sans-serif;
  font-size: 30px;
  letter-spacing: -0.02em;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy h3 {
  margin-top: 34px;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  letter-spacing: 0;
}

.legal-copy p,
.legal-copy li {
  color: #c4cad4;
}

.legal-copy li + li {
  margin-top: 8px;
}

.legal-meta {
  margin-top: 16px;
  color: var(--muted);
  font-size: 14px;
}

.notice {
  margin: 34px 0;
  padding: 20px 22px;
  border-left: 4px solid var(--yellow);
  background: var(--panel);
  color: #d6dbe4;
}

.support-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
  padding-bottom: 110px;
}

.support-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.support-card.highlight {
  background: var(--yellow);
  color: #111824;
}

.support-card.highlight h2,
.support-card.highlight p {
  color: #111824;
}

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

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  padding: 22px 0;
  cursor: pointer;
  color: var(--ink);
  font-weight: 800;
}

.faq details p {
  margin-top: 0;
  color: var(--muted);
}

.compact-hero {
  min-height: auto;
  padding-block: 96px;
}

.screenshot-hero {
  grid-template-columns: minmax(0, 1.12fr) minmax(270px, 0.68fr);
}

.screenshot-hero .phone-stage {
  min-height: 620px;
}

.screenshot-hero .phone {
  width: min(68vw, 286px);
  overflow: hidden;
  transform: rotate(0.75deg);
}

.screenshot-hero .phone img {
  aspect-ratio: 1206 / 2622;
  object-fit: contain;
}

.steps {
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.step {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.step::before {
  counter-increment: steps;
  content: "0" counter(steps);
  display: block;
  margin-bottom: 50px;
  color: var(--yellow);
  font-family: "Unbounded", sans-serif;
  font-size: 13px;
}

.step p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .showcase,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    text-align: left;
  }

  .phone-stage {
    min-height: 620px;
  }

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

  .proof-item:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .proof-item:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .feature,
  .feature.wide {
    grid-column: span 6;
  }

  .showcase.reverse .showcase-copy,
  .showcase.reverse .screen-stack {
    order: initial;
  }

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

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  body {
    font-size: 16px;
  }

  .nav-shell,
  .shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-shell {
    min-height: 66px;
  }

  .brand {
    font-size: 17px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 65px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #121720;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px;
  }

  .nav-cta {
    margin-top: 6px;
    text-align: center;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
    padding-block: 62px 72px;
  }

  h1 {
    font-size: clamp(38px, 12vw, 56px);
  }

  h2 {
    font-size: 34px;
  }

  .hero-copy > p:not(.eyebrow):not(.microcopy) {
    font-size: 19px;
  }

  .button-row .button {
    width: 100%;
  }

  .phone-stage {
    min-height: 560px;
  }

  .phone {
    width: min(82vw, 318px);
  }

  .screenshot-hero .phone-stage {
    min-height: 540px;
  }

  .screenshot-hero .phone {
    width: min(72vw, 250px);
  }

  .marker-note {
    left: 0;
    bottom: 58px;
  }

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

  .proof-item,
  .proof-item:last-child {
    border: 0;
    border-top: 1px solid var(--line);
  }

  .proof-item:first-child {
    border-top: 0;
  }

  .feature,
  .feature.wide {
    grid-column: 1 / -1;
  }

  .feature {
    min-height: 240px;
  }

  .screen-stack {
    min-height: 560px;
  }

  .screen-card {
    width: min(70%, 280px);
  }

  .audience-card {
    min-height: 370px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .page-hero {
    padding-block: 76px 56px;
  }

  .legal-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
