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

:root {
  --bg: #0b0f12;
  --card: #141a1f;
  --card-lighter: #1a2228;
  --text: #e6eaed;
  --text-secondary: #7a8a94;
  --accent: #00a39d;
  --accent-dim: rgba(0,163,157,0.12);
  --accent-border: rgba(0,163,157,0.25);
  --border: #1f2a30;
  --border-light: #1a2428;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 2px 8px rgba(0,0,0,0.3), 0 1px 3px rgba(0,0,0,0.2);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.2);
  --gradient-hero: linear-gradient(135deg, #00736e 0%, #00a39d 50%, #08dfbc 100%);
}

body {
  font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  background-image: radial-gradient(ellipse at 50% 0%, rgba(0,163,157,0.04) 0%, transparent 60%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.navbar {
  background: rgba(8,12,16,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 32px;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 32px;
  border-bottom: 1px solid var(--border);
}
.navbar-brand {
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.navbar-brand span {
  color: var(--text-secondary);
  font-weight: 500;
}
.navbar-links {
  display: flex;
  gap: 2px;
  list-style: none;
}
.navbar-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.navbar-links a:hover {
  background: rgba(0,163,157,0.08);
  color: var(--text);
}
.navbar-links a.active {
  background: rgba(0,163,157,0.15);
  color: var(--accent);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Hero Section */
.hero { padding: 0 0 40px; }
.hero h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--text);
}

/* Stats Row */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.stat-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px 24px;
  min-width: 120px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.stat-pill::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.stat-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  border-color: rgba(0,163,157,0.3);
}
.stat-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.5px;
}
.stat-label {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 2px;
}

/* Quick Links */
.quick-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.quick-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}
.quick-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.quick-link svg { opacity: 0.6; }
.quick-link:hover svg { opacity: 1; stroke: var(--accent); }

/* Onboarding Stepper */
.onboarding {
  background: var(--card);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
  border: 1px solid var(--border);
}
.onboarding h2 {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
}
.onboarding .subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 36px;
}
.onboarding-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.ob-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 0 0 32px 0;
  position: relative;
  text-align: left;
  border: none;
  background: none;
  border-radius: 0;
}
.ob-step:last-child { padding-bottom: 0; }
.ob-step::before {
  content: '';
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.ob-step:last-child::before { display: none; }
.ob-step:hover { transform: none; box-shadow: none; }
.ob-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
  position: relative;
  z-index: 2;
  background: var(--accent-dim);
  color: var(--accent);
  box-shadow: 0 0 0 4px var(--card);
}
.ob-num {
  font-weight: 800;
  font-size: 18px;
}
.ob-step-content { padding-top: 2px; }
.ob-step h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}
.ob-step p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.ob-step a { color: var(--accent); text-decoration: none; font-weight: 700; }
.ob-step a:hover { text-decoration: underline; }

/* CTA Block */
.ob-cta {
  margin-top: 32px;
}
.ob-cta-inner {
  background: linear-gradient(135deg, #00736e 0%, #008a85 100%);
  border-radius: var(--radius);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: white;
  position: relative;
  overflow: hidden;
}
.ob-cta-inner::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 60%);
  border-radius: 50%;
}
.ob-cta-text { position: relative; flex: 1; }
.ob-cta-text h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px 0;
  color: white;
}
.ob-cta-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin: 0;
  line-height: 1.6;
}
.ob-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--accent);
  color: #0b0f12;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  position: relative;
  flex-shrink: 0;
}
.ob-cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.ob-step-number { display: none; }

