@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,400;0,14..32,500;0,14..32,600;0,14..32,700;0,14..32,800;0,14..32,900&display=swap');

:root {
  --bg: #060410;
  --bg2: #0d0819;
  --card: rgba(255,255,255,.07);
  --card2: rgba(255,255,255,.11);
  --line: rgba(255,255,255,.11);
  --line2: rgba(255,255,255,.18);
  --text: #f4f0ff;
  --muted: #9d8eb8;
  --soft: #ccc1e8;
  --purple: #8b5cf6;
  --purple2: #a78bfa;
  --purple3: #c084fc;
  --rose: #e879f9;
  --cyan: #67e8f9;
  --amber: #fbbf24;
  --green: #4ade80;
  --shadow-deep: 0 60px 140px rgba(0,0,0,.8), 0 8px 32px rgba(0,0,0,.5);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, sans-serif;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(139,92,246,.28) 0%, transparent 38%),
    radial-gradient(ellipse at 78% 0%, rgba(103,232,249,.08) 0%, transparent 32%),
    radial-gradient(ellipse at 50% 100%, rgba(139,92,246,.12) 0%, transparent 50%),
    linear-gradient(180deg, #060410 0%, #0d0819 50%, #07060f 100%);
  color: var(--text);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: .055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Header ─────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 54px);
  backdrop-filter: blur(24px) saturate(1.4);
  background: rgba(6,4,16,.78);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; letter-spacing: -.04em; font-size: 17px;
}
.brand-icon {
  width: 36px; height: 36px; border-radius: 11px; object-fit: cover;
  box-shadow: 0 0 24px rgba(139,92,246,.5), 0 0 48px rgba(139,92,246,.2);
}
.desktop-nav { display: flex; align-items: center; gap: 26px; color: var(--muted); font-size: 14px; font-weight: 500; }
.desktop-nav a:hover { color: var(--text); transition: color .2s; }
.header-cta {
  padding: 10px 18px; border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px; background: rgba(255,255,255,.07);
  color: var(--soft); font-weight: 600; font-size: 14px;
  transition: background .2s, border-color .2s;
}
.header-cta:hover { background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.22); }

/* ── Layout ──────────────────────────────────── */
.section-pad { padding: clamp(64px, 9vw, 120px) clamp(18px, 4vw, 54px); max-width: 1180px; margin: 0 auto; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 70px);
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan); font-weight: 700; font-size: 12px;
  letter-spacing: .18em; text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(50px, 8vw, 96px);
  line-height: .9; letter-spacing: -.08em; margin-bottom: 24px;
  background: linear-gradient(145deg, #fff 30%, rgba(200,185,255,.85) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
h2 { font-size: clamp(30px, 5vw, 56px); line-height: .95; letter-spacing: -.07em; margin-bottom: 20px; }
h3 { font-size: 17px; letter-spacing: -.03em; margin-bottom: 8px; }
.hero-sub, .split p, .capture p, .waitlist-card > p, .centered p {
  color: var(--muted); font-size: clamp(16px, 2vw, 19px); line-height: 1.6;
}
.hero-actions { display: flex; gap: 12px; margin: 32px 0 28px; flex-wrap: wrap; }
.btn {
  display: inline-flex; justify-content: center; align-items: center;
  min-height: 52px; padding: 0 24px; border-radius: 16px; font-weight: 750; font-size: 15px;
}
.btn.primary {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple3) 100%);
  color: white;
  box-shadow: 0 0 0 1px rgba(139,92,246,.5), 0 20px 50px rgba(139,92,246,.4), 0 4px 16px rgba(139,92,246,.3);
  transition: box-shadow .3s, transform .2s;
}
.btn.primary:hover {
  box-shadow: 0 0 0 1px rgba(139,92,246,.7), 0 24px 60px rgba(139,92,246,.55), 0 4px 20px rgba(139,92,246,.4);
  transform: translateY(-1px);
}
.btn.secondary {
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06); color: var(--soft);
  transition: background .2s, border-color .2s;
}
.btn.secondary:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); }
.trust-row { display: flex; gap: 8px; flex-wrap: wrap; color: var(--muted); font-size: 12px; font-weight: 500; }
.trust-row span {
  padding: 7px 12px; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
}

