/* ============================================================
   doors2ai — Shared Stylesheet
   Base: V4 (V2 foundation, Inter only, light hero, clean rhythm)
   V4 changes marked with [V4].
   Extended for full multi-page site.
============================================================ */

/* ============================================================
   DESIGN SYSTEM
============================================================ */
:root {
  --brand:          #1D9E75;
  --brand-dark:     #0F6E56;
  --brand-light:    #E1F5EE;
  --brand-bg:       #F0FAF6;

  --track-fe-bg:    #EBF3FF;
  --track-fe-text:  #1558A0;
  --track-fs-bg:    #FFF4E6;
  --track-fs-text:  #8A4B00;
  --track-ai-bg:    #EEEDFE;
  --track-ai-text:  #4A43B7;

  --bg:             #FFFFFF;
  --bg-2:           #F7FAFC;
  --bg-dark:        #0C1A14;

  --text:           #1A1A1A;
  --text-2:         #606060;
  --text-3:         #929292;
  --text-inv:       #FFFFFF;

  --border:         #D6D6D6;
  --border-2:       #E8E8E8;
  --border-3:       #F2F2F2;

  --shadow-sm:      0 1px 4px rgba(0,0,0,0.07), 0 0 1px rgba(0,0,0,0.04);
  --shadow-md:      0 4px 16px rgba(0,0,0,0.09), 0 0 1px rgba(0,0,0,0.04);
  --shadow-lg:      0 8px 32px rgba(0,0,0,0.11), 0 0 1px rgba(0,0,0,0.04);
  /* [V4] Slightly warmer brand shadow */
  --shadow-brand:   0 2px 12px rgba(29,158,117,0.32);

  --font:           'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --r-sm:           4px;
  --r-md:           8px;
  --r-lg:           12px;
  --r-xl:           18px;
  --r-2xl:          24px;
  --r-pill:         100px;

  --max-w:          1120px;
  --pad:            clamp(20px, 5vw, 48px);
  --ease:           0.18s ease;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
button { font-family: inherit; cursor: pointer; }
a { text-decoration: none; }
ul { list-style: none; }

/* ============================================================
   LAYOUT
============================================================ */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--brand);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 2px;
  background: var(--brand);
  border-radius: 2px;
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-3);
  padding: 0 var(--pad);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  gap: 24px;
}

.logo {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.6px;
  flex-shrink: 0;
}
.logo span { color: var(--brand); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-2);
  padding: 6px 13px;
  border-radius: var(--r-md);
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover { color: var(--text); background: var(--bg-2); }
.nav-links a.active { color: var(--text); font-weight: 500; }

.nav-cta {
  font-size: 13.5px;
  font-weight: 600;
  background: var(--text);
  color: var(--text-inv);
  border: none;
  padding: 9px 20px;
  border-radius: var(--r-md);
  flex-shrink: 0;
  transition: opacity var(--ease);
  display: inline-block;
}
.nav-cta:hover { opacity: 0.84; color: var(--text-inv); }

/* ============================================================
   HERO — premium layout (60/40, breathing space, depth)
============================================================ */
.hero {
  min-height: 640px;
  padding: 110px var(--pad) 64px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(ellipse at 50% -40%, rgba(29,158,117,0.12) 0%, transparent 65%),
    var(--bg-dark);
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Hero left column — wraps all existing text/CTA content */
.hero-content { min-width: 0; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--brand);
  background: rgba(29,158,117,0.12);
  border: 1.5px solid rgba(29,158,117,0.28);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}

.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brand);
  animation: blink 2.4s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.35; }
}

.hero h1 {
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text-inv);
  max-width: 900px;
  margin-bottom: 40px;
}

.hero h1 br:first-of-type { display: none; }

.hero h1 em {
  font-style: normal;
  color: var(--brand);
}

.hero-sub {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 32px;
}

.cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* [V4] Slightly warmer shadow on primary button */
.btn-primary {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 14px 28px;
  border-radius: var(--r-lg);
  font-size: 14.5px;
  font-weight: 600;
  box-shadow: var(--shadow-brand);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(29,158,117,0.4);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  padding: 14px 28px;
  border-radius: var(--r-lg);
  font-size: 14.5px;
  font-weight: 500;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
  display: inline-block;
}
.btn-secondary:hover {
  border-color: var(--text);
  background: var(--bg-2);
  color: var(--text);
  transform: translateY(-2px);
}

.hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px 0 0;
  margin-right: 18px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.hero-meta-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-meta-item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--brand);
  flex-shrink: 0;
}

.hero .btn-secondary {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.22);
  background: transparent;
}
.hero .btn-secondary:hover {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  color: #fff;
}

/* ============================================================
   HERO CURRICULUM PANEL — right column visual
   Research-backed: shows the product (paths + stack + outcomes)
   not a decorative code window.
============================================================ */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.hero-curriculum {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border-radius: var(--r-xl);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.04);
  overflow: hidden;
  transform: rotate(0.5deg);
}

/* ── Title bar ── */
.hc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-3);
}

.hc-header-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--brand);
}

.hc-header-meta {
  font-size: 11px;
  color: var(--text-3);
}

/* ── Paths body ── */
.hc-body {
  padding: 16px 20px 4px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Individual path row */
.hc-path {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-left: 3px solid transparent;
  border-radius: 0 var(--r-md) var(--r-md) 0;
  background: var(--bg-2);
}

.hc-path-fe { border-left-color: var(--track-fe-text); }
.hc-path-fs { border-left-color: var(--track-fs-text); }
.hc-path-ai { border-left-color: var(--brand); }

.hc-row-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.hc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hc-dot-fe { background: var(--track-fe-text); }
.hc-dot-fs { background: var(--track-fs-text); }
.hc-dot-ai { background: var(--brand); }

.hc-path-title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.1px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Stack tags */
.hc-row-tags {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
}

.hc-row-tags span {
  font-size: 11px;
  font-weight: 500;
  padding: 4px 8px;
  border-radius: 6px;
  background: #f3f5f7;
  color: var(--text-2);
}

/* ── Stats footer ── */
.hc-stats {
  display: flex;
  align-items: stretch;
  border-top: 1px solid var(--border-3);
  margin-top: 12px;
}

.hc-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  gap: 3px;
}

.hc-stat-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
  line-height: 1;
}

.hc-stat-label {
  font-size: 10.5px;
  color: var(--text-3);
  line-height: 1;
}

.hc-stat-sep {
  width: 1px;
  background: var(--border-3);
  align-self: stretch;
  margin: 10px 0;
}


/* ============================================================
   PAGE HEROES (Curriculum, About, Programs, Pricing, FAQ, Contact)
============================================================ */
.page-hero {
  padding: 64px var(--pad) 56px;
  border-bottom: 1px solid var(--border-3);
  background: var(--bg-2);
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; }

.page-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.15;
}
.page-hero h1 em { font-style: normal; color: var(--brand); }

.page-hero p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 580px;
}

/* ============================================================
   TRUST BAR
============================================================ */
.trust-bar {
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-3);
  padding: 0 var(--pad);
}

.trust-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-2);
  padding: 20px 32px 20px 0;
  margin-right: 32px;
}
.trust-item:not(:last-child) {
  border-right: 1px solid var(--border-3);
  padding-right: 32px;
}
.trust-item:last-child { margin-right: 0; }

.trust-icon {
  width: 24px; height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-light);
  border-radius: var(--r-md);
  flex-shrink: 0;
}
.trust-icon svg {
  width: 13px; height: 13px;
  stroke: var(--brand-dark);
  fill: none;
  stroke-width: 2;
}

/* ============================================================
   SECTIONS
============================================================ */
.section {
  padding: 80px var(--pad);
  border-bottom: 1px solid var(--border-3);
}
.section-alt { background: var(--bg-2); }

.section-head { margin-bottom: 44px; }

.section-head h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  letter-spacing: -0.8px;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 10px;
}

.section-head p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 560px;
}

/* ============================================================
   WHY GRID
============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}

.why-card {
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 28px 24px;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.why-card:hover {
  border-color: rgba(29,158,117,0.4);
  box-shadow: var(--shadow-sm), 0 0 0 1px rgba(29,158,117,0.06);
  transform: translateY(-2px);
}

.why-icon {
  width: 42px; height: 42px;
  border-radius: var(--r-xl);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.why-icon svg {
  width: 19px; height: 19px;
  stroke: var(--brand-dark);
  fill: none;
  stroke-width: 1.6;
}

.why-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
  letter-spacing: -0.2px;
}
.why-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.65;
}

/* ============================================================
   LEARNING PATH
   [V4] Path track wrapped in a bordered container for grouping
============================================================ */
.path-section {
  padding: 80px var(--pad);
  border-bottom: 1px solid var(--border-3);
}