/* Section styling */
.section { margin-bottom: 48px; }
.section-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.section h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 20px;
  color: var(--text);
}
.section h2.centered { text-align: center; }
.section h3 {
  font-size: 17px;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--text);
}
.section p, .section li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
}
.section ul, .section ol { padding-left: 20px; margin-bottom: 16px; }
.section li { margin-bottom: 8px; }
.section strong { color: var(--text); }
.section a { color: var(--accent); }
.section a.btn { color: #0b0f12; -webkit-text-fill-color: #0b0f12; }

/* Welcome Banner */
.welcome-banner {
  text-align: center;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  margin-bottom: 48px;
  color: white;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.welcome-hero-gradient {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: var(--gradient-hero);
}
.welcome-hero-gradient::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(transparent, var(--card));
}
.welcome-logo {
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 12px;
}
.welcome-banner h2 {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
  position: relative;
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.welcome-banner p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 580px;
  margin: 0 auto;
  position: relative;
}
.welcome-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-top: 32px;
}
.welcome-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
}
.welcome-stat-num {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--accent);
}
.welcome-stat-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 2px;
}
.welcome-stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Highlight boxes */
.highlight-box {
  background: rgba(0,163,157,0.06);
  border-left: 3px solid rgba(8,223,188,0.5);
  border-radius: 0 14px 14px 0;
  padding: 18px 22px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--text-secondary);
}
.highlight-box strong { color: var(--text); }
.warning-box {
  background: rgba(245,158,11,0.05);
  border-left: 3px solid rgba(245,158,11,0.4);
  border-radius: 0 14px 14px 0;
  padding: 18px 22px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--text-secondary);
}
.warning-box strong { color: #f0b840; }
.success-box {
  background: rgba(16,185,129,0.08);
  border-left: 4px solid #0d9668;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--text-secondary);
}
.success-box strong { color: #34d399; }

/* Content Brief */
.brief-timeline { display: grid; gap: 28px; margin-top: 20px; }
.brief-day {
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  position: relative;
}
.brief-day::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 4px;
  width: 13px;
  height: 13px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--card);
}
.brief-day:nth-child(2) { border-left-color: #8b7cc8; }
.brief-day:nth-child(2)::before { background: #8b7cc8; box-shadow: 0 0 0 4px var(--card); }
.brief-day:nth-child(3) { border-left-color: #6d6198; }
.brief-day:nth-child(3)::before { background: #6d6198; box-shadow: 0 0 0 4px var(--card); }
.brief-day h3 { font-size: 16px; margin-top: 0; margin-bottom: 8px; color: var(--text); }
.brief-day p, .brief-day li { font-size: 13.5px; }

/* Principles Cards */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.principle-card {
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--border);
  background: var(--card-lighter);
  transition: all 0.25s;
}
.principle-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0,163,157,0.3);
}
.principle-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 24px;
  background: var(--accent-dim);
}
.principle-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; margin-top: 0; color: var(--text); }
.principle-card p { font-size: 13px; color: var(--text-secondary); }

/* Posting Info */
.posting-info-grid { display: grid; gap: 24px; }
.posting-block {
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  border-radius: 0;
}
.posting-block:nth-child(2) { border-left-color: #8b7cc8; }
.posting-block:nth-child(3) { border-left-color: #6d6198; }
.posting-block h3 { margin-top: 0; font-size: 16px; color: var(--text); }
.posting-block p, .posting-block li { font-size: 14px; }

/* Script Bank */
.script-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
.script-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: var(--card-lighter);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s;
}
.script-item:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateX(4px);
}
.script-item .script-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
  color: white;
  background: var(--accent);
}

