/* ============================================================
   BAMPAA  -  Home / Landing Page
   assets/home.css
   ============================================================ */

/* ── Page shell ── */
.hm-page {
  overflow-x: hidden;
}

/* ── Shared section ── */
.hm-page section {
  padding: 30px 48px;
}

.hm-section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* ── Eyebrow ── */
.hm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(106, 165, 156, 0.12);
  border: 1px solid rgba(106, 165, 156, 0.25);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #6AA59C;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ── Section headings ── */
.hm-section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: #e8ecf2;
  margin-bottom: 22px;
  white-space: pre-line;
}

.hm-section-sub {
  font-size: 1.05rem;
  color: #6b7f9a;
  line-height: 1.75;
  max-width: 560px;
}

/* ── Glowing divider ── */
.hm-divider-glow {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(106, 165, 156, 0.3), transparent);
}

/* ============================================================
   HERO
   ============================================================ */
.hm-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 48px 100px;
  position: relative;
  overflow: hidden;
}

.hm-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 800px 600px at 50% 20%, rgba(106, 165, 156, 0.09), transparent 60%),
    radial-gradient(ellipse 400px 400px at 10% 80%, rgba(106, 165, 156, 0.05), transparent 50%),
    radial-gradient(ellipse 300px 300px at 90% 70%, rgba(232, 147, 90, 0.04), transparent 50%);
}

.hm-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(30, 45, 69, 1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 45, 69, 1) 1px, transparent 1px);
  background-size: 52px 52px;
}

.hm-hero-headline {
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #e8ecf2;
  margin-bottom: 32px;
  animation: hm-fade-up 0.6s 0.1s ease both;
}

