/* ── Premium SaaS Theme Variables ── */
:root {
  --primary: #D15000;
  --primary-hover: #B84600;
  --primary-light: #FFF7ED;
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --text-main: #030712;
  --text-muted: #6B7280;
  --border-color: rgba(3, 7, 18, 0.06);
  --border-color-thick: rgba(3, 7, 18, 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-inter: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(3, 7, 18, 0.04), 0 1px 2px rgba(3, 7, 18, 0.02);
  --shadow-lg: 0 12px 32px rgba(3, 7, 18, 0.06), 0 2px 8px rgba(3, 7, 18, 0.03);
}

/* ── Reset & Body ── */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body.landing-body {
  font-family: var(--font-inter);
  background: var(--bg);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Global Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-inter);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.03em;
  line-height: 1.15;
}

h2 {
  font-size: clamp(24px, 3.5vw, 32px);
  letter-spacing: -0.02em;
}

h3 {
  font-size: 20px;
}

p {
  color: var(--text-muted);
}

/* ── Buttons ── */
.landing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 13.5px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  white-space: nowrap;
}

.landing-btn--primary {
  background: var(--primary);
  color: #FFFFFF;
}

.landing-btn--primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(209, 80, 0, 0.2);
}

.landing-btn--outline {
  background: var(--surface);
  color: var(--text-main);
  border-color: var(--border-color-thick);
}

.landing-btn--outline:hover {
  background: var(--bg);
  border-color: var(--text-main);
  transform: translateY(-1px);
}

.landing-btn--outline-white {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.landing-btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #FFFFFF;
  transform: translateY(-1px);
}

.landing-btn--large {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: var(--radius-md);
}

/* ── Header ── */
.landing-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.landing-brand img {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.landing-brand-mark {
  width: 1px;
  height: 24px;
  background: var(--border-color-thick);
}

.landing-brand .brand-text {
  font-weight: 700;
  font-size: 16px;
  color: var(--text-main);
  letter-spacing: -0.015em;
}

.landing-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 640px) {
  .landing-header {
    padding: 12px 20px;
  }
}

/* ── Containers ── */
.landing-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero Section ── */
.landing-hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background: radial-gradient(circle at top right, rgba(209, 80, 0, 0.03), transparent 35%);
}

.landing-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: center;
}

@media (max-width: 960px) {
  .landing-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .landing-hero {
    padding: 48px 0 64px;
  }
}

.landing-hero-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.landing-hero-title {
  margin-bottom: 24px;
}

.landing-hero-title .accent-text {
  color: var(--primary);
}

.landing-hero-lead {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 520px;
}

.landing-hero-actions {
  margin-bottom: 32px;
}

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

.landing-hero-note {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.landing-hero-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.landing-hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-muted);
}

.landing-hero-point-icon {
  display: flex;
  color: var(--primary);
  margin-top: 2px;
}

.landing-hero-point-icon svg {
  width: 18px;
  height: 18px;
}

/* ── SaaS Mockup ── */
.saas-mockup-wrapper {
  perspective: 1000px;
}

.saas-mockup-container {
  background: var(--surface);
  border: 1px solid var(--border-color-thick);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: rotateY(-4deg) rotateX(2deg);
  transition: transform 0.3s ease;
}

.saas-mockup-container:hover {
  transform: rotateY(0deg) rotateX(0deg);
}

