/*
Theme Name: Intentionally Blank
Theme URI: https://www.nilovelez.com/blank/
Author: Nilo Velez
Author URI: https://www.nilovelez.com/
Description: This theme was intentionally left blank. There are times when all you need is the WordPress dashboard and an blank frontend. You might be using the WordPress REST API as a backend for a mobile App or you might be a minimalism obsessed hipster. This is your theme.
Version: 3.1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: featured-images, custom-background, theme-options, translation-ready
Text Domain: intentionally-blank
Requires at least: 4.6
Tested up to: 6.6
Requires PHP: 7.4
*/

/* ============================================================
   NABU TUTOR: "The Attending"
   Warm paper + ink. Light is default; dark is warm lamplight.
   ============================================================ */

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

/* ---- Tokens: LIGHT (default) ---- */
:root {
  --bg:        #F4EFE6;   /* warm paper            */
  --surface:   #FBF8F1;   /* raised band           */
  --card:      #FFFFFF;   /* white card (humans)   */
  --ink:       #1E1B16;   /* warm near-black       */
  --muted:     #6B6358;   /* secondary text        */
  --border:    #E5DECF;   /* hairline              */
  --accent:    #2B4B7E;   /* fountain-pen ink-blue */
  --accent-ink:#22405F;   /* small accent text     */
  --accent-soft:#E7EAF0;  /* accent fill           */
  --good:      #3E7A55;
  --bad:       #B0584A;
  --shadow:    rgba(40,34,26,0.07);
  --shadow-lg: rgba(40,34,26,0.10);
  --btn-ink:   #FBF8F1;   /* text on accent btn    */

  --display: 'Fraunces', Georgia, serif;
  --reading: 'Newsreader', Georgia, serif;
  --ui: 'Inter', system-ui, -apple-system, sans-serif;

  --r-sm: 10px;
  --r: 16px;
  --r-lg: 24px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---- Tokens: DARK (warm walnut + brass lamplight) ---- */
html[data-theme="dark"] {
  --bg:        #171310;
  --surface:   #1F1A15;
  --card:      #272019;
  --ink:       #EFE7D8;
  --muted:     #A89B89;
  --border:    #352C23;
  --accent:    #D8A65A;   /* warm brass, a reading lamp, not neon */
  --accent-ink:#E7C588;
  --accent-soft:#2C2418;
  --good:      #86B89A;
  --bad:       #D69585;
  --shadow:    rgba(0,0,0,0.40);
  --shadow-lg: rgba(0,0,0,0.55);
  --btn-ink:   #171310;
}

html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--ui);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color .25s ease, color .25s ease;
}

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

a { color: inherit; text-decoration: none; }
img, video { max-width: 100%; height: auto; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.75rem); }

/* Hide WP admin bar if present */
#wpadminbar { display:none !important; }
html { margin-top:0 !important; }

/* ---- Type ---- */
.reading { font-family: var(--reading); }

h1, h2, h3, .display { font-family: var(--display); font-weight: 440; letter-spacing: -0.02em; line-height: 1.08; }

.eyebrow {
  font-family: var(--ui);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-variant-caps: all-small-caps;
  text-transform: lowercase;
  color: var(--accent-ink);
  margin-bottom: 1rem;
}

.s-heading {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  color: var(--ink);
  line-height: 1.1;
  text-wrap: balance;
}

.lede {
  font-size: clamp(1.08rem, 1.4vw, 1.2rem);
  line-height: 1.7;
  color: var(--muted);
  max-width: 62ch;
}

em { font-style: italic; }

/* ---- The ink underline (static, present on first paint) ---- */
.mark { position: relative; white-space: nowrap; padding-bottom: 0.12em; }
.mark::after {
  content: "";
  position: absolute;
  left: -0.04em; right: -0.04em; bottom: 0;
  height: 0.34em;
  background-color: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 18'%3E%3Cpath d='M4 11 C 60 4, 110 15, 162 9 S 250 5, 296 10' fill='none' stroke='black' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 18'%3E%3Cpath d='M4 11 C 60 4, 110 15, 162 9 S 250 5, 296 10' fill='none' stroke='black' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  opacity: 0.9;
}
.mark-sm { white-space: normal; }
.mark-sm::after { height: 0.26em; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--ui); font-weight: 600; font-size: 0.95rem;
  padding: 0.85rem 1.6rem; border-radius: 100px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease), color .2s ease;
}
.btn-sm { padding: 0.55rem 1.15rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.1rem; font-size: 1.05rem; }
.btn-primary { background: var(--accent); color: var(--btn-ink); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -10px var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--border); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-2px); }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 1.1rem 0;
  border-bottom: 1px solid transparent;
  transition: padding .4s var(--ease), background-color .3s ease, border-color .3s ease;
}
.nav.scrolled {
  padding: 0.7rem 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.75rem);
}
.nav-logo {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--display); font-size: 1.45rem; font-weight: 500; color: var(--ink);
  letter-spacing: -0.01em;
}
.nav-logo img { width: 32px; height: 32px; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.92rem; color: var(--muted); transition: color .25s; }
.nav-links a:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 0.9rem; }

