:root {
  --bg: #050a16;
  --bg-soft: #091122;
  --panel: rgba(8, 14, 29, 0.82);
  --panel-strong: rgba(5, 10, 20, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.035);
  --line: rgba(140, 190, 255, 0.12);
  --line-strong: rgba(140, 190, 255, 0.24);
  --gold: #54a8ff;
  --gold-soft: #45d8ff;
  --gold-deep: #845dff;
  --text: #eef4ff;
  --muted: #a9b7d4;
  --muted-strong: #cbd8f8;
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.56);
  --shadow-soft: 0 26px 80px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --wrap: min(1180px, calc(100vw - 32px));
  --font-ui: "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
  --font-display: "Sora", "Manrope", "Inter", "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(69, 216, 255, 0.12), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(132, 93, 255, 0.14), transparent 30%),
    radial-gradient(circle at 50% 80%, rgba(255, 255, 255, 0.03), transparent 38%),
    linear-gradient(180deg, #030712 0%, #081127 40%, #040915 100%);
  font-family: var(--font-ui);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 86%);
}

body::after {
  content: "";
  position: fixed;
  inset: -20%;
  z-index: -3;
  background:
    radial-gradient(circle at 30% 30%, rgba(84, 168, 255, 0.14), transparent 28%),
    radial-gradient(circle at 70% 60%, rgba(61, 227, 255, 0.08), transparent 32%);
  filter: blur(38px);
  pointer-events: none;
  animation: drift 14s ease-in-out infinite;
}

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

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

h1,
h2,
h3,
p {
  margin: 0;
}

.wrap {
  width: var(--wrap);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 9, 20, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(140, 190, 255, 0.08);
}

.nav {
  min-height: 78px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
}

.brand-mark {
  font-size: 1.06rem;
  font-family: "Oxanium", sans-serif;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
}

.brand-sub {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(201, 214, 240, 0.54);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.74);
}

