@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

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

body {
  font-family: system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  background: #060606;
  color: #D5D5D5;
  line-height: 1.5;
}

/* Page fade-in on load */
@keyframes pageFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
body { animation: pageFadeIn 0.35s ease-out; }

/* Scroll reveal — elements start hidden, JS adds .is-visible */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0;
}
.reveal.is-visible {
  animation: revealUp 0.5s ease-out forwards;
}

/* Staggered children inside a visible reveal container */
.reveal.is-visible .reveal-child:nth-child(1) { animation: revealUp 0.4s 0.05s ease-out forwards; opacity: 0; }
.reveal.is-visible .reveal-child:nth-child(2) { animation: revealUp 0.4s 0.1s ease-out forwards; opacity: 0; }
.reveal.is-visible .reveal-child:nth-child(3) { animation: revealUp 0.4s 0.15s ease-out forwards; opacity: 0; }
.reveal.is-visible .reveal-child:nth-child(4) { animation: revealUp 0.4s 0.2s ease-out forwards; opacity: 0; }
.reveal.is-visible .reveal-child:nth-child(5) { animation: revealUp 0.4s 0.25s ease-out forwards; opacity: 0; }
.reveal.is-visible .reveal-child:nth-child(6) { animation: revealUp 0.4s 0.3s ease-out forwards; opacity: 0; }
.reveal.is-visible .reveal-child:nth-child(7) { animation: revealUp 0.4s 0.35s ease-out forwards; opacity: 0; }
.reveal.is-visible .reveal-child:nth-child(8) { animation: revealUp 0.4s 0.4s ease-out forwards; opacity: 0; }

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  .reveal { opacity: 1; }
  .reveal.is-visible { animation: none; opacity: 1; }
  .reveal.is-visible .reveal-child { animation: none; opacity: 1; }
}

/* Headings and pricing use normal (sans-serif) font */
h1, h2, h3,
.hero h1,
.content-page h1,
.plans-section h2,
.card h2,
.plan-duration,
.plan-price,
.empty-title {
  font-family: system-ui, -apple-system, sans-serif;
}

/* Job interview / Online meeting titles and subtitles, plan descriptions: normal font */
.card p,
.content-page .subtitle,
.plans-section .subtitle,
.plan-desc {
  font-family: system-ui, -apple-system, sans-serif;
}

/* Rectangular / button-like elements: normal font (Get started, Start practicing, etc.) */
.btn,
.plan-btn,
.card-link,
.menu-link {
  font-family: system-ui, -apple-system, sans-serif;
}

/* Header */
.header {
  width: 100%;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
}

@media (min-width: 640px) {
  .nav {
    padding: 0.5rem 1.25rem;
  }
}

@media (min-width: 1024px) {
  .nav {
    padding: 0.6rem 1.5rem;
  }
}

.logo {
  font-size: clamp(1.35rem, 5vw, 1.6rem);
  font-weight: 600;
  color: #D5D5D5;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links {
  display: flex;
  gap: clamp(0.75rem, 3vw, 1.5rem);
}

.nav-links a,
.back {
  color: #D5D5D5;
  text-decoration: none;
  font-size: clamp(0.875rem, 2.5vw, 0.9375rem);
}

.nav-links a:hover,
.back:hover {
  color: #D5D5D5;
}

.nav-links a.active {
  color: #D5D5D5;
  font-weight: 500;
}

.nav-user {
  display: flex;
  align-items: center;
}

.nav-login {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  color: #D5D5D5;
  border-radius: 0.375rem;
  transition: background 0.2s, color 0.2s;
  margin-left: 0;
}

/* Single unit: icon + name as one link */
.nav-login-one {
  width: auto;
  min-width: 2.5rem;
  padding: 0 0.35rem 0 0.25rem;
  gap: 0.35rem;
}

.nav-user-name {
  font-size: 0.8rem;
  line-height: 1.2;
  color: #D5D5D5;
  max-width: 6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-login:hover {
  background: rgba(96, 165, 250, 0.15);
  color: #D5D5D5;
}

.nav-login-icon {
  display: block;
  flex-shrink: 0;
}

/* Hamburger menu – responsive for mobile, tablet, laptop */
.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.75rem;
  min-height: 2.75rem;
  width: clamp(2.75rem, 8vw, 3rem);
  height: clamp(2.75rem, 8vw, 3rem);
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #D5D5D5;
  border-radius: 0.375rem;
  transition: background 0.2s;
}