.theme-toggle {
  width: 38px; height: 38px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border); color: var(--ink);
  cursor: pointer; transition: border-color .25s, color .25s, transform .25s var(--ease);
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent-ink); transform: translateY(-1px); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .i-sun { display: none; }
html[data-theme="dark"] .theme-toggle .i-moon { display: none; }
html[data-theme="dark"] .theme-toggle .i-sun { display: block; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s; }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
/* Top padding must clear the fixed nav AND the announcement bar (--bar-h). */
.hero { padding: calc(var(--bar-h) + clamp(8.5rem, 15vh, 11rem)) 0 clamp(4rem, 8vh, 6rem); }
/* Left text aligns to the 1180 grid; the video column stretches toward the
   right edge so the clip reads big (like the previous site). */
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.22fr);
  align-items: center; gap: clamp(2rem, 4vw, 3.5rem);
  max-width: none; width: 100%; margin: 0;
  padding-left: max(clamp(1.25rem, 4vw, 2.75rem), calc((100% - 1180px) / 2 + clamp(1.25rem, 4vw, 2.75rem)));
  padding-right: clamp(1.25rem, 2.5vw, 2.25rem);
}
.hero-copy { max-width: 37rem; }
.hero-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 3.7vw, 3.3rem);
  font-weight: 440; line-height: 1.1; letter-spacing: -0.02em;
  color: var(--ink); margin-bottom: 1.6rem; text-wrap: balance;
}
.hero-sub {
  font-size: clamp(1.1rem, 1.5vw, 1.28rem); line-height: 1.65;
  color: var(--muted); max-width: 34rem; margin-bottom: 1.5rem;
}
.hero-btns { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-proof { margin-top: 2.1rem; }
.hero-proof-label {
  font-family: var(--ui); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em;
  font-variant-caps: all-small-caps; text-transform: lowercase; color: var(--accent-ink);
  margin-bottom: 1rem;
}
.hero-stats { display: flex; gap: clamp(1.5rem, 3vw, 2.75rem); flex-wrap: wrap; }
.hero-stat { display: flex; align-items: center; gap: 0.85rem; }
.hero-stat-num {
  font-family: var(--display); font-weight: 500; line-height: 1;
  font-size: clamp(2.1rem, 2.9vw, 2.7rem); letter-spacing: -0.02em; color: var(--accent-ink);
}
.hero-stat-label {
  font-family: var(--ui); font-size: 0.76rem; line-height: 1.4; color: var(--muted);
  padding-left: 0.85rem; border-left: 1px solid var(--border);
}

.hero-media { position: relative; }
.hero-video-el {
  width: 100%; aspect-ratio: 16 / 10; object-fit: cover;
  border-radius: var(--r-lg); background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 40px 80px -28px var(--shadow-lg);
}
.hero-media-cap {
  text-align: center; margin-top: 0.9rem;
  font-size: 0.8rem; color: var(--muted); letter-spacing: 0.02em;
}

/* ============ SHARED SECTION ============ */
.section { padding: clamp(4.5rem, 9vh, 7.5rem) 0; }
.section-head { max-width: 50rem; margin: 0 auto clamp(2.5rem, 5vh, 4rem); text-align: center; }
.section-head .lede { margin-left: auto; margin-right: auto; }
.rule {
  max-width: var(--maxw); margin: 0 auto; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent);
}

.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); box-shadow: 0 1px 0 var(--shadow);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}

/* ============ PHYSICIANS IN YOUR CORNER ============ */
.corner-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.person { padding: 2rem 1.75rem; text-align: center; display: flex; flex-direction: column; align-items: center; }
.person:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -24px var(--shadow-lg); border-color: var(--accent); }
.person-img {
  width: 92px; height: 92px; border-radius: 50%; object-fit: cover; object-position: top center;
  border: 1px solid var(--border); margin-bottom: 1.1rem;
  filter: grayscale(0.18) contrast(1.02); transition: filter .4s;
}
.person:hover .person-img { filter: grayscale(0); }
.person-monogram {
  width: 92px; height: 92px; border-radius: 50%; margin-bottom: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent-ink);
  border: 1px solid var(--border); font-size: 2rem;
}
.person-role-card { background: var(--surface); border-style: dashed; }
.person-role {
  font-family: var(--ui); font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.06em; font-variant-caps: all-small-caps; text-transform: lowercase;
  color: var(--accent-ink); margin-bottom: 0.35rem;
}
.person-name { font-size: 1.35rem; color: var(--ink); margin-bottom: 0.7rem; }
.person p { font-size: 0.96rem; line-height: 1.6; color: var(--muted); }
.person-link { margin-top: 0.9rem; font-size: 0.85rem; font-weight: 600; color: var(--accent-ink); }
.person-link:hover { color: var(--accent); }