.nav-links a {
  position: relative;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
  transform: scaleX(0.3);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-links a:hover {
  color: #fffaf2;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-actions,
.hero-actions,
.offer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.account-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

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

.nav-btn,
.hero-btn,
.cta-btn {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 16px;
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.nav-btn.ghost,
.hero-btn.secondary,
.cta-btn.secondary {
  color: #cbd8f8;
  border: 1px solid rgba(140, 190, 255, 0.12);
  background: rgba(8, 14, 30, 0.46);
}

.nav-btn.solid,
.hero-btn.primary,
.cta-btn.primary {
  color: #081127;
  background: linear-gradient(135deg, #45d8ff, #845dff);
  box-shadow: 0 16px 42px rgba(73, 122, 255, 0.26);
}

.hero {
  position: relative;
  overflow: clip;
  padding: 54px 0 28px;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 18%, rgba(61, 227, 255, 0.10), transparent 22%),
    radial-gradient(circle at 24% 28%, rgba(109, 92, 255, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 22%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 120px);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 0 8px rgba(61, 227, 255, 0.10);
}

.hero-copy h1,
.section-head h2,
.workflow-copy h2,
.offer-copy h2 {
  font-family: "Oxanium", "Inter", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.045em;
  text-transform: none;
  color: #eef4ff;
}

.hero-copy h1 {
  max-width: 680px;
  margin-top: 20px;
  font-size: clamp(3rem, 5vw, 5rem);
  text-wrap: balance;
  text-shadow: 0 16px 36px rgba(5, 10, 24, 0.24);
}

.hero-copy p,
.section-head p,
.workflow-copy p,
.offer-copy p,
.feature-card p,
.proof-copy span,
.proof-copy strong,
.step-card p,
.faq-answer p,
.footer p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-copy > p {
  max-width: 620px;
  margin-top: 22px;
  font-size: 1.02rem;
}

.hero-hook {
  margin-top: 16px;
  max-width: 620px;
  color: #cbd8f8;
  font-size: 0.95rem;
  line-height: 1.7;
  font-weight: 700;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-points span,
.offer-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(8, 14, 30, 0.58);
  border: 1px solid rgba(140, 190, 255, 0.1);
  color: #dfeaff;
  font-size: 0.88rem;
}

.hero-actions {
  margin-top: 30px;
}

.hero-proof,
.hero-metrics {
  display: grid;
  gap: 14px;
}

.hero-proof {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}

.proof-chip,
.metric-card,
.feature-card,
.step-card,
.proof-card,
.offer-box,
.faq-item,
.stage-card,
.floating-stat {
  background:
    radial-gradient(circle at top right, rgba(84, 168, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(13, 21, 41, 0.94), rgba(8, 14, 28, 0.97));
  border: 1px solid rgba(95, 144, 255, 0.14);
  box-shadow: var(--shadow-soft);
}

.proof-chip,
.metric-card {
  padding: 18px 20px;
  border-radius: var(--radius-md);
}

.proof-chip strong,
.metric-card strong,
.proof-copy strong,
.feature-card h3,
.step-card h3,
.floating-stat strong {
  display: block;
  color: var(--text);
}

.proof-chip strong,
.metric-card strong {
  font-size: 1rem;
}

.proof-chip span,
.metric-card span,
.floating-stat span,
.feature-index,
.step-no,
.proof-copy span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-metrics {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.metric-card strong {
  margin-top: 10px;
  font-size: 1.24rem;
}

.hero-stage {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: center;
  justify-content: center;
  --stage-shift: 0px;
  transform: translateY(var(--stage-shift));
  will-change: transform;
}

.stage-halo {
  position: absolute;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(84, 168, 255, 0.18) 0%, rgba(109, 92, 255, 0.08) 34%, transparent 68%);
  filter: blur(16px);
  animation: pulseHalo 7s ease-in-out infinite;
}

.phone {
  position: relative;
  z-index: 3;
  width: min(390px, 68vw);
  aspect-ratio: 9 / 18.8;
  border-radius: 48px;
  background:
    linear-gradient(150deg, rgba(50, 82, 162, 0.92) 0%, rgba(20, 29, 58, 0.98) 12%, rgba(8, 12, 22, 0.99) 30%, rgba(4, 8, 18, 1) 72%, rgba(97, 82, 207, 0.88) 100%);
  border: 1px solid rgba(110, 154, 255, 0.22);
  box-shadow:
    0 40px 120px rgba(0, 0, 0, 0.78),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 16%, transparent 82%, rgba(0, 0, 0, 0.26)),
    linear-gradient(90deg, rgba(61, 227, 255, 0.18), transparent 16%, transparent 84%, rgba(109, 92, 255, 0.12)),
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.14), transparent 26%);
  pointer-events: none;
}

.phone::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 40px;
  border: 1px solid rgba(103, 147, 255, 0.26);
  pointer-events: none;
}

.phone-shell {
  position: absolute;
  inset: 14px;
  border-radius: 38px;
  background: #020202;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 46%;
  height: 26px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background: linear-gradient(180deg, rgba(13, 13, 15, 0.98), rgba(0, 0, 0, 0.98));
  z-index: 2;
}

.phone-screen {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(215, 167, 77, 0.08), transparent 46%),
    #030303;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #030814;
}

.stage-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  background: #030814;
}

.hero-device-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  background: #030814;
}

.testimonial-band {
  padding: 38px 0 22px;
}

.testimonial-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.testimonial-mini {
  padding: 20px 14px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(8, 14, 29, 0.78), rgba(5, 9, 20, 0.86)),
    radial-gradient(circle at top left, rgba(61, 227, 255, 0.05), transparent 28%);
  border: 1px solid rgba(140, 190, 255, 0.08);
  text-align: center;
  color: #dfeaff;
}

.testimonial-mini p {
  font-size: 0.94rem;
  line-height: 1.75;
  color: #cbd8f8;
}

.testimonial-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.testimonial-meta img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-meta strong {
  display: block;
  font-size: 0.95rem;
  color: var(--text);
}

.testimonial-meta span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.stars {
  margin-top: 10px;
  color: transparent;
  font-size: 0;
}

.stars::before {
  content: "\2605\2605\2605\2605\2605";
  color: #ffffff;
  letter-spacing: 0.18em;
  font-size: 1rem;
}

.stage-card {
  position: absolute;
  width: min(210px, 32vw);
  padding: 12px;
  border-radius: 28px;
  backdrop-filter: blur(12px);
}

.stage-card img {
  width: 100%;
  aspect-ratio: 1.08;
  object-fit: cover;
  border-radius: 18px;
}

