/* =========================================================
   Be-Well — shared design system
   Warm amber accent · cream background · humanist sans-serif
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --cream:        #FBF6EE;
  --cream-deep:   #F4EADB;
  --warm-white:   #FFFDF9;
  --card:         #FFFFFF;
  --charcoal:     #2E2A24;
  --charcoal-soft:#5A534A;
  --muted:        #8A8174;
  --line:         #EAE0D0;

  --amber:        #E0A33D;
  --amber-deep:   #C8862A;
  --amber-soft:   #FBEFD7;

  --sage:         #7C9070;

  /* Partners (dark) theme */
  --p-bg:         #0D0D0D;
  --p-bg-2:       #141414;
  --p-card:       #1A1A1A;
  --p-line:       #2C2C2C;
  --p-gold:       #E8A020;
  --p-gold-soft:  #3a2e10;
  --p-text:       #F4EFE6;
  --p-text-mute:  #A39B8C;

  /* System */
  --radius:       18px;
  --radius-sm:    12px;
  --radius-pill:  999px;
  --shadow:       0 14px 40px -18px rgba(70, 55, 30, 0.28);
  --shadow-soft:  0 6px 24px -12px rgba(70, 55, 30, 0.22);
  --maxw:         1140px;
  --ease:         cubic-bezier(.4, .14, .3, 1);

  --font: "Plus Jakarta Sans", "DM Sans", -apple-system, BlinkMacSystemFont,
          "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
section { position: relative; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--charcoal-soft); }

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 14px;
}

h1, h2, h3, h4 { line-height: 1.16; letter-spacing: -0.02em; font-weight: 800; }
h1 { font-size: clamp(2.5rem, 5.4vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.28rem; }
.section > .wrap > h2 { margin-bottom: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  border-radius: var(--radius-pill);
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 700;
  transition: transform .18s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.btn--primary {
  background: var(--amber);
  color: #3a2c0c;
  box-shadow: 0 10px 24px -10px rgba(224, 163, 61, 0.7);
}
.btn--primary:hover {
  background: var(--amber-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -12px rgba(200, 134, 42, 0.75);
}
.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover { border-color: var(--amber); color: var(--amber-deep); transform: translateY(-2px); }
.btn--lg { padding: 17px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 238, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}
.brand .logo-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--amber);
  border-radius: 11px;
  flex-shrink: 0;
}
.brand .logo-mark svg { width: 20px; height: 20px; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--charcoal-soft);
  transition: color .15s var(--ease), background .15s var(--ease);
}
.nav-links a:hover { color: var(--charcoal); }
.nav-links a.active { color: var(--amber-deep); background: var(--amber-soft); }
.nav-cta { margin-left: 10px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px; height: 42px;
  border-radius: 10px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--charcoal);
  margin: 5px auto;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 110px;
  background:
    radial-gradient(60% 70% at 88% 8%, rgba(224, 163, 61, 0.30), transparent 70%),
    radial-gradient(54% 62% at 6% 92%, rgba(124, 144, 112, 0.22), transparent 72%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--amber-deep); }