.path-inner { max-width: var(--max-w); margin: 0 auto; }

/* [V4] Added border container — cleaner group treatment */
.path-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  overflow: visible;
}

.path-step {
  padding: 28px 28px 28px 32px;
  border-left: 3px solid transparent;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  /* [V4] Right divider between steps */
  border-right: 1px solid var(--border-2);
  border-radius: inherit;
  position: relative;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.path-step:last-child { border-right: none; }
.path-step:hover {
  background: var(--bg-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  z-index: 1;
}

.path-step.track-fe { border-left-color: var(--track-fe-text); }
.path-step.track-fs { border-left-color: var(--track-fs-text); }
.path-step.track-ai { border-left-color: var(--brand); }

.path-num {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.path-step.track-fe .path-num  { color: var(--track-fe-text); }
.path-step.track-fs .path-num  { color: var(--track-fs-text); }
.path-step.track-ai .path-num  { color: var(--brand); }

.path-step h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.path-step p {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}

.path-tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.tech-tag {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: var(--r-sm);
  background: var(--bg-2);
  color: var(--text-2);
  border: 1px solid var(--border-3);
}

.path-badge {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 11px;
  border-radius: var(--r-pill);
  margin-top: auto;
  align-self: flex-start;
}
.badge-fe { background: var(--track-fe-bg); color: var(--track-fe-text); }
.badge-fs { background: var(--track-fs-bg); color: var(--track-fs-text); }
.badge-ai { background: var(--brand-light); color: var(--brand-dark); }

/* ============================================================
   PROGRAMS GRID
============================================================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  align-items: start;
}

.prog-card {
  background: var(--bg);
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.prog-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.prog-card.featured {
  border: 2px solid var(--brand);
  background: linear-gradient(150deg, var(--bg) 0%, var(--brand-bg) 100%);
}
.prog-card.featured:hover {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(29,158,117,0.1);
  transform: translateY(-2px);
}

.prog-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.prog-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  letter-spacing: 0.3px;
}
.prog-badge.fe { background: var(--track-fe-bg); color: var(--track-fe-text); }
.prog-badge.fs { background: var(--track-fs-bg); color: var(--track-fs-text); }
.prog-badge.ai { background: var(--track-ai-bg); color: var(--track-ai-text); }

.prog-flagship {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
  color: var(--brand-dark);
  background: var(--brand-light);
  padding: 3px 9px;
  border-radius: var(--r-pill);
}
.prog-flagship::before { content: '★'; font-size: 9px; }

.prog-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
  letter-spacing: -0.4px;
  line-height: 1.25;
}

.prog-meta {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-3);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.prog-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--border); }

.prog-modules { flex: 1; margin-bottom: 20px; }

.prog-modules li {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  padding: 8px 0;
  border-bottom: 1px solid var(--border-3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.prog-modules li:last-child { border-bottom: none; }
.prog-modules li::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

.prog-footer {
  display: flex;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-3);
}

.prog-cta {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--ease), color var(--ease);
}
.prog-cta:hover { gap: 9px; color: var(--brand-dark); }

/* ============================================================
   OUTCOMES
============================================================ */
.outcomes-section {
  padding: 80px var(--pad);
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-2);
}

.outcomes-inner { max-width: var(--max-w); margin: 0 auto; }

.outcomes-head {
  text-align: center;
  margin-bottom: 52px;
}

.outcomes-head .section-label {
  justify-content: center;
}

.outcomes-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -1.2px;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 16px;
}

.outcomes-head p {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.outcome-card {
  background: var(--bg);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 40px 28px 36px;
  text-align: center;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.outcome-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.outcome-icon-wrap {
  width: 54px; height: 54px;
  background: var(--brand-light);
  border-radius: var(--r-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.outcome-icon-wrap svg {
  width: 22px; height: 22px;
  stroke: var(--brand-dark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.outcome-card-title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
}

.outcome-card-desc {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.6;
}

/* ============================================================
   CTA — DARK
   [V4] Faint green glow added — same dark bg, just slightly warmer
============================================================ */
.cta-section {
  padding: 96px var(--pad);
  background:
    radial-gradient(ellipse at 50% -30%, rgba(29,158,117,0.1) 0%, transparent 60%),
    var(--bg-dark);
  text-align: center;
}

.cta-inner { max-width: 600px; margin: 0 auto; }

.cta-section .section-label { color: var(--brand); margin-bottom: 18px; }

.cta-section h2 {
  font-size: clamp(28px, 3.8vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--text-inv);
  margin-bottom: 16px;
  line-height: 1.18;
}

.cta-section p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  max-width: 460px;
  margin: 0 auto 34px;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* [V4] Slightly more polished CTA buttons */
.btn-cta-primary {
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 2px 14px rgba(29,158,117,0.35);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  display: inline-block;
}
.btn-cta-primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(29,158,117,0.45);
  color: #fff;
}

.btn-cta-ghost {
  background: transparent;
  color: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 32px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 500;
  transition: border-color var(--ease), color var(--ease);
  display: inline-block;
}
.btn-cta-ghost:hover {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  padding: 48px var(--pad);
  border-top: 1px solid var(--border-3);
  background: var(--bg);
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
  flex-wrap: wrap;
}

.footer-brand .footer-logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  display: block;
}
.footer-brand .footer-logo span { color: var(--brand); }

.footer-tagline {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-3);
  max-width: 220px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-3);
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-2);
  margin-bottom: 10px;
  transition: color var(--ease);
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 28px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--border-3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 12.5px; color: var(--text-3); }

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12.5px; color: var(--text-3); transition: color var(--ease); }
.footer-bottom-links a:hover { color: var(--text-2); }

