/* ============================================================
   PARALLAX — Obsidian Retail
   Apple-dark, premium, retail-friendly
   Hanken Grotesk · #0a0a0c canvas · #30d158 accent
   ============================================================ */

:root {
  --bg: #0a0a0c;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-2: rgba(255, 255, 255, 0.07);
  --panel-solid: #131316;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --text: #f5f5f7;
  --muted: #a1a1a6;
  --faint: #6e6e73;
  --green: #30d158;
  --mint: #66e0c2;
  --grad: linear-gradient(100deg, #30d158 10%, #66e0c2 90%);
  --font: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --r-lg: 28px;
  --r-md: 20px;
  --r-pill: 980px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

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

.shell { width: min(1120px, 100% - 48px); margin-inline: auto; }
.shell-narrow { width: min(740px, 100% - 48px); }
.center { text-align: center; }

::selection { background: rgba(48, 209, 88, 0.35); }

/* ---------- Type ---------- */

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.35rem; letter-spacing: -0.015em; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kicker {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 14px;
}

.section-sub {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 580px;
}

.section-head { margin-bottom: clamp(40px, 5.5vw, 64px); }
.section-head.center .section-sub { margin-inline: auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  color: #0a0a0c;
  background: var(--text);
  border: none;
  border-radius: var(--r-pill);
  padding: 15px 30px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  background: #ffffff;
  transform: scale(1.03);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.12);
}

.btn:active { transform: scale(0.99); }

.btn svg { flex: none; }

.btn-green {
  background: var(--green);
  color: #04150a;
}

.btn-green:hover {
  background: #34e061;
  box-shadow: 0 8px 32px rgba(48, 209, 88, 0.3);
}

.btn-ghost {
  background: var(--panel-2);
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.btn-block { display: flex; width: 100%; }
.btn-lg { padding: 18px 38px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.92rem; }
.btn[disabled] { opacity: 0.55; cursor: wait; transform: none; }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 12, 0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--text);
}

.brand-name {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(72px, 9vw, 130px) 0 clamp(64px, 8vw, 110px);
  overflow: hidden;
}

.orbs { position: absolute; inset: 0; pointer-events: none; }

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
}

.orb-1 {
  width: 640px; height: 640px;
  left: calc(50% - 320px); top: -280px;
  background: radial-gradient(circle, rgba(48, 209, 88, 0.16), transparent 65%);
}

.orb-2 {
  width: 460px; height: 460px;
  left: -160px; bottom: -200px;
  background: radial-gradient(circle, rgba(102, 224, 194, 0.10), transparent 65%);
}

.orb-3 {
  width: 420px; height: 420px;
  right: -140px; top: 18%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 65%);
}

.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  background: var(--panel-2);
  box-shadow: inset 0 0 0 1px var(--line);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  margin-bottom: 30px;
}

.eyebrow .disc-ico { color: var(--green); }

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.5);
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(48, 209, 88, 0.5); }
  70% { box-shadow: 0 0 0 9px rgba(48, 209, 88, 0); }
  100% { box-shadow: 0 0 0 0 rgba(48, 209, 88, 0); }
}

.hero h1 { max-width: 880px; }

.hero .lede {
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  color: var(--muted);
  max-width: 640px;
  margin-top: 24px;
}

/* ---------- Capture card ---------- */

.capture {
  position: relative;
  width: min(600px, 100%);
  margin-top: 48px;
  background: var(--panel);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3.4vw, 40px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
  scroll-margin-top: 110px;
  text-align: left;
}

.capture h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 8px;
}

.capture-sub {
  color: var(--muted);
  font-size: 0.98rem;
  text-align: center;
  margin-bottom: 26px;
}

.field { margin-bottom: 16px; }

.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 8px;
}

.field input {
  width: 100%;
  padding: 15px 18px;
  font-size: 1.02rem;
  font-family: var(--font);
  color: var(--text);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.field input::placeholder { color: var(--faint); }

.field input:focus {
  outline: none;
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(48, 209, 88, 0.65);
  box-shadow: 0 0 0 4px rgba(48, 209, 88, 0.16);
}

.field input.invalid { border-color: #ff453a; }

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-error {
  color: #ff453a;
  font-size: 0.9rem;
  margin-top: 12px;
}

.form-note {
  font-size: 0.82rem;
  color: var(--faint);
  text-align: center;
  margin-top: 16px;
}

/* ---------- Stat strip ---------- */

.strip { padding: clamp(28px, 4vw, 44px) 0 0; }

.strip-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--panel);
  box-shadow: inset 0 0 0 1px var(--line);
  border-radius: var(--r-pill);
  padding: 10px 20px;
}