.hero .lead { max-width: 30em; margin-bottom: 30px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note {
  margin-top: 18px;
  font-size: 0.92rem;
  color: var(--muted);
  display: flex; align-items: center; gap: 8px;
}

/* Hero artwork — abstract warm composition, no stock cliché */
.hero-art {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-art svg { width: 100%; height: 100%; display: block; }

/* ---------- Generic cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: #e3d4ba;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--charcoal-soft); font-size: 0.99rem; }

.icon-badge {
  width: 52px; height: 52px;
  border-radius: 15px;
  background: var(--amber-soft);
  color: var(--amber-deep);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.icon-badge svg { width: 26px; height: 26px; }
.icon-badge.sage { background: #E8EDE4; color: var(--sage); }

/* ---------- How it works steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px 30px;
  position: relative;
}
.step .step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--cream);
  font-weight: 800;
  display: grid; place-items: center;
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--charcoal-soft); font-size: 0.99rem; }

/* expanded step blocks (How It Works page) */
.step-detail {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}
.step-detail:last-of-type { border-bottom: 0; }
.step-detail .big-num {
  font-size: 3.4rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  letter-spacing: -0.04em;
}
.step-detail h3 { font-size: 1.5rem; margin-bottom: 10px; }
.step-detail p { color: var(--charcoal-soft); margin-bottom: 10px; }
.step-detail ul.ticks { margin-top: 6px; }
ul.ticks li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 8px;
  color: var(--charcoal-soft);
}
ul.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 16px; height: 16px;
  background: var(--amber-soft);
  border-radius: 50%;
}
ul.ticks li::after {
  content: "";
  position: absolute;
  left: 5px; top: 11px;
  width: 5px; height: 8px;
  border: solid var(--amber-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.testimonial .quote { font-size: 1.05rem; color: var(--charcoal); }
.testimonial .quote::before { content: "\201C"; color: var(--amber); font-weight: 800; }
.testimonial .quote::after { content: "\201D"; color: var(--amber); font-weight: 800; }
.tperson { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.tavatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--amber-soft), var(--cream-deep));
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--amber-deep);
  font-weight: 800;
  flex-shrink: 0;
}
.tperson .tname { font-weight: 700; font-size: 0.97rem; }
.tperson .trole { font-size: 0.86rem; color: var(--muted); }
.stars { color: var(--amber); letter-spacing: 2px; font-size: 0.95rem; }

/* ---------- Waitlist banner ---------- */
.banner {
  background:
    radial-gradient(50% 120% at 12% 10%, rgba(255,255,255,0.35), transparent 60%),
    linear-gradient(135deg, var(--amber) 0%, var(--amber-deep) 100%);
  color: #fff;
  border-radius: 26px;
  padding: 64px 56px;
  text-align: center;
  box-shadow: var(--shadow);
}
.banner h2 { color: #fff; margin-bottom: 10px; }
.banner p { color: rgba(255,255,255,0.92); max-width: 32em; margin: 0 auto 26px; }
.banner.full { border-radius: 0; }

/* ---------- Forms ---------- */
.form-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px;
  box-shadow: var(--shadow-soft);
}
.inline-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.inline-form .field { flex: 1 1 150px; margin-bottom: 0; }
.inline-form .btn { flex: 1 1 100%; justify-content: center; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--charcoal);
}
.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--warm-white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 15px;
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--amber);
  box-shadow: 0 0 0 4px var(--amber-soft);
}
.inline-form .field input {
  background: rgba(255,255,255,0.96);
  border-color: rgba(255,255,255,0.7);
}
.banner .inline-form .field input::placeholder { color: #9c8a63; }

/* file upload */
.file-drop {
  border: 1.6px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 18px 16px;
  text-align: center;
  background: var(--warm-white);
  cursor: pointer;
  transition: border-color .15s var(--ease), background .15s var(--ease);
}
.file-drop:hover { border-color: var(--amber); background: var(--amber-soft); }
.file-drop input { display: none; }
.file-drop .fd-label { font-size: 0.92rem; color: var(--charcoal-soft); }
.file-drop .fd-name { font-weight: 700; color: var(--amber-deep); }

/* confirmation message */
.form-success {
  display: none;
  background: #EAF0E5;
  border: 1px solid #cfdcc4;
  color: #46583a;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  font-weight: 600;
}
.form-success.show { display: block; animation: pop .35s var(--ease); }
@keyframes pop { from { opacity: 0; transform: translateY(6px);} to {opacity:1; transform:none;} }
form.hide { display: none; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  text-align: left;
  padding: 22px 4px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .chev {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--amber-soft);
  color: var(--amber-deep);
  display: grid; place-items: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform .25s var(--ease);
}
.faq-item.open .faq-q .chev { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s var(--ease);
}
.faq-a-inner { padding: 0 4px 22px; color: var(--charcoal-soft); }

/* ---------- About ---------- */
.mission-quote {
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.mission-quote .accent { color: var(--amber-deep); }
.founder-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.founder-card .sig {
  margin-top: 16px;
  font-weight: 800;
  color: var(--charcoal);
}
.founder-card .sig span { display: block; font-weight: 600; color: var(--muted); font-size: 0.9rem; }
.team-member { text-align: center; }
.team-photo {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--amber-soft), var(--cream-deep));
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--amber-deep);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.team-member .tm-name { font-weight: 700; }
.team-member .tm-role { color: var(--muted); font-size: 0.92rem; }