@media (min-width: 640px) {
  .menu-btn {
    min-width: 2.5rem;
    min-height: 2.5rem;
    width: 2.5rem;
    height: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .menu-btn {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.menu-btn:hover {
  background: rgba(96, 165, 250, 0.15);
}

.menu-icon {
  display: block;
  width: clamp(1rem, 4vw, 1.25rem);
  height: 0.125rem;
  background: currentColor;
  box-shadow:
    0 -0.25rem 0 currentColor,
    0 0.25rem 0 currentColor;
}

@media (min-width: 640px) {
  .menu-icon {
    width: 1.25rem;
  }
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 6, 0.96);
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.menu-overlay.is-open .menu-panel {
  transform: translateX(0);
}

.menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: min(16rem, 85vw);
  max-width: 16rem;
  height: 100%;
  background: #0a0a0a;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(-100%);
  transition: transform 0.2s;
}

@media (max-width: 480px) {
  .menu-panel {
    width: 85vw;
    padding: 1.5rem 0.75rem 1rem;
  }
}

@media (min-width: 1024px) {
  .menu-panel {
    padding: 2.5rem 1.25rem 1.25rem;
  }
}

.menu-link {
  display: block;
  padding: clamp(0.5rem, 2vw, 0.75rem) clamp(0.75rem, 2vw, 1rem);
  color: #D5D5D5;
  text-decoration: none;
  font-size: clamp(0.9375rem, 2.5vw, 1rem);
  border-radius: 0.5rem;
  transition: background 0.2s, color 0.2s;
}

@media (max-width: 480px) {
  .menu-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}

.menu-link:hover {
  background: rgba(96, 165, 250, 0.15);
  color: #D5D5D5;
}

/* Main */
.main {
  flex: 1;
}

.hero {
  max-width: 48rem;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(0.75rem, 2vw, 1rem);
  text-align: center;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #D5D5D5;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero .accent {
  color: #D5D5D5;
}

.hero p {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: #D5D5D5;
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-buttons .btn-secondary {
  background: rgba(255,255,255,0.15);
  color: #D5D5D5;
  border-color: rgba(255,255,255,0.3);
}

.hero-buttons .btn-secondary:hover {
  background: rgba(255,255,255,0.25);
  color: #D5D5D5;
  border-color: rgba(255,255,255,0.5);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: clamp(0.4rem, 1vw, 0.55rem) clamp(0.75rem, 2vw, 1rem);
  border-radius: 0.5rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s, box-shadow 0.15s;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: #3b82f6;
  color: #D5D5D5;
}

.btn-primary:hover {
  background: #2563eb;
}

.btn-secondary {
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #D5D5D5;
}

.btn-secondary:hover {
  border-color: #60a5fa;
  color: #D5D5D5;
}

/* Content pages */
.content-page {
  max-width: 56rem;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 1.5rem) clamp(0.75rem, 2vw, 1rem);
}

.content-page h1 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #D5D5D5;
  text-transform: uppercase;
}

.content-page .subtitle {
  margin-top: 0.5rem;
  color: #D5D5D5;
}

.content-page.center {
  text-align: center;
}

.content-page.center .subtitle {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.content-page.center .btn {
  margin-top: 2rem;
}

/* Cards */
.cards {
  margin-top: 2.5rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

.practice-start-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.practice-start-card {
  max-width: 28rem;
  width: 100%;
}

.practice-history-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.practice-history-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #D5D5D5;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.card {
  display: block;
  padding: clamp(0.75rem, 2vw, 1rem);
  background: #161616;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.3); }

.card:hover {
  border-color: rgba(96, 165, 250, 0.5);
  background: #1f1f1f;
}

.card h2 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #D5D5D5;
  text-transform: uppercase;
}

.card p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #D5D5D5;
}

.card-link {
  margin-top: 1rem;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #D5D5D5;
}

/* Empty state */
.empty-state {
  margin-top: 1.5rem;
  padding: clamp(0.75rem, 2vw, 1rem);
  background: #161616;
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 0.75rem;
  text-align: center;
}

.empty-title {
  color: #D5D5D5;
  font-weight: 500;
}

.empty-text {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #D5D5D5;
}

.empty-state .btn {
  margin-top: 1.5rem;
}

.performance-list {
  margin-top: 1.5rem;
  max-width: 40rem;
}

.performance-sessions {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.performance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #161616;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.5rem;
}

.performance-item-main {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
}

.performance-item-topic {
  font-weight: 600;
  color: #D5D5D5;
}

.performance-item-date {
  font-size: 0.8125rem;
  color: #D5D5D5;
}

.performance-item-intro {
  font-size: 0.875rem;
  color: #D5D5D5;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.performance-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.performance-play-btn,
.performance-delete-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  background: transparent;
  color: #D5D5D5;
  border: 1px solid rgba(148, 163, 184, 0.4);
  border-radius: 0.375rem;
  cursor: pointer;
}

.performance-play-btn:hover {
  color: #D5D5D5;
  border-color: #0ea5e9;
}

.performance-delete-btn:hover {
  color: #D5D5D5;
  border-color: #dc2626;
}

/* Recording playback modal (My Performance / Practice) */
.recording-playback-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(6, 6, 6, 0.85);
}