/* ── Hero visual / Card ───────────────────────── */
.hero-visual {
  position: relative; min-height: 620px;
  display: grid; place-items: center;
  perspective: 1400px;
}

.floating-card {
  width: min(390px, 90vw);
  border-radius: 28px;
  position: relative;
  overflow: hidden;
  padding: 24px 24px 22px;
  transform: rotate(-2.5deg) rotateY(4deg);
  transition: transform .5s cubic-bezier(.25,.46,.45,.94), box-shadow .5s ease;

  background:
    /* diagonal metallic shimmer */
    linear-gradient(112deg,
      transparent 20%,
      rgba(255,255,255,.025) 28%,
      rgba(255,255,255,.09)  38%,
      rgba(255,255,255,.025) 48%,
      transparent 56%),
    /* brand purple bloom top-left */
    radial-gradient(ellipse at 18% -12%, rgba(139,92,246,.65) 0%, transparent 52%),
    /* rose holographic accent bottom-right */
    radial-gradient(ellipse at 95% 115%, rgba(216,78,200,.22) 0%, transparent 42%),
    /* card base */
    linear-gradient(168deg, #1d1138 0%, #0b0614 52%, #14102c 100%);

  border-top:    1px solid rgba(255,255,255,.30);
  border-left:   1px solid rgba(255,255,255,.18);
  border-right:  1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.06);

  box-shadow:
    0 0 0 1px rgba(0,0,0,.95),
    0 60px 140px rgba(0,0,0,.85),
    0 12px 40px rgba(0,0,0,.5),
    0 0 100px rgba(120,50,255,.28),
    inset 0 1.5px 0 rgba(255,255,255,.24),
    inset 0 -1px 0 rgba(0,0,0,.5);
}

/* holographic top edge strip */
.floating-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg,
    transparent 5%,
    rgba(167,139,250,.0) 12%,
    rgba(167,139,250,.85) 28%,
    rgba(232,121,249,1)   50%,
    rgba(167,139,250,.85) 72%,
    rgba(167,139,250,.0) 88%,
    transparent 95%);
}

/* subtle scanline texture for depth */
.floating-card::after {
  content: '';
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: repeating-linear-gradient(
    0deg, transparent, transparent 3px,
    rgba(255,255,255,.006) 3px, rgba(255,255,255,.006) 4px
  );
}

.hero-visual:hover .floating-card {
  transform: rotate(-1.5deg) rotateY(2deg) translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.95),
    0 70px 160px rgba(0,0,0,.9),
    0 12px 40px rgba(0,0,0,.5),
    0 0 120px rgba(120,50,255,.38),
    inset 0 1.5px 0 rgba(255,255,255,.24),
    inset 0 -1px 0 rgba(0,0,0,.5);
}