/* ============ SESSION (how it teaches) ============ */
.session-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.session-copy { max-width: 30rem; }
.session-copy .s-heading { text-align: left; }
.session-copy .lede { margin: 1.25rem 0 1.75rem; }
.chat {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 1.6rem; box-shadow: 0 30px 60px -30px var(--shadow-lg);
  display: flex; flex-direction: column; gap: 0.85rem;
}
.chat-cap {
  font-family: var(--ui); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.06em;
  font-variant-caps: all-small-caps; text-transform: lowercase; color: var(--muted);
  margin-bottom: 0.3rem;
}
.bubble {
  max-width: 85%; padding: 0.85rem 1.1rem; border-radius: 16px;
  font-size: 0.96rem; line-height: 1.55; font-family: var(--reading);
}
.bubble.user {
  align-self: flex-end; background: var(--card); border: 1px solid var(--border);
  color: var(--ink); border-bottom-right-radius: 5px;
}
.bubble.nabu {
  align-self: flex-start; background: var(--accent-soft);
  border: 1px solid var(--border); color: var(--ink); border-bottom-left-radius: 5px;
}
.bubble.nabu strong { color: var(--accent-ink); font-weight: 600; }

/* ============ THE PROBLEM (metric) ============ */
.problem-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.problem-copy { max-width: 30rem; }
.problem-copy .s-heading { text-align: left; }
.problem-copy .lede { margin-top: 1.2rem; }
.problem-chart {
  margin: 0; border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; background: #FBF8F1;
  box-shadow: 0 24px 55px -30px var(--shadow-lg);
}
.problem-chart img { width: 100%; display: block; }

/* ============ WHY NABU: comparison v2 ============ */
.compare-wrap {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border); border-radius: var(--r-lg);
  background: var(--surface); box-shadow: 0 26px 60px -34px var(--shadow-lg);
}
/* Mobile affordance: the comparison table scrolls sideways on narrow screens,
   so hint it with a "Swipe to compare" caption and a soft right-edge fade. */
.compare-scroll { position: relative; }
.compare-hint {
  display: none; text-align: right; margin: 0 0.2rem 0.55rem;
  font-family: var(--ui); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.02em; color: var(--muted);
}
.compare-scroll::after {
  content: ""; position: absolute; top: 0; right: 0; bottom: 0;
  width: 2.75rem; pointer-events: none; opacity: 0;
  border-radius: 0 var(--r-lg) var(--r-lg) 0;
  background: linear-gradient(to right, transparent, var(--surface));
}
@media (max-width: 760px) {
  .compare-hint { display: block; }
  .compare-scroll::after { opacity: 1; }
}
.compare-v2 {
  width: 100%; min-width: 720px; border-collapse: collapse; font-family: var(--ui);
}
.compare-v2 th, .compare-v2 td {
  padding: 0.6rem 0.95rem; text-align: center; border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.compare-v2 thead th { vertical-align: bottom; padding-top: 1.15rem; padding-bottom: 0.85rem; }
.cv-prod-name { font-family: var(--display); font-weight: 480; font-size: 1.06rem; color: var(--ink); letter-spacing: -0.01em; }
.cv-prod small {
  display: block; margin-top: 0.25rem; font-family: var(--ui);
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.05em;
  font-variant-caps: all-small-caps; text-transform: lowercase; color: var(--muted);
}
.cv-feature {
  text-align: left; color: var(--ink); font-size: 0.92rem; font-weight: 500;
  line-height: 1.4; min-width: 220px;
}
.cv-cat td {
  text-align: left; background: var(--bg);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.09em;
  font-variant-caps: all-small-caps; text-transform: lowercase; color: var(--accent-ink);
  padding-top: 0.6rem; padding-bottom: 0.6rem;
}
/* highlighted Nabu column */
.compare-v2 .cv-nabu { background: var(--accent-soft); }
.compare-v2 thead th.cv-nabu { border-top: 1px solid var(--accent); border-radius: 12px 12px 0 0; }
.compare-v2 thead th.cv-nabu .cv-prod-name { color: var(--accent-ink); }
.compare-v2 tbody tr:last-child td.cv-nabu { border-radius: 0 0 12px 12px; }
.compare-v2 td.cv-nabu { border-left: 1px solid var(--border); border-right: 1px solid var(--border); }

.cv-yes, .cv-no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; font-size: 0.78rem; font-weight: 700;
}
.cv-yes { color: var(--good); background: color-mix(in srgb, var(--good) 14%, transparent); }
.cv-no { color: var(--muted); opacity: 0.5; font-size: 0.85rem; }
.cv-nabu .cv-yes { color: var(--btn-ink); background: var(--accent); }
.cv-pill {
  display: inline-block; padding: 0.25rem 0.7rem; border-radius: 100px;
  border: 1px solid var(--border); font-size: 0.72rem; font-weight: 600; color: var(--muted);
}
.cv-text { font-size: 0.85rem; color: var(--muted); }
.cv-price { font-family: var(--display); font-size: 1.25rem; font-weight: 520; color: var(--accent-ink); }
.cv-price-row .cv-feature { font-weight: 600; }
.why-foot {
  max-width: 720px; margin: 2rem auto 0; text-align: center;
  font-size: 1.02rem; line-height: 1.6; color: var(--muted);
}

/* ============ STEPS ============ */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.step { text-align: center; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.6rem; height: 3.6rem; border-radius: 50%;
  border: 1px solid var(--accent); color: var(--accent-ink);
  font-family: var(--ui); font-size: 0.85rem; font-weight: 600;
  margin-bottom: 1.4rem; background: var(--surface);
}
.step h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 0.7rem; }
.step p { font-size: 0.98rem; line-height: 1.6; color: var(--muted); max-width: 22rem; margin: 0 auto; }