/* ============================================================
   CURRICULUM PAGE
============================================================ */
.curr-hero {
  padding: 64px var(--pad) 56px;
  border-bottom: 1px solid var(--border-3);
  background: var(--bg-2);
}

.curr-hero-inner { max-width: var(--max-w); margin: 0 auto; }

.curr-hero h1 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.15;
}
.curr-hero h1 em { font-style: normal; color: var(--brand); }

.curr-hero p {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.65;
  max-width: 580px;
}

.curr-progress {
  display: flex;
  gap: 4px;
  margin-top: 32px;
}
.prog-seg { height: 3px; border-radius: 2px; }
.seg-found { background: var(--track-fe-text); opacity: 0.45; }
.seg-core  { background: var(--track-ai-text); opacity: 0.55; }
.seg-adv   { background: var(--brand); }

.tab-section { padding: 52px var(--pad) 80px; }
.tab-section-inner { max-width: var(--max-w); margin: 0 auto; }

.tab-bar {
  display: flex;
  border-bottom: 2px solid var(--border-3);
  margin-bottom: 36px;
}

.tab {
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  color: var(--text-3);
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color var(--ease), border-color var(--ease);
  cursor: pointer;
}
.tab.active { color: var(--text); border-bottom-color: var(--brand); font-weight: 600; }
.tab:hover { color: var(--text-2); }

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 16px;
}

.module-card {
  background: var(--bg);
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 24px;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.module-card:hover { border-color: var(--border); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.module-card.capstone {
  border: 2px solid var(--brand);
  background: var(--brand-bg);
  grid-column: span 2;
}

.module-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: var(--r-md);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.module-card h3 {
  font-size: 14.5px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text);
  letter-spacing: -0.2px;
}

.module-dur { font-size: 12px; font-weight: 400; color: var(--text-3); margin-bottom: 14px; }

.module-topics li {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--text-2);
  padding: 6px 0;
  border-bottom: 1px solid var(--border-3);
  display: flex;
  align-items: center;
  gap: 9px;
}
.module-topics li:last-child { border-bottom: none; }
.module-topics li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brand);
  flex-shrink: 0;
}

/* Module card used as a plain content card (no num/topics) */
.module-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin-top: 8px;
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-hero {
  padding: 72px var(--pad) 64px;
  border-bottom: 1px solid var(--border-3);
}

.about-hero-inner { max-width: var(--max-w); margin: 0 auto; }