.chip b { color: var(--text); font-weight: 700; }
.chip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* ---------- Sections ---------- */

.section { padding: clamp(72px, 10vw, 128px) 0; }

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

[data-stagger] {
  opacity: 0;
  transform: translateY(20px);
  animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero [data-stagger]:nth-child(1) { animation-delay: 0.05s; }
.hero [data-stagger]:nth-child(2) { animation-delay: 0.15s; }
.hero [data-stagger]:nth-child(3) { animation-delay: 0.26s; }
.hero [data-stagger]:nth-child(4) { animation-delay: 0.38s; }

@keyframes rise { to { opacity: 1; transform: translateY(0); } }

/* ---------- Bento ---------- */

.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.tile {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 36px);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, background 0.3s ease;
}

.tile:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
  background: var(--panel-2);
}

.tile-4 { grid-column: span 4; }
.tile-3 { grid-column: span 3; }
.tile-2 { grid-column: span 2; }

.tile-glow::before {
  content: "";
  position: absolute;
  width: 380px; height: 380px;
  right: -120px; top: -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(48, 209, 88, 0.14), transparent 65%);
  filter: blur(50px);
  pointer-events: none;
}

.tile-ico {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--green);
  background: rgba(48, 209, 88, 0.12);
  box-shadow: inset 0 0 0 1px rgba(48, 209, 88, 0.22);
  margin-bottom: 22px;
}

.tile h3 { margin-bottom: 10px; }

.tile p { color: var(--muted); font-size: 1rem; }

.tile-tag {
  position: absolute;
  top: 24px;
  right: 26px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--green);
  background: rgba(48, 209, 88, 0.12);
  border-radius: var(--r-pill);
  padding: 5px 12px;
}

/* ---------- Analysis gallery ---------- */

.section-tight { padding-top: 0; }

.gallery {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px max(24px, calc((100vw - 1120px) / 2)) 24px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gallery::-webkit-scrollbar { display: none; }

.shot {
  flex: 0 0 min(440px, 82vw);
  scroll-snap-align: center;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.shot:hover {
  transform: translateY(-5px);
  border-color: var(--line-strong);
}

.shot-media {
  aspect-ratio: 16 / 10;
  background: #111114;
  border-bottom: 1px solid var(--line);
}

.shot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* portrait screenshots: anchor the crop to the top of the chart */
.shot-media img.pos-top { object-position: top; }

.shot-meta { padding: 20px 22px 22px; }

.shot-tags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.pair {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.dir {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--r-pill);
  padding: 4px 12px;
}

.dir.long {
  color: var(--green);
  background: rgba(48, 209, 88, 0.12);
  box-shadow: inset 0 0 0 1px rgba(48, 209, 88, 0.25);
}

.dir.short {
  color: #ff6961;
  background: rgba(255, 105, 97, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 105, 97, 0.25);
}

.res {
  margin-left: auto;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--green);
}

.shot-meta > p {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.gallery-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--faint);
  margin-top: 6px;
}

/* ---------- Founder ---------- */

.founder {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.founder-photo {
  position: relative;
  max-width: 420px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
}

.founder-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 12, 0.35), transparent 45%);
  pointer-events: none;
}

.founder-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
  filter: grayscale(1) contrast(1.04);
}

.founder-copy h2 { margin-bottom: 20px; }

.founder-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 16px;
  max-width: 560px;
}

.founder-points {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 26px 0 32px;
}

.founder-points li {
  position: relative;
  padding-left: 32px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.98rem;
}

.founder-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%2304150a" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / 12px no-repeat,
    linear-gradient(135deg, #30d158, #66e0c2);
}

@media (max-width: 900px) {
  .founder { grid-template-columns: 1fr; }
  .founder-photo { max-width: 440px; }
}

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: clamp(40px, 5.5vw, 56px);
}

.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 36px);
}

.step-num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: 700;
  color: #04150a;
  background: var(--grad);
  margin-bottom: 20px;
}

.step h3 { margin-bottom: 8px; font-size: 1.2rem; }
.step p { color: var(--muted); font-size: 0.98rem; }

/* ---------- FAQ ---------- */

.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-of-type { border-top: 1px solid var(--line); }

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  font-weight: 600;
  font-size: 1.12rem;
  letter-spacing: -0.01em;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-x {
  color: var(--green);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-x { transform: rotate(45deg); }

.faq-item p {
  padding: 0 4px 24px;
  color: var(--muted);
  font-size: 1rem;
  max-width: 620px;
}

/* ---------- Final CTA ---------- */

.final {
  position: relative;
  padding: clamp(80px, 11vw, 150px) 0;
  overflow: hidden;
}

.final .orb-1 { top: auto; bottom: -380px; }

.final-h { margin-bottom: 14px; }

.final-sub {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 34px;
}

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid var(--line);
  padding: 44px 0 40px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 28px;
}

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

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

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