/* ============ PLANS ============ */
.plans-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; max-width: 880px; margin: 0 auto; }
.plan { padding: 2.4rem 2.1rem; display: flex; flex-direction: column; }
.plan-pro { background: var(--accent-soft); border-color: var(--accent); }
.plan-name {
  font-family: var(--ui); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em;
  font-variant-caps: all-small-caps; text-transform: lowercase; color: var(--accent-ink);
  margin-bottom: 1.4rem;
}
.plan-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: 1.8rem; flex: 1; }
.plan-list li {
  position: relative; padding-left: 1.7rem; font-size: 1rem; line-height: 1.5; color: var(--ink);
}
.plan-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0.05rem;
  width: 1.15rem; height: 1.15rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--btn-ink); font-size: 0.65rem; font-weight: 700;
}
.plan-list strong { font-weight: 600; color: var(--accent-ink); }
.plan .btn { align-self: flex-start; }

/* ============ FOUNDER NOTE ============ */
.note-wrap { max-width: 760px; margin: 0 auto; text-align: center; }
.note-wrap .eyebrow { text-align: center; }
.note {
  font-family: var(--reading);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.5; color: var(--ink);
  border: none; font-weight: 400;
}
.note-sign { margin-top: 2rem; display: flex; flex-direction: column; align-items: center; gap: 0.8rem; }
.note-faces { display: flex; }
.note-faces img {
  width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: top center;
  border: 2px solid var(--bg); box-shadow: 0 1px 0 var(--border);
}
.note-faces img:nth-child(2) { margin-left: -14px; }
.note-sign p { font-size: 0.95rem; color: var(--ink); line-height: 1.45; }
.note-sign span { color: var(--muted); font-size: 0.85rem; }

/* ============ TEAM ============ */
.team-label {
  text-align: center; font-family: var(--ui); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; font-variant-caps: all-small-caps; text-transform: lowercase;
  color: var(--accent-ink); margin: 2.5rem 0 1.6rem;
}
.team-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; max-width: 760px; margin: 0 auto; }
.team-row-3 { grid-template-columns: repeat(3, 1fr); max-width: var(--maxw); }
.team-row .person p { font-size: 0.9rem; }
.team-backed { text-align: center; margin-top: 3rem; font-size: 0.95rem; color: var(--muted); }
.team-backed strong { color: var(--accent-ink); font-weight: 600; }

/* ============ FAQ ============ */
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; padding: 1.5rem 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer; font-family: var(--ui); font-size: 1.05rem; font-weight: 500;
  color: var(--ink); text-align: left; transition: color .25s;
}
.faq-q:hover { color: var(--accent-ink); }
.faq-plus {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--muted); transition: transform .35s var(--ease), border-color .3s, color .3s;
}
.faq-item.open .faq-plus { transform: rotate(45deg); border-color: var(--accent); color: var(--accent-ink); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a-inner { padding-bottom: 1.5rem; font-size: 1rem; line-height: 1.7; color: var(--muted); }

/* ============ CLOSING CTA ============ */
.section-cta { padding: clamp(5rem, 11vh, 8rem) 0; text-align: center; }
.cta-wrap { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.cta-title { font-size: clamp(2.2rem, 5vw, 3.6rem); color: var(--ink); line-height: 1.08; }

/* ============ FOOTER ============ */
.footer { padding: 3.5rem 0; border-top: 1px solid var(--border); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer-logo { font-size: 1.15rem; }
.footer-logo img { width: 26px; height: 26px; }
.footer-links { display: flex; gap: 1.8rem; list-style: none; }
.footer-links a { font-size: 0.88rem; color: var(--muted); transition: color .25s; }
.footer-links a:hover { color: var(--ink); }
.footer-copy { font-size: 0.82rem; color: var(--muted); }

/* ============ REVEALS ============ */
/* Only hide when JS is present to animate them back in. */
.js .sr { opacity: 0; transform: translateY(26px); }

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

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; order: 3; }
  .nav-actions { gap: 0.6rem; }
  .nav-links.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--bg); border-bottom: 1px solid var(--border); padding: 0.5rem 0;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a { display: block; padding: 0.9rem clamp(1.25rem, 4vw, 2.75rem); }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr); gap: 2.5rem;
    padding-left: clamp(1.25rem, 4vw, 2.75rem);
    padding-right: clamp(1.25rem, 4vw, 2.75rem);
  }
  .hero-copy { max-width: none; }
  .hero-media { order: -1; }

  .session-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .session-copy { max-width: none; }
  .session-copy .s-heading { text-align: center; }

  .corner-grid { grid-template-columns: 1fr; max-width: 30rem; margin: 0 auto; }
  .problem-grid { grid-template-columns: minmax(0, 1fr); gap: 2.25rem; }
  .problem-copy { max-width: none; }
  .problem-copy .s-heading { text-align: center; }
  .steps-grid { grid-template-columns: 1fr; gap: 2.5rem; max-width: 26rem; margin: 0 auto; }
  .plans-grid { grid-template-columns: 1fr; max-width: 30rem; }
  .team-row, .team-row-3 { grid-template-columns: 1fr; max-width: 26rem; }
  .bubble { max-width: 92%; }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(2.3rem, 9vw, 3rem); }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
}

