/* ── INPASS LANDING PAGE STYLES ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400;500&display=swap');

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

:root {
  --ink:       #0d1f17;
  --forest:    #1a3528;
  --mid:       #1a3528;
  --teal:      #1D9E75;
  --sage:      #5DCAA5;
  --gold:      #C9A84C;
  --gold-light:#e8c97a;
  --mist:      #9FE1CB;
  --foam:      #E8F5EE;
  --paper:     #f5faf7;
  --white:     #ffffff;
  --muted:     #3d6b59;
  --subtle:    #8aab96;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'DM Sans', sans-serif;
  --ff-mono:    'DM Mono', 'Courier New', monospace;

  --nav-h: 96px;
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 32px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--mist); border-radius: 2px; }

/* ────────────────────────────────────────────
   NAV
──────────────────────────────────────────── */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  /*height: var(--nav-h);*/
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(20px, 5vw, 64px);
  background: rgba(6, 28, 20, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  line-height: 1;
}

.nav-logo-wordmark {
  display: flex;
  align-items: baseline;
}

.nav-logo-in {
  font-family: var(--ff-body);
  font-size: clamp(36px, 5.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1;
}

.nav-logo-pass {
  font-family: var(--ff-body);
  font-size: clamp(36px, 5.5vw, 48px);
  font-weight: 300;
  color: var(--teal);
  letter-spacing: -2px;
  line-height: 1;
}

.nav-logo-svg {
  height: clamp(48px, 7vw, 64px);
  width: auto;
  display: block;
}


.nav-logo-bar {
  width: clamp(44px, 6vw, 58px);
  height: 2.5px;
  background: var(--teal);
  border-radius: 1px;
  margin-top: 5px;
}

/* Tagline — key selling point, highly visible */
.nav-logo-tag {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(13px, 1.9vw, 24px);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.2px;
  
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--mist); }

.nav-cta {
  background: var(--gold) !important;
  color: var(--ink) !important;
  padding: 10px 24px !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.7);
  border-radius: 1px;
}

/* ────────────────────────────────────────────
   HERO
──────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  padding-top: var(--nav-h);
  background: var(--ink);
  display: grid;
  grid-template-rows: 1fr auto;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(26,53,40,0.6) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(40px, 6vh, 80px) clamp(20px, 6vw, 80px);
  position: relative;
  z-index: 1;
}

.hero-left { max-width: 580px; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 40px;
  padding: 6px 14px 6px 8px;
  margin-bottom: clamp(20px, 3vh, 36px);
  animation: fadeUp 0.6s ease both;
}

.hero-pill-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(201,168,76,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pill-dot::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-pill span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-headline {
  font-family: var(--ff-display);
  font-size: clamp(44px, 6.5vw, 80px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: clamp(16px, 2vh, 24px);
  animation: fadeUp 0.6s 0.1s ease both;
}

.hero-headline em { font-style: italic; color: var(--teal); }

.hero-sub {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin-bottom: clamp(32px, 5vh, 52px);
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  animation: fadeUp 0.6s 0.3s ease both;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(201,168,76,0.3);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,168,76,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 400;
  padding: 14px 24px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover { border-color: var(--teal); color: var(--mist); }

.btn-arrow { transition: transform 0.2s; }
.btn-primary:hover .btn-arrow,
.btn-ghost:hover .btn-arrow { transform: translateX(4px); }

/* ── HERO IMAGE ── */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  animation: fadeUp 0.7s 0.15s ease both;
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  
}

.hero-img-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; height: 80%;
  background: radial-gradient(circle, rgba(201,168,76,0.15) 0%, rgba(29,158,117,0.15) 50%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(50px);
}

.hero-img-wrap svg {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 32px 80px rgba(0,0,0,0.5));
}

/* ── HERO STRIP ── */
.hero-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(201,168,76,0.15);
  display: flex;
  overflow: hidden;
}