.saas-mockup-header {
  background: #F9FAFB;
  border-bottom: 1px solid var(--border-color);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.saas-mockup-dots {
  display: flex;
  gap: 6px;
}

.saas-mockup-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.saas-mockup-dots .dot.red { background: #FF5F56; }
.saas-mockup-dots .dot.yellow { background: #FFBD2E; }
.saas-mockup-dots .dot.green { background: #27C93F; }

.saas-mockup-url {
  background: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  padding: 4px 24px;
  font-size: 10.5px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  font-family: monospace;
}

/* ── Practice Room Mockup Layout ── */
.pr-mockup-page {
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
  width: 100%;
  font-family: var(--font-inter);
}

.pr-page-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1.5px solid #F3F4F6;
  background: #FFFFFF;
}

.pr-back-btn {
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: #4B5563;
  border: 1.5px solid #E5E7EB;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
  background: #FFFFFF;
  transition: all 0.2s;
}

.pr-back-btn:hover {
  background: #F9FAFB;
  border-color: #D1D5DB;
}

.pr-timer {
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: #1F2937;
  border: 1.5px solid #E5E7EB;
  padding: 5px 10px;
  border-radius: 6px;
  background: #FFFFFF;
}

.pr-main-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  padding: 16px;
  background: #FFFFFF;
  align-items: start;
}

@media (max-width: 768px) {
  .pr-main-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Left Panel: Voice Chamber Box */
.pr-voice-chamber-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pr-voice-chamber {
  background: #EBF0F6;
  border-radius: 12px;
  padding: 20px;
  min-height: 220px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.pr-prospect-card {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 8px;
  align-items: center;
  width: 135px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  z-index: 10;
}

.prospect-avatar-wrapper {
  position: relative;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.prospect-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1px solid #E5E7EB;
}

.prospect-speaking-orb {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 14px;
  height: 14px;
  z-index: 10;
}

.prospect-speaking-orb .voice-orb {
  position: relative;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prospect-speaking-orb .orb-core {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, #FF7B2E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  z-index: 2;
  position: relative;
  box-shadow: 0 1px 4px rgba(209, 80, 0, 0.3);
}

.prospect-speaking-orb .pulse-ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(209, 80, 0, 0.5);
  z-index: 1;
  transform: scale(1);
  opacity: 1;
  animation: orb-pulse-expand 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
  pointer-events: none;
}

.prospect-speaking-orb .pulse-ring.ring-1 { animation-delay: 0s; }
.prospect-speaking-orb .pulse-ring.ring-2 { animation-delay: 0.6s; }
.prospect-speaking-orb .pulse-ring.ring-3 { animation-delay: 1.2s; }

.prospect-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.prospect-name {
  font-size: 10px;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.prospect-role {
  font-size: 8px;
  font-weight: 600;
  color: #6B7280;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-top: 1px;
}

.pr-center-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}

.silhouette-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #D1D8E2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
}

.silhouette-text {
  font-size: 11px;
  font-weight: 500;
  color: #4B5563;
  max-width: 160px;
  line-height: 1.35;
}

.pr-chamber-controls {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
}

.control-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.control-btn.camera-off {
  background: #4B5563;
  color: #FFFFFF;
}

.control-btn.camera-off:hover {
  background: #374151;
}

.user-badge {
  background: #4B5563;
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
  line-height: 1;
}

/* End Session */
.pr-end-session-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.pr-end-btn {
  background: #FFFFFF;
  border: 1.5px solid #EF4444;
  color: #EF4444;
  border-radius: 99px;
  padding: 8px 18px;
  font-size: 11.5px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-inter);
}

.pr-end-btn:hover {
  background: #FEF2F2;
  transform: translateY(-0.5px);
}

.stop-icon {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #EF4444;
  border-radius: 1px;
}

.pr-end-subtext {
  font-size: 10px;
  color: #9CA3AF;
}

/* Right Panel: Mentor LIVE Coaching & Checklist */
.pr-mentor-sidebar {
  background: #ECFDF5;
  border: 1.5px solid #A7F3D0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.01);
  min-height: 310px;
}

.pr-sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pr-sidebar-title {
  display: flex;
  align-items: center;
  font-size: 10.5px;
  font-weight: 700;
  color: #047857;
  letter-spacing: 0.05em;
  font-family: var(--font-inter);
}

.green-clock {
  color: #10B981;
}

.pr-coaching-bubble {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 12px;
  border: 1px solid rgba(16, 185, 129, 0.12);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.03);
}

.coaching-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 9px;
  font-weight: 700;
  color: #D97706;
  background: #FFF7ED;
  padding: 3px 6px;
  border-radius: 4px;
  border: 1px solid #FDE68A;
  margin-bottom: 6px;
}

.orange-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #F59E0B;
}

.coaching-text {
  font-size: 10.5px;
  color: #374151;
  line-height: 1.45;
  font-weight: 500;
}

.pr-sidebar-subtitle {
  font-size: 10px;
  font-weight: 700;
  color: #065F46;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.pr-goals-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pr-goals-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #065F46;
  font-weight: 600;
}

.pr-goals-list li .goal-check {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1.5px solid #A7F3D0;
  background: #FFFFFF;
  flex-shrink: 0;
  position: relative;
}

.pr-goals-list li.checked .goal-check {
  border-color: #10B981;
  background: #ECFDF5;
}

.pr-goals-list li.checked .goal-check::after {
  content: "";
  position: absolute;
  left: 3.5px;
  top: 1px;
  width: 3.5px;
  height: 6.5px;
  border: solid #10B981;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.pr-goals-list li.checked {
  color: #34D399;
  text-decoration: line-through;
  opacity: 0.8;
}

.pr-goals-list li.pending .goal-check {
  border-color: #CBD5E1;
}

@keyframes orb-pulse-expand {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* ── Signal Bar ── */
.landing-signal {
  background: #0B0F19;
  padding: 56px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-signal__scene {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.landing-signal__water {
  position: absolute;
  left: -2%;
  top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  font-size: 140px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.015);
  letter-spacing: -0.05em;
  user-select: none;
  font-family: var(--font-inter);
}

.landing-signal__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.landing-signal__glow--a {
  width: 300px;
  height: 300px;
  background: var(--primary);
  top: -150px;
  right: -50px;
}

.landing-signal__glow--b {
  width: 400px;
  height: 400px;
  background: #051c54;
  bottom: -200px;
  left: -100px;
}

.landing-signal__inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.landing-signal__head {
  max-width: 460px;
}

.landing-signal__kicker {
  font-size: 18px;
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.landing-signal__kicker-strong {
  color: var(--primary);
}

.landing-signal__micro {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
}

.landing-signal__chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  max-width: 500px;
}

.landing-signal-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .landing-signal__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}

/* ── Section Basics ── */
.landing-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-color);
}

.landing-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.landing-section-title {
  margin-bottom: 16px;
}