/* ============================================================
   ADDED 2026-06: founding-cohort system, subpages, forms,
   architecture, legal, 404, and accessibility polish.
   ============================================================ */

/* ---- Accessibility: skip link + visible keyboard focus ---- */
.skip-link {
  position: fixed; left: 0; top: 0; z-index: 2000;
  transform: translateY(-130%);
  background: var(--accent); color: var(--btn-ink);
  padding: 0.7rem 1.15rem; border-radius: 0 0 var(--r-sm) 0;
  font-family: var(--ui); font-weight: 600; font-size: 0.9rem;
  transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateY(0); outline: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 5px; }
.btn:focus-visible, .theme-toggle:focus-visible, .nav-toggle:focus-visible { outline-offset: 4px; }
/* keep mouse clicks clean; only show the ring for keyboard users */
:focus:not(:focus-visible) { outline: none; }

/* ---- Announcement bar (opt in with <body class="has-bar">) ---- */
:root { --bar-h: 0px; }
body.has-bar { --bar-h: 42px; }
.announce {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--bar-h); z-index: 1100;
  display: flex; align-items: center; justify-content: center; gap: 0.55rem;
  background: var(--accent); color: var(--btn-ink);
  font-family: var(--ui); font-size: 0.82rem; font-weight: 500;
  padding: 0 1rem; text-align: center; overflow: hidden;
}
.announce a { color: inherit; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.announce .announce-arrow { display: inline-block; transition: transform .25s var(--ease); }
.announce a:hover .announce-arrow { transform: translateX(3px); }
body.has-bar .nav { top: var(--bar-h); }
/* when the bar is showing and we're at the top, let the logo row breathe below the bar */
body.has-bar .nav:not(.scrolled) { padding-top: 1.6rem; }
html { scroll-padding-top: calc(var(--bar-h) + 84px); }

/* ---- Nav: "Log in" as a distinct soft-colored button + mobile placement ---- */
.nav-login { background: var(--accent-soft); color: var(--accent-ink); border-color: var(--border); }
.nav-login:hover { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.nav-only-mobile { display: none; }
/* On desktop login shows its text label; the icon only appears on mobile. */
.nav-login-icon { display: none; }
@media (max-width: 900px) {
  /* Login STAYS in the bar at every width (it must never vanish); it just
     collapses to an icon-only round button to save space. Log in and Join the
     waitlist also remain in the hamburger menu. */
  .nav-login {
    width: 38px; height: 38px; padding: 0; border-radius: 50%; justify-content: center;
  }
  .nav-login .nav-login-text { display: none; }
  .nav-login .nav-login-icon { display: block; width: 18px; height: 18px; }
  .nav-links.open .nav-only-mobile { display: block; }
  .nav-links.open .nav-cta-mobile a { color: var(--accent-ink); font-weight: 700; }
}
/* Smallest phones: drop the wide "Join the waitlist" button from the bar so the
   login icon always fits. The waitlist CTA still shows in the announcement bar
   (home) and the hamburger menu. */
@media (max-width: 480px) {
  .nav-actions .btn-primary { display: none; }
}
@media (max-width: 520px) { .announce { font-size: 0.73rem; gap: 0.4rem; } }

/* ---- Shared subpage hero (centered) ---- */
.subhero { padding: calc(var(--bar-h) + clamp(7rem, 14vh, 9.5rem)) 0 clamp(2.5rem, 6vh, 4rem); text-align: center; }
.subhero .wrap { max-width: 60rem; }
.subhero .eyebrow { text-align: center; }
.subhero-h1 {
  font-family: var(--display); font-weight: 440; letter-spacing: -0.02em; line-height: 1.07;
  font-size: clamp(2.2rem, 5vw, 3.5rem); color: var(--ink); text-wrap: balance; margin-bottom: 1.2rem;
}
.subhero-sub {
  font-family: var(--reading); font-size: clamp(1.12rem, 1.6vw, 1.32rem);
  line-height: 1.6; color: var(--muted); max-width: 56ch; margin: 0 auto;
}
.crumb {
  display: inline-flex; align-items: center; gap: 0.4rem; margin-bottom: 1.4rem;
  font-family: var(--ui); font-size: 0.82rem; font-weight: 500; color: var(--muted);
  transition: color .2s, gap .2s var(--ease);
}
.crumb:hover { color: var(--accent-ink); gap: 0.55rem; }

/* ---- Waitlist: two-column hero with form ---- */
.wl-hero { padding: calc(var(--bar-h) + clamp(6.5rem, 13vh, 9rem)) 0 clamp(3rem, 7vh, 5rem); }
.wl-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: start; }
.wl-lede { max-width: 34rem; }
.wl-lede .subhero-h1 { text-align: left; font-size: clamp(2.1rem, 3.8vw, 3.1rem); }
.wl-lede .subhero-sub { text-align: left; margin: 0; }
.wl-trust { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 0.7rem; }
.wl-trust-item { display: flex; align-items: flex-start; gap: 0.6rem; font-family: var(--reading); font-size: 0.98rem; color: var(--ink); line-height: 1.45; }
.wl-trust-item .tick { flex-shrink: 0; width: 1.3rem; height: 1.3rem; margin-top: 0.1rem; border-radius: 50%; background: var(--accent); color: var(--btn-ink); display: inline-flex; align-items: center; justify-content: center; font-size: 0.7rem; font-weight: 700; }

/* seat meter (honest scarcity, no fake live counter) */
.seatmeter { margin-top: 1.9rem; max-width: 22rem; }
.seatmeter-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.5rem; }
.seatmeter-label { font-family: var(--ui); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; font-variant-caps: all-small-caps; text-transform: lowercase; color: var(--accent-ink); }
.seatmeter-cap { font-family: var(--display); font-size: 1.05rem; font-weight: 520; color: var(--ink); }
.seatmeter-track { height: 8px; border-radius: 100px; background: var(--accent-soft); border: 1px solid var(--border); overflow: hidden; }
.seatmeter-fill { height: 100%; width: var(--seats-pct, 18%); background: var(--accent); border-radius: 100px; }
.seatmeter-note { margin-top: 0.55rem; font-family: var(--ui); font-size: 0.78rem; color: var(--muted); }