.hero-strip-item {
  flex: 1;
  padding: clamp(18px, 3vh, 28px) clamp(16px, 3vw, 36px);
  border-right: 1px solid rgba(201,168,76,0.1);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero-strip-item:last-child { border-right: none; }

.strip-num {
  font-family: var(--ff-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}

.strip-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.2px;
}

/* ────────────────────────────────────────────
   SECTION COMMON
──────────────────────────────────────────── */
.section-wrap { padding: clamp(64px, 10vh, 120px) clamp(20px, 6vw, 80px); }

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.section-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

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

/* Bold italic section body — clearly readable */
.section-body {
  font-size: clamp(17px, 1.9vw, 22px);
  color: var(--ink);
  line-height: 1.75;
  max-width: 600px;
  font-family: var(--ff-display);
  font-weight: bold;
  font-style: italic;
  font-weight: 600;
}

/* ────────────────────────────────────────────
   HOW IT WORKS
──────────────────────────────────────────── */
.how { background: var(--paper); }

.steps {
  margin-top: clamp(40px, 6vh, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 32px);
  counter-reset: step;
}

.step {
  background: var(--white);
  border-radius: var(--r-md);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 36px);
  border: 1px solid rgba(8,80,65,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.step:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(8,80,65,0.1); }

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: -10px; right: 16px;
  font-family: var(--ff-display);
  font-size: 96px;
  font-weight: 700;
  color: rgba(29,158,117,0.05);
  line-height: 1;
  pointer-events: none;
}

.step-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--foam);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(201,168,76,0.2);
}

.step-title {
  font-family: var(--ff-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.2;
}

.step-desc { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ────────────────────────────────────────────
   FEATURES
──────────────────────────────────────────── */
.features-grid {
  margin-top: clamp(40px, 6vh, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
}

.feat {
  border-radius: var(--r-md);
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 36px);
  transition: transform 0.25s;
}

.feat:hover { transform: translateY(-3px); }

.feat-dark {
  background: var(--ink);
  grid-column: 1 / 3;
  display: flex;
  flex-direction: row;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.feat-dark-left {
  flex: 1;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 3vw, 36px);
}

.feat-dark-right {
  width: 220px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(201,168,76,0.06);
  border-left: 1px solid rgba(201,168,76,0.2);
  padding: 32px 24px;
}.feat-teal  { background: var(--teal); }
.feat-foam  { background: var(--foam); border: 1px solid rgba(29,158,117,0.15); }
.feat-forest{ background: var(--forest); }
.feat-wide  { grid-column: 2 / 4; background: var(--ink); }

.feat-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.feat-dark .feat-eyebrow,
.feat-forest .feat-eyebrow,
.feat-wide .feat-eyebrow  { color: var(--gold); }
.feat-teal .feat-eyebrow  { color: rgba(255,255,255,0.85); }
.feat-foam .feat-eyebrow  { color: var(--mid); }

.feat-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 12px;
}

.feat-dark .feat-title,
.feat-forest .feat-title,
.feat-wide .feat-title  { color: var(--white); }
.feat-teal .feat-title  { color: var(--white); }
.feat-foam .feat-title  { color: var(--forest); }

.feat-desc { font-size: 14px; line-height: 1.75; }

.feat-dark .feat-desc,
.feat-forest .feat-desc,
.feat-wide .feat-desc  { color: var(--mist); }
.feat-teal .feat-desc  { color: rgba(255,255,255,0.88); }
.feat-foam .feat-desc  { color: var(--mid); }

.feat-big-num {
  font-family: var(--ff-display);
  font-size: clamp(56px, 8vw, 96px);
  font-weight: 600;
  line-height: 1;
  color: var(--teal);
}

.feat-dark .feat-big-num { color: var(--gold); }

.feat-num-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-top: 8px;
  font-style: italic;
  font-family: var(--ff-display);
}

.feat-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.feat-tag {
  font-family: var(--ff-mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: var(--mist);
  letter-spacing: 0.3px;
}

.feat-foam .feat-tag { background: rgba(8,80,65,0.08); color: var(--mid); }

/* ────────────────────────────────────────────
   TESTIMONIALS (kept, commented out in HTML)
──────────────────────────────────────────── */
.proof { background: var(--ink); }
.proof .section-title { color: var(--white); }
.proof .section-body  { color: var(--subtle); }

.proof-grid {
  margin-top: clamp(40px, 6vh, 72px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 2vw, 20px);
}

.proof-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: clamp(24px, 3vw, 36px);
  transition: border-color 0.2s, background 0.2s;
}