.disclaimer {
  font-size: 0.8rem;
  color: var(--faint);
  max-width: 840px;
  margin-bottom: 16px;
}

.legal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 40px;
  padding-block: 26px;
  margin-bottom: 26px;
  border-block: 1px solid var(--line);
}

.legal-item h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--muted);
  margin-bottom: 6px;
}

.legal-item p {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--faint);
}

@media (max-width: 720px) {
  .legal { grid-template-columns: 1fr; }
}

/* ---------- Legal pages (privacy etc.) ---------- */

.legal-page { padding: clamp(56px, 8vw, 96px) 0; }

.legal-page h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 10px; }

.legal-page .updated {
  color: var(--faint);
  font-size: 0.88rem;
  margin-bottom: 40px;
}

.legal-page h2 {
  font-size: 1.25rem;
  margin: 36px 0 10px;
}

.legal-page p, .legal-page li {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 12px;
}

.legal-page ul { padding-left: 22px; margin-bottom: 12px; }

.legal-page a { color: var(--green); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }

.copyright { font-size: 0.82rem; color: var(--faint); }

/* ---------- Thank-you page ---------- */

.thanks-main {
  position: relative;
  min-height: calc(100vh - 150px);
  display: grid;
  place-items: center;
  padding: 72px 0;
  overflow: hidden;
}

.thanks-card {
  position: relative;
  max-width: 620px;
  margin-inline: auto;
  background: var(--panel);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(36px, 5vw, 56px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.thanks-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(48, 209, 88, 0.12);
  box-shadow: inset 0 0 0 1px rgba(48, 209, 88, 0.25);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  margin-bottom: 26px;
}

.thanks-card h1 { font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 14px; }

.thanks-card > p {
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 30px;
}

.thanks-steps {
  text-align: left;
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 15px;
  list-style: none;
}

.thanks-steps li {
  color: var(--muted);
  font-size: 0.98rem;
  padding-left: 32px;
  position: relative;
}

.thanks-steps li strong { color: var(--text); }

.thanks-steps li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background:
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 24 24" fill="none" stroke="%2304150a" stroke-width="3.4" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"/></svg>') center / 12px no-repeat,
    linear-gradient(135deg, #30d158, #66e0c2);
}

/* ---------- Mobile sticky CTA ---------- */

.mobile-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: #04150a;
  background: var(--green);
  border-radius: var(--r-pill);
  padding: 17px 24px;
  text-decoration: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 4px 18px rgba(48, 209, 88, 0.35);
  transform: translateY(150%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-cta svg { flex: none; }

.mobile-cta.show { transform: none; }

@media (max-width: 700px) {
  .mobile-cta { display: flex; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  [data-stagger] { animation: none; opacity: 1; transform: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .live-dot { animation: none; }
  .btn { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .tile-4, .tile-3, .tile-2 { grid-column: span 2; }
  .steps { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  /* lighter decorative layers on phone GPUs */
  .orb { filter: blur(60px); }
  .orb-1 { width: 440px; height: 440px; left: calc(50% - 220px); top: -200px; }
  .orb-2 { width: 320px; height: 320px; }
  .orb-3 { display: none; }
}

@media (max-width: 560px) {
  .shell { width: calc(100% - 36px); }
  .nav-cta { display: none; }
  .tile-tag { display: none; }

  /* footer: brand on top, links in a tidy two-column grid */
  .footer-top { flex-direction: column; align-items: flex-start; gap: 22px; }
  .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 24px;
    width: 100%;
  }
  .footer-links a { font-size: 0.95rem; }

  /* standalone CTAs become full-width, centered pills */
  .founder-copy .btn,
  .final .btn,
  #how .center .btn {
    display: flex;
    width: 100%;
  }

  /* tighter vertical rhythm on phones */
  .section { padding: 60px 0; }
  .hero { padding-top: 52px; padding-bottom: 56px; }
  .capture { margin-top: 36px; }
  .eyebrow { font-size: 0.82rem; padding: 8px 14px; }
  .strip-inner { gap: 8px; }
  .chip { font-size: 0.84rem; padding: 8px 15px; }
  .section-head { margin-bottom: 34px; }
  .steps { gap: 12px; }
  .bento { gap: 12px; }

  /* keep the form CTA on a single line */
  .capture .btn {
    font-size: 0.98rem;
    gap: 8px;
    padding-left: 16px;
    padding-right: 16px;
    white-space: nowrap;
  }

  /* breathing room above the sticky CTA */
  .footer { padding-bottom: 96px; }
}