/* Bonus Table */
.bonus-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.bonus-table th, .bonus-table td {
  padding: 14px 20px;
  text-align: left;
}
.bonus-table th {
  background: #0d1318;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.bonus-table td {
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.bonus-table td:last-child {
  font-weight: 800;
  color: var(--accent);
}
.bonus-table tr:hover td { background: var(--accent-dim); }
.bonus-table tr:nth-child(even) td { background: rgba(255,255,255,0.02); }
.bonus-table tr:nth-child(even):hover td { background: var(--accent-dim); }

/* FAQ */
.faq { margin-bottom: 80px; }
.faq > h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}
.faq .faq-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 32px;
}
.faq-category {
  font-size: 16px;
  font-weight: 800;
  margin-top: 28px;
  margin-bottom: 10px;
  padding: 6px 14px;
  display: inline-block;
  border-radius: 8px;
  background: var(--accent-dim);
  color: var(--accent);
}
.faq-item {
  background: var(--card);
  border-radius: var(--radius-sm);
  margin-bottom: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid var(--border);
}
.faq-question {
  padding: 16px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  transition: background 0.2s;
  color: var(--text);
}
.faq-question:hover { background: var(--accent-dim); }
.faq-arrow {
  transition: transform 0.3s;
  font-size: 16px;
  color: var(--text-secondary);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-item.open { border-color: var(--accent); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner {
  padding: 0 22px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-answer-inner a { color: var(--accent); }
.faq-answer-inner strong { color: var(--text); }
.faq-item.open .faq-answer { max-height: 400px; }

/* Warm closing */
.closing-message {
  text-align: center;
  padding: 40px 24px 48px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
}
.closing-message strong { color: var(--accent); }

/* Footer */
.footer {
  text-align: center;
  padding: 40px 32px;
  font-size: 13px;
  background: #060a0d;
  color: var(--text-secondary);
  border-top: 1px solid var(--border);
}
.footer a { color: var(--accent); text-decoration: none; }
.footer a:hover { color: var(--text); }

/* Link buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: #0b0f12;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
  margin-top: 12px;
  box-shadow: 0 4px 12px rgba(0,163,157,0.25);
  -webkit-text-fill-color: #0b0f12;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,163,157,0.35); }

/* Mistake cards dark */
.mistake-card {
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: left;
  border: 1px solid rgba(220,38,38,0.2);
  background: rgba(220,38,38,0.06);
  transition: all 0.25s;
}
.mistake-card:hover { transform: translateY(-3px); }
.mistake-card h3 { color: #f87171; font-size: 15px; font-weight: 700; margin-bottom: 8px; margin-top: 0; }
.mistake-card ul { padding-left: 16px; margin: 0; font-size: 13px; }
.mistake-card li { color: var(--text-secondary); margin-bottom: 4px; }

/* Page Header (for sub-pages) */
.page-header {
  text-align: center;
  padding: 56px 0 48px;
}
.page-header h1 {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -1.5px;
  margin-bottom: 14px;
  color: var(--text);
}
.page-header p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Track badge */
.track-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.track-badge.skit {
  background: rgba(0,163,157,0.15);
  color: var(--accent);
}
.track-badge.th {
  background: rgba(139,124,200,0.15);
  color: #a78bfa;
}

/* Track callout boxes */
.track-callouts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}
.track-callout {
  border-radius: var(--radius);
  padding: 28px;
  transition: all 0.25s;
}
.track-callout:hover {
  transform: translateY(-3px);
}
.track-callout .track-emoji {
  font-size: 28px;
  margin-bottom: 12px;
}
.track-callout h3 {
  margin-top: 0;
  font-size: 18px;
}
.track-callout p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}
.track-callout a {
  display: inline-block;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
}
.track-callout a:hover {
  text-decoration: underline;
}

/* Setup Wizard Steps */
.setup-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 740px;
  margin: 0 auto;
}
.setup-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0;
  position: relative;
}
.setup-step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.setup-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a39d, #08dfbc);
  color: #0b0f12;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0,163,157,0.25), 0 0 40px rgba(0,163,157,0.08);
}
.setup-step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(0,163,157,0.3), var(--border));
  margin-top: 10px;
}
.setup-step:last-child .setup-step-line { display: none; }
.setup-step-content {
  background: #161d22;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 28px;
  margin-left: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.setup-step:nth-child(1) .setup-step-content { border-top: 2px solid rgba(0,163,157,0.4); }
.setup-step:nth-child(2) .setup-step-content { border-top: 2px solid rgba(0,163,157,0.3); }
.setup-step:nth-child(3) .setup-step-content { border-top: 2px solid rgba(0,163,157,0.25); }
.setup-step:nth-child(4) .setup-step-content { border-top: 2px solid rgba(8,223,188,0.3); }
.setup-step-content:hover {
  border-color: rgba(0,163,157,0.25);
  box-shadow: 0 4px 24px rgba(0,163,157,0.06), 0 0 48px rgba(0,163,157,0.03);
}
.setup-step-label {
  font-size: 12px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(0,163,157,0.6);
  margin-bottom: 8px;
}
.setup-step-content h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin: 0 0 12px 0;
}
.setup-step-content > p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 16px;
}
.setup-step-content > p:last-child { margin-bottom: 0; }
.setup-step-content ul, .setup-step-content ol {
  padding-left: 18px;
  margin-bottom: 14px;
}
.setup-step-content li {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 8px;
}
.setup-step-content li strong { color: var(--text); }
.setup-example {
  background: var(--card-lighter);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 22px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--text-secondary);
}
.setup-example strong { color: var(--text); }
.setup-example code {
  background: rgba(0,163,157,0.1);
  color: #08dfbc;
  padding: 3px 10px;
  border-radius: 6px;
  font-family: inherit;
  font-weight: 600;
  font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
  .stats-row { gap: 8px; }
  .stat-pill { min-width: 100px; padding: 14px 16px; }
  .stat-value { font-size: 16px; }
  .onboarding-steps { max-width: 100%; }
  .principles-grid { grid-template-columns: 1fr; }
  .script-list { grid-template-columns: 1fr; }
  .navbar-links { display: none; }
  .ob-cta-inner { flex-direction: column; text-align: center; padding: 28px 24px; }
  .ob-cta-btn { width: 100%; justify-content: center; }
  .hero h1 { font-size: 30px; }
  .track-callouts { grid-template-columns: 1fr; }
  .setup-step { grid-template-columns: 44px 1fr; }
  .setup-step-content { padding: 20px 24px; }
}