.proof-card:hover { border-color: rgba(29,158,117,0.3); background: rgba(29,158,117,0.05); }

.proof-quote {
  font-family: var(--ff-display);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 24px;
}

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

.proof-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--forest);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--mist);
}

.proof-name { font-size: 14px; font-weight: 600; color: var(--white); }
.proof-role { font-size: 12px; color: var(--subtle); margin-top: 2px; }

/* ────────────────────────────────────────────
   CTA
──────────────────────────────────────────── */
.cta-section {
  background: var(--forest);
  padding: clamp(72px, 12vh, 130px) clamp(20px, 6vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  right: -10%; top: -40%;
  width: 60%; height: 180%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--ff-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
}

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

.cta-right { position: relative; z-index: 1; }

.cta-body {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  font-style: italic;
  color: rgba(255,255,255,0.95);
  line-height: 1.65;
  margin-bottom: 36px;
}

.cta-form { display: flex; flex-direction: column; gap: 12px; }

.cta-input {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: var(--ff-body);
  font-size: 15px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}

.cta-input::placeholder { color: rgba(255,255,255,0.4); }
.cta-input:focus { border-color: var(--gold); background: rgba(201,168,76,0.08); }

.btn-submit {
  background: var(--gold);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 15px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.2px;
}

.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

.cta-note {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-top: 4px;
}

/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
footer {
  background: var(--ink);
  padding: clamp(40px, 6vh, 64px) clamp(20px, 6vw, 80px);
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 4vh, 48px);
  padding-bottom: clamp(32px, 4vh, 48px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.footer-brand-in {
  font-family: var(--ff-body);
  font-size: 40px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -1.5px;
  line-height: 1;
}

.footer-brand-pass {
  font-family: var(--ff-body);
  font-size: 40px;
  font-weight: 300;
  color: var(--teal);
  letter-spacing: -1.5px;
  line-height: 1;
}

.footer-brand-bar {
  width: 48px; height: 2.5px;
  background: var(--gold);
  border-radius: 1px;
  margin-top: 7px;
}

/* Tagline — visible and prominent */
.footer-brand-sub {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 600;
  font-size: 20px;
  color: var(--gold);
  margin-top: 10px;
  line-height: 1.5;
}

/* PurpleMESH attribution — clearly readable */
.footer-by {
  margin-top: 10px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
}

.footer-links-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.footer-links-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

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

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

.footer-copy { font-size: 13px; color: rgba(255,255,255,0.5); }

.footer-badges { display: flex; gap: 10px; }

.footer-badge {
  font-family: var(--ff-mono);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
}


/* Mobile nav open state */
.nav-links.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(6, 28, 20, 0.98);
  backdrop-filter: blur(20px);
  padding: 24px clamp(20px, 5vw, 64px) 32px;
  gap: 20px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
  z-index: 199;
}

/* Hamburger animation when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-hamburger span { transition: all 0.3s ease; }


/* ────────────────────────────────────────────
   ANIMATIONS
──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

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

/* ────────────────────────────────────────────
   RESPONSIVE
──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links    { display: none; }
  .nav-hamburger{ display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    padding: 36px 20px 28px;
    gap: 36px;
    justify-items: center;   /* ← add this */
  }

  .hero-left { max-width: 100%; width: 100%; }

  .hero-right {
    order: -1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-img-wrap {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }


  .hero-strip { flex-wrap: wrap; }
  .hero-strip-item { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.06); }

  .steps          { grid-template-columns: 1fr; }
  .features-grid  { grid-template-columns: 1fr; }
  .feat-dark      { grid-column: 1; flex-direction: column; }
  .feat-dark-right {
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(201,168,76,0.2);
    padding: 24px;
  }
  .feat-wide      { grid-column: 1; display: block; }
  .proof-grid     { grid-template-columns: 1fr; }
  .cta-section    { grid-template-columns: 1fr; }
  .footer-top     { flex-direction: column; }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .steps         { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feat-dark     { grid-column: 1 / 3; }
  .feat-wide     { grid-column: 1 / 3; }
  .proof-grid    { grid-template-columns: 1fr 1fr; }
}