.stage-card--landscape img {
  aspect-ratio: 1.28;
  object-fit: cover;
}

.stage-card--logo img {
  aspect-ratio: 1.18;
  object-fit: contain;
  padding: 18px;
  background:
    radial-gradient(circle at top center, rgba(61, 227, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(6, 12, 25, 0.96), rgba(4, 8, 18, 0.98));
}

.stage-card-copy {
  padding: 14px 8px 4px;
}

.stage-card-copy strong {
  display: block;
  color: var(--text);
  font-size: 0.98rem;
}

.stage-card-copy span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.86rem;
}

.stage-card-left {
  left: 0;
  top: 90px;
  transform: rotate(-8deg);
}

.stage-card-right {
  right: 8px;
  bottom: 70px;
  transform: rotate(9deg);
}

.floating-stat {
  position: absolute;
  z-index: 4;
  min-width: 220px;
  padding: 18px 20px;
  border-radius: 24px;
  backdrop-filter: blur(12px);
  background:
    radial-gradient(circle at top right, rgba(61, 227, 255, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(13, 20, 38, 0.96), rgba(8, 13, 25, 0.98));
  border: 1px solid rgba(96, 140, 255, 0.16);
}

.floating-stat strong {
  margin-top: 8px;
  font-size: 1.05rem;
}

.stat-top {
  right: 24px;
  top: 42px;
}

.stat-bottom {
  left: 34px;
  bottom: 24px;
}

.asset-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.asset-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: asset-loop 34s linear infinite;
}

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

.asset-grid {
  display: flex;
  gap: 18px;
  width: max-content;
}

.asset {
  width: 182px;
  min-width: 182px;
  padding: 20px 18px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(9, 16, 31, 0.94), rgba(5, 10, 20, 0.98)),
    radial-gradient(circle at top left, rgba(69, 216, 255, 0.05), transparent 26%);
  border: 1px solid rgba(140, 190, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.asset-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

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

.pair img:first-child {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.pair strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
}

.pair span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.82rem;
}

.delta {
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.08em;
}

.delta.up {
  color: #fff2d7;
  background: rgba(215, 167, 77, 0.18);
}

.delta.down {
  color: #f2ddbe;
  background: rgba(255, 255, 255, 0.08);
}

.chart {
  margin-top: 20px;
  border-radius: 14px;
}

.meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.82rem;
}

.section {
  padding: 110px 0;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
}

.workflow-copy h2,
.offer-copy h2 {
  margin-top: 18px;
  font-size: clamp(2.3rem, 4.8vw, 4.2rem);
}

.workflow-copy > p,
.offer-copy > p {
  margin-top: 18px;
  max-width: 620px;
}