.hm-accent { color: #6AA59C; }
.hm-dim    { color: #6b7f9a; font-weight: 300; }

.hm-hero-sub {
  font-size: 1.2rem;
  color: #6b7f9a;
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 52px;
  animation: hm-fade-up 0.6s 0.2s ease both;
}

.hm-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
  animation: hm-fade-up 0.6s 0.3s ease both;
}

/* Hero buttons */
.hm-btn-hero {
  display: inline-flex;
  align-items: center;
  padding: 18px 40px;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #6AA59C, #4B7F76);
  color: #fff;
  font-family: var(--sans, 'Sora', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 36px rgba(106, 165, 156, 0.3);
  transition: all 0.2s;
  text-decoration: none;
}
.hm-btn-hero:hover {
  box-shadow: 0 0 52px rgba(106, 165, 156, 0.5);
  transform: translateY(-2px);
  color: #fff;
}

.hm-btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  padding: 17px 38px;
  border-radius: 999px;
  border: 1px solid rgba(30, 45, 69, 1);
  background: transparent;
  color: #e8ecf2;
  font-family: var(--sans, 'Sora', sans-serif);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.hm-btn-hero-ghost:hover {
  border-color: #6AA59C;
  color: #6AA59C;
}

/* Social proof */
.hm-social-proof {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  animation: hm-fade-up 0.6s 0.4s ease both;
}

.hm-proof-avatars { display: flex; }

.hm-proof-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #0b1120;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 0.62rem;
  font-weight: 700;
  color: #fff;
  margin-left: -9px;
}
.hm-proof-avatar:first-child { margin-left: 0; }

.hm-av-teal   { background: linear-gradient(135deg, #6AA59C, #4B7F76); }
.hm-av-orange { background: linear-gradient(135deg, #E8935A, #c27340); }
.hm-av-blue   { background: linear-gradient(135deg, #60a5fa, #3b82f6); }
.hm-av-purple { background: linear-gradient(135deg, #a78bfa, #7c3aed); }

.hm-proof-text {
  font-size: 0.82rem;
  color: #6b7f9a;
}
.hm-proof-divider {
  width: 1px;
  height: 22px;
  background: rgba(30, 45, 69, 1);
}
.hm-proof-stat-val {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 1rem;
  font-weight: 700;
  color: #6AA59C;
}
.hm-proof-stat-label { font-size: 0.68rem; color: #6b7f9a; }

/* ============================================================
   DEMO CARD
   ============================================================ */
.hm-demo-section {
  padding: 0 48px 140px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hm-demo-wrap {
  width: 100%;
  max-width: 880px;
  animation: hm-fade-up 0.8s 0.5s ease both;
}

.hm-demo-card {
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid rgba(30, 45, 69, 1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 48px 96px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(106, 165, 156, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hm-demo-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  background: rgba(10, 16, 30, 0.8);
  border-bottom: 1px solid rgba(30, 45, 69, 1);
}

.hm-demo-dots { display: flex; gap: 7px; }

.hm-demo-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.hm-dot-red    { background: #ef4444; }
.hm-dot-yellow { background: #f59e0b; }
.hm-dot-green  { background: #22c55e; }

.hm-demo-title-bar {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 0.72rem;
  color: #6b7f9a;
}

.hm-demo-badge-bar {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 6px;
  background: rgba(106, 165, 156, 0.12);
  border: 1px solid rgba(106, 165, 156, 0.2);
  color: #6AA59C;
}

.hm-demo-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hm-demo-left {
  padding: 28px;
  border-right: 1px solid rgba(30, 45, 69, 1);
}
.hm-demo-right { padding: 28px; }

.hm-demo-q-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7f9a;
  margin-bottom: 12px;
}
.hm-demo-q-title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 14px;
  color: #e8ecf2;
}
.hm-demo-q-hint {
  font-size: 0.82rem;
  color: #6b7f9a;
  line-height: 1.65;
  margin-bottom: 24px;
}
.hm-demo-q-hint code {
  font-family: var(--mono, 'Space Mono', monospace);
  background: rgba(106, 165, 156, 0.1);
  color: #6AA59C;
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.72rem;
}
.hm-demo-schema-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7f9a;
  margin-bottom: 10px;
}
.hm-demo-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.hm-demo-col {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 0.65rem;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(30, 45, 69, 1);
  border-radius: 6px;
  color: #7dd3fc;
}
.hm-demo-editor-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7f9a;
  margin-bottom: 12px;
}
.hm-demo-code {
  background: #05090f;
  border: 1px solid rgba(30, 45, 69, 1);
  border-radius: 12px;
  padding: 16px 18px;
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 0.78rem;
  line-height: 1.75;
  color: #c3d9f0;
  margin-bottom: 16px;
}
.hm-kw  { color: #E8935A; }
.hm-str { color: #fde68a; }
.hm-cur {
  display: inline-block;
  width: 2px;
  height: 14px;
  background: #6AA59C;
  animation: hm-blink 1s infinite;
  vertical-align: middle;
}
@keyframes hm-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hm-demo-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.25);
  font-size: 0.82rem;
  color: #6ee7b7;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.hm-how-section {
  background: rgba(17, 24, 39, 0.6);
  border-top: 1px solid rgba(30, 45, 69, 1);
  border-bottom: 1px solid rgba(30, 45, 69, 1);
}

.hm-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(30, 45, 69, 1);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 80px;
}

.hm-step {
  padding: 56px 44px;
  background: #0b1120;
  transition: background 0.3s;
}
.hm-step:hover { background: rgba(106, 165, 156, 0.03); }
.hm-step + .hm-step { border-left: 1px solid rgba(30, 45, 69, 1); }

.hm-step-num {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(106, 165, 156, 0.1);
  line-height: 1;
  margin-bottom: 28px;
}
.hm-step-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(106, 165, 156, 0.12);
  border: 1px solid rgba(106, 165, 156, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 22px;
}
.hm-step-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #e8ecf2;
  margin-bottom: 14px;
}
.hm-step-desc {
  font-size: 0.9rem;
  color: #6b7f9a;
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   FEATURES
   ============================================================ */
.hm-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 80px;
}

.hm-feature-card {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(30, 45, 69, 1);
  border-radius: 22px;
  padding: 40px 36px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.hm-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6AA59C, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.hm-feature-card:hover {
  border-color: rgba(106, 165, 156, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}
.hm-feature-card:hover::before { opacity: 1; }

.hm-fc-orange::before { background: linear-gradient(90deg, transparent, #E8935A, transparent); }
.hm-fc-orange:hover   { border-color: rgba(232, 147, 90, 0.3); }

.hm-fc-blue::before { background: linear-gradient(90deg, transparent, #60a5fa, transparent); }
.hm-fc-blue:hover   { border-color: rgba(96, 165, 250, 0.3); }

.hm-feature-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: rgba(106, 165, 156, 0.12);
  border: 1px solid rgba(106, 165, 156, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 26px;
}
.hm-fc-orange .hm-feature-icon { background: rgba(232, 147, 90, 0.1); border-color: rgba(232, 147, 90, 0.2); }
.hm-fc-blue   .hm-feature-icon { background: rgba(59, 130, 246, 0.1); border-color: rgba(59, 130, 246, 0.2); }

.hm-feature-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #e8ecf2;
  margin-bottom: 14px;
}
.hm-feature-desc {
  font-size: 0.9rem;
  color: #6b7f9a;
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   TIMED PRACTICE SPOTLIGHT
   ============================================================ */
.hm-spotlight-section { position: relative; overflow: hidden; }

.hm-spotlight-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 900px 700px at 70% 50%, rgba(106, 165, 156, 0.06), transparent 60%);
}

.hm-spotlight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  position: relative;
}

.hm-spotlight-perks {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 40px 0 0;
}

.hm-perk {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.hm-perk-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(106, 165, 156, 0.12);
  border: 1px solid rgba(106, 165, 156, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.hm-perk-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e8ecf2;
  margin-bottom: 4px;
}
.hm-perk-desc { font-size: 0.85rem; color: #6b7f9a; line-height: 1.6; }

/* Timer demo widget */
.hm-timer-demo {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(30, 45, 69, 1);
  border-radius: 24px;
  padding: 44px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

.hm-timer-demo-top {
  text-align: center;
  margin-bottom: 40px;
}
.hm-timer-big {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 5rem;
  font-weight: 700;
  color: #6AA59C;
  line-height: 1;
  text-shadow: 0 0 48px rgba(106, 165, 156, 0.3);
  letter-spacing: 0.05em;
}
.hm-timer-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7f9a;
  margin-top: 10px;
}

.hm-timer-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.hm-t-stat {
  text-align: center;
  padding: 18px 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(30, 45, 69, 1);
  border-radius: 12px;
}
.hm-t-stat-val {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.hm-t-stat-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b7f9a;
}
.hm-green  { color: #10b981 !important; }
.hm-orange { color: #E8935A !important; }
.hm-brand  { color: #6AA59C !important; }

.hm-timer-progress {
  height: 7px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}
.hm-timer-fill {
  height: 100%;
  background: linear-gradient(90deg, #6AA59C, #4B7F76);
  border-radius: 4px;
  width: 68%;
  animation: hm-fill-pulse 2s ease-in-out infinite alternate;
}
@keyframes hm-fill-pulse { from { width: 68%; } to { width: 73%; } }

/* ============================================================
   LIVE CLASSES
   ============================================================ */
.hm-live-section {
  background: rgba(17, 24, 39, 0.6);
  border-top: 1px solid rgba(30, 45, 69, 1);
  border-bottom: 1px solid rgba(30, 45, 69, 1);
}

.hm-live-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

.hm-live-badge-big {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hm-live-dot-big {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: hm-blink-dot 1.5s infinite;
}
@keyframes hm-blink-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.hm-live-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 340px;
}

.hm-live-card {
  background: rgba(22, 32, 50, 0.8);
  border: 1px solid rgba(30, 45, 69, 1);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color 0.2s;
}
.hm-live-card:hover { border-color: rgba(106, 165, 156, 0.3); }

.hm-live-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hm-live-card-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #e8ecf2;
  margin-bottom: 5px;
}
.hm-live-card-meta { font-size: 0.74rem; color: #6b7f9a; }

.hm-live-card-badge {
  margin-left: auto;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  flex-shrink: 0;
}
.hm-badge-today  { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25); color: #22c55e; }
.hm-badge-soon   { background: rgba(59,130,246,0.1); border: 1px solid rgba(59,130,246,0.25); color: #60a5fa; }
.hm-badge-next   { background: rgba(148,163,184,0.07); border: 1px solid rgba(148,163,184,0.15); color: #6b7f9a; }

/* ============================================================
   STATS ROW
   ============================================================ */
.hm-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(30, 45, 69, 1);
  border-radius: 24px;
  overflow: hidden;
}
.hm-stat-tile {
  padding: 60px 40px;
  text-align: center;
  background: rgba(17, 24, 39, 0.8);
  transition: background 0.2s;
}
.hm-stat-tile + .hm-stat-tile { border-left: 1px solid rgba(30, 45, 69, 1); }
.hm-stat-tile:hover { background: rgba(106, 165, 156, 0.04); }
.hm-stat-tile-val {
  font-family: var(--mono, 'Space Mono', monospace);
  font-size: 3.4rem;
  font-weight: 700;
  color: #6AA59C;
  line-height: 1;
  margin-bottom: 14px;
}
.hm-stat-tile-label { font-size: 0.85rem; color: #6b7f9a; font-weight: 500; }

/* ============================================================
   FINAL CTA
   ============================================================ */
/* ── Newsletter ─────────────────────────────────────────────── */
.hm-mc-section {
  padding: 100px 48px;
  text-align: center;
}
.hm-mc-inner {
  max-width: 560px;
  margin: 0 auto;
}
.hm-mc-row {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.hm-mc-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(99, 179, 237, 0.25);
  background: rgba(255,255,255,0.04);
  color: #e2e8f0;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
}
.hm-mc-input:focus {
  border-color: rgba(99, 179, 237, 0.55);
}
.hm-mc-btn {
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}
.hm-mc-btn:hover { opacity: 0.88; }
.hm-mc-status {
  margin-top: 14px;
  font-size: 0.9rem;
  min-height: 22px;
}
.hm-mc-success { color: #68d391; }
.hm-mc-error   { color: #fc8181; }

/* ── CTA ──────────────────────────────────────────────────── */
.hm-cta-section {
  text-align: center;
  padding: 180px 48px;
  position: relative;
  overflow: hidden;
}
.hm-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 700px 500px at 50% 50%, rgba(106, 165, 156, 0.08), transparent 60%);
}
.hm-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(106, 165, 156, 0.12);
  border: 1px solid rgba(106, 165, 156, 0.25);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #6AA59C;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 36px;
  position: relative;
}
.hm-cta-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: #e8ecf2;
  margin-bottom: 28px;
  white-space: pre-line;
  position: relative;
}
.hm-cta-sub {
  font-size: 1.15rem;
  color: #6b7f9a;
  max-width: 500px;
  margin: 0 auto 56px;
  line-height: 1.75;
  position: relative;
}
.hm-cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ============================================================
   ANIMATION
   ============================================================ */
@keyframes hm-fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hm-eyebrow {
  animation: hm-fade-up 0.6s ease both;
}

/* ============================================================
   MOBILE ≤900px
   ============================================================ */
@media (max-width: 900px) {
  .hm-page section { padding: 90px 24px; }

  .hm-hero { padding: 110px 24px 70px; }
  .hm-hero-headline { font-size: 2.8rem; }

  .hm-demo-section { padding: 0 24px 100px; }
  .hm-demo-body { grid-template-columns: 1fr; }
  .hm-demo-left { border-right: none; border-bottom: 1px solid rgba(30, 45, 69, 1); }

  .hm-steps-grid { grid-template-columns: 1fr; }
  .hm-step + .hm-step { border-left: none; border-top: 1px solid rgba(30, 45, 69, 1); }

  .hm-features-grid { grid-template-columns: 1fr; }

  .hm-spotlight-grid { grid-template-columns: 1fr; gap: 48px; }

  .hm-live-inner { flex-direction: column; gap: 48px; }
  .hm-live-cards { min-width: 0; width: 100%; }

  .hm-stats-row { grid-template-columns: repeat(2, 1fr); }
  .hm-stat-tile:nth-child(3) { border-left: none; border-top: 1px solid rgba(30, 45, 69, 1); }
  .hm-stat-tile:nth-child(4) { border-top: 1px solid rgba(30, 45, 69, 1); }

  .hm-cta-section { padding: 110px 24px; }
}
/* ── Personalised plan hook section ────────────────────────── */
.hm-hook-section {
  padding: 100px 24px;
}

.hm-hook-inner {
  max-width: 640px;
}

.hm-hook-flow {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  margin-top: 40px;
  min-height: 160px;
}

/* Step 0  -  hook CTA */
.hm-hook-start-sub {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 480px;
}

/* Progress indicator */
.hm-hook-progress {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.hm-hook-dots {
  display: flex;
  gap: 6px;
}

.hm-hook-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.2s;
}

.hm-hook-dot.active {
  background: var(--brand);
  width: 22px;
  border-radius: 4px;
}

.hm-hook-dot.done {
  background: var(--brand);
  opacity: 0.45;
}

.hm-hook-step-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* Question heading */
.hm-hook-q-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 18px;
  line-height: 1.3;
}

/* Auto-advance hint */
.hm-hook-auto-hint {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.6;
  margin-top: 10px;
  letter-spacing: 0.3px;
}

.hm-hook-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--brand);
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Industry grid */
.hm-hook-industry-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 4px;
}

.hm-hook-radio-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.hm-hook-industry-label {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 8px;
  cursor: pointer;
  transition: all 0.18s;
  user-select: none;
  font-size: 12px;
  color: var(--text-muted);
}

.hm-hook-industry-label:hover {
  border-color: var(--brand);
  background: rgba(106,165,156,0.07);
}

.hm-hook-industry-label:has(.hm-hook-radio-input:checked) {
  border-color: var(--brand);
  background: rgba(106,165,156,0.12);
  color: var(--brand);
}

.hm-hook-icon {
  font-size: 20px;
  display: block;
  margin-bottom: 5px;
}

.hm-hook-opt-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Option list */
.hm-hook-options {
  display: flex !important;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}

.hm-hook-option-label {
  display: flex !important;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 13px;
  color: var(--text);
  transition: all 0.18s;
  user-select: none;
}

.hm-hook-option-label:hover {
  border-color: var(--brand);
  background: rgba(106,165,156,0.07);
}

.hm-hook-option-label:has(.hm-hook-radio-input:checked) {
  border-color: var(--brand);
  background: rgba(106,165,156,0.12);
  color: var(--brand);
}

.hm-hook-error {
  font-size: 13px;
  color: #f87171;
  margin: 10px 0;
  padding: 10px 13px;
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.2);
  border-radius: 8px;
}

.hm-hook-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 24px;
  margin-top: 24px;
  background: linear-gradient(180deg, var(--brand), var(--brand-600));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.hm-hook-btn:hover {
  background: linear-gradient(180deg, var(--brand-600), var(--brand-700));
  transform: translateY(-1px);
}

/* Step animation */
@keyframes hmStepIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

#hm-hook-step1,
#hm-hook-step2,
#hm-hook-step3,
#hm-hook-step4 {
  animation: hmStepIn 0.25s ease both;
}

/* Plan results */
.hm-plan-results {
  animation: hmStepIn 0.3s ease both;
}

.hm-plan-placement {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  background: rgba(106,165,156,0.08);
  border: 1px solid rgba(106,165,156,0.2);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 16px;
}

.hm-plan-level-badge {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 3px;
}

.hm-plan-level-msg {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.hm-plan-role-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.hm-plan-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

.hm-plan-days {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.hm-plan-day-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  position: relative;
}

.hm-plan-day-card.open {
  border-color: var(--brand);
  background: rgba(106,165,156,0.07);
}

.hm-plan-day-card.locked {
  opacity: 0.45;
}

.hm-plan-day-num {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(106,165,156,0.1);
  border: 1px solid rgba(106,165,156,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--brand);
  flex-shrink: 0;
  font-family: 'Syne', sans-serif;
}

.hm-plan-day-card.open .hm-plan-day-num {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.hm-plan-day-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}

.hm-plan-day-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

.hm-plan-day-lock {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  opacity: 0.4;
}

.hm-plan-gate {
  text-align: center;
  padding: 20px 0 4px;
}

.hm-plan-gate-text {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.6;
}

.hm-plan-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 28px;
  background: linear-gradient(180deg, var(--brand), var(--brand-600));
  color: #fff;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}

.hm-plan-cta-btn:hover {
  opacity: 0.85;
}

@media (max-width: 600px) {
  .hm-hook-industry-grid { grid-template-columns: repeat(3, 1fr); }
  .hm-plan-placement { flex-direction: column; gap: 12px; }
}


/* ============================================================
   NEW COACH HOME  (nh-*)
   ============================================================ */

.nh-page {
  overflow-x: hidden;
  font-family: inherit;
}

/* ── Eyebrow ── */
.nh-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6AA59C;
  margin-bottom: 14px;
}

/* ── HERO ── */
.nh-hero {
  position: relative;
  padding: 80px 24px 60px;
  overflow: hidden;
}
.nh-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 60% 30%, rgba(106,165,156,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(106,165,156,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.nh-hero-inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.nh-hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.nh-hero-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #E8EAF0;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.nh-accent {
  color: #6AA59C;
}
.nh-hero-sub {
  font-size: 1rem;
  color: rgba(200,205,220,0.75);
  line-height: 1.65;
  margin: 0 0 28px;
  max-width: 420px;
}
.nh-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.nh-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #6AA59C;
  color: #0F1117;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.15s;
}
.nh-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.nh-btn-ghost {
  display: inline-block;
  padding: 12px 26px;
  border: 1px solid rgba(106,165,156,0.35);
  color: #6AA59C;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.nh-btn-ghost:hover { border-color: #6AA59C; background: rgba(106,165,156,0.08); }

/* ── Plan graphic ── */
.nh-hero-right {
  display: flex;
  justify-content: center;
}
.nh-plan-graphic {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  max-width: 380px;
  backdrop-filter: blur(6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.nh-pg-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nh-pg-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nh-pg-level-badge {
  background: rgba(106,165,156,0.18);
  color: #6AA59C;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nh-pg-dot {
  color: rgba(200,205,220,0.3);
  font-size: 0.8rem;
}
.nh-pg-industry {
  font-size: 0.75rem;
  color: rgba(200,205,220,0.55);
  font-weight: 500;
}
.nh-pg-header-right {
  font-size: 0.72rem;
  color: rgba(200,205,220,0.4);
  font-weight: 500;
}
.nh-pg-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.nh-pg-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(255,255,255,0.025);
}
.nh-pg-row-open {
  background: rgba(106,165,156,0.1);
  border: 1px solid rgba(106,165,156,0.2);
}
.nh-pg-day-num {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 6px;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.nh-pg-open {
  background: rgba(106,165,156,0.25);
  color: #6AA59C;
}
.nh-pg-locked {
  background: rgba(255,255,255,0.06);
  color: rgba(200,205,220,0.35);
}
.nh-pg-concept-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nh-pg-icon {
  font-size: 0.75rem;
}
.nh-pg-concept {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(200,205,220,0.9);
}
.nh-pg-concept-muted {
  color: rgba(200,205,220,0.4);
  font-weight: 400;
}
.nh-pg-start {
  font-size: 0.72rem;
  color: #6AA59C;
  font-weight: 700;
}
.nh-pg-lock {
  font-size: 0.75rem;
  opacity: 0.4;
}
.nh-pg-footer {
  display: flex;
  gap: 6px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.nh-pg-tool-pip {
  width: 28px;
  height: 4px;
  border-radius: 2px;
}
.nh-pip-sql { background: #6AA59C; }
.nh-pip-py  { background: #E6A04A; }
.nh-pip-xl  { background: #6B8FD4; opacity: 0.5; }

/* ── Benefits ── */
.nh-benefits-section {
  padding: 80px 24px;
}
.nh-section-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.nh-section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #E8EAF0;
  margin: 0 0 40px;
  letter-spacing: -0.02em;
}
.nh-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.nh-benefit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.25s, transform 0.2s;
}
.nh-benefit-card:hover {
  border-color: rgba(106,165,156,0.25);
  transform: translateY(-2px);
}
.nh-bc-teal  { border-color: rgba(106,165,156,0.18); }
.nh-bc-orange{ border-color: rgba(230,160,74,0.15); }
.nh-benefit-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}
.nh-benefit-title {
  font-size: 1rem;
  font-weight: 700;
  color: #E8EAF0;
  margin-bottom: 8px;
}
.nh-benefit-desc {
  font-size: 0.85rem;
  color: rgba(200,205,220,0.6);
  line-height: 1.65;
  margin: 0;
}

/* ── Divider ── */
.nh-divider {
  height: 1px;
  max-width: 1080px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(106,165,156,0.2), transparent);
}

/* ── Newsletter ── */
.nh-mc-section {
  padding: 80px 24px;
}
.nh-mc-inner {
  text-align: center;
  max-width: 560px !important;
}
.nh-section-sub {
  font-size: 0.92rem;
  color: rgba(200,205,220,0.6);
  line-height: 1.7;
  margin: 0 0 28px;
}
.nh-mc-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.nh-mc-input {
  flex: 1;
  min-width: 220px;
  max-width: 320px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  color: #E8EAF0;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.nh-mc-input:focus { border-color: #6AA59C; }
.nh-mc-input::placeholder { color: rgba(200,205,220,0.35); }
.nh-mc-btn {
  padding: 12px 26px;
  background: #6AA59C;
  color: #0F1117;
  border: none;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
}
.nh-mc-btn:hover { opacity: 0.85; }
.nh-mc-status {
  margin-top: 12px;
  font-size: 0.82rem;
  min-height: 18px;
}
.nh-mc-success { color: #6AA59C; }
.nh-mc-error   { color: #E06B6B; }

/* ── Responsive ── */
/* ── Tool badges ── */
.nh-tool-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.nh-tool-badge {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(106,165,156,0.12);
  border: 1px solid rgba(106,165,156,0.25);
  color: rgba(200,205,220,0.85);
}
.nh-tool-badge-muted {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: rgba(200,205,220,0.4);
}

/* ── Sub-CTA trust line ── */
.nh-cta-sub {
  font-size: 0.75rem;
  color: rgba(200,205,220,0.4);
  margin-top: 10px;
}

/* ── Testimonial ── */
.nh-quotes-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}
.nh-quote {
  padding: 14px 16px;
  border-left: 2px solid rgba(106,165,156,0.4);
  background: rgba(106,165,156,0.05);
  border-radius: 0 8px 8px 0;
}
.nh-quote-text {
  font-size: 0.85rem;
  color: rgba(200,205,220,0.75);
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 6px;
}
.nh-quote-author {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(200,205,220,0.4);
}

/* ── Social proof ── */
.nh-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.nh-avatars {
  display: flex;
}
.nh-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  border: 2px solid #0F1117;
  margin-left: -8px;
  color: #0F1117;
}
.nh-avatars .nh-av:first-child { margin-left: 0; }
.nh-av-teal   { background: #6AA59C; }
.nh-av-orange { background: #E6A04A; }
.nh-av-blue   { background: #6B8FD4; }
.nh-av-purple { background: #9B7ED4; }

.nh-proof-strong {
  font-size: 0.83rem;
  font-weight: 700;
  color: rgba(200,205,220,0.9);
}
.nh-proof-muted {
  font-size: 0.83rem;
  color: rgba(200,205,220,0.45);
}

/* ── Plan graphic: improved ── */
.nh-pg-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  margin: 10px 0 14px;
  overflow: hidden;
}
.nh-pg-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #6AA59C, #4B7F76);
  border-radius: 2px;
  transition: width 0.6s ease;
}
.nh-pg-prog-done {
  font-size: 0.85rem;
  font-weight: 700;
  color: #6AA59C;
}
.nh-pg-prog-label {
  font-size: 0.75rem;
  color: rgba(200,205,220,0.4);
}
.nh-pg-row-done {
  background: rgba(106,165,156,0.06);
  border: 1px solid rgba(106,165,156,0.12);
}
.nh-pg-day-num.nh-pg-done {
  background: rgba(106,165,156,0.2);
  color: #6AA59C;
}
.nh-pg-score {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6AA59C;
  background: rgba(106,165,156,0.12);
  padding: 2px 7px;
  border-radius: 10px;
}

/* ── How it works ── */
.nh-how-section {
  padding: 40px 24px 72px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.nh-steps-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 36px;
}

/* Step card */
.nh-step-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s;
}
.nh-step-card:hover { border-color: rgba(106,165,156,0.2); }

.nh-step-top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nh-step-badge {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: #6AA59C;
}
.nh-step-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #E8EAF0;
}
.nh-step-desc {
  font-size: 0.82rem;
  color: rgba(200,205,220,0.5);
  line-height: 1.6;
  margin: 0;
}

/* Step graphic area */
.nh-step-graphic {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 90px;
}
.nh-step-icon {
  font-size: 1.3rem;
  line-height: 1;
}

/* Step 1: chips */
.nh-step-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.nh-step-chip {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  color: rgba(200,205,220,0.6);
  border: 1px solid rgba(255,255,255,0.08);
}
.nh-chip-teal {
  background: rgba(106,165,156,0.15);
  color: #6AA59C;
  border-color: rgba(106,165,156,0.25);
}

/* Step 2: mini plan */
.nh-mini-plan { display: flex; flex-direction: column; gap: 5px; }
.nh-mini-row {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.73rem;
  color: rgba(200,205,220,0.8);
}
.nh-mini-muted { opacity: 0.4; }
.nh-mini-day {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  flex-shrink: 0;
}
.nh-day-open {
  background: rgba(106,165,156,0.25);
  color: #6AA59C;
}
.nh-day-lock {
  background: rgba(255,255,255,0.06);
  color: rgba(200,205,220,0.3);
}

/* Step 3: result graphic */
.nh-result-graphic { display: flex; flex-direction: column; gap: 6px; }
.nh-result-line {
  font-size: 0.72rem;
  color: #6AA59C;
  font-weight: 600;
}
.nh-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nh-result-label {
  font-size: 0.7rem;
  color: rgba(200,205,220,0.4);
}
.nh-result-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: #E8EAF0;
}
.nh-result-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.nh-result-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #6AA59C, #4B7F76);
  border-radius: 2px;
}

/* Arrow between steps */
.nh-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  font-size: 1rem;
  color: rgba(106,165,156,0.35);
  flex-shrink: 0;
  padding-bottom: 60px;
}

/* Pricing transparency line */
.nh-price-line {
  font-size: 0.84rem;
  line-height: 1.6;
}
.nh-price-line-free {
  color: #6AA59C;
  font-weight: 600;
}
.nh-price-line-paid {
  color: rgba(200,205,220,0.5);
}
.nh-price-line-link {
  color: rgba(106,165,156,0.7);
  text-decoration: none;
  font-weight: 600;
}
.nh-price-line-link:hover { color: #6AA59C; }

@media (max-width: 860px) {
  .nh-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nh-hero-right { display: none; }
  .nh-benefits-grid { grid-template-columns: 1fr; gap: 14px; }
  .nh-steps-row { flex-direction: column; gap: 14px; }
  .nh-step-arrow { display: none; }
}
@media (max-width: 600px) {
  .nh-hero { padding: 52px 18px 60px; }
  .nh-benefits-section, .nh-mc-section, .nh-how-section { padding: 52px 18px; }
}

/* ============================================================
   AI FEEDBACK CARD  (nh-afc-*)
   ============================================================ */

.nh-afc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 16px;
  padding: 20px;
  width: 100%;
  max-width: 400px;
  backdrop-filter: blur(6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nh-afc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nh-afc-header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nh-afc-tool-icon {
  font-size: 1rem;
}
.nh-afc-tool-label {
  font-size: 0.75rem;
  color: rgba(200,205,220,0.6);
  font-weight: 500;
}
.nh-afc-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(106,165,156,0.18);
  color: #6AA59C;
  padding: 3px 9px;
  border-radius: 20px;
}

/* Prompt */
.nh-afc-prompt {
  background: rgba(255,255,255,0.025);
  border-radius: 10px;
  padding: 12px 14px;
}
.nh-afc-prompt-label {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(200,205,220,0.35);
  margin-bottom: 6px;
}
.nh-afc-prompt-text {
  font-size: 0.82rem;
  color: rgba(200,205,220,0.85);
  line-height: 1.55;
}

/* Code block */
.nh-afc-code-wrap {
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
}
.nh-afc-code-lang {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(106,165,156,0.7);
  padding: 6px 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nh-afc-code {
  font-family: 'Fira Code', 'Cascadia Code', monospace;
  font-size: 0.75rem;
  color: rgba(200,220,210,0.85);
  line-height: 1.6;
  margin: 0;
  padding: 10px 14px;
  white-space: pre;
  overflow-x: auto;
}

/* AI feedback block */
.nh-afc-ai-block {
  background: rgba(106,165,156,0.07);
  border: 1px solid rgba(106,165,156,0.2);
  border-radius: 10px;
  padding: 12px 14px;
}
.nh-afc-ai-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}
.nh-afc-ai-star {
  font-size: 0.8rem;
  color: #6AA59C;
}
.nh-afc-ai-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #6AA59C;
}
.nh-afc-ai-text {
  font-size: 0.8rem;
  color: rgba(200,205,220,0.75);
  line-height: 1.6;
}
.nh-afc-inline-code {
  font-family: monospace;
  font-size: 0.78rem;
  background: rgba(106,165,156,0.15);
  color: #8FBFB8;
  padding: 1px 5px;
  border-radius: 4px;
}

/* Score row */
.nh-afc-score-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.nh-afc-score-label {
  font-size: 0.7rem;
  color: rgba(200,205,220,0.4);
  font-weight: 500;
}
.nh-afc-score-val {
  font-size: 1rem;
  font-weight: 800;
  color: #6AA59C;
}
.nh-afc-score-denom {
  font-size: 0.75rem;
  color: rgba(200,205,220,0.35);
}
.nh-afc-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}
.nh-afc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #6AA59C, #4B7F76);
  border-radius: 2px;
}

/* ============================================================
   WHAT MAKES IT DIFFERENT  (nh-diff-*)
   ============================================================ */

.nh-diff-section {
  padding: 80px 24px;
}
.nh-diff-inner {
  text-align: left;
}
.nh-center {
  text-align: center;
}
.nh-section-sub.nh-center {
  margin: 0 auto 40px;
}
.nh-diff-row {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 40px;
}
.nh-diff-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s;
}
.nh-diff-card:hover { border-color: rgba(106,165,156,0.2); }
.nh-diff-card-highlight {
  background: rgba(106,165,156,0.07);
  border-color: rgba(106,165,156,0.25);
}
.nh-diff-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 1.1rem;
  color: rgba(106,165,156,0.35);
  flex-shrink: 0;
}
.nh-diff-icon {
  font-size: 1.5rem;
  margin-bottom: 4px;
  color: rgba(200,205,220,0.5);
}
.nh-diff-icon-ai {
  color: #6AA59C;
}
.nh-diff-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #E8EAF0;
}
.nh-diff-desc {
  font-size: 0.82rem;
  color: rgba(200,205,220,0.55);
  line-height: 1.65;
}

/* ============================================================
   LEARNING JOURNEY  (nh-journey-*)
   ============================================================ */

.nh-journey-section {
  padding: 80px 24px;
}
.nh-journey-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 40px;
}
.nh-journey-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 16px;
}
.nh-journey-icon-wrap {
  position: relative;
  margin-bottom: 16px;
}
.nh-journey-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(106,165,156,0.1);
  border: 1px solid rgba(106,165,156,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.nh-journey-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  background: #6AA59C;
  color: #0F1117;
  border-radius: 50%;
  font-size: 0.62rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nh-journey-text {
  min-width: 0;
}
.nh-journey-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #E8EAF0;
  margin-bottom: 8px;
}
.nh-journey-desc {
  font-size: 0.82rem;
  color: rgba(200,205,220,0.5);
  line-height: 1.65;
}
.nh-journey-connector {
  flex-shrink: 0;
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(106,165,156,0.4), rgba(106,165,156,0.15));
  margin-top: 28px;
  align-self: flex-start;
}

/* ============================================================
   WHO IT'S FOR  (nh-persona-*)
   ============================================================ */

.nh-persona-section {
  padding: 80px 24px;
}
.nh-persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.nh-persona-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, transform 0.2s;
}
.nh-persona-card:hover {
  border-color: rgba(106,165,156,0.2);
  transform: translateY(-2px);
}
.nh-persona-card-highlight {
  background: rgba(106,165,156,0.06);
  border-color: rgba(106,165,156,0.22);
}
.nh-persona-icon {
  font-size: 1.8rem;
}
.nh-persona-title {
  font-size: 1rem;
  font-weight: 700;
  color: #E8EAF0;
}
.nh-persona-desc {
  font-size: 0.85rem;
  color: rgba(200,205,220,0.55);
  line-height: 1.65;
  flex: 1;
}
.nh-persona-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.nh-persona-tags span {
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(106,165,156,0.1);
  border: 1px solid rgba(106,165,156,0.2);
  color: rgba(200,205,220,0.7);
}

/* ============================================================
   TESTIMONIALS  (nh-tq-*)
   ============================================================ */

.nh-tq-section {
  padding: 80px 24px;
}
.nh-tq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.nh-tq-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nh-tq-mark {
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(106,165,156,0.35);
  font-family: Georgia, serif;
  margin-bottom: -8px;
}
.nh-tq-text {
  font-size: 0.88rem;
  color: rgba(200,205,220,0.72);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.nh-tq-author {
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(200,205,220,0.4);
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* ============================================================
   CLOSING CTA  (nh-cta-*)
   ============================================================ */

.nh-cta-wrapper {
  padding: 0 24px 80px;
}
.nh-cta-section {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  background: rgba(106,165,156,0.06);
  border: 1px solid rgba(106,165,156,0.2);
  border-radius: 24px;
  overflow: hidden;
}
.nh-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 80% 50%, rgba(106,165,156,0.12), transparent 60%),
    radial-gradient(ellipse 40% 50% at 20% 50%, rgba(106,165,156,0.07), transparent 55%);
  pointer-events: none;
}
.nh-cta-inner {
  position: relative;
  padding: 64px 56px;
  max-width: 640px;
}
.nh-cta-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: #E8EAF0;
  margin: 0 0 20px;
}
.nh-cta-sub-text {
  font-size: 0.92rem;
  color: rgba(200,205,220,0.6);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 520px;
}
.nh-cta-checks {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.nh-cta-check {
  font-size: 0.78rem;
  color: rgba(200,205,220,0.5);
  font-weight: 600;
}

/* ============================================================
   RESPONSIVE — new sections
   ============================================================ */

@media (max-width: 860px) {
  .nh-diff-row {
    flex-direction: column;
    gap: 14px;
  }
  .nh-diff-arrow { display: none; }

  .nh-journey-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .nh-journey-step {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
  }
  .nh-journey-icon-wrap { flex-shrink: 0; margin-bottom: 0; }
  .nh-journey-title { font-size: 0.9rem; margin-bottom: 4px; }
  .nh-journey-desc { font-size: 0.78rem; }
  .nh-journey-connector { display: none; }

  .nh-persona-grid { grid-template-columns: 1fr; gap: 14px; }
  .nh-tq-grid { grid-template-columns: 1fr; gap: 14px; }
  .nh-cta-inner { padding: 40px 28px; }
}

@media (max-width: 600px) {
  .nh-tool-badges { gap: 6px; }
  .nh-tool-badge { padding: 4px 8px; font-size: 0.7rem; }
  .nh-diff-section,
  .nh-journey-section,
  .nh-persona-section,
  .nh-tq-section { padding: 52px 18px; }
  .nh-cta-wrapper { padding: 0 18px 52px; }
}

