/* ===== Tenfold Method — Shared Styles ===== */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:opsz,wght@6..72,400;6..72,500;6..72,600&family=Inter:wght@400;500;600&display=swap');

:root {
  /* Color tokens — editorial + architectural, warmed with teal and gold */
  --bg: #FAF9F6;
  --surface-1: #F1F0EA;
  --surface-2: #FFFFFF;
  --text-primary: #16241F;
  --text-secondary: #5C6B67;
  --text-muted: #6B7570;
  --accent: #2F6F63;
  --accent-deep: #1E4A40;
  --accent-gold: #C9A24B;
  --accent-bg: #E3EFEA;
  --border: #D8D3C4;

  --radius: 3px;
  --font-display: 'Newsreader', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: linear-gradient(-45deg, #E3EFEA, #FAF9F6, #F4ECD8, #E9F1ED, #EAF3EE);
  background-size: 400% 400%;
  animation: gradientShift 22s ease infinite;
  line-height: 1.6;
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@media (prefers-reduced-motion: reduce) {
  body { animation: none; background: linear-gradient(180deg, #E3EFEA 0%, #FAF9F6 30%, #FAF9F6 70%, #E9F1ED 100%); }
}

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

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

/* The recurring "+" signature motif */
.plus { color: var(--accent); font-weight: 400; }
.plus-gold { color: var(--accent-gold); }

/* The "10" signature mark — replaces the "+" as the primary brand motif */
.ten-mark {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--accent);
  margin-right: 2px;
}
.ten-mark-gold { color: var(--accent-gold); }

/* ---- Dark hero: the bold color moment ---- */
.dark-hero {
  background: #16342D;
  color: #F4ECD8;
  position: relative;
  overflow: hidden;
  padding: 60px 24px;
}
.dark-hero::after {
  content: "";
  position: absolute; right: -80px; top: -80px;
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,0.22) 0%, transparent 70%);
}
.dark-hero .giant-mark {
  position: absolute; bottom: -110px; right: -20px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 300px; line-height: 1; color: #F4ECD8; opacity: 0.06;
  z-index: 0; user-select: none;
}
.dark-hero .wrap { position: relative; z-index: 1; }
.dark-hero .section-label { color: var(--accent-gold); }
.dark-hero h1 { color: #F4ECD8; }
.dark-hero h1 em { font-style: italic; color: var(--accent-gold); }
.dark-hero p.sub { color: #C9D6CE; }
.dark-hero .btn { border-color: #F4ECD8; color: #F4ECD8; background: transparent; }
.dark-hero .btn:hover { background: #F4ECD8; color: #16342D; }
.dark-hero .btn.btn-primary { background: #F4ECD8; color: #16342D; border-color: #F4ECD8; }
.dark-hero .btn.btn-primary:hover { background: transparent; color: #F4ECD8; }
.dark-hero .reassure-line { color: #9FB3AA; }
.mark-line { display: flex; align-items: center; gap: 10px; margin-top: 30px; }
.mark-line .ten-mark { font-size: 24px; }
.mark-line .mark-label { font-size: 12px; color: #9FB3AA; letter-spacing: 0.02em; }

@media (max-width: 600px) {
  .dark-hero .giant-mark { font-size: 200px; }
}

/* ---- Compact page banner: same signature moment, smaller, for interior pages ---- */
.page-banner {
  background: #16342D;
  color: #F4ECD8;
  position: relative;
  overflow: hidden;
  padding: 40px 24px;
}
.page-banner::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,75,0.2) 0%, transparent 70%);
}
.page-banner .giant-mark {
  position: absolute; bottom: -70px; right: -10px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 170px; line-height: 1; color: #F4ECD8; opacity: 0.06;
  z-index: 0; user-select: none;
}
.page-banner .wrap { position: relative; z-index: 1; }
.page-banner .section-label { color: var(--accent-gold); }
.page-banner h1 { color: #F4ECD8; font-size: 34px; margin-bottom: 8px; }
.page-banner p { color: #C9D6CE; max-width: 480px; font-size: 14px; }

/* ---- Header / nav ---- */
.site-header {
  border-bottom: 1px solid var(--border);
  background: transparent;
}
.site-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
nav.primary-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 13px;
  color: var(--text-secondary);
}
nav.primary-nav a:hover { color: var(--text-primary); }
nav.primary-nav a.current { color: var(--text-primary); font-weight: 500; }
.pill-link {
  background: transparent;
  color: var(--text-primary);
  padding: 8px 16px;
  border: 1px solid var(--text-primary);
  font-weight: 500;
  transition: all 0.15s ease;
}
.pill-link:hover { background: var(--text-primary); color: var(--bg); }
.instagram-link svg { width: 18px; height: 18px; vertical-align: -3px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  margin: -6px;
  cursor: pointer;
  color: var(--text-primary);
}
.nav-toggle svg { width: 22px; height: 22px; display: block; }

/* ---- Mobile nav: collapse the header links into a toggled dropdown ---- */
@media (max-width: 680px) {
  .site-header .wrap { position: relative; }
  .nav-toggle { display: block; }
  nav.primary-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    background: var(--surface-2);
    border-bottom: 1px solid var(--border);
    padding: 8px 20px 18px;
    z-index: 30;
  }
  nav.primary-nav.open { display: flex; }
  nav.primary-nav a { width: 100%; padding: 10px 0; }
  nav.primary-nav .pill-link { width: 100%; text-align: center; margin-top: 8px; }
  nav.primary-nav .instagram-link { padding: 10px 0; }
}

/* ---- Buttons: sharp, architectural ---- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 12px 24px;
  border-radius: 0;
  border: 1px solid var(--text-primary);
  background: var(--surface-2);
  color: var(--text-primary);
  cursor: pointer;
  transition: all 0.15s ease;
}
.btn:hover { background: var(--text-primary); color: var(--bg); }
.btn-primary {
  background: var(--text-primary);
  color: var(--bg);
  border: 1px solid var(--text-primary);
}
.btn-primary:hover { background: transparent; color: var(--text-primary); }
.btn-sm { font-size: 12px; padding: 8px 16px; }

/* ---- Sections ---- */
section { padding: 56px 0; border-top: 1px solid var(--border); }
section:first-of-type { border-top: none; }

h1 {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0 0 14px;
}
h2 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.005em;
  margin: 0 0 12px;
}
p { color: var(--text-secondary); margin: 0 0 14px; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: transparent;
  border: 1px solid var(--accent);
  padding: 5px 12px;
  margin-bottom: 16px;
}

/* Section label: small caps + "+" motif, the primary eyebrow style now */
.section-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 10px;
}

.kicker {
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  margin: 0 0 12px;
}

.center { text-align: center; }
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.card {
  background: var(--surface-1);
  border-radius: var(--radius);
  padding: 16px;
}
.card h3 { font-family: var(--font-body); font-size: 14px; font-weight: 600; margin: 8px 0 2px; }
.card p.small { font-size: 12px; color: var(--text-secondary); margin: 0; }
.icon { font-size: 22px; color: var(--accent); }

/* ---- Stat strip: hard numbers as design elements ---- */
.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--border); }
.stat-cell { padding: 26px 20px; border-left: 1px solid var(--border); }
.stat-cell:first-child { border-left: none; }
.stat-num { font-family: var(--font-display); font-size: 36px; color: var(--accent); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
@media (max-width: 560px) {
  .stat-strip { grid-template-columns: 1fr; }
  .stat-cell { border-left: none; border-top: 1px solid var(--border); }
  .stat-cell:first-child { border-top: none; }
}

/* ---- Full-bleed band: the "unexpected" moment ---- */
.bleed-band {
  background: var(--accent-deep);
  color: var(--bg);
  padding: 56px 24px;
  text-align: center;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
.bleed-band .plus { color: var(--accent-gold); font-size: 22px; }
.bleed-band p.big-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  line-height: 1.35;
  max-width: 620px;
  margin: 14px auto 0;
}

/* ---- Topic pills ---- */
.topic-pill {
  font-size: 13px;
  padding: 9px 16px;
  border: 1px solid var(--text-primary);
  color: var(--text-primary);
  transition: all 0.15s ease;
  display: inline-block;
}
.topic-pill:hover { background: var(--text-primary); color: var(--bg); }
.pill-row { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

/* ---- Index grid: boxed numbered cards (Method + Pillars) ---- */
.index-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.index-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.index-card { background: var(--surface-1); padding: 26px; }
.index-num { font-family: var(--font-display); font-size: 30px; color: var(--accent); line-height: 1; margin-bottom: 10px; }
.index-name { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.index-copy { font-size: 13px; color: var(--text-secondary); line-height: 1.55; }
@media (max-width: 640px) {
  .index-grid, .index-grid.cols-3 { grid-template-columns: 1fr; }
}

/* ---- Flagship callout module ---- */
.flagship-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.flagship-visual {
  aspect-ratio: 4/5;
  background: var(--accent-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}
.flagship-visual .plus { color: var(--bg); font-size: 44px; opacity: 0.5; }
@media (max-width: 640px) {
  .flagship-grid { grid-template-columns: 1fr; }
}

/* ---- Editorial blog cards ---- */
.blog-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card-ed { border-top: 2px solid var(--text-primary); padding-top: 14px; }
.blog-card-ed .cat { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.blog-card-ed h4 { font-family: var(--font-display); font-size: 18px; font-weight: 500; line-height: 1.3; margin: 0 0 8px; }
.blog-card-ed .excerpt { font-size: 12px; color: var(--text-muted); line-height: 1.5; }
@media (max-width: 640px) {
  .blog-row { grid-template-columns: 1fr; }
}

/* ---- Timeline (autonomy / competence / relatedness) ---- */
.timeline { position: relative; display: flex; justify-content: space-between; gap: 8px; padding: 0 8px; }
.timeline::before {
  content: "";
  position: absolute;
  top: 20px; left: 48px; right: 48px;
  height: 1px;
  background: var(--border);
}
.timeline .node { position: relative; flex: 1; text-align: center; }
.timeline .bubble {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent-bg); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; margin: 0 auto 12px; position: relative; z-index: 1;
}

/* ---- Footer ---- */
footer {
  text-align: center;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}
.motif-footer { text-align:center; font-size:12px; color:var(--text-muted); letter-spacing:0.06em; }
.motif-footer .plus { margin: 0 8px; }

/* ---- About page specific ---- */
.about-header { display: flex; gap: 24px; align-items: center; padding: 40px 0 32px; }
.about-header img { width: 110px; height: 110px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
ul.credentials { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
ul.credentials li { font-size: 14px; color: var(--text-secondary); padding-bottom: 8px; border-bottom: 1px solid var(--border); }
ul.credentials li:last-child { border-bottom: none; padding-bottom: 0; }
ul.credentials li strong { color: var(--text-primary); font-weight: 600; }

/* ---- Portal login ---- */
.login-page { max-width: 380px; margin: 0 auto; padding: 60px 20px; }
.login-box { background: var(--surface-1); border-radius: var(--radius); padding: 28px; border: 1px solid var(--border); }
.login-box h1 { font-size: 20px; text-align: center; margin-bottom: 20px; }
.field { margin-bottom: 14px; }
.field label { font-size: 13px; color: var(--text-secondary); display: block; margin-bottom: 4px; }
.field input {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 14px;
  font-family: var(--font-body);
}
.field input:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.forgot {
  display: block; width: 100%; font-size: 12px; color: var(--accent); text-align: right;
  margin: 4px 0 16px; cursor: pointer; background: none; border: none; padding: 4px 0;
  font-family: inherit;
}
.forgot:hover, .forgot:focus-visible { text-decoration: underline; }
.login-box .btn-primary { width: 100%; padding: 11px; }
.signup-note { font-size: 13px; text-align: center; margin-top: 16px; color: var(--text-secondary); }
.signup-note a { color: var(--accent); font-weight: 500; }
.form-error { color: #B3453B; font-size: 13px; margin: 0 0 12px; display: none; }

/* ---- Dashboard ---- */
.welcome h1 { font-size: 26px; }
.dash-grid { grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.dash-grid .card p.label { font-size: 12px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.03em; margin: 0 0 6px; }
.dash-grid .card p.value { font-size: 15px; font-weight: 600; margin: 0 0 2px; }
.section-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.section-head .link { font-size: 13px; color: var(--accent); cursor: pointer; }
.blog-tag { font-size: 12px; color: var(--accent); margin: 0 0 4px; }
.blog-title { font-size: 14px; font-weight: 600; margin: 0; }

/* Habit tracker grid */
.tracker { background: var(--surface-1); border-radius: var(--radius); padding: 16px; }
.tracker-row { display: grid; grid-template-columns: 100px repeat(7, 1fr); gap: 6px; align-items: center; margin-bottom: 8px; }
.tracker-row:last-child { margin-bottom: 0; }
.tracker-row span { text-align: center; font-size: 13px; }
.tracker-row .day-label { text-align: left; color: var(--text-primary); }
.tracker-head span { font-size: 12px; color: var(--text-secondary); }
.dot-done { color: var(--accent); font-weight: 600; }
.dot-empty { color: var(--text-muted); }

/* Fridge / restaurant tools */
.tool-box { background: var(--surface-1); border-radius: var(--radius); padding: 16px; }
.tool-box textarea, .tool-box input[type="text"] {
  width: 100%;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-size: 13px;
  font-family: var(--font-body);
  margin-bottom: 10px;
  resize: vertical;
}
.recipe-card, .restaurant-card { background: var(--surface-2); border-radius: var(--radius); padding: 12px; }
.macro-row { display: flex; gap: 14px; font-size: 12px; color: var(--text-secondary); margin-top: 4px; }
.restaurant-entry { border-bottom: 1px solid var(--border); padding-bottom: 10px; margin-bottom: 10px; }
.restaurant-entry:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }

/* Dashboard tabs — group tools by what the client is trying to do */
.tab-nav { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 24px; overflow-x: auto; }
.tab-btn {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 14px;
  cursor: pointer;
  white-space: nowrap;
}
.tab-btn:hover { color: var(--text-primary); }
.tab-btn.active { color: var(--text-primary); border-bottom-color: var(--accent); }
.tab-panel section:first-of-type { border-top: none; padding-top: 0; }

/* ---- Membership checkout: shared between membership.html and signup.html ---- */
.tier-card { background: var(--surface-1); border-radius: 12px; padding: 18px; margin-bottom: 14px; }
.tier-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.tier-price { font-size: 18px; font-weight: 600; color: var(--accent); }
.tier-list { margin: 10px 0 12px; padding-left: 18px; font-size: 13px; color: var(--text-secondary); }
.tier-list li { margin-bottom: 4px; }

.confirmed-plan { background: var(--accent-bg); border: 1px solid var(--accent); border-radius: 12px; padding: 22px; margin-bottom: 20px; }
.confirmed-label { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-deep); margin: 0 0 6px; }
.confirmed-plan .tier-price { color: var(--accent-deep); }
.change-plan-link { font-size: 13px; color: var(--accent); text-decoration: underline; cursor: pointer; background: none; border: none; padding: 0; font-family: var(--font-body); }
.order-summary { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 4px 0 12px; font-size: 14px; }
.order-summary .os-total { font-weight: 600; color: var(--text-primary); }
.trust-line { font-size: 12px; color: var(--text-muted); margin: 12px 0 0; }

/* ---- Join flow (signup.html): confirmed plan as a persistent side panel + 2-step wizard ---- */
.join-grid { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.join-summary { position: sticky; top: 24px; }
.join-summary .confirmed-plan { margin-bottom: 12px; }
.join-summary .order-summary { flex-direction: column; align-items: flex-start; gap: 2px; }
.step-indicator { font-size: 12px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-muted); margin: 0 0 14px; }
@media (max-width: 680px) {
  .join-grid { grid-template-columns: 1fr; gap: 0; }
  .join-summary { position: static; }
}

/* ---- Responsive ---- */
@media (max-width: 480px) {
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }
  .about-header { flex-direction: column; text-align: center; }
  nav.primary-nav { gap: 14px; font-size: 13px; }
}

.log-choice-btn.selected-choice { background: var(--text-primary); color: var(--bg); border-color: var(--text-primary); }

/* Booking slot picker */
.slot-btn {
  font-size: 13px;
  padding: 8px 10px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  cursor: pointer;
}
.slot-btn:hover { background: var(--surface-1); }
.slot-btn.selected { background: var(--text-primary); color: var(--bg); border-color: var(--text-primary); }
.slot-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; }
.appt-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); }
.appt-row:last-child { border-bottom: none; }

/* ---- Scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

.reassure-line { font-size: 13px; color: var(--text-muted); margin-top: 10px; }

/* ---- Quiz ---- */
.quiz-box { background: var(--surface-1); border: 1px solid var(--border); padding: 28px; max-width: 520px; margin: 0 auto; }
.quiz-q { margin-bottom: 20px; }
.quiz-q p.label { font-size: 14px; font-weight: 600; margin-bottom: 10px; }
.quiz-choices { display: flex; flex-wrap: wrap; gap: 8px; }
.quiz-choice { font-size: 13px; padding: 9px 14px; border: 1px solid var(--border); background: var(--surface-2); cursor: pointer; transition: all 0.15s ease; }
.quiz-choice:hover { border-color: var(--accent); }
.quiz-choice.selected { background: var(--accent); color: #fff; border-color: var(--accent); }
.quiz-result { display: none; text-align: center; padding-top: 12px; border-top: 1px solid var(--border); margin-top: 4px; }
.quiz-result.show { display: block; }

/* ---- Pillars: numbered boxed grid (matches The Method) ---- */
.pillars-row { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.pillar-card { flex: 1; min-width: 160px; max-width: 200px; text-align: center; background: var(--surface-1); border-radius: var(--radius); padding: 22px 16px; }
.pillar-badge { width: 52px; height: 52px; border-radius: 50%; background: var(--accent-bg); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.pillar-badge svg { width: 24px; height: 24px; stroke: var(--accent); }
.pillar-title { font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.pillar-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }
.pillar-plus { display: flex; align-items: center; font-size: 20px; color: var(--text-muted); padding: 0 2px; }

/* ---- Cost reassurance banner ---- */
.cost-banner { background: linear-gradient(135deg, var(--accent-bg) 0%, #F4ECD8 100%); border: 1px solid rgba(201,162,75,0.3); padding: 26px; text-align: center; }

/* ---- FAQ ---- */
.faq-item { border-bottom: 1px solid var(--border); padding: 16px 4px; }
.faq-q { font-weight: 600; font-size: 14px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-a { font-size: 13px; color: var(--text-secondary); margin-top: 10px; line-height: 1.6; display: none; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-arrow { transition: transform 0.2s ease; font-size: 12px; color: var(--accent); }

@media (max-width: 600px) {
  .pillars-row { flex-direction: column; align-items: center; }
  .pillar-plus { display: none; }
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---- Keyboard focus ---- */
a:focus-visible, button:focus-visible, .pill-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}


/* ===== Conversion pass: membership-first nav, proof, lead magnet ===== */

/* Portal login demoted to a plain text link; the pill now sells membership */
.portal-link { color: var(--text-muted); }
.portal-link:hover { color: var(--text-primary); }
nav.primary-nav { gap: 18px; }
@media (max-width: 900px) { nav.primary-nav { gap: 13px; font-size: 12px; } }

/* Evidence band: statement of fact, not an italic pull quote */
.bleed-band p.big-quote { font-style: normal; font-size: 25px; }
.bleed-band .band-source {
  font-size: 12px; line-height: 1.6; max-width: 560px;
  margin: 16px auto 0; opacity: 0.72;
}

/* Alumni quotes */
.alumni-quote {
  margin: 24px 0 0; padding: 20px 22px;
  background: var(--surface-2); border-left: 2px solid var(--accent-gold);
}
.alumni-quote blockquote {
  margin: 0 0 10px; font-family: var(--font-display);
  font-size: 18px; line-height: 1.45;
}
.alumni-quote figcaption {
  font-size: 12px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* Lead magnet band */
.lead-band {
  background: var(--surface-2); border: 1px solid var(--border);
  border-top: 3px solid var(--accent-gold); padding: 34px 32px;
}
@media (max-width: 640px) { .lead-band { padding: 26px 20px; } }

/* Scope statement above the footer */
.scope-note {
  max-width: 780px; margin: 0 auto; padding: 22px 24px 0;
  font-size: 12px; line-height: 1.7; color: var(--text-muted); text-align: center;
}

/* Free-session page */
.gate-box {
  background: var(--surface-2); border: 1px solid var(--border);
  border-top: 3px solid var(--accent-gold); padding: 28px; margin: 28px 0;
}
.day-block { border: 1px solid var(--border); background: var(--surface-1); margin-bottom: 14px; }
.day-block > h3 {
  margin: 0; padding: 12px 18px; font-size: 14px;
  background: var(--accent-deep); color: var(--bg); font-family: var(--font-body);
  letter-spacing: 0.04em; text-transform: uppercase;
}
.day-block .block-purpose { font-size: 13px; color: var(--text-secondary); margin: 0; padding: 12px 18px 0; }
.lift { padding: 16px 18px; border-top: 1px solid var(--border); margin-top: 12px; }
.lift:first-of-type { margin-top: 12px; }
.lift h4 { margin: 0 0 10px; font-size: 14px; font-family: var(--font-body); }
.tier-row { display: grid; grid-template-columns: 96px 1fr; gap: 10px; font-size: 13px; padding: 5px 0; }
.tier-row dt { color: var(--accent); font-weight: 600; }
.tier-row dd { margin: 0; color: var(--text-secondary); }
@media (max-width: 560px) { .tier-row { grid-template-columns: 1fr; gap: 2px; } }
.cue-list { margin: 10px 0 0; padding-left: 18px; font-size: 13px; color: var(--text-secondary); }
.cue-list li { margin-bottom: 2px; }
.meta-pill {
  display: inline-block; font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
  background: var(--accent-bg); color: var(--accent-deep);
  border: 1px solid var(--border); padding: 3px 9px; margin: 0 6px 6px 0;
}
.safety-note {
  font-size: 13px; background: #FBF3E2; border-left: 2px solid var(--accent-gold);
  padding: 10px 14px; margin: 12px 0 0; color: var(--text-primary);
}

/* Badge, shared so the blog list can flag the free article */
.price-badge {
  display: inline-block; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--accent); color: #fff; padding: 3px 8px; margin-bottom: 10px;
}