.workflow-steps,
.faq-list {
  display: grid;
  gap: 16px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.section-head.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-head h2 {
  margin-top: 18px;
  max-width: 760px;
  font-size: clamp(2.3rem, 4.8vw, 4.1rem);
}

.section-head p {
  max-width: 460px;
}

.section-head.centered p {
  max-width: 760px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.proof-card img {
  width: 100%;
  aspect-ratio: 1 / 1.08;
  object-fit: cover;
}

.proof-card-wide {
  grid-column: span 2;
}

.proof-card-wide img {
  aspect-ratio: 1.62 / 1;
}

.proof-copy {
  padding: 18px 20px 22px;
}

.proof-copy span {
  display: inline-block;
}

.proof-copy strong {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--text);
}

.proof-card-quote {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.quote-mark {
  font-family: Bahnschrift, "Trebuchet MS", "Segoe UI", sans-serif;
  font-weight: 800;
  font-size: 5rem;
  line-height: 1;
  color: rgba(241, 209, 138, 0.18);
}

.proof-card-quote p {
  margin-top: 4px;
  color: #f2eadb;
  font-size: 1.08rem;
  line-height: 1.7;
}

.proof-card-quote span {
  margin-top: 18px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

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

.feature-card,
.step-card {
  padding: 26px;
  border-radius: var(--radius-lg);
}

.feature-index,
.step-no {
  display: inline-flex;
  margin-bottom: 18px;
}

.feature-card h3,
.step-card h3 {
  font-size: 1.24rem;
}

.feature-card p,
.step-card p {
  margin-top: 10px;
}

.workflow-grid {
  align-items: start;
}

.workflow-steps {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offer-box {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding: 42px;
  border-radius: var(--radius-xl);
}

.offer-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(241, 209, 138, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(215, 167, 77, 0.08), transparent 42%);
  pointer-events: none;
}

.offer-copy,
.offer-actions {
  position: relative;
  z-index: 1;
}

.offer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.offer-actions {
  align-self: center;
  justify-content: flex-end;
}

.card {
  border-radius: var(--radius-lg);
}

.faq-list {
  margin-top: 24px;
}

.faq-item {
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-btn span:last-child {
  font-size: 1.4rem;
  color: var(--gold-soft);
  transition: transform 0.2s ease;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  padding: 0 26px 24px;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-btn span:last-child {
  transform: rotate(45deg);
}

.footer {
  padding: 28px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: 24px;
}

.footer-brand {
  margin-bottom: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes pulseHalo {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes asset-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(14px, -16px, 0);
  }
}

@media (max-width: 1160px) {
  .nav {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 16px 0;
  }

  .hero-grid,
  .workflow-grid,
  .offer-box,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 680px;
  }

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

  .section-head,
  .section-head.centered {
    align-items: flex-start;
    text-align: left;
  }

  .feature-grid,
  .workflow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .asset-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .asset-track {
    animation: none;
  }

  .asset-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .asset {
    width: auto;
    min-width: 0;
  }
}

@media (max-width: 920px) {
  .hero {
    padding-top: 36px;
  }

  .hero-grid {
    min-height: auto;
    gap: 28px;
  }

  .hero-proof,
  .hero-metrics,
  .proof-grid,
  .feature-grid,
  .workflow-steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .proof-card-wide {
    grid-column: auto;
  }

  .phone {
    width: min(360px, 100%);
  }

  .stage-card {
    width: 170px;
  }

  .floating-stat {
    min-width: 180px;
  }

}

@media (max-width: 720px) {
  .wrap {
    width: min(100vw - 20px, 100%);
  }

  .nav-links {
    gap: 14px;
  }

  .nav-actions,
  .hero-actions,
  .offer-actions {
    width: 100%;
  }

  .nav-btn,
  .hero-btn,
  .cta-btn {
    width: 100%;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 4.2rem);
  }

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

  .stage-card {
    display: none;
  }

  .floating-stat {
    position: absolute;
    min-width: 0;
    width: calc(50% - 10px);
    padding: 16px;
  }

  .stat-top {
    right: 0;
    top: 14px;
  }

  .stat-bottom {
    left: 0;
    bottom: 14px;
  }

  .section {
    padding: 78px 0;
  }

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

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

  .feature-card,
  .step-card,
  .proof-card-quote,
  .offer-box {
    padding: 22px;
  }

  .offer-box {
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    font-size: 1rem;
  }

  .brand-sub {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
  }

  .hero-points,
  .offer-tags {
    flex-direction: column;
  }

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

  .phone {
    width: min(320px, 100%);
    border-radius: 38px;
  }

  .phone::after {
    inset: 8px;
    border-radius: 30px;
  }

  .phone-shell {
    inset: 12px;
    border-radius: 28px;
  }

  .floating-stat {
    position: static;
    width: 100%;
  }

  .hero-stage {
    display: grid;
    gap: 14px;
    justify-items: center;
  }

  .stage-halo {
    width: 520px;
    height: 520px;
  }
}

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

body,
button,
input,
select,
textarea {
  font-family: var(--font-ui) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-mark,
.kicker,
.hero-hook,
.section-head h2,
.testimonial-mini strong,
.pair strong,
.delta,
.stage-card-copy strong,
.floating-stat strong,
.offer-card h3,
.faq-item summary,
.hero-points span {
  font-family: var(--font-display) !important;
  letter-spacing: -0.02em !important;
}

.nav-links a,
.nav-btn,
.hero-btn,
.hero-points span,
.testimonial-mini p,
.testimonial-meta span,
.meta span,
.offer-meta,
.faq-item p {
  font-family: var(--font-ui) !important;
  letter-spacing: 0.01em !important;
}

.hero,
.testimonial-band,
.section,
.offer-card,
.faq-item,
.stage-card {
  backdrop-filter: blur(18px);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(84, 168, 255, 0.08), transparent 38%, rgba(57, 229, 140, 0.05) 72%, transparent 100%);
}