.landing-section-lead {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 600px;
}

/* ── Four Pillars ── */
.landing-section--pillars {
  background: #FFFFFF;
}

.landing-pillars-intro {
  margin-bottom: 60px;
}

.landing-pillars-title {
  margin-bottom: 16px;
}

.landing-pillars-lead {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 580px;
}

.landing-pillar-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 960px) {
  .landing-pillar-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .landing-pillar-mosaic {
    grid-template-columns: 1fr;
  }
}

.landing-pillar {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.landing-pillar:hover {
  transform: translateY(-2px);
  border-color: var(--border-color-thick);
  box-shadow: var(--shadow-md);
}

.landing-pillar__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.landing-pillar__icon svg {
  width: 20px;
  height: 20px;
}

.landing-pillar__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
}

.landing-pillar__text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ── Why Arena (Editorial Split) ── */
.landing-section--split-bg {
  background: #F9FAFB;
}

.landing-editorial-split {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 960px) {
  .landing-editorial-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.landing-editorial-split__lead {
  font-size: 16px;
  margin-bottom: 32px;
}

.landing-why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.landing-why-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  font-size: 14px;
  color: var(--text-muted);
}

.landing-why-mark {
  background: var(--surface);
  border: 1px solid var(--border-color-thick);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: var(--primary);
  flex-shrink: 0;
}

.landing-editorial-split__quote {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.landing-editorial-split__quote-text {
  font-size: 17px;
  font-weight: 500;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 24px;
}

.landing-editorial-split__quote-meta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
}

/* ── Session Arc ── */
.landing-section--arc {
  background: #FFFFFF;
}

.landing-arc-intro {
  margin-bottom: 60px;
}

.landing-arc-intro__lead {
  font-size: 16px;
}

.saas-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  position: relative;
}

@media (max-width: 960px) {
  .saas-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .saas-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.saas-step {
  display: flex;
  flex-direction: column;
  position: relative;
}

.saas-step-num {
  font-size: 36px;
  font-weight: 900;
  color: var(--border-color-thick);
  line-height: 1;
  margin-bottom: 16px;
}

.saas-step:hover .saas-step-num {
  color: var(--primary);
  transition: color 0.2s ease;
}

.saas-step-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.saas-step-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Preset Drills (Spotlight) ── */
.landing-section--spotlight {
  background: #F9FAFB;
}

.landing-spotlight-head {
  margin-bottom: 60px;
}

.landing-spotlight-head__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.landing-spotlight-head__lead {
  max-width: 520px;
}

.landing-drill-board {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 768px) {
  .landing-drill-board {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.landing-drill {
  background: var(--surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s;
}

.landing-drill:hover {
  border-color: var(--border-color-thick);
}

.landing-drill__ribbon {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}

.landing-drill__ribbon.price-drill { background: var(--primary); }
.landing-drill__ribbon.competitor-drill { background: #051c54; }

.landing-drill__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.landing-drill__tag {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 99px;
}

.landing-drill__code {
  font-family: monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}

.landing-drill__title {
  font-size: 18px;
  margin-bottom: 12px;
}

.landing-drill__desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
}

.landing-drill__checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.landing-drill__checks li {
  font-size: 13px;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.landing-drill__checks li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ECFDF5;
  border: 1.5px solid #10B981;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 9px;
  background-repeat: no-repeat;
  background-position: center;
}

/* ── Parallel Streams (Coaching) ── */
.landing-section--stream {
  background: #FFFFFF;
}

.landing-stream {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 960px) {
  .landing-stream {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.landing-stream__meta {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.landing-stream__lead {
  font-size: 15px;
  margin-bottom: 32px;
}

.landing-mentor-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.landing-mentor-points li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing-mentor-points li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
}

.landing-stream__panel {
  background: #F9FAFB;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.saas-progress-viz {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.saas-progress-bar-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.progress-bar-label {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.progress-bar-track {
  height: 8px;
  background: rgba(3, 7, 18, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  display: block;
  height: 100%;
  border-radius: 4px;
}

.progress-fill.voice { background: var(--primary); }
.progress-fill.mentor { background: #051c54; }
.progress-fill.rubric { background: #10B981; }

.landing-stream__aside-title {
  font-size: 15px;
  margin-bottom: 8px;
}

.landing-stream__aside p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── CTA Band ── */
.landing-cta-band {
  background: #0B0F19;
  color: #FFFFFF;
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-cta-band .landing-container {
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.landing-cta-band__kicker {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}

.landing-cta-band__title {
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.landing-cta-band p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.landing-cta-band .landing-cta-row {
  justify-content: center;
  margin-bottom: 0;
}

/* ── Footer ── */
.landing-footer {
  background: #FFFFFF;
  border-top: 1px solid var(--border-color);
  padding: 48px 0;
  text-align: center;
}

.landing-footer-brand {
  font-size: 14px;
  color: var(--text-main);
  margin-bottom: 12px;
}

.landing-footer p {
  font-size: 12.5px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.landing-footer a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
}

.landing-footer a:hover {
  color: var(--primary);
  text-decoration: underline;
}