/* value strip */
.value-strip {
  background: var(--cream-deep);
  border-radius: var(--radius);
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.value-strip .v-num { font-size: 2.2rem; font-weight: 800; color: var(--amber-deep); }
.value-strip .v-label { color: var(--charcoal-soft); font-size: 0.96rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: #d8cfc0;
  padding: 60px 0 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer .brand { color: var(--cream); }
.footer-tag { margin-top: 12px; color: #9d9485; max-width: 24em; font-size: 0.96rem; }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.footer-links a { color: #cfc6b7; font-weight: 600; font-size: 0.96rem; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  padding-top: 24px;
  color: #8c8475;
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  padding: 84px 0 56px;
  background:
    radial-gradient(50% 80% at 92% 0%, rgba(224, 163, 61, 0.22), transparent 70%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero .lead { max-width: 36em; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   PARTNERS — dark theme overrides (body.partners)
   ========================================================= */
body.partners {
  background: var(--p-bg);
  color: var(--p-text);
}
body.partners .site-header {
  background: rgba(13, 13, 13, 0.82);
  border-bottom: 1px solid var(--p-line);
}
body.partners .brand { color: var(--p-text); }
body.partners .brand .logo-mark { background: var(--p-gold); }
body.partners .nav-links a { color: var(--p-text-mute); }
body.partners .nav-links a:hover { color: var(--p-text); }
body.partners .nav-links a.active { color: var(--p-gold); background: var(--p-gold-soft); }
body.partners .nav-toggle span { background: var(--p-text); }
body.partners .btn--primary {
  background: var(--p-gold);
  color: #1a1304;
  box-shadow: 0 10px 26px -10px rgba(232, 160, 32, 0.6);
}
body.partners .btn--primary:hover { background: #f2af33; color: #1a1304; }
body.partners .btn--ghost { color: var(--p-text); border-color: var(--p-line); }
body.partners .btn--ghost:hover { border-color: var(--p-gold); color: var(--p-gold); }

.p-hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0 130px;
  background:
    radial-gradient(55% 75% at 82% 16%, rgba(232, 160, 32, 0.22), transparent 70%),
    linear-gradient(180deg, #0D0D0D 0%, #121212 100%);
}
.p-hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; }
.p-eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--p-gold);
  margin-bottom: 18px;
}
.p-hero h1 {
  font-size: clamp(2.8rem, 6.2vw, 4.6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.p-hero h1 .gold { color: var(--p-gold); }
.p-hero .lead { color: var(--p-text-mute); font-size: 1.16rem; max-width: 26em; margin-bottom: 30px; }
.p-hero-art {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--p-line);
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.8);
}
.p-hero-art svg { width: 100%; height: 100%; }

body.partners .section { padding: 92px 0; }
body.partners h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); text-transform: uppercase; }
.p-section-intro { color: var(--p-text-mute); max-width: 40em; }

/* benefit rows */
.benefit-rows { margin-top: 44px; display: flex; flex-direction: column; }
.benefit-row {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 26px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid var(--p-line);
}
.benefit-row:first-child { border-top: 1px solid var(--p-line); }
.benefit-row .b-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--p-gold-soft);
  color: var(--p-gold);
  display: grid; place-items: center;
}
.benefit-row .b-icon svg { width: 30px; height: 30px; }
.benefit-row h3 {
  font-size: 1.35rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.benefit-row p { color: var(--p-text-mute); }

/* looking-for card */
.looking-card {
  background: var(--p-card);
  border: 1.5px solid var(--p-gold);
  border-radius: 22px;
  padding: 44px 42px;
  box-shadow: 0 24px 60px -30px rgba(232,160,32,0.25);
}
.looking-card h2 { font-size: 1.7rem; margin-bottom: 24px; }
.looking-card ul { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 32px; }
.looking-card li {
  position: relative;
  padding-left: 32px;
  color: var(--p-text);
  font-weight: 500;
}
.looking-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--p-gold-soft);
}
.looking-card li::after {
  content: "";
  position: absolute;
  left: 6px; top: 8px;
  width: 6px; height: 10px;
  border: solid var(--p-gold);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* concept section */
.concept { background: var(--p-bg-2); }
.concept-card {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.concept-card p {
  font-size: 1.3rem;
  line-height: 1.6;
  color: var(--p-text);
  font-weight: 500;
}
.concept-card .sign {
  margin-top: 22px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--p-gold);
}

/* partners form */
.p-form-card {
  background: var(--p-card);
  border: 1px solid var(--p-line);
  border-radius: 22px;
  padding: 40px 38px;
  max-width: 660px;
  margin: 0 auto;
}
body.partners .field label { color: var(--p-text); }
body.partners .field input,
body.partners .field textarea,
body.partners .field select {
  background: #0F0F0F;
  border-color: var(--p-line);
  color: var(--p-text);
}
body.partners .field input::placeholder,
body.partners .field textarea::placeholder { color: #6f675a; }
body.partners .field input:focus,
body.partners .field textarea:focus,
body.partners .field select:focus {
  border-color: var(--p-gold);
  box-shadow: 0 0 0 4px rgba(232,160,32,0.15);
}
body.partners .file-drop {
  background: #0F0F0F;
  border-color: var(--p-line);
}
body.partners .file-drop:hover { border-color: var(--p-gold); background: #16130b; }
body.partners .file-drop .fd-label { color: var(--p-text-mute); }
body.partners .file-drop .fd-name { color: var(--p-gold); }
body.partners .form-success {
  background: #16130b;
  border-color: var(--p-gold);
  color: var(--p-gold);
}
body.partners .site-footer { background: #080808; border-top: 1px solid var(--p-line); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 940px) {
  .hero-grid, .p-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-art { max-width: 460px; }
  .p-hero-art { max-width: 420px; }
  .grid-3, .grid-4, .steps { grid-template-columns: 1fr 1fr; }
  .value-strip { grid-template-columns: 1fr; gap: 20px; text-align: center; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  body.partners .section { padding: 64px 0; }
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 16px 24px 24px;
    transform: translateY(-130%);
    transition: transform .3s var(--ease);
    box-shadow: var(--shadow-soft);
  }
  body.partners .nav-links { background: var(--p-bg); border-bottom: 1px solid var(--p-line); }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 14px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-toggle { display: block; }
  .grid-3, .grid-4, .steps, .grid-2 { grid-template-columns: 1fr; }
  .hero { padding: 70px 0 80px; }
  .p-hero { padding: 86px 0 90px; }
  .banner { padding: 48px 26px; }
  .step-detail { grid-template-columns: 1fr; gap: 8px; }
  .step-detail .big-num { font-size: 2.6rem; }
  .looking-card { padding: 32px 24px; }
  .looking-card ul { grid-template-columns: 1fr; }
  .benefit-row { grid-template-columns: 56px 1fr; gap: 18px; }
  .benefit-row .b-icon { width: 52px; height: 52px; }
  .footer-top { flex-direction: column; gap: 26px; }
  .form-card, .p-form-card { padding: 26px 22px; }
  .value-strip { padding: 28px 22px; }
  .founder-card { padding: 26px 22px; }
}

@media (max-width: 420px) {
  .wrap { padding: 0 18px; }
  .inline-form { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