.recording-playback-backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.recording-playback-box {
  position: relative;
  width: 100%;
  max-width: 720px;
  background: #161616;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.recording-playback-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  padding: 0;
  font-size: 1.5rem;
  line-height: 1;
  color: #D5D5D5;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 0.25rem;
  cursor: pointer;
}

.recording-playback-close:hover {
  background: rgba(0, 0, 0, 0.7);
  color: #D5D5D5;
}

.recording-playback-video {
  width: 100%;
  display: block;
  max-height: 80vh;
}

/* Intro section on home page (above hero / Practice meetings & interviews) */
.intro-section {
  margin-top: 1.125rem;
  padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(0.75rem, 2vw, 1rem);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.intro-headline {
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 700;
  color: #D5D5D5;
  margin: 0 auto 0.75rem;
  max-width: 42rem;
  text-align: center;
  text-transform: uppercase;
}

.intro-text {
  font-size: 1.125rem;
  color: #D5D5D5;
  margin: 0 auto;
  max-width: 42rem;
  line-height: 1.65;
}
.intro-points {
  list-style: none;
  margin: 1rem auto 0;
  padding: 0;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  text-align: left;
}
.intro-points li {
  font-size: 1rem;
  color: #D5D5D5;
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
}
.intro-points li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D5D5D5;
  font-weight: 700;
  font-size: 0.875rem;
  text-align: justify;
}