/* form card */
.wl-formcard {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: clamp(1.5rem, 3vw, 2.3rem); box-shadow: 0 34px 70px -34px var(--shadow-lg);
}
.wl-formcard .form-head { margin-bottom: 1.4rem; }
.wl-formcard .form-head h2 { font-size: 1.5rem; color: var(--ink); margin-bottom: 0.45rem; }
.wl-formcard .form-head p { font-family: var(--reading); font-size: 0.98rem; color: var(--muted); line-height: 1.5; }
.field { margin-bottom: 1.05rem; }
.field label { display: block; font-family: var(--ui); font-size: 0.82rem; font-weight: 600; color: var(--ink); margin-bottom: 0.42rem; }
.field label .req { color: var(--accent-ink); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--ui); font-size: 0.95rem; color: var(--ink);
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-sm);
  padding: 0.8rem 0.95rem; transition: border-color .2s, box-shadow .2s;
}
.field select { cursor: pointer; }
.field input::placeholder, .field textarea::placeholder { color: color-mix(in srgb, var(--muted) 70%, transparent); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.field-hint { font-family: var(--ui); font-size: 0.76rem; color: var(--muted); margin-top: 0.38rem; }
.wl-formcard .btn { width: 100%; justify-content: center; margin-top: 0.3rem; }
.form-note { font-family: var(--ui); font-size: 0.78rem; color: var(--muted); margin-top: 1rem; text-align: center; line-height: 1.5; }
.form-note a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }
/* success state */
.form-success { display: none; text-align: center; padding: 1.5rem 0; }
.wl-formcard.sent .form-body { display: none; }
.wl-formcard.sent .form-success { display: block; }
.form-success .tick-lg { width: 58px; height: 58px; border-radius: 50%; background: var(--accent); color: var(--btn-ink); display: inline-flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 1rem; }
.form-success h2 { font-size: 1.5rem; color: var(--ink); margin-bottom: 0.5rem; }
.form-success p { font-family: var(--reading); color: var(--muted); line-height: 1.6; max-width: 26rem; margin: 0 auto; }
/* plain variant: reuse the success-toggle behavior on inline email signups
   (home + waitlist closing) without the heavy hero-card chrome */
.wl-formcard-plain { background: none; border: 0; border-radius: 0; padding: 0; box-shadow: none; }
.wl-formcard-plain .form-success { padding-top: 0.6rem; padding-bottom: 0; }

/* ---- Founding perks / benefit cards ---- */
.wl-perks { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.4rem; max-width: 880px; margin: 0 auto; }
.perk { padding: 1.9rem 1.7rem; text-align: left; }
.perk-ico {
  width: 46px; height: 46px; border-radius: 13px; margin-bottom: 1.1rem;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent-soft); color: var(--accent-ink); border: 1px solid var(--border);
}
.perk-ico svg { width: 22px; height: 22px; }
.perk h3 { font-size: 1.25rem; color: var(--ink); margin-bottom: 0.5rem; }
.perk p { font-family: var(--reading); font-size: 0.98rem; color: var(--muted); line-height: 1.6; }

/* ---- Founding-cohort teaser (home page) ---- */
.founding-teaser { }
.founding-card {
  max-width: 940px; margin: 0 auto; padding: clamp(2.2rem, 5vw, 3.4rem);
  background: var(--accent-soft); border: 1px solid var(--accent); border-radius: var(--r-lg);
  text-align: center; box-shadow: 0 30px 60px -34px var(--shadow-lg);
}
.founding-card .eyebrow { text-align: center; }
.founding-card h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); color: var(--ink); margin-bottom: 1rem; text-wrap: balance; }
.founding-card p { font-family: var(--reading); font-size: clamp(1.05rem, 1.4vw, 1.18rem); color: var(--muted); line-height: 1.65; max-width: 46rem; margin: 0 auto 1.8rem; }
.founding-actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; align-items: center; }
/* Social proof: Trustpilot + Google review CTAs under the "first 100" form */
.founding-reviews { margin-top: 1.7rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; gap: 0.9rem; }
.founding-reviews .trustpilot-widget { width: 100%; max-width: 340px; }
.greview-btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--ui); font-weight: 600; font-size: 0.9rem; color: var(--ink); background: var(--card); border: 1px solid var(--border); border-radius: 100px; padding: 0.55rem 1.05rem; transition: border-color .2s, box-shadow .2s; }
.greview-btn:hover { border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }

