/* ==========================================================================
   AskedOut marketing site
   Brand system pulled directly from the app (lib/core/theme/):
   Playfair Display (serif, display) + Inter (sans, body/UI).
   Palette: near-white background, black primary, white accent, grey secondary.
   ========================================================================== */

:root {
  --bg: #fdfdfd;
  --bg-alt: #f6f5f3;
  --ink: #0a0a0a;
  --ink-soft: #1c1c1c;
  --grey: #6b6b6b;
  --grey-light: #9a9a9a;
  --hairline: rgba(10, 10, 10, 0.1);
  --hairline-soft: rgba(10, 10, 10, 0.06);
  --white: #ffffff;
  --gold: #b08d57;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --container: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

h1,
h2,
h3,
h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

.overline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--grey);
}

.overline.on-dark {
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(253, 253, 253, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 100px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}

.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--ink-soft);
}

.nav-toggle {
  display: none;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 100px;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: var(--ink-soft);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--hairline);
  color: var(--ink);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
}

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

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 200px 0 140px;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -280px;
  right: -220px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.14) 0%, rgba(176, 141, 87, 0) 68%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 26px;
}

.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.hero h1 {
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.05;
  margin-bottom: 26px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: 18px;
  color: var(--grey);
  max-width: 460px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 46px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stat b {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
}

.hero-stat span {
  font-size: 12.5px;
  color: var(--grey);
}

/* ---------- phone mockup ---------- */
.phone-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 620px;
}

.phone-stage::before {
  content: '';
  position: absolute;
  width: 380px;
  height: 380px;
  background: var(--ink);
  border-radius: 50%;
  opacity: 0.035;
  filter: blur(10px);
}

.phone {
  position: relative;
  width: 290px;
  height: 590px;
  background: var(--ink);
  border-radius: 44px;
  padding: 12px;
  box-shadow: 0 40px 90px -20px rgba(0, 0, 0, 0.35), 0 10px 30px -8px rgba(0, 0, 0, 0.25);
  transform: rotate(-3deg);
  animation: floatPhone 6s ease-in-out infinite;
}

@keyframes floatPhone {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-14px); }
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(165deg, #3a352f 0%, #16130f 45%, #050505 100%);
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 22px;
  background: var(--ink);
  border-radius: 20px;
  z-index: 5;
}

.phone-card-photo {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 30% 15%, rgba(255, 255, 255, 0.14), transparent 55%),
    linear-gradient(200deg, #5c5347 0%, #2a251f 55%, #0c0a08 100%);
}

.verified-pill {
  position: absolute;
  top: 46px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 10.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

.verified-pill svg {
  width: 12px;
  height: 12px;
}

.phone-card-info {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 108px;
  color: #fff;
}

.phone-card-info .name-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
}

.phone-card-info .name-row span {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.75;
}

.phone-card-info .loc {
  font-size: 12.5px;
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 5px;
}

.phone-actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.phone-action-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.phone-action-btn svg {
  width: 18px;
  height: 18px;
}

.phone-action-btn.pass { background: #fff; color: #0a0a0a; }
.phone-action-btn.like { background: #0a0a0a; color: #fff; width: 56px; height: 56px; }
.phone-action-btn.like svg { width: 22px; height: 22px; }
.phone-action-btn.message { background: #fff; color: var(--gold); }

.floating-chip {
  position: absolute;
  z-index: 5;
  background: #fff;
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 600;
  animation: floatChip 5s ease-in-out infinite;
}

.floating-chip.chip-1 {
  top: 60px;
  left: -48px;
  animation-delay: 0.4s;
}

.floating-chip.chip-2 {
  bottom: 130px;
  right: -26px;
  animation-delay: 1.1s;
}

@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.chip-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}

.chip-icon svg {
  width: 15px;
  height: 15px;
}

.chip-text small {
  display: block;
  font-weight: 400;
  color: var(--grey);
  font-size: 11px;
  margin-top: 1px;
}

/* ---------- section shared ---------- */
section {
  padding: 130px 0;
}

.section-head {
  max-width: 620px;
  margin-bottom: 72px;
}

.section-head.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head .overline {
  margin-bottom: 18px;
  display: block;
}

.section-head h2 {
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-head p {
  color: var(--grey);
  font-size: 16.5px;
  line-height: 1.75;
}

/* ---------- pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pillar {
  background: var(--bg);
  padding: 48px 34px;
  transition: background 0.4s var(--ease);
}

.pillar:hover {
  background: var(--bg-alt);
}

.pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: var(--ink);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
}

.pillar h3 {
  font-size: 19px;
  margin-bottom: 12px;
}

.pillar p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
}

/* ---------- feature rows ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.feature-row + .feature-row {
  margin-top: 150px;
}

.feature-row.reverse .feature-visual {
  order: 2;
}

.feature-row.reverse .feature-copy {
  order: 1;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}

.feature-copy h3 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.feature-copy p {
  color: var(--grey);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 28px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.feature-list svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}

.feature-visual {
  position: relative;
  aspect-ratio: 1 / 0.82;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(155deg, var(--bg-alt) 0%, #ececea 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline-soft);
}

.visual-mock {
  width: 78%;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.visual-mock-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--hairline-soft);
}

.visual-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hairline);
}

.visual-mock-body {
  padding: 24px 20px 28px;
}

.msg-bubble {
  max-width: 78%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.msg-bubble.in {
  background: var(--bg-alt);
  color: var(--ink);
  border-bottom-left-radius: 4px;
}

.msg-bubble.out {
  background: var(--ink);
  color: #fff;
  margin-left: auto;
  border-bottom-right-radius: 4px;
}

.lock-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10.5px;
  color: var(--grey-light);
  margin: 18px 0 4px;
  letter-spacing: 0.3px;
}

.lock-row svg {
  width: 11px;
  height: 11px;
}

.grid-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 20px;
}

.grid-photos div {
  aspect-ratio: 1;
  border-radius: 10px;
  background: linear-gradient(150deg, #4a443c, #17140f);
}

.grid-photos div:nth-child(2) { background: linear-gradient(150deg, #6b6258, #201c17); }
.grid-photos div:nth-child(3) { background: linear-gradient(150deg, #55504a, #0d0b09); }
.grid-photos div:nth-child(5) { background: linear-gradient(150deg, #3f3a33, #121110); }

.badge-check {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-alt);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin: 18px 20px 0;
}

.badge-check svg {
  width: 13px;
  height: 13px;
  color: var(--gold);
}

/* ---------- premium (dark) ---------- */
.premium {
  background: var(--ink);
  color: #fff;
  border-radius: 40px;
  margin: 0 auto;
  max-width: calc(var(--container) + 64px);
  padding: 100px 80px;
  position: relative;
  overflow: hidden;
}

.premium::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.22), transparent 70%);
}