/* ════════════════════════════════════════════
   INNER PAGES — shared styles
════════════════════════════════════════════ */

/* ── PAGE HERO BANNER ── */
.page-hero {
  padding-top: var(--nav-h);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 5% 80%, rgba(26,53,40,0.5) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: clamp(60px, 10vh, 100px) clamp(20px, 6vw, 80px) clamp(48px, 8vh, 80px);
  max-width: 800px;
}

.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.page-eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  display: inline-block;
}

.page-title {
  font-family: var(--ff-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.page-title em { font-style: italic; color: var(--teal); }

.page-subtitle {
  font-family: var(--ff-display);
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}

/* ── PAGE BODY WRAPPER ── */
.page-body {
  padding: clamp(60px, 8vh, 100px) clamp(20px, 6vw, 80px);
  background: var(--white);
}

.page-body-narrow {
  max-width: 780px;
  margin: 0 auto;
}

.page-body-wide {
  max-width: 1100px;
  margin: 0 auto;
}

/* ── CONTENT PROSE (legal pages) ── */
.prose h2 {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  color: var(--forest);
  margin: 48px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.prose h2:first-child { margin-top: 0; }

.prose p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.prose ul {
  margin: 12px 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.prose ul li {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.prose ul li::marker { color: var(--teal); }

.prose strong { color: var(--forest); font-weight: 600; }

.prose a { color: var(--teal); text-decoration: none; border-bottom: 1px solid rgba(29,158,117,0.3); transition: border-color 0.2s; }
.prose a:hover { border-color: var(--teal); }

.prose .last-updated {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: 12px;
  color: var(--subtle);
  background: var(--foam);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 36px;
}

/* ── FEATURES PAGE ── */
.features-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
  margin-top: clamp(40px, 6vh, 64px);
}

.feature-block {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid rgba(29,158,117,0.1);
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(8,80,65,0.08);
}

.feature-block-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--foam);
  border: 1px solid rgba(201,168,76,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.feature-block-title {
  font-family: var(--ff-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.2;
}

.feature-block-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.feature-block-tag {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--ff-mono);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 4px;
  background: var(--foam);
  color: var(--mid);
}

/* ── HOW IT WORKS DETAIL PAGE ── */
.how-detail-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: clamp(40px, 6vh, 64px);
  position: relative;
}

.how-detail-steps::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 52px;
  bottom: 52px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--teal));
  border-radius: 1px;
}

.how-step {
  display: flex;
  gap: clamp(24px, 4vw, 48px);
  padding: clamp(28px, 4vh, 48px) 0;
  border-bottom: 1px solid rgba(29,158,117,0.08);
  position: relative;
}

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

.how-step-num {
  width: 56px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.how-step-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.how-step-content { flex: 1; padding-top: 8px; }

.how-step-title {
  font-family: var(--ff-display);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 12px;
  line-height: 1.2;
}

.how-step-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.how-step-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.how-step-tag {
  font-family: var(--ff-mono);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: 4px;
  background: var(--foam);
  color: var(--mid);
  border: 1px solid rgba(29,158,117,0.15);
}

/* ── DARK CALLOUT BOX ── */
.callout-dark {
  background: var(--ink);
  border-radius: var(--r-md);
  padding: clamp(36px, 5vw, 56px);
  margin-top: clamp(48px, 6vh, 72px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.callout-dark::before {
  content: '';
  position: absolute;
  right: -5%; top: -50%;
  width: 40%; height: 200%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.1) 0%, transparent 65%);
  pointer-events: none;
}

.callout-dark-title {
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 8px;
}

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

.callout-dark-sub {
  font-family: var(--ff-display);
  font-size: 16px;
  font-style: italic;
  color: rgba(255,255,255,0.6);
}

/* ── RESPONSIVE INNER PAGES ── */
@media (max-width: 768px) {
  .features-page-grid { grid-template-columns: 1fr; }
  .callout-dark { grid-template-columns: 1fr; }
  .how-detail-steps::before { display: none; }
  .how-step { flex-direction: column; gap: 16px; }
  .how-step-num { flex-direction: row; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features-page-grid { grid-template-columns: 1fr 1fr; }
}
