:root {
  --ink: #07080d;
  --ink-soft: #0e1118;
  --surface: #141a24;
  --surface-2: #1c2433;
  --border: rgba(212, 168, 83, 0.16);
  --gold: #d4a853;
  --gold-light: #f0d48a;
  --gold-dim: #8a6428;
  --cream: #f4efe6;
  --muted: #8b96a8;
  --accent: #5b8def;
  --success: #3ecf8e;
  --glow: rgba(212, 168, 83, 0.35);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1120px;
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  font-family: var(--font-body);
  color: var(--cream);
  background: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--gold-light); text-decoration: none; }
a:hover { text-decoration: underline; }

::selection {
  background: var(--gold);
  color: var(--ink);
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9998;
  opacity: 0.04;
  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='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Top nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem clamp(1rem, 4vw, 2.5rem);
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  background: rgba(7, 8, 13, 0.9);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}

.nav-brand {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

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

.nav-cta {
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--gold-dim);
  border-radius: 999px;
  color: var(--gold-light) !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--ink) !important;
  border-color: var(--gold);
  text-decoration: none !important;
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold-light);
  border-radius: 8px;
  padding: 0.45rem 0.7rem;
  font-family: inherit;
  font-size: 0.85rem;
  cursor: pointer;
}

/* Layout helpers */
.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1rem;
  max-width: 18ch;
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
  margin-bottom: 2rem;
}

.center { text-align: center; }
.center .section-title,
.center .section-lead {
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform 0.2s var(--ease), box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #b8892f, var(--gold-light));
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(212, 168, 83, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 14px 36px rgba(212, 168, 83, 0.35);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(212, 168, 83, 0.45);
  color: var(--gold-light);
}

.btn-ghost:hover {
  background: rgba(212, 168, 83, 0.1);
  border-color: var(--gold);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* HERO */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--ink);
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  opacity: 0.38;
  filter: saturate(0.85) brightness(0.55);
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7, 8, 13, 0.94) 0%, rgba(7, 8, 13, 0.78) 48%, rgba(7, 8, 13, 0.55) 100%),
    radial-gradient(ellipse 70% 60% at 75% 40%, rgba(212, 168, 83, 0.18), transparent 55%);
}

.hero .wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: stretch;
}

.phone-frame {
  position: relative;
  max-width: 280px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(212, 168, 83, 0.35);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 40px rgba(212, 168, 83, 0.12);
  background: var(--surface);
}

.phone-frame img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
}

/* Shared photo styles */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 1.25rem;
}

.story-photo,
.process-photo,
.cta-photo,
.offer-showcase-media {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
}

.story-photo img,
.process-photo img,
.cta-photo img,
.offer-showcase-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.story-photo {
  min-height: 280px;
}

.story-photo img {
  min-height: 280px;
  max-height: 360px;
}

.story-photo figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1.15rem 1.1rem;
  background: linear-gradient(to top, rgba(7, 8, 13, 0.92), transparent);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.story-photo figcaption strong {
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 600;
}

.story-photo figcaption span {
  color: var(--muted);
  font-size: 0.88rem;
}

.visual-story {
  padding-top: 2rem;
}

.offer-showcase {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.25rem;
  padding: 1.25rem;
  background: rgba(7, 8, 13, 0.35);
  border: 1px solid var(--border);
  border-radius: 24px;
}

.offer-showcase-media {
  max-width: 260px;
  margin: 0 auto;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.offer-showcase-media img {
  aspect-ratio: 3 / 4;
  object-position: center top;
}

.offer-showcase-copy h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--cream);
}

.offer-showcase-copy p {
  color: var(--muted);
  margin-bottom: 1rem;
  max-width: 42ch;
}

.offer-showcase-copy .card-list {
  margin-bottom: 1.25rem;
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.process-photo {
  margin-top: 1.25rem;
  max-height: 280px;
}

.process-photo img {
  max-height: 280px;
  width: 100%;
}

.cta-photo {
  margin-bottom: 1.25rem;
  max-height: 200px;
}

.cta-photo img {
  max-height: 200px;
  width: 100%;
  object-position: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(212, 168, 83, 0.08);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero-eyebrow .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 10px var(--success);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1.08;
  margin-bottom: 1.15rem;
}

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

.hero-sub {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--cream);
}

.chip strong { color: var(--gold-light); }

.hero-card {
  background: linear-gradient(160deg, rgba(28, 36, 51, 0.95), rgba(14, 17, 24, 0.98));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.price-block {
  text-align: center;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.price-block .amount {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-light);
  display: block;
}

.price-block .label {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.35rem;
}

.price-block .pay {
  margin-top: 0.65rem;
  font-size: 0.88rem;
  color: var(--cream);
}

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
}

.card-list li {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.92rem;
  color: var(--cream);
}

.card-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.hero-card .btn { width: 100%; margin-bottom: 0.55rem; }
.hero-card .btn:last-child { margin-bottom: 0; }

.trust-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
}

/* Trust bar */
.trust-bar {
  border-block: 1px solid var(--border);
  background: var(--surface);
  padding: 1.1rem 0;
}