.premium::after {
  content: '';
  position: absolute;
  bottom: -160px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
}

.premium-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(176, 141, 87, 0.16);
  border: 1px solid rgba(176, 141, 87, 0.4);
  color: var(--gold);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  text-transform: uppercase;
}

.premium h2 {
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.18;
  margin-bottom: 22px;
  color: #fff;
}

.premium p.lead {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 440px;
}

.premium-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 28px;
}

.perk {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.perk:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.22);
}

.perk-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(176, 141, 87, 0.18);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.perk-icon svg {
  width: 16px;
  height: 16px;
}

.perk-more {
  grid-column: 1 / -1;
  justify-content: center;
  padding: 16px;
  background: transparent;
  border-style: dashed;
}

.perk-more p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
}

.perk h4 {
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.perk p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

/* ---------- trust ---------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.trust-card {
  padding: 42px 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline-soft);
  background: var(--bg);
}

.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: var(--gold);
  margin-bottom: 18px;
  font-style: italic;
}

.trust-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.75;
}

/* ---------- quote ---------- */
.quote-section {
  text-align: center;
}

.quote-section blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.4;
  max-width: 820px;
  margin: 0 auto 28px;
}

.quote-section cite {
  font-style: normal;
  font-size: 13px;
  color: var(--grey);
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* ---------- download / CTA ---------- */
.cta-banner {
  border-radius: 40px;
  background: var(--bg-alt);
  padding: 90px 60px;
  text-align: center;
  border: 1px solid var(--hairline-soft);
}

.cta-banner h2 {
  font-size: clamp(32px, 4.2vw, 50px);
  margin-bottom: 20px;
}

.cta-banner p {
  color: var(--grey);
  font-size: 16.5px;
  max-width: 480px;
  margin: 0 auto 42px;
  line-height: 1.7;
}

.store-badges {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: #fff;
  padding: 13px 26px;
  border-radius: 14px;
  opacity: 0.45;
  cursor: default;
  user-select: none;
}

.store-badge svg {
  width: 24px;
  height: 24px;
}

.store-badge .store-text {
  text-align: left;
  line-height: 1.2;
}

.store-badge .store-text small {
  display: block;
  font-size: 10px;
  opacity: 0.7;
}

.store-badge .store-text strong {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.waitlist-note {
  margin-top: 22px;
  font-size: 12.5px;
  color: var(--grey-light);
}

.waitlist-note a {
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--hairline);
}

/* ---------- footer ---------- */
footer {
  padding: 70px 0 40px;
  border-top: 1px solid var(--hairline-soft);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

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

.footer-brand p {
  color: var(--grey);
  font-size: 13.5px;
  line-height: 1.75;
  max-width: 280px;
}

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.25s;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  border-top: 1px solid var(--hairline-soft);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12.5px;
  color: var(--grey-light);
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a {
  font-size: 12.5px;
  color: var(--grey-light);
}

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

/* ---------- simple legal page ---------- */
.legal-page {
  padding: 180px 0 120px;
}

.legal-page .container {
  max-width: 760px;
}

.legal-page h1 {
  font-size: clamp(34px, 4.5vw, 48px);
  margin-bottom: 24px;
}

.legal-page .lead {
  color: var(--grey);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.legal-page .status-box {
  padding: 28px 32px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  background: var(--bg-alt);
}

.legal-page .status-box p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.legal-page .status-box p + p {
  margin-top: 14px;
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero {
    padding: 150px 0 90px;
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-stats {
    justify-content: center;
  }

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

  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .feature-row.reverse .feature-visual,
  .feature-row.reverse .feature-copy,
  .feature-row .feature-visual {
    order: initial;
  }

  .premium-inner {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .premium {
    padding: 70px 40px;
    border-radius: 28px;
  }

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

  .footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
}

@media (max-width: 680px) {
  .container {
    padding: 0 22px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 78%;
    max-width: 320px;
    background: #fff;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 40px;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
  }

  .nav-links.is-open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    z-index: 200;
  }

  .nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    transition: transform 0.3s, opacity 0.3s;
  }

  section {
    padding: 90px 0;
  }

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

  .premium-perks {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 60px 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .phone {
    width: 250px;
    height: 508px;
  }

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