/* Hero background image wrap */
.hero-bg-wrap {
  position: relative;
  background: url('../images/meeting-room.png') center center / cover no-repeat;
}
.hero-bg-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 6, 6, 0.90);
}
.hero-bg-wrap > * {
  position: relative;
  z-index: 1;
}
.hero-bg-wrap .intro-headline { color: #D5D5D5; }
.hero-bg-wrap .intro-points li { color: #D5D5D5; }
.hero-bg-wrap .intro-points li::before { color: #D5D5D5; }
.hero-bg-wrap .hero h1 { color: #D5D5D5; }
.hero-bg-wrap .hero .accent { color: #D5D5D5; }
.hero-bg-wrap .hero p { color: #D5D5D5; }

/* Compare section */
.compare-section {
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.compare-section h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: #D5D5D5;
  font-family: system-ui, -apple-system, sans-serif;
}
.compare-section .subtitle {
  margin-top: 0.5rem;
  color: #D5D5D5;
  font-family: system-ui, -apple-system, sans-serif;
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: left;
}
@media (min-width: 640px) {
  .compare-grid { grid-template-columns: 1fr 1fr; }
}
.compare-col {
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid;
}
.compare-without {
  background: rgba(220, 38, 38, 0.15);
  border-color: rgba(220, 38, 38, 0.4);
}
.compare-with {
  background: rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.4);
}
.compare-heading {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  font-family: system-ui, -apple-system, sans-serif;
}
.compare-without .compare-heading { color: #D5D5D5; }
.compare-with .compare-heading { color: #D5D5D5; }
.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.compare-list li {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #D5D5D5;
  padding-left: 1.5rem;
  position: relative;
}
.compare-without .compare-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #D5D5D5;
  font-weight: 700;
  font-size: 0.8125rem;
}
.compare-with .compare-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #D5D5D5;
  font-weight: 700;
  font-size: 0.8125rem;
}

/* Use cases section */
.usecases-section {
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}
.usecases-section h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: #D5D5D5;
  font-family: system-ui, -apple-system, sans-serif;
}
.usecases-section .subtitle {
  margin-top: 0.5rem;
  color: #D5D5D5;
  font-family: system-ui, -apple-system, sans-serif;
}
.usecases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: left;
}
@media (min-width: 640px) {
  .usecases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .usecases-grid { grid-template-columns: repeat(3, 1fr); }
}
.usecase-card {
  padding: 1.25rem;
  background: #161616;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.usecase-card:hover {
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.usecase-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.5rem;
}
.usecase-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #D5D5D5;
  margin: 0 0 0.35rem;
  font-family: system-ui, -apple-system, sans-serif;
}
.usecase-card p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #D5D5D5;
  margin: 0;
}

/* Plans section on home page */
.plans-section {
  padding: clamp(1.25rem, 3vw, 2rem) clamp(0.75rem, 2vw, 1rem);
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.plans-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #D5D5D5;
  text-transform: uppercase;
}

.plans-section .subtitle {
  margin-top: 0.5rem;
  color: #D5D5D5;
}

/* Plans page */
.plan-cards {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
  justify-content: center;
}

@media (min-width: 640px) {
  .plan-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.plan-card {
  position: relative;
  padding: clamp(0.75rem, 2vw, 1rem);
  background: #161616;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 0.75rem;
  text-align: center;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.plan-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }

.plan-card:hover {
  border-color: rgba(96, 165, 250, 0.5);
  background: #1f1f1f;
}

.plan-card-featured {
  border-color: rgba(96, 165, 250, 0.6);
  background: #1f1f1f;
}

.plan-badge {
  position: absolute;
  top: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.2rem 0.5rem;
  background: #3b82f6;
  color: #D5D5D5;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
  white-space: nowrap;
}
.plan-badge--recommended {
  background: #3b82f6;
}
.plan-badge--intense {
  background: linear-gradient(90deg, #d97706, #f59e0b);
}

.plan-label {
  display: block;
  font-size: 0.75rem;
  color: #D5D5D5;
  margin-bottom: 0.5rem;
}

.plan-duration {
  font-size: 1.25rem;
  font-weight: 600;
  color: #D5D5D5;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.plan-price {
  font-size: 1.75rem;
  font-weight: 700;
  color: #D5D5D5;
  margin-bottom: 0.25rem;
}

.plan-desc {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 0.875rem;
  color: #D5D5D5;
  margin-bottom: 1.25rem;
}

.plan-btn {
  width: 100%;
  text-align: center;
}

/* FAQ */
.faq-section {
  max-width: 42rem;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
}
.faq-section h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #D5D5D5;
  margin-bottom: 0.35rem;
}
.faq-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}
.faq-item:first-child {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #D5D5D5;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { content: ''; }
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: #D5D5D5;
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.2s;
}
.faq-item[open] .faq-question::after {
  content: '−';
}
.faq-answer {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #D5D5D5;
  padding: 0 0 1rem;
  margin: 0;
}

/* Footer */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: clamp(0.5rem, 1.5vw, 0.75rem);
  text-align: center;
  font-size: 0.875rem;
  color: #D5D5D5;
  background: #0a0a0a;
}

/* ========= Sable Dark Theme (#060606) ========= */
:root{
  --bg: #060606;
  --bg-deep: #0a0a0a;
  --text: #D5D5D5;
  --text-secondary: #D5D5D5;
  --muted: #D5D5D5;
  --surface: #161616;
  --surface-2: #1f1f1f;
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.14);
  --accent: #5b9cf5;
  --accent-2: #4ed8b0;
  --accent-hover: #7db4f7;
}

body{
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, sans-serif;
}

body::before{
  content: '';
  position: fixed;
  inset: -30%;
  background:
    radial-gradient(circle at 15% 10%, rgba(91, 156, 245, 0.07), transparent 42%),
    radial-gradient(circle at 85% 20%, rgba(78, 216, 176, 0.05), transparent 45%),
    radial-gradient(circle at 50% 90%, rgba(91, 156, 245, 0.04), transparent 50%);
  z-index: -1;
  pointer-events: none;
  animation: themeDrift 18s ease-in-out infinite alternate;
}

@keyframes themeDrift{
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(0, 12px, 0) scale(1.02); }
}