.card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; position: relative; z-index: 3; }
.card-kicker {
  color: rgba(167,139,250,.9); font-weight: 800;
  text-transform: uppercase; letter-spacing: .18em; font-size: 10px;
  margin-bottom: 10px;
  text-shadow: 0 0 20px rgba(167,139,250,.5);
}
.card-top h2 {
  font-size: 29px; line-height: 1; margin: 0 0 5px; letter-spacing: -.06em;
  background: linear-gradient(140deg, #fff 0%, rgba(230,220,255,.88) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.card-top > div > p { color: var(--muted); margin: 0; font-size: 13px; font-weight: 500; }

.mini-logo img {
  width: 48px; height: 48px; border-radius: 14px; object-fit: cover;
  box-shadow: 0 0 24px rgba(139,92,246,.55), 0 0 48px rgba(139,92,246,.2), 0 4px 12px rgba(0,0,0,.4);
}

.portrait-frame {
  position: relative; z-index: 3;
  margin: 20px 0 16px;
  aspect-ratio: 1.38 / .88; border-radius: 20px; overflow: hidden;
  background: linear-gradient(150deg, rgba(139,92,246,.12) 0%, rgba(12,8,24,.9) 100%);
  border-top:    1px solid rgba(255,255,255,.18);
  border-left:   1px solid rgba(255,255,255,.12);
  border-right:  1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.04);
  box-shadow: inset 0 2px 16px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.06);
}
.portrait-glow {
  position: absolute; inset: 8%; filter: blur(55px);
  background: radial-gradient(circle, rgba(139,92,246,.75) 0%, rgba(192,132,252,.3) 50%, transparent 75%);
}
.portrait-placeholder {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 68px; font-weight: 900; letter-spacing: -.08em;
  background: linear-gradient(145deg, #fff 0%, rgba(200,180,255,.8) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(139,92,246,.6));
}

.icon-strip { display: flex; gap: 9px; align-items: center; position: relative; z-index: 3; }
.icon-pill {
  width: 46px; height: 46px; border-radius: 14px;
  background: linear-gradient(160deg, rgba(255,255,255,.11), rgba(255,255,255,.03));
  border-top:    1px solid rgba(255,255,255,.22);
  border-left:   1px solid rgba(255,255,255,.14);
  border-right:  1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.05);
  color: rgba(255,255,255,.88); display: grid; place-items: center;
  font-weight: 800; cursor: pointer; font-size: 14px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 4px 12px rgba(0,0,0,.35);
  transition: all .15s ease;
}
.icon-pill:hover { background: linear-gradient(160deg, rgba(255,255,255,.16), rgba(255,255,255,.06)); }
.icon-pill.open {
  color: rgba(74,222,128,.95);
  box-shadow: inset 0 1px 0 rgba(74,222,128,.15), 0 0 18px rgba(74,222,128,.1), 0 4px 12px rgba(0,0,0,.35);
}
.icon-pill.locked {
  color: var(--amber);
  background: linear-gradient(160deg, rgba(251,191,36,.14), rgba(251,191,36,.04));
  border-top-color: rgba(251,191,36,.25);
  border-left-color: rgba(251,191,36,.15);
  border-right-color: rgba(251,191,36,.06);
  border-bottom-color: rgba(251,191,36,.05);
  box-shadow: 0 0 20px rgba(251,191,36,.08), 0 4px 12px rgba(0,0,0,.35);
}

.card-footer { margin-top: 18px; display: flex; align-items: center; gap: 8px; position: relative; z-index: 3; }
.status {
  font-size: 11px; font-weight: 600; letter-spacing: .01em;
  border: 1px solid rgba(255,255,255,.09); padding: 7px 10px; border-radius: 999px; color: var(--muted);
}
.open-dot { color: var(--green); border-color: rgba(74,222,128,.18); }
.lock-dot { color: var(--amber); border-color: rgba(251,191,36,.18); }
.save-mini {
  margin-left: auto; padding: 9px 18px; border-radius: 999px; border: none;
  background: linear-gradient(135deg, #fff 0%, #ede8ff 100%);
  color: #110929; font-weight: 800; font-size: 12px; letter-spacing: -.01em;
  box-shadow: 0 0 24px rgba(255,255,255,.22), 0 4px 16px rgba(255,255,255,.1), inset 0 1px 0 rgba(255,255,255,.6);
  cursor: pointer; transition: box-shadow .2s;
}
.save-mini:hover { box-shadow: 0 0 32px rgba(255,255,255,.3), 0 4px 20px rgba(255,255,255,.15); }

/* shadow / background cards */
.shadow-card {
  position: absolute; width: 200px; border-radius: 22px; padding: 20px;
  border-top: 1px solid rgba(255,255,255,.2);
  border-left: 1px solid rgba(255,255,255,.13);
  border-right: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.04);
  box-shadow: 0 0 0 1px rgba(0,0,0,.85), 0 30px 70px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.16);
  color: var(--muted); font-size: 13px; font-weight: 500;
}
.shadow-card strong { display: block; color: rgba(255,255,255,.9); margin-top: 6px; font-size: 14px; font-weight: 700; letter-spacing: -.02em; }