.trust-bar .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  text-align: center;
}

.trust-item {
  font-size: 0.88rem;
  color: var(--muted);
}

.trust-item strong {
  display: block;
  color: var(--gold-light);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.15rem;
}

/* Cards / grids */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

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

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.85rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  height: 100%;
  transition: border-color 0.2s, transform 0.2s var(--ease);
}

.card:hover {
  border-color: rgba(212, 168, 83, 0.35);
  transform: translateY(-2px);
}

.card .icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(212, 168, 83, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 0.9rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: var(--cream);
}

.card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.num-badge {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

/* Pillars special */
.pillar-card {
  position: relative;
  overflow: hidden;
}

.pillar-card .num {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: rgba(212, 168, 83, 0.12);
  line-height: 1;
}

/* Timeline */
.timeline {
  display: grid;
  gap: 0;
  position: relative;
}

.timeline-step {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.timeline-step:last-child { border-bottom: none; }

.timeline-step .day {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding-top: 0.15rem;
}

.timeline-step h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
}

.timeline-step p {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 1rem;
  align-items: stretch;
}

.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: linear-gradient(165deg, rgba(212, 168, 83, 0.14), rgba(20, 26, 36, 0.98));
  border-color: rgba(212, 168, 83, 0.45);
  box-shadow: 0 20px 50px rgba(212, 168, 83, 0.12);
  position: relative;
}

.price-card .badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.price-card .price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold-light);
  line-height: 1;
  margin: 0.5rem 0 0.25rem;
}

.price-card .period {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.price-card ul {
  list-style: none;
  flex: 1;
  margin-bottom: 1.25rem;
}

.price-card li {
  font-size: 0.86rem;
  color: var(--muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  padding-left: 1.15rem;
  position: relative;
}

.price-card li::before {
  content: "•";
  color: var(--gold);
  position: absolute;
  left: 0;
}

.price-card .best {
  font-size: 0.78rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
  min-height: 2.4em;
}

/* Founder */
.founder {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2rem;
}

.avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-dim), var(--gold-light));
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.founder blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--cream);
  margin-bottom: 1rem;
}

.founder .meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.founder .meta strong {
  color: var(--gold-light);
  font-weight: 600;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: 760px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 1.2rem;
  font-weight: 600;
  font-size: 0.98rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  padding: 0 1.2rem 1.15rem;
  color: var(--muted);
  font-size: 0.94rem;
}

/* CTA / Form */
.cta-section {
  padding-bottom: 5rem;
}

.cta-panel {
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(212, 168, 83, 0.15), transparent 60%),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(1.75rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}

.cta-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.6rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}

.cta-panel h2 em {
  font-style: italic;
  color: var(--gold-light);
}

.cta-panel .lead {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.contact-stack a {
  color: var(--cream);
  font-size: 0.95rem;
  text-decoration: none;
}

.contact-stack a:hover { color: var(--gold-light); }

.form {
  background: rgba(7, 8, 13, 0.45);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.35rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.field {
  margin-bottom: 0.75rem;
}

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--ink-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  color: var(--cream);
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-dim);
}

.field textarea { min-height: 90px; resize: vertical; }

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%8b96a8' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}

.form .btn { width: 100%; margin-top: 0.25rem; }

.form-note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-align: center;
}

.form-success {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.form-success.show { display: block; }
.form.submitted .form-fields { display: none; }

.form-success h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.form-success p { color: var(--muted); }

/* Footer */
.footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer strong { color: var(--gold-light); font-weight: 600; }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-bottom: 0.85rem;
}

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

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

/* Sticky mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 150;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(7, 8, 13, 0.92);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  gap: 0.5rem;
}

.mobile-cta .btn {
  flex: 1;
  padding: 0.8rem 0.75rem;
  font-size: 0.85rem;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

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

/* Responsive */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }
  .grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-4 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(7, 8, 13, 0.96);
    border-bottom: 1px solid var(--border);
    padding: 1rem;
    gap: 0.85rem;
  }
  .menu-btn { display: block; }

  .hero .wrap,
  .cta-panel,
  .grid-2,
  .grid-3,
  .pricing-grid,
  .story-grid,
  .offer-showcase,
  .process-layout {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 6rem;
    padding-bottom: 2.5rem;
  }

  .phone-frame {
    max-width: 220px;
  }

  .offer-showcase-media {
    max-width: 220px;
  }

  .story-photo img {
    max-height: 260px;
  }

  .timeline-step {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .founder {
    grid-template-columns: 1fr;
    justify-items: start;
  }

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

  .mobile-cta { display: flex; }
  body { padding-bottom: 5rem; }
}

@media (max-width: 480px) {
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr;
  }
}

@media print {
  .nav, .mobile-cta, .grain { display: none !important; }
  body { background: #fff; color: #111; padding: 0; }
  .card, .price-card, .hero-card, .cta-panel, .founder {
    box-shadow: none;
    border-color: #ddd;
    background: #fff;
  }
}
