/* ============================================================
   CONVERGE — Shared Stylesheet
   convergecourtship-site/css/styles.css
   ============================================================ */

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:         #0f1623;
  --navy-mid:     #1a2438;
  --charcoal:     #2e3440;
  --ivory:        #f7f4ef;
  --ivory-dim:    #ede9e1;
  --ivory-deep:   #e4dfd6;
  --warm:         #b09e87;
  --warm-light:   #d4c4b0;
  --warm-faint:   #f0ebe3;
  --rule:         rgba(176,158,135,0.22);
  --rule-strong:  rgba(176,158,135,0.45);
  --text-pri:     #0f1623;
  --text-sec:     #4a5260;
  --text-muted:   #7a8090;
  --error:        #8b3a3a;
}

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

body {
  background: var(--ivory);
  color: var(--text-pri);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* ── TYPOGRAPHY UTILITIES ── */
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 400; }


/* ============================================================
   SHARED NAV
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(247,244,239,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  letter-spacing: 0.14em;
  color: var(--navy);
  text-decoration: none;
}
.nav-cta {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--charcoal);
  padding: 10px 22px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--navy); color: var(--ivory); }


/* ============================================================
   SHARED BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--navy);
  padding: 18px 40px;
  text-decoration: none;
  border: 1px solid var(--navy);
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--charcoal); border-color: var(--charcoal); }


/* ============================================================
   SHARED FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(247,244,239,0.4);
  padding: 48px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: rgba(247,244,239,0.5);
  letter-spacing: 0.1em;
}
.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,244,239,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(247,244,239,0.7); }
.footer-copy { font-size: 12px; letter-spacing: 0.06em; }


/* ============================================================
   LANDING PAGE — index.html
   ============================================================ */

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; }
.container { max-width: 960px; margin: 0 auto; padding: 0 48px; }
.container--narrow { max-width: 680px; margin: 0 auto; padding: 0 48px; }

.convergence-motif {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: min(55vw, 600px);
  opacity: 0.07;
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 40px;
}
.hero-headline {
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1.04;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.hero-headline em { font-style: italic; color: var(--warm); }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 300;
  color: var(--text-sec);
  max-width: 540px;
  margin-bottom: 64px;
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-note { font-size: 13px; color: var(--text-muted); letter-spacing: 0.04em; }

/* ── LANDING SECTIONS ── */
.landing-section { padding: 120px 0; }
.landing-section + .landing-section { border-top: 1px solid var(--rule); }

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 48px;
  display: block;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 32px;
}
.section-body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-sec);
  max-width: 620px;
}

/* ── POSITIONING GRID ── */
.positioning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  margin-top: 64px;
}
.grid-cell { background: var(--ivory); padding: 44px 40px; }
.grid-cell h3 {
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 20px;
}
.replaced-list, .with-list {
  list-style: none;
  font-size: 16px;
  line-height: 2.1;
  color: var(--text-sec);
}
.replaced-list li::before { content: "—  "; color: var(--warm-light); }
.with-list li::before { content: "·  "; color: var(--warm); font-size: 20px; vertical-align: -2px; }

/* ── FRAMEWORK (dark section) ── */
#framework { background: var(--navy); }
#framework .section-title { color: var(--ivory); }
#framework .section-label { color: var(--warm-light); }
#framework .section-body { color: rgba(247,244,239,0.55); }

.stages { margin-top: 72px; display: flex; flex-direction: column; }
.stage {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 0 36px;
  padding: 44px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stage:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.stage-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: rgba(176,158,135,0.3);
  line-height: 1;
  padding-top: 4px;
}
.stage-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 10px;
}
.stage-desc { font-size: 15px; line-height: 1.75; color: rgba(247,244,239,0.55); }
.stage-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm-light);
  border: 1px solid rgba(176,158,135,0.3);
  padding: 4px 10px;
  margin-bottom: 10px;
}