.social-shadow {
  right: 0%; top: 12%; transform: rotate(5deg);
  background:
    radial-gradient(ellipse at 18% -12%, rgba(236,72,153,.45) 0%, transparent 52%),
    linear-gradient(168deg, #1e0f25 0%, #0d0814 100%);
}
.private-shadow {
  left: -2%; bottom: 10%; transform: rotate(-6deg);
  background:
    radial-gradient(ellipse at 18% -12%, rgba(16,185,129,.35) 0%, transparent 52%),
    linear-gradient(168deg, #0e1a18 0%, #09100f 100%);
}

/* ── Audience strip ──────────────────────────── */
.logos-section { padding-top: 0; text-align: center; color: var(--muted); font-size: 15px; font-weight: 500; }
.audience-pills { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }
.audience-pills span {
  padding: 10px 16px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); color: var(--soft);
  font-size: 13px; font-weight: 600;
}

/* ── How it works ────────────────────────────── */
.split { display: grid; grid-template-columns: .8fr 1fr; gap: 40px; align-items: start; }
.steps { display: grid; gap: 12px; }
.step {
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.025));
  border-radius: 22px; padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}
.step span { color: var(--purple2); font-weight: 800; font-size: 12px; letter-spacing: .1em; }
.step p, .pass-card p, .features p { color: var(--muted); line-height: 1.55; margin-bottom: 0; font-size: 14px; }