/* secondary "or start now" link used next to a primary button */
.link-secondary { display: inline-flex; align-items: center; gap: 0.4rem; font-family: var(--ui); font-weight: 600; font-size: 0.95rem; color: var(--accent-ink); transition: gap .2s var(--ease), color .2s; }
.link-secondary:hover { gap: 0.6rem; color: var(--accent); }
.hero-btns .link-secondary { padding: 0.85rem 0.4rem; }
.hero-cta-note { margin-top: 1rem; font-size: 0.92rem; color: var(--muted); max-width: 34rem; }
.hero-cta-note a { color: var(--accent-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* ---- Architecture: pillars + principles ---- */
.arch-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.pillar { padding: 2rem 1.8rem; text-align: left; }
.pillar:hover { transform: translateY(-4px); box-shadow: 0 26px 50px -24px var(--shadow-lg); border-color: var(--accent); }
.pillar-ico { width: 46px; height: 46px; border-radius: 13px; margin-bottom: 1.1rem; display: inline-flex; align-items: center; justify-content: center; background: var(--accent-soft); color: var(--accent-ink); border: 1px solid var(--border); font-family: var(--display); font-weight: 520; font-size: 1.15rem; }
.pillar h3 { font-size: 1.3rem; color: var(--ink); margin-bottom: 0.55rem; }
.pillar p { font-family: var(--reading); font-size: 0.98rem; color: var(--muted); line-height: 1.6; }
.principles { max-width: 760px; margin: 0 auto; }
.principle { display: flex; gap: 1.1rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); text-align: left; }
.principle:first-child { border-top: 1px solid var(--border); }
.principle-mark { flex-shrink: 0; font-family: var(--display); font-size: 1.5rem; line-height: 1; color: var(--accent-ink); }
.principle h3 { font-family: var(--ui); font-size: 1.05rem; font-weight: 600; color: var(--ink); margin-bottom: 0.3rem; }
.principle p { font-family: var(--reading); font-size: 0.98rem; color: var(--muted); line-height: 1.6; }
.honesty-note { max-width: 680px; margin: 2.5rem auto 0; padding: 1.4rem 1.6rem; border-left: 2px solid var(--accent); background: var(--surface); border-radius: 0 var(--r-sm) var(--r-sm) 0; }
.honesty-note p { font-family: var(--reading); font-style: italic; color: var(--muted); line-height: 1.6; }

/* ---- Team page intro / mission ---- */
.team-intro { max-width: 720px; margin: 0 auto clamp(2.5rem, 5vh, 4rem); text-align: center; }
.team-intro .lede { margin: 1.2rem auto 0; }
.team-mission { max-width: 760px; margin: clamp(2.5rem,5vh,4rem) auto 0; text-align: center; }
.team-mission h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.team-mission p { font-family: var(--reading); font-size: clamp(1.05rem,1.4vw,1.2rem); color: var(--muted); line-height: 1.7; }

/* ---- Legal / prose pages ---- */
.prose { max-width: 720px; margin: 0 auto; }
.prose .legal-meta { font-family: var(--ui); font-size: 0.85rem; color: var(--muted); margin-bottom: 2rem; }
.prose h2 { font-size: 1.5rem; color: var(--ink); margin: 2.2rem 0 0.8rem; }
.prose h3 { font-family: var(--ui); font-size: 1.1rem; font-weight: 700; color: var(--ink); margin: 1.5rem 0 0.5rem; }
.prose p, .prose li { font-family: var(--reading); color: var(--muted); line-height: 1.75; font-size: 1.04rem; margin-bottom: 0.9rem; }
.prose ul { padding-left: 1.3rem; margin-bottom: 1.1rem; }
.prose a { color: var(--accent-ink); text-decoration: underline; text-underline-offset: 2px; }
.prose strong { color: var(--ink); font-weight: 600; }

/* ---- 404 ---- */
.err { min-height: 72vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 1.2rem; padding: calc(var(--bar-h) + 8rem) 1.25rem 4rem; }
.err-code { font-family: var(--display); font-size: clamp(4rem, 13vw, 7.5rem); color: var(--accent-ink); line-height: 1; letter-spacing: -0.03em; }
.err h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--ink); }
.err p { font-family: var(--reading); font-size: 1.1rem; color: var(--muted); max-width: 32rem; }

/* ---- Hero title emphasis (restored old-site framing) ---- */
.hero-title em { font-style: italic; color: var(--accent-ink); }