/* ── MEMBERSHIP ── */
.membership-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 32px;
}
.price-block { border: 1px solid var(--rule-strong); padding: 48px 40px; }
.price-block .founding {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 24px;
}
.price-block .amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.price-block .per { font-size: 13px; color: var(--text-muted); letter-spacing: 0.06em; margin-bottom: 36px; }
.price-details {
  list-style: none;
  font-size: 14px;
  line-height: 2.2;
  color: var(--text-sec);
  border-top: 1px solid var(--rule);
  padding-top: 28px;
}
.price-details li { display: flex; align-items: baseline; gap: 10px; }
.price-details li::before { content: "·"; color: var(--warm); flex-shrink: 0; }
.price-right { padding-top: 16px; }
.price-right p { font-size: 16px; line-height: 1.85; color: var(--text-sec); margin-bottom: 24px; }

/* ── STANDARDS ── */
#standards { background: #f2ede5; }
.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule-strong);
  border: 1px solid var(--rule-strong);
  margin-top: 64px;
}
.standard-item { background: #f2ede5; padding: 36px 32px; }
.standard-item .icon { width: 32px; height: 1px; background: var(--warm); margin-bottom: 24px; }
.standard-item h4 {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 12px;
}
.standard-item p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ── ORIGIN ── */
.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 300;
  font-style: italic;
  color: var(--navy);
  line-height: 1.45;
  border-left: 2px solid var(--warm);
  padding-left: 40px;
  margin: 64px 0;
  max-width: 720px;
}

/* ── FAQ (dark section) ── */
#faq { background: var(--navy); }
#faq .section-title { color: var(--ivory); }
#faq .section-label { color: var(--warm-light); }
.faq-list { margin-top: 64px; }
.faq-item { border-top: 1px solid rgba(255,255,255,0.08); padding: 36px 0; }
.faq-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.08); }
.faq-q {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 16px;
}
.faq-a { font-size: 15px; line-height: 1.8; color: rgba(247,244,239,0.55); max-width: 720px; }

/* ── CTA ── */
#apply { text-align: center; padding: 160px 0; }
#apply .section-label { justify-content: center; display: flex; margin-bottom: 32px; }
#apply .section-title { margin: 0 auto 20px; }
.cta-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.6;
}
.cta-note { font-size: 13px; color: var(--text-muted); margin-top: 20px; letter-spacing: 0.04em; }

/* ── HERO ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { opacity: 0; animation: fadeUp 0.9s ease forwards; }
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.3s; }
.fade-up:nth-child(3) { animation-delay: 0.5s; }
.fade-up:nth-child(4) { animation-delay: 0.65s; }


/* ============================================================
   APPLICATION PAGE — application.html
   ============================================================ */

/* ── APP HEADER ── */
.app-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(247,244,239,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-section-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

/* ── PROGRESS BAR ── */
.progress-bar-wrap {
  position: fixed;
  top: 64px; left: 0; right: 0;
  z-index: 199;
  background: var(--ivory-dim);
  border-bottom: 1px solid var(--rule);
  padding: 0 48px;
  height: 48px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.progress-steps { display: flex; align-items: center; gap: 0; flex: 1; }
.progress-step { display: flex; align-items: center; gap: 8px; flex: 1; }
.progress-step:last-child { flex: none; }
.step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--warm-light);
  background: transparent;
  flex-shrink: 0;
  transition: all 0.3s;
}
.progress-step.active   .step-dot { background: var(--warm); border-color: var(--warm); }
.progress-step.complete .step-dot { background: var(--navy); border-color: var(--navy); }
.step-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  transition: color 0.3s;
}
.progress-step.active   .step-label { color: var(--warm); }
.progress-step.complete .step-label { color: var(--navy); }
.step-connector { flex: 1; height: 1px; background: var(--rule); margin: 0 8px; }
.progress-pct { font-size: 11px; letter-spacing: 0.12em; color: var(--text-muted); white-space: nowrap; }

/* ── APP MAIN ── */
.app-main { padding-top: 112px; min-height: 100vh; }

/* ── SCREENS ── */
.screen { display: none; }
.screen.active { display: block; }
.screen-fade { animation: screenIn 0.5s ease forwards; }
@keyframes screenIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PREAMBLE ── */
#screen-preamble {
  min-height: calc(100vh - 112px);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 32px;
}
#screen-preamble.active { display: flex; }
.preamble-inner { max-width: 580px; }
.preamble-motif { margin: 0 auto 56px; display: block; }
.preamble-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 40px;
}
.preamble-title em { font-style: italic; color: var(--warm); }
.preamble-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--text-sec);
  line-height: 1.75;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 32px 0;
  margin-bottom: 40px;
}
.preamble-meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.meta-item { text-align: center; }
.meta-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
  display: block;
}
.meta-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