.about-hero h1 {
  font-size: clamp(30px, 4.2vw, 42px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
  color: var(--text);
  line-height: 1.15;
  max-width: 660px;
}
.about-hero h1 em { font-style: normal; color: var(--brand); }

.about-hero p {
  font-size: 16.5px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.72;
  max-width: 560px;
}

/* Mission block */
.mission-block {
  background: var(--bg-dark);
  border-radius: var(--r-2xl);
  padding: 40px 40px;
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}
.mission-block::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 420px; height: 420px;
  background: radial-gradient(ellipse at 65% 30%, rgba(29,158,117,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.mission-block .section-label {
  color: var(--brand);
  margin-bottom: 16px;
}

.mission-block p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  max-width: 720px;
  position: relative;
  z-index: 1;
}
.mission-block p strong { color: rgba(255,255,255,0.92); font-weight: 500; }

/* Philosophy grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.philosophy-card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 28px;
}

.philosophy-card h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}
.philosophy-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.7;
}

.differentiator-list { margin-top: 14px; }
.differentiator-list li {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border-3);
  line-height: 1.55;
}
.differentiator-list li:last-child { border-bottom: none; }
.differentiator-list li::before {
  content: '✓';
  display: flex;
  width: 18px; height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   FOUNDER SECTION
   [V4] Real Dan B. content in V2's simple layout.
   Added: brand-tinted avatar with initials, role line decoration.
============================================================ */
.founder-section {
  padding: 72px var(--pad);
  border-bottom: 1px solid var(--border-3);
}

.founder-inner { max-width: var(--max-w); margin: 0 auto; }

.founder-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* [V4] Brand-tinted avatar with initials */
.founder-avatar {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--brand-light);
  border: 2px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-dark);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.founder-text { flex: 1; min-width: 260px; }

.founder-name {
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

/* [V4] Subtle role line decoration */
.founder-role {
  font-size: 13.5px;
  font-weight: 400;
  color: var(--text-2);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.founder-role::before {
  content: '';
  display: inline-block;
  width: 18px; height: 1.5px;
  background: var(--brand);
  flex-shrink: 0;
}

.founder-bio {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 560px;
}
.founder-bio strong { color: var(--text); font-weight: 500; }

/* ============================================================
   PRICING PAGE
============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--bg);
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.pricing-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.pricing-card.featured {
  border: 2px solid var(--brand);
  background: linear-gradient(150deg, var(--bg) 0%, var(--brand-bg) 100%);
}
.pricing-card.featured:hover {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(29,158,117,0.1);
  transform: translateY(-2px);
}

.pricing-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-amount {
  margin-bottom: 6px;
}
.pricing-amount .price {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--text);
  line-height: 1;
}
.pricing-amount .price-note {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-3);
  margin-top: 4px;
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.4px;
  margin-bottom: 6px;
}
.pricing-duration {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 20px;
}

.pricing-includes {
  flex: 1;
  margin-bottom: 24px;
  border-top: 1px solid var(--border-3);
  padding-top: 18px;
}
.pricing-includes li {
  font-size: 14px;
  color: var(--text-2);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid var(--border-3);
  line-height: 1.5;
}
.pricing-includes li:last-child { border-bottom: none; }
.pricing-includes li::before {
  content: '✓';
  display: flex;
  width: 16px; height: 16px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand-dark);
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  border-radius: var(--r-md);
  font-size: 14.5px;
  font-weight: 600;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
}
.pricing-cta-btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.pricing-cta-btn.primary:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(29,158,117,0.4);
  color: #fff;
}
.pricing-cta-btn.secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.pricing-cta-btn.secondary:hover {
  border-color: var(--text);
  background: var(--bg-2);
  color: var(--text);
  transform: translateY(-1px);
}

.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-3);
  margin-top: 28px;
  line-height: 1.6;
}
.pricing-note a { color: var(--brand); }
.pricing-note a:hover { text-decoration: underline; }

/* ============================================================
   FAQ PAGE
============================================================ */
.faq-list {
  max-width: 720px;
}

.faq-group {
  margin-bottom: 44px;
}
.faq-group-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  color: var(--text-3);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-3);
}

details.faq-item {
  border-bottom: 1px solid var(--border-3);
}
details.faq-item:first-of-type { border-top: 1px solid var(--border-3); }

details.faq-item summary {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color var(--ease);
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary:hover { color: var(--brand); }
details.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--text-3);
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--ease);
}
details.faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--brand);
}
details.faq-item[open] summary { color: var(--text); }

.faq-answer {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.75;
  padding-bottom: 20px;
  max-width: 640px;
}
.faq-answer a { color: var(--brand); }
.faq-answer a:hover { text-decoration: underline; }