/* ---- Header / Nav ---- */
.header{
  background: var(--bg-deep);
  border-bottom: 1px solid var(--border);
}
.logo{ color: #D5D5D5 !important; }
.menu-btn{ color: var(--text) !important; }
.menu-btn:hover{ background: rgba(255,255,255,0.08) !important; }
.nav-login,
.nav-user-name,
.nav-login-one,
.nav-login-icon{ color: var(--text) !important; }
.nav-user .nav-login svg,
.nav-login svg{ stroke: currentColor !important; color: var(--text) !important; }
.nav-login:hover{ background: rgba(255,255,255,0.08); color: #D5D5D5 !important; }
.nav-login:hover .nav-login-icon{ color: #D5D5D5 !important; }
.nav-links a, .back{ color: var(--text-secondary) !important; }
.nav-links a:hover, .back:hover, .nav-links a.active{ color: #D5D5D5 !important; }
header, header *{ color: var(--text) !important; }

.menu-overlay{ background: rgba(6, 6, 6, 0.96); }
.menu-panel{ background: var(--bg-deep); border-right: 1px solid var(--border); }
.menu-link{ color: var(--text) !important; }
.menu-link:hover{ background: rgba(255,255,255,0.08); color: #D5D5D5 !important; }

/* ---- Hero / Intro ---- */
.hero-bg-wrap::before{ background: rgba(6, 6, 6, 0.90); }
.hero-bg-wrap .intro-headline,
.hero-bg-wrap .hero h1{ color: #D5D5D5; }
.hero-bg-wrap .intro-points li{ color: var(--text-secondary); }
.hero-bg-wrap .intro-points li::before{ color: #D5D5D5; }
.hero-bg-wrap .hero .accent{ color: #D5D5D5; }
.hero-bg-wrap .hero p,
.hero-bg-wrap .intro-text{ color: var(--muted); }

.intro-headline{ color: #D5D5D5; }
.intro-text{ color: var(--muted); }
.intro-points li{ color: var(--text-secondary); }

/* "AI doesn't judge you" points */
.intro-points{ text-align: center; align-items: center; }
.intro-points li{ font-weight: 700; text-transform: uppercase; padding-left: 0; }
.intro-points li::before{ display: none; }

/* ---- Buttons ---- */
.btn-primary{ background: var(--accent); color: #D5D5D5; }
.btn-primary:hover{ background: var(--accent-hover); }
.btn-secondary{ border: 1px solid var(--border-2); color: var(--text); background: transparent; }
.btn-secondary:hover{ border-color: var(--accent); color: #D5D5D5; }
.hero-buttons .btn-secondary{ background: rgba(91,156,245,0.12); color: #D5D5D5; border-color: rgba(91,156,245,0.30); }
.hero-buttons .btn-secondary:hover{ background: rgba(91,156,245,0.20); border-color: rgba(91,156,245,0.50); }

/* ---- Content pages ---- */
.content-page h1,
.plans-section h2,
.compare-section h2,
.usecases-section h2,
.faq-section h2{ color: #D5D5D5; }
.content-page .subtitle,
.plans-section .subtitle,
.compare-section .subtitle,
.usecases-section .subtitle{ color: var(--muted); }
.hero p{ color: var(--muted); }

/* ---- Cards / surfaces ---- */
.card,
.plan-card,
.usecase-card,
.empty-state,
.performance-item,
.recording-playback-box{
  background: var(--surface) !important;
  border-color: var(--border) !important;
}
.card:hover,
.plan-card:hover{
  background: var(--surface-2) !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  border-color: rgba(91,156,245,0.30) !important;
}
.card h2{ color: #D5D5D5 !important; }
.card p{ color: var(--muted) !important; }
.card-link{ color: #D5D5D5 !important; }

.plan-duration{ color: #D5D5D5; }
.plan-price{ color: #D5D5D5; }
.plan-label{ color: var(--muted); }
.plan-desc{ color: var(--text-secondary); }
.plan-card:hover{ background: var(--surface-2) !important; border-color: rgba(91,156,245,0.35) !important; }
.plan-card-featured{ background: rgba(91,156,245,0.12); border-color: rgba(91,156,245,0.40); }

@keyframes badgeShimmer{ 0%{ background-position: 0% 50%; } 100%{ background-position: 100% 50%; } }
.plan-badge{ background: linear-gradient(90deg, var(--accent), var(--accent-2)); background-size: 200% 200%; animation: badgeShimmer 7s ease infinite; color: #D5D5D5; }
.plan-badge.plan-badge--recommended{ background: linear-gradient(90deg, var(--accent), #7db4f7) !important; animation: none !important; background-size: 100% 100% !important; }
.plan-badge.plan-badge--intense{ background: linear-gradient(90deg, #d97706, #f59e0b) !important; animation: none !important; background-size: 100% 100% !important; }

.usecase-card h3{ color: #D5D5D5; }
.usecase-card p{ color: var(--muted); }
.compare-heading{ color: #D5D5D5; }

/* ---- Compare section ---- */
.compare-without{ background: rgba(239, 68, 68, 0.10); border-color: rgba(239, 68, 68, 0.30); }
.compare-with{ background: rgba(34, 197, 94, 0.10); border-color: rgba(34, 197, 94, 0.30); }
.compare-col{ color: var(--text); }
.compare-list li{ color: var(--text-secondary); }

/* ---- FAQ ---- */
.faq-question{ color: var(--text); }
.faq-question::after{ color: var(--muted); }
.faq-answer{ color: var(--text-secondary); }
.faq-item{ border-bottom: 1px solid var(--border); }
.faq-item:first-child{ border-top: 1px solid var(--border); }

/* ---- Footer ---- */
.footer{ background: var(--bg-deep); border-top: 1px solid var(--border); color: var(--muted); }

/* ---- Performance page ---- */
.empty-title{ color: #D5D5D5 !important; }
.empty-text{ color: var(--muted) !important; }
.performance-item-topic{ color: #D5D5D5 !important; }
.performance-item-date{ color: var(--muted) !important; }
.performance-item-intro{ color: var(--text-secondary) !important; }
.performance-play-btn,
.performance-delete-btn{ color: var(--text-secondary) !important; border-color: var(--border-2) !important; }
.performance-play-btn:hover{ color: #D5D5D5 !important; border-color: var(--accent) !important; }
.performance-delete-btn:hover{ color: #D5D5D5 !important; border-color: #f87171 !important; }

/* ---- Practice page ---- */
.practice-history-title{ color: #D5D5D5 !important; }
.practice-history-section{ border-top-color: var(--border) !important; }

/* ---- Session page ---- */
.session-setup h2,
.session-setup p,
.session-setup label,
.session-end-link,
.session-status,
.session-error,
.session-transcript-title,
.session-transcript-q,
.session-transcript-q-text,
.session-transcript-a,
.session-transcript-a-text,
.session-mic-status,
.session-question-timer-bar{ color: var(--text) !important; }

.session-setup input[type="text"],
.session-setup textarea{
  background: var(--surface-2) !important;
  border-color: var(--border-2) !important;
  color: #D5D5D5 !important;
}
.session-setup input[type="text"]::placeholder,
.session-setup textarea::placeholder{ color: var(--muted) !important; }

.session-amount-payable,
.session-duration-option,
.session-duration-option:has(input:checked),
.session-video-wrap,
.session-panel-block,
.session-confirm-box,
.session-wrap-up-popup,
.session-confirm-overlay .session-confirm-cancel,
.session-confirm-overlay .session-confirm-end{
  background: var(--surface) !important;
  border-color: var(--border) !important;
}
.session-duration-option:has(input:checked){ border-color: var(--accent) !important; background: rgba(91,156,245,0.12) !important; }
.session-duration-label,
.session-amount-label,
.session-duration-text,
.session-amount-value{ color: var(--text) !important; }
.session-duration-tag--recommended{ color: #D5D5D5 !important; }
.session-duration-tag--intense{ color: #D5D5D5 !important; }
.session-question-timer-bar{ background: transparent !important; border-top-color: var(--border) !important; }
.session-transcript-scroll{ background: transparent !important; }
.session-panel-block .session-transcript-current{ border-left-color: var(--accent) !important; }

/* ---- Recording playback ---- */
.playback-title,
.playback-back,
.playback-time,
.playback-empty,
.playback-loading{ color: var(--text) !important; }
.playback-back:hover{ color: #D5D5D5 !important; }

/* ---- Global text: all white/light ---- */
body, p, span, small, strong, em, label, li, a,
h1, h2, h3, h4, h5, h6,
summary, details, input, textarea, select, button,
.subtitle{ color: var(--text) !important; }
.btn-primary{ color: #D5D5D5 !important; }
input::placeholder, textarea::placeholder{ color: var(--muted) !important; }

/* ---- Review modal ---- */
.review-overlay{
  position: fixed; inset: 0; z-index: 400; display: none;
  align-items: center; justify-content: center; padding: 1rem;
  background: rgba(6,6,6,0.90);
}
.review-overlay.is-visible{ display: flex; }
.review-box{
  width: 100%; max-width: 26rem; border-radius: 0.75rem; padding: 1.5rem 1.75rem;
  background: var(--surface); border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35); text-align: center;
}
.review-box h2{ font-size: 1.125rem; font-weight: 700; color: #D5D5D5 !important; margin: 0 0 0.25rem; }
.review-box .review-sub{ font-size: 0.875rem; color: var(--muted) !important; margin: 0 0 1rem; }
.review-stars{ display: flex; justify-content: center; gap: 0.35rem; margin-bottom: 1rem; }
.review-star{
  background: none; border: none; cursor: pointer; padding: 0.15rem;
  font-size: 1.75rem; line-height: 1; color: #2a2a2a; transition: color 0.15s, transform 0.15s;
}
.review-star:hover, .review-star.active{ color: #f59e0b !important; transform: scale(1.15); }
.review-box textarea{
  width: 100%; min-height: 4.5rem; resize: vertical; padding: 0.6rem 0.75rem; font-size: 0.9375rem;
  border: 1px solid var(--border-2); border-radius: 0.5rem;
  background: var(--surface-2); color: var(--text) !important; box-sizing: border-box;
  margin-bottom: 0.75rem;
}
.review-box textarea::placeholder{ color: var(--muted) !important; }
.review-box textarea:focus{ outline: none; border-color: var(--accent); }
.review-actions{ display: flex; gap: 0.75rem; justify-content: center; }
.review-actions .btn{ min-width: 6rem; }
.review-msg{ font-size: 0.8125rem; margin-top: 0.5rem; }
.review-msg.error{ color: #D5D5D5 !important; }
.review-msg.success{ color: #D5D5D5 !important; }

.performance-review-btn{
  flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; padding: 0;
  background: transparent; color: var(--text-secondary) !important;
  border: 1px solid var(--border-2); border-radius: 0.375rem; cursor: pointer;
}
.performance-review-btn:hover{ color: #f59e0b !important; border-color: #f59e0b !important; }
.performance-review-btn.reviewed{ color: #f59e0b !important; border-color: #f59e0b !important; }

/* ---- Reviews section (home page) ---- */
.reviews-section{
  max-width: 56rem;
  margin: 0 auto;
  padding: clamp(2rem, 4vw, 3rem) clamp(1rem, 3vw, 2rem);
  text-align: center;
}
.reviews-section h2{
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
  font-weight: 700;
  color: #D5D5D5;
}
.reviews-section .subtitle{
  margin-top: 0.5rem;
  color: var(--muted);
}
.reviews-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
  text-align: left;
}
@media (min-width: 640px){
  .reviews-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px){
  .reviews-grid{ grid-template-columns: repeat(3, 1fr); }
}
.reviews-empty{
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted) !important;
  font-size: 0.9375rem;
  padding: 2rem 0;
}
.review-card{
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.review-card:hover{
  border-color: rgba(245, 158, 11, 0.35);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.review-card-header{
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}
.review-card-avatar{
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #D5D5D5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.review-card-meta{
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.review-card-name{
  font-weight: 600;
  font-size: 0.875rem;
  color: #D5D5D5 !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.review-card-time{
  font-size: 0.75rem;
  color: var(--muted) !important;
}
.review-card-stars{
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.5rem;
}
.review-card-star{
  font-size: 1rem;
  color: #2a2a2a;
}
.review-card-star.filled{
  color: #f59e0b !important;
}
.review-card-text{
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--text-secondary) !important;
  margin: 0 0 0.5rem;
  /* Show full review text (no line clamping). */
  display: block;
  overflow: visible;
}
.review-card-topic{
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #D5D5D5 !important;
  background: rgba(91,156,245,0.10);
  padding: 0.15rem 0.5rem;
  border-radius: 9999px;
}
.reviews-cta{
  margin-top: 1.5rem;
  text-align: center;
}
.reviews-guest-cta{
  margin-top: 1.5rem;
  text-align: center;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
}
.reviews-guest-text{
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--muted) !important;
}
.reviews-signin-btn{
  display: inline-block;
}

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce){
  body::before{ animation: none; }
}