/* ── SECTION SCREENS ── */
.section-screen { max-width: 760px; margin: 0 auto; padding: 80px 48px 120px; }
.section-header { margin-bottom: 64px; }
.section-eyebrow {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--warm);
  font-weight: 500;
  margin-bottom: 16px;
}
.section-title-app {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-intent {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.7;
  border-left: 2px solid var(--warm-light);
  padding-left: 20px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

/* ── FORM FIELDS ── */
.field-group { margin-bottom: 56px; }
.field-group:last-of-type { margin-bottom: 0; }
.field-label {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.field-sublabel {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.field-note {
  display: block;
  font-size: 12px;
  color: var(--warm);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  font-style: italic;
}
.field-divider { border: none; border-top: 1px solid var(--rule); margin: 48px 0; }

/* ── RADIO / PILL CARDS ── */
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--rule-strong);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: white;
}
.radio-card:hover { border-color: var(--warm); }
.radio-card input[type="radio"],
.radio-card input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--navy);
  flex-shrink: 0;
  margin-top: 3px;
  cursor: pointer;
}
.radio-card.selected { border-color: var(--navy); background: var(--warm-faint); }
.radio-card-label { font-size: 15px; color: var(--text-pri); line-height: 1.5; }
.radio-card-desc { font-size: 13px; color: var(--text-muted); margin-top: 3px; }

.radio-row { display: flex; flex-wrap: wrap; gap: 10px; }
.radio-pill {
  padding: 10px 20px;
  border: 1px solid var(--rule-strong);
  cursor: pointer;
  font-size: 14px;
  color: var(--text-sec);
  background: white;
  transition: all 0.2s;
  user-select: none;
  letter-spacing: 0.04em;
}
.radio-pill:hover { border-color: var(--warm); }
.radio-pill.selected { background: var(--navy); color: var(--ivory); border-color: var(--navy); }
.radio-pill input { display: none; }

/* ── TEXTAREA & INPUTS ── */
textarea {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-pri);
  background: white;
  border: 1px solid var(--rule-strong);
  padding: 20px 22px;
  resize: vertical;
  min-height: 160px;
  line-height: 1.8;
  transition: border-color 0.2s;
  outline: none;
}
textarea:focus { border-color: var(--navy); }
textarea::placeholder { color: var(--warm-light); font-style: italic; }
.word-count { font-size: 11px; color: var(--text-muted); text-align: right; margin-top: 6px; letter-spacing: 0.06em; }
.word-count.warn { color: var(--warm); }
.word-count.over { color: var(--error); }

input[type="text"],
input[type="email"],
select {
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-pri);
  background: white;
  border: 1px solid var(--rule-strong);
  padding: 16px 20px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
input[type="text"]:focus,
input[type="email"]:focus,
select:focus { border-color: var(--navy); }

/* ── LIKERT TABLE ── */
.likert-table { width: 100%; border-collapse: collapse; }
.likert-table thead th {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  padding: 0 8px 16px;
  text-align: center;
}
.likert-table thead th:first-child { text-align: left; padding-left: 0; }
.likert-table tbody tr { border-top: 1px solid var(--rule); }
.likert-table tbody tr:hover { background: var(--warm-faint); }
.likert-table td { padding: 16px 8px; text-align: center; vertical-align: middle; }
.likert-table td:first-child {
  text-align: left;
  padding-left: 0;
  font-size: 15px;
  color: var(--text-sec);
  width: 60%;
}
.likert-table input[type="radio"] { width: 16px; height: 16px; accent-color: var(--navy); cursor: pointer; }

/* ── DRAG-RANK ── */
.rank-list { display: flex; flex-direction: column; gap: 8px; user-select: none; }
.rank-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: white;
  border: 1px solid var(--rule-strong);
  cursor: grab;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.rank-item:active { cursor: grabbing; }