/* ---- Big accuracy stats band ---- */
.section-stats { padding: clamp(2.5rem, 6vh, 4.5rem) 0; }
.section-stats .eyebrow { margin-bottom: 1.4rem; }
.stats-band {
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1.5rem, 6vw, 5rem); flex-wrap: wrap; text-align: center;
  max-width: 880px; margin: 0 auto;
  padding: clamp(2.2rem, 5vw, 3.4rem) clamp(1.5rem, 4vw, 3rem);
  background: var(--accent-soft); border: 1px solid var(--border); border-radius: var(--r-lg);
  box-shadow: 0 26px 60px -36px var(--shadow-lg);
}
.stat-big { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.stat-big-num {
  font-family: var(--display); font-weight: 500; line-height: 0.92;
  font-size: clamp(3.4rem, 8vw, 5.4rem); letter-spacing: -0.03em; color: var(--accent-ink);
}
.stat-big-label {
  font-family: var(--ui); font-size: 0.95rem; font-weight: 600; line-height: 1.35;
  letter-spacing: 0.01em; color: var(--muted); max-width: 13rem;
}
.stat-divider { width: 1px; align-self: stretch; min-height: 5rem; background: var(--border); }
@media (max-width: 620px) {
  .stat-divider { width: 60%; min-height: 1px; height: 1px; align-self: center; }
  .stats-band { gap: 2rem; }
}

/* ---- Testimonials (student voices) ---- */
.section-testimonial { padding: clamp(2.5rem, 6vh, 4.5rem) 0; }
.tm-carousel { max-width: 920px; margin: 0 auto; }
.tm-viewport { overflow: hidden; padding: 0.5rem 0 0.25rem; overscroll-behavior-x: contain; touch-action: pan-y; }
.tm-track {
  position: relative; display: flex; gap: 1.5rem; align-items: center;
  transition: transform .6s var(--ease); will-change: transform;
}
.tm-track .tm-card {
  flex: 0 0 min(440px, 82vw);
  opacity: 0.36; transform: scale(0.9);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.tm-track .tm-card.is-active { opacity: 1; transform: scale(1); }
.tm-dots { display: flex; justify-content: center; gap: 0.55rem; margin-top: 1.1rem; }
.tm-dot {
  width: 9px; height: 9px; padding: 0; border-radius: 50%; cursor: pointer;
  background: var(--border); border: none;
  transition: background-color .3s, transform .3s;
}
.tm-dot:hover { background: var(--muted); }
.tm-dot.is-on { background: var(--accent); transform: scale(1.3); }
.tm-card { padding: 2rem 1.9rem; text-align: left; display: flex; flex-direction: column; }
.tm-card blockquote {
  font-family: var(--reading); font-size: 1.08rem; line-height: 1.62; color: var(--ink); flex: 1;
}
.tm-card blockquote::before {
  content: "\201C"; display: block; font-family: var(--display);
  font-size: 2.6rem; line-height: 0.5; color: var(--accent); opacity: 0.5; margin-bottom: 0.4rem;
}
.tm-foot { margin-top: 1.3rem; display: flex; flex-direction: column; gap: 0.25rem; }
.tm-stars { color: var(--accent); letter-spacing: 0.15em; font-size: 0.9rem; }
.tm-name { font-family: var(--ui); font-weight: 600; color: var(--ink); font-size: 0.98rem; }
.tm-role { font-family: var(--ui); color: var(--muted); font-size: 0.83rem; }
@media (max-width: 760px) {
  .tm-track { gap: 1rem; }
  .tm-track .tm-card { flex-basis: min(420px, 86vw); }
}
@media (prefers-reduced-motion: reduce) {
  .tm-track, .tm-track .tm-card { transition: none; }
}

/* ---- 3-up perks + inline email signup ---- */
.wl-perks-3 { max-width: 1000px; }
.wl-signup { width: 100%; max-width: 500px; margin: 0 auto; }
.wl-form-inline { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.wl-form-inline input[type=email] {
  /* flex-basis + min-width stop the field from ever collapsing to its pill
     padding-box, which rendered as a stray white circle at some widths.
     When the row is tight, the button wraps below instead of squeezing it. */
  flex: 1 1 14rem; min-width: 12rem; font-family: var(--ui); font-size: 0.98rem; color: var(--ink);
  background: var(--card); border: 1px solid var(--border); border-radius: 100px;
  padding: 0.9rem 1.3rem; transition: border-color .2s, box-shadow .2s;
}
.wl-form-inline input[type=email]:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.wl-form-inline .btn { flex-shrink: 0; }
@media (max-width: 480px) {
  .wl-form-inline { flex-direction: column; }
  .wl-form-inline .btn { width: 100%; justify-content: center; }
}

/* ---- Responsive for the new sections ---- */
@media (max-width: 900px) {
  .wl-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .wl-lede { max-width: none; }
  .wl-lede .subhero-h1, .wl-lede .subhero-sub { text-align: center; }
  .wl-lede .subhero-h1 { font-size: clamp(2rem, 8vw, 2.7rem); }
  .seatmeter, .wl-trust { margin-left: auto; margin-right: auto; }
  .wl-trust { max-width: 26rem; }
  .arch-grid { grid-template-columns: 1fr; max-width: 30rem; margin: 0 auto; }
}