/* ── Passes ──────────────────────────────────── */
.centered { max-width: 760px; margin: 0 auto 40px; text-align: center; }
.pass-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pass-card {
  padding: 26px; min-height: 300px; border-radius: 28px;
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: 0 30px 80px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.08);
}
.pass-business {
  background:
    radial-gradient(ellipse at 20% -10%, rgba(139,92,246,.25) 0%, transparent 55%),
    linear-gradient(155deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
}
.pass-social {
  background:
    radial-gradient(ellipse at 20% -10%, rgba(236,72,153,.22) 0%, transparent 55%),
    linear-gradient(155deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.pass-private {
  background:
    radial-gradient(ellipse at 20% -10%, rgba(16,185,129,.2) 0%, transparent 55%),
    linear-gradient(155deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
}
.pass-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.pass-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.pass-business .pass-dot { background: var(--purple2); box-shadow: 0 0 18px var(--purple2); }
.pass-social   .pass-dot { background: var(--rose);    box-shadow: 0 0 18px var(--rose); }
.pass-private  .pass-dot { background: var(--green);   box-shadow: 0 0 18px var(--green); }
.pass-card ul { padding-left: 18px; color: var(--soft); line-height: 1.9; margin-bottom: 0; font-size: 13px; }

/* ── Capture mode ────────────────────────────── */
.capture-panel {
  display: grid; grid-template-columns: 1fr 320px; align-items: center; gap: 40px;
  border-radius: 34px; padding: clamp(24px, 5vw, 56px);
  background:
    radial-gradient(ellipse at 100% 0%, rgba(103,232,249,.12) 0%, transparent 50%),
    linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.mini-actions { display: flex; gap: 9px; flex-wrap: wrap; margin-top: 22px; }
.mini-actions span {
  color: var(--soft); padding: 9px 13px; border-radius: 999px; font-size: 13px; font-weight: 600;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
}
.capture-phone {
  border-radius: 32px; padding: 22px;
  background: linear-gradient(165deg, #120c22 0%, #0a0712 100%);
  border-top: 1px solid rgba(255,255,255,.18);
  border-left: 1px solid rgba(255,255,255,.12);
  border-right: 1px solid rgba(255,255,255,.05);
  border-bottom: 1px solid rgba(255,255,255,.04);
  box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(255,255,255,.1);
}
.phone-top { display: flex; flex-direction: column; gap: 4px; }
.phone-top strong { font-size: 16px; letter-spacing: -.03em; }
.phone-top small { color: var(--muted); font-size: 12px; font-weight: 500; }
.qr-box {
  margin: 20px auto; width: 160px; height: 160px; border-radius: 22px; background: white;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 18px;
  box-shadow: 0 0 30px rgba(255,255,255,.12);
}
.qr-box span { border-radius: 10px; background: #100a1e; }
.phone-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.phone-stats div { padding: 14px; border-radius: 16px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); }
.phone-stats strong { display: block; font-size: 26px; letter-spacing: -.04em; }
.phone-stats span { color: var(--muted); font-size: 11px; font-weight: 600; }
.capture-phone button {
  margin-top: 14px; width: 100%; padding: 14px; border: none; border-radius: 16px;
  background: linear-gradient(135deg, var(--purple), var(--purple3));
  color: white; font-weight: 800; font-size: 14px;
  box-shadow: 0 8px 24px rgba(139,92,246,.35);
}

/* ── Features ────────────────────────────────── */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.features div {
  border: 1px solid rgba(255,255,255,.09);
  background: linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border-radius: 22px; padding: 22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

/* ── Waitlist ─────────────────────────────────── */
.waitlist-card {
  max-width: 720px; margin: 0 auto; text-align: center;
  border-radius: 36px; padding: clamp(32px, 5vw, 60px);
  background:
    radial-gradient(ellipse at 50% -10%, rgba(139,92,246,.3) 0%, transparent 55%),
    linear-gradient(155deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  border-top:   1px solid rgba(255,255,255,.24);
  border-left:  1px solid rgba(255,255,255,.14);
  border-right: 1px solid rgba(255,255,255,.07);
  border-bottom:1px solid rgba(255,255,255,.06);
  box-shadow: 0 50px 120px rgba(0,0,0,.5), 0 0 80px rgba(139,92,246,.12), inset 0 1.5px 0 rgba(255,255,255,.2);
}
.wait-logo {
  width: 78px; height: 78px; border-radius: 24px; object-fit: cover; margin-bottom: 22px;
  box-shadow: 0 0 40px rgba(139,92,246,.6), 0 0 80px rgba(139,92,246,.25), 0 8px 24px rgba(0,0,0,.4);
}
.signup-form { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.signup-form input, .signup-form select {
  width: 100%; min-height: 52px; border-radius: 14px;
  border: 1px solid rgba(255,255,255,.1); border-top-color: rgba(255,255,255,.16);
  background: rgba(0,0,0,.25); color: white; padding: 0 16px; outline: none; font-size: 14px;
  transition: border-color .2s;
}
.signup-form input:focus, .signup-form select:focus { border-color: rgba(139,92,246,.6); }
.signup-form input::placeholder { color: var(--muted); }
.signup-form select { color: var(--soft); }
.signup-form button {
  grid-column: 1 / -1; min-height: 54px; border: none; border-radius: 16px;
  color: white; font-weight: 850; font-size: 16px; cursor: pointer;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple3) 100%);
  box-shadow: 0 0 0 1px rgba(139,92,246,.4), 0 20px 50px rgba(139,92,246,.4);
  transition: box-shadow .3s, transform .2s;
}
.signup-form button:hover:not(:disabled) {
  box-shadow: 0 0 0 1px rgba(139,92,246,.6), 0 24px 60px rgba(139,92,246,.55);
  transform: translateY(-1px);
}
.form-note { font-size: 12px !important; color: #6b5f80 !important; margin-top: 16px; }

/* ── Footer ──────────────────────────────────── */
.site-footer {
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  padding: 32px clamp(18px, 4vw, 54px);
  border-top: 1px solid rgba(255,255,255,.07);
  color: var(--muted); font-size: 14px;
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-links a { font-weight: 500; transition: color .2s; }
.footer-links a:hover { color: white; }

/* ── Policy pages ────────────────────────────── */
.policy-page { max-width: 820px; margin: 0 auto; padding: 48px 22px 90px; line-height: 1.75; color: var(--soft); }
.policy-page h1 { font-size: clamp(36px, 7vw, 64px); -webkit-text-fill-color: initial; }
.policy-page h2 { font-size: 26px; margin-top: 36px; -webkit-text-fill-color: initial; }
.policy-page a { color: var(--cyan); }
.policy-back { display: inline-flex; margin-bottom: 24px; color: var(--cyan); font-weight: 600; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 880px) {
  .desktop-nav, .header-cta { display: none; }
  .hero, .split, .capture-panel { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 64px; }
  .hero-visual { min-height: 520px; }
  .pass-grid, .features { grid-template-columns: 1fr; }
  .signup-form { grid-template-columns: 1fr; }
  .social-shadow, .private-shadow { display: none; }
}
@media (max-width: 520px) {
  .section-pad { padding-left: 16px; padding-right: 16px; }
  h1 { font-size: 52px; }
  .floating-card { width: 100%; transform: none; border-radius: 26px; }
  .icon-pill { width: 42px; height: 42px; border-radius: 13px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .capture-phone { width: 100%; }
  .site-header { padding: 14px 16px; }
}