/* ============================================================
   CONTACT / APPLY PAGE
============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px var(--pad);
}

.contact-form-wrap h2 {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.6px;
  margin-bottom: 8px;
  color: var(--text);
}
.contact-form-wrap > p {
  font-size: 14.5px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 32px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.1px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-md);
  padding: 11px 14px;
  transition: border-color var(--ease), box-shadow var(--ease);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(29,158,117,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 110px;
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%239A9A9A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; padding-right: 36px; }

.form-submit {
  margin-top: 6px;
}
.btn-submit {
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  background: var(--brand);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: var(--r-md);
  cursor: pointer;
  box-shadow: var(--shadow-brand);
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  width: 100%;
}
.btn-submit:hover {
  background: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 18px rgba(29,158,117,0.4);
}

.contact-sidebar {
  position: sticky;
  top: 84px;
}

.contact-info-card {
  background: var(--bg-2);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 28px;
  margin-bottom: 16px;
}
.contact-info-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 30px; height: 30px;
  border-radius: var(--r-md);
  background: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon svg {
  width: 14px; height: 14px;
  stroke: var(--brand-dark);
  fill: none;
  stroke-width: 1.6;
}
.contact-info-text {
  font-size: 13.5px;
  color: var(--text-2);
  line-height: 1.5;
}
.contact-info-text strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}
.contact-info-text a { color: var(--brand); }
.contact-info-text a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 900px) {
  .path-track { grid-template-columns: 1fr; border-radius: var(--r-xl); }
  .path-step { border-right: none; border-bottom: 1px solid var(--border-2); }
  .path-step:last-child { border-bottom: none; }
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .trust-item:not(:last-child) { border-right: none; padding-right: 0; margin-right: 0; }
  .trust-bar-inner { flex-direction: column; gap: 10px; padding: 16px 0; }
  .programs-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .module-card.capstone { grid-column: span 1; }
  .footer-inner { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .founder-card { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 500px) {
  .outcomes-grid { grid-template-columns: 1fr; }
}

/* Dark hero variant for AI program pages */

.page-hero-dark {
  background:
    radial-gradient(ellipse at 50% -40%, rgba(29,158,117,0.12) 0%, transparent 65%),
    var(--bg-dark);
  color: var(--text-inv);
}

.page-hero-dark h1 { color: var(--text-inv); }

.page-hero-dark p { color: rgba(255,255,255,0.75); }

.page-hero-dark .section-label {
  color: var(--brand);
}

.page-hero-dark .section-label::before {
  background: var(--brand);
}

/* ============================================================
   BETA COHORT — cohort meta line
============================================================ */
.cohort-meta {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-2);
  display: flex;
  gap: 8px;
  align-items: center;
}
.cohort-divider { opacity: 0.4; }
.cohort-start { color: var(--brand); font-weight: 500; }
.cohort-price { color: var(--text); font-weight: 500; }
.cohort-urgency { color: var(--brand); font-weight: 500; }

@media (max-width: 640px) {
  .cohort-meta { flex-direction: column; align-items: flex-start; gap: 4px; }
  .cohort-divider { display: none; }
}

/* ============================================================
   SECTION-HEAD BADGE OVERRIDES
   When a prog-badge or path-badge appears inside a section-head
   (above the h2), it needs block-level spacing.
============================================================ */
.section-head .prog-badge {
  display: inline-flex;
  margin-bottom: 14px;
}

.section-head .path-badge {
  display: inline-flex;
  margin-bottom: 12px;
}

/* ============================================================
   CURRICULUM — PATH CONTAINER
   Elevated white card wrapping each path's phases + summary.
============================================================ */
.path-container {
  background: var(--bg);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* ============================================================
   PROG-CARD — OUTCOME VARIANT
   Third summary card in each path's 3-col grid.
============================================================ */
.prog-card.outcome {
  border-color: var(--brand);
  background: var(--brand-bg);
}

.prog-card.outcome p {
  color: var(--brand-dark);
  font-weight: 500;
}

/* ============================================================
   UTILITY CLASSES
============================================================ */

/* Pricing page: strikethrough original price */
.price-was {
  font-size: 14px;
  color: var(--text-3);
  text-decoration: line-through;
  margin-bottom: 4px;
}

/* Full-width block button (used in FAQ sidebar) */
.btn-block {
  display: block;
  text-align: center;
  width: 100%;
}

/* FAQ page: two-column layout (FAQ list + sidebar) */
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 64px;
  align-items: start;
}

@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; }
}

/* About page: stacked philosophy cards */
.philosophy-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* About page: spacing between consecutive founder bio paragraphs */
.founder-bio + .founder-bio { margin-top: 10px; }

/* Stacked block button (second in a stack) */
.btn-stacked { margin-top: 12px; }