.rank-item.dragging { box-shadow: 0 8px 32px rgba(15,22,35,0.12); border-color: var(--warm); background: var(--warm-faint); opacity: 0.9; }
.rank-item.drag-over { border-color: var(--navy); }
.rank-handle { display: flex; flex-direction: column; gap: 3px; flex-shrink: 0; }
.rank-handle span { display: block; width: 16px; height: 1px; background: var(--warm-light); }
.rank-num { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--warm); font-weight: 300; width: 24px; flex-shrink: 0; }
.rank-name { font-size: 15px; color: var(--text-pri); }
.rank-hint { font-size: 12px; color: var(--text-muted); margin-bottom: 16px; font-style: italic; }

/* ── NON-NEGOTIABLES ── */
.nn-inputs { display: flex; flex-direction: column; gap: 10px; }
.nn-row { display: flex; align-items: center; gap: 12px; }
.nn-num { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--warm); flex-shrink: 0; width: 20px; }

/* ── AGREEMENTS ── */
.agreement-list { display: flex; flex-direction: column; gap: 14px; }
.agreement-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 22px;
  border: 1px solid var(--rule);
  background: white;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s;
}
.agreement-item:hover { border-color: var(--warm); }
.agreement-item.checked { border-color: var(--navy); background: var(--warm-faint); }
.agreement-item input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--navy);
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
}
.agreement-text { font-size: 15px; color: var(--text-sec); line-height: 1.6; }

/* ── AFFIRMATION BOX ── */
.affirmation-box {
  border: 1px solid var(--rule-strong);
  padding: 40px;
  text-align: center;
  background: white;
  margin-top: 40px;
}
.affirmation-box p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
  margin-bottom: 24px;
}

/* ── CALLOUT ── */
.callout {
  background: var(--warm-faint);
  border-left: 3px solid var(--warm);
  padding: 16px 20px;
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.65;
  margin-top: 12px;
}
.callout strong { color: var(--navy); font-weight: 500; }

/* ── NAV ACTIONS (app navigation) ── */
.nav-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
}
.btn-back {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 0;
  transition: color 0.2s;
}
.btn-back:hover { color: var(--navy); }
.btn-next {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--navy);
  border: 1px solid var(--navy);
  padding: 16px 40px;
  cursor: pointer;
  transition: background 0.25s;
}
.btn-next:hover { background: var(--charcoal); border-color: var(--charcoal); }
.btn-begin {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory);
  background: var(--navy);
  border: 1px solid var(--navy);
  padding: 20px 56px;
  cursor: pointer;
  transition: background 0.25s;
}
.btn-begin:hover { background: var(--charcoal); }
.btn-submit {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--warm);
  border: 1px solid var(--warm);
  color: var(--navy);
  padding: 18px 52px;
  cursor: pointer;
  transition: background 0.25s;
}
.btn-submit:hover { background: var(--warm-light); border-color: var(--warm-light); }

/* ── CONFIRMATION SCREEN ── */
#screen-confirm {
  min-height: calc(100vh - 112px);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 32px;
}
#screen-confirm.active { display: flex; }
.confirm-inner { max-width: 600px; }
.confirm-mark { margin: 0 auto 48px; display: block; }
.confirm-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.confirm-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 56px;
  line-height: 1.55;
}
.confirm-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--rule-strong);
  border: 1px solid var(--rule-strong);
  text-align: left;
  margin-bottom: 48px;
}
.confirm-detail { background: var(--ivory); padding: 28px; }
.confirm-detail-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 8px;
}
.confirm-detail-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--navy);
  line-height: 1.4;
}
.confirm-note { font-size: 14px; color: var(--text-muted); line-height: 1.8; max-width: 480px; margin: 0 auto; }


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .site-nav    { padding: 0 24px; }
  .app-header  { padding: 0 24px; }
  .progress-bar-wrap { padding: 0 24px; }
  .step-label  { display: none; }
  .container, .container--narrow { padding: 0 24px; }
}

@media (max-width: 768px) {
  .positioning-grid  { grid-template-columns: 1fr; }
  .membership-inner  { grid-template-columns: 1fr; gap: 48px; }
  .standards-grid    { grid-template-columns: 1fr 1fr; }
  .section-screen    { padding: 40px 24px 80px; }
  .confirm-details   { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .standards-grid { grid-template-columns: 1fr; }
  .site-footer    { padding: 40px 24px; }
}
