/* ===================================
   CUEME HOME PAGE
   Theatrical, Cinematic, Actor-Focused
   "I'm supported. I'm not alone with this script."
   ================================== */

/* Fonts loaded globally in base.html — no @import needed here */

/* ===== MODERN MINIMAL DESIGN TOKENS ===== */
:root {
  /* Modern Dark Palette */

  /* Accent - Cool, modern, refined */
  --accent-burgundy: #71717a;
  --accent-burgundy-soft: rgba(113, 113, 122, 0.15);
  --accent-gold: #e4e4e7;
  --accent-gold-soft: rgba(228, 228, 231, 0.08);

  /* Modern accent for highlights */
  --accent-highlight: #ffffff;
  --accent-highlight-soft: rgba(255, 255, 255, 0.06);

  /* Typography */

  /* Spacing - Generous, breathing room */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 10rem;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s var(--ease-out-expo);
  --transition-medium: 0.5s var(--ease-out-expo);
  --transition-fast: 0.3s var(--ease-out-expo);
}

/* ===== DARK THEME TOKENS ===== */
[data-theme="dark"] .home-container,
.home-container {
  --bg-primary: var(--theatre-black);
  --bg-secondary: var(--theatre-charcoal);
  --bg-elevated: var(--theatre-slate);
  --text-primary: var(--theatre-cream);
  --text-secondary: var(--theatre-silver);
  --text-muted: var(--theatre-stone);
}

/* Light theme override if needed */
[data-theme="light"] .home-container {
  --bg-primary: var(--theatre-warm-white);
  --bg-secondary: var(--theatre-ivory);
  --bg-elevated: #ffffff;
  /* Use dark tokens for text on light backgrounds (theatre-cream = #18181b in light) */
  --text-primary: var(--theatre-cream);
  --text-secondary: var(--editorial-stone);
  --text-muted: var(--theatre-silver);
  /* Accent must be darker to stay visible on light backgrounds */
  --accent-gold: var(--editorial-accent);
  --accent-gold-soft: var(--editorial-accent-soft);
}

/* ===== BASE CONTAINER ===== */
.home-container {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  min-height: 100vh;
}

/* ===== HERO SECTION - THE OPENING SCENE ===== */
.hero-section {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--space-3xl) var(--space-lg);
  background: var(--bg-primary);
  overflow: visible;
}

/* Subtle spotlight gradient */
.hero-section::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 100%;
  background: radial-gradient(
    ellipse 60% 50% at 50% 0%,
    rgba(201, 169, 89, 0.03) 0%,
    transparent 70%
  );
  pointer-events: none;
}

/* Film grain texture overlay */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.015;
  pointer-events: none;
}

.hero-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 var(--space-md);
}

/* Hero Grid — two-column on desktop, reordered on mobile */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "lead    preview"
    "body    preview";
  column-gap: var(--space-xl);
  row-gap: var(--space-lg);
  align-items: start;
  width: 100%;
  margin: 0 auto;
}

.hero-grid > * {
  min-width: 0;
}

/* Lead: badge + title */
.hero-content-lead {
  grid-area: lead;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-lg);
}

/* Body: subtitle + actions + trust */
.hero-content-body {
  grid-area: body;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-md);
}

.hero-dashboard-preview {
  grid-area: preview;
  align-self: center;
}

/* Hero Badge - Understated */
.hero-badge {
  margin-bottom: var(--space-sm);
}

.hero-badge .badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 0.4rem 1rem;
  background: var(--accent-gold-soft);
  border: 1px solid rgba(201, 169, 89, 0.2);
  border-radius: 2rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.hero-badge .badge i {
  display: none; /* No icons, keep it clean */
}

/* Hero Title - Editorial, Powerful */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin: 0;
  max-width: 16ch;
}

.hero-title em {
  font-style: italic;
  font-weight: 400;
}

/* Hero Subtitle - Grounded, Human */
.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

/* Primary CTA - same shape as cta-editorial-actions (above footer); uses tokens */
.btn-start-rehearsal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: var(--btn-editorial-padding-y) var(--btn-editorial-padding-x);
  background: var(--text-primary);
  color: var(--bg-primary);
  font-family: var(--btn-editorial-font);
  font-size: var(--btn-editorial-font-size);
  font-weight: var(--btn-editorial-font-weight);
  letter-spacing: var(--btn-editorial-letter-spacing);
  border: none;
  border-radius: var(--btn-editorial-radius);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-start-rehearsal:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  opacity: 0.95;
  color: var(--bg-primary);
  text-decoration: none;
}

.btn-start-rehearsal i {
  display: none; /* No rocket icons */
}

/* Secondary - same shape as btn-editorial-secondary; uses tokens */
.hero-actions .btn-secondary,
.hero-actions .btn-outline {
  background: transparent;
  border: 1px solid var(--border-visible);
  color: var(--text-secondary);
  padding: var(--btn-editorial-padding-y) var(--btn-editorial-padding-x);
  font-family: var(--btn-editorial-font);
  font-size: var(--btn-editorial-font-size);
  font-weight: var(--btn-editorial-font-weight);
  letter-spacing: var(--btn-editorial-letter-spacing);
  border-radius: var(--btn-editorial-radius);
}

.hero-actions .btn-secondary:hover,
.hero-actions .btn-outline:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
  background: transparent;
  text-decoration: none;
}

/* Trust Badges - Subtle */
.hero-trust-badges {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: var(--space-md);
}

.hero-trust-badges .trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: transparent;
  border: none;
  padding: 0;
}

.hero-trust-badges .trust-badge i {
  color: var(--accent-gold);
  font-size: 0.7rem;
}

/* Hide the old hero visual */
.hero-visual {
  display: none;
}

/* ===== DASHBOARD PREVIEW MOCKUP ===== */
.hero-dashboard-preview {
  position: relative;
  width: 100%;
  max-width: 480px;
  padding: var(--space-md);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
}

.dashboard-mockup {
  background: var(--bg-secondary);
  border: 1px solid var(--border-visible);
  border-radius: 0.5rem;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 8px 25px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
  transform-origin: center center;
  transition: transform 0.6s var(--ease-out-expo), box-shadow 0.6s var(--ease-out-expo);
  width: 100%;
}

.dashboard-mockup:hover {
  transform: perspective(1000px) rotateY(-1deg) rotateX(1deg) scale(1.02);
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.35),
    0 10px 30px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dashboard-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(
    ellipse at center,
    rgba(201, 169, 89, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
  z-index: -1;
}

/* Mockup Header */
.mockup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-subtle);
}

.mockup-dots {
  display: flex;
  gap: 0.35rem;
}

.mockup-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theatre-ash);
}

.mockup-dots .dot:first-child {
  background: var(--color-error);
}

.mockup-dots .dot:nth-child(2) {
  background: var(--color-warning);
}

.mockup-dots .dot:nth-child(3) {
  background: var(--color-success);
}

.mockup-title {
  font-family: var(--font-body);
  font-size: 0.7rem;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.mockup-controls {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.control-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--theatre-stone);
}

.control-indicator.active {
  background: var(--color-success);
  box-shadow: 0 0 6px rgba(40, 200, 64, 0.5);
  animation: pulse-indicator 1.5s ease-in-out infinite;
}

@keyframes pulse-indicator {
  0%, 100% { 
    opacity: 1; 
    box-shadow: 0 0 6px rgba(40, 200, 64, 0.5);
  }
  50% { 
    opacity: 0.7; 
    box-shadow: 0 0 10px rgba(40, 200, 64, 0.8);
  }
}

/* Mockup Content */
.mockup-content {
  display: flex;
  min-height: 200px;
}

/* Sidebar */
.mockup-sidebar {
  width: 130px;
  padding: 0.75rem;
  background: var(--bg-elevated);
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.sidebar-label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.sidebar-value {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--text-primary);
  font-weight: 500;
}

.sidebar-progress {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.progress-label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.sidebar-progress .progress-bar {
  height: 3px;
  background: var(--border-visible);
  border-radius: 2px;
  overflow: hidden;
}

.sidebar-progress .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent-gold), rgba(201, 169, 89, 0.8));
  border-radius: 2px;
  transition: width 0.8s var(--ease-out-expo);
  position: relative;
}

.sidebar-progress .progress-fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 2px 2px 0;
  animation: progress-shine 1.5s ease-in-out infinite;
}

@keyframes progress-shine {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.progress-text {
  font-family: var(--font-body);
  font-size: 0.6rem;
  color: var(--accent-gold);
  transition: all 0.3s ease;
}

/* Main Content */
.mockup-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.75rem;
  gap: 0.5rem;
}

/* Script Lines */
.script-line {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0.6rem;
  border-radius: 0.35rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  transition: all 0.3s var(--ease-out-expo);
}

.script-line.active {
  background: var(--accent-gold-soft);
  border-color: var(--accent-gold);
  box-shadow: 0 2px 12px rgba(201, 169, 89, 0.15);
}

.script-line.upcoming {
  opacity: 0.5;
}

.character-name {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  min-width: 45px;
  flex-shrink: 0;
}

.character-name.highlight {
  color: var(--accent-gold);
}

.line-text {
  flex: 1;
  font-family: var(--font-display);
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--text-primary);
  font-style: italic;
}

.line-status {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.55rem;
  flex-shrink: 0;
}

.line-status.played {
  background: rgba(40, 200, 64, 0.15);
  color: var(--color-success);
}

.line-status.waiting {
  background: var(--accent-gold-soft);
  color: var(--accent-gold);
  animation: pulse-mic 1.5s ease-in-out infinite;
}

@keyframes pulse-mic {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes pulse-recording {
  0%, 100% { 
    box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.4);
  }
  50% { 
    box-shadow: 0 0 0 8px rgba(231, 76, 60, 0);
  }
}

/* Animated script line transitions */
.script-line {
  transition: all 0.4s var(--ease-out-expo);
}

.script-line.active {
  animation: line-activate 0.4s ease-out;
}

@keyframes line-activate {
  0% {
    transform: translateX(-8px);
    opacity: 0.7;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Status icon transitions */
.line-status {
  transition: all 0.3s var(--ease-out-expo);
}

.line-status i {
  transition: transform 0.3s ease;
}

/* Controls Bar */
.mockup-controls-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-top: auto;
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-subtle);
}

.mockup-controls-bar .control-btn {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border-visible);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 0.65rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
}

.mockup-controls-bar .control-btn:hover {
  background: var(--accent-gold-soft);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: scale(1.05);
}

.mockup-controls-bar .control-btn.primary {
  width: 36px;
  height: 36px;
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--theatre-black);
  font-size: 0.75rem;
  transition: all 0.3s var(--ease-out-expo), box-shadow 0.5s ease;
}

.mockup-controls-bar .control-btn.primary:hover {
  background: var(--text-primary);
  border-color: var(--text-primary);
  color: var(--theatre-black);
  transform: scale(1.08);
  box-shadow: 0 4px 15px rgba(201, 169, 89, 0.3);
}

@keyframes play-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 169, 89, 0.4); }
  50% { box-shadow: 0 0 0 10px rgba(201, 169, 89, 0); }
}

.control-divider {
  width: 1px;
  height: 16px;
  background: var(--border-visible);
  margin: 0 0.25rem;
}

/* Responsive Hero Grid & Dashboard */
@media (max-width: 1200px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .hero-dashboard-preview {
    max-width: 420px;
  }
}

@media (max-width: 968px) {
  /* Switch to flex so order works for the mockup reposition */
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
  }

  /* Title stays first */
  .hero-content-lead {
    order: 1;
    align-items: flex-start;
  }

  /* Mockup slides between title and body text */
  .hero-dashboard-preview {
    order: 2;
    max-width: 480px;
    width: 100%;
    margin: 0 auto;
    padding: var(--space-sm);
    justify-content: center;
  }

  /* Subtitle + CTA sits below the mockup */
  .hero-content-body {
    order: 3;
    align-items: flex-start;
  }

  /* Hide the "Your Rehearsal Partner" badge on mobile/tablet */
  .hero-badge {
    display: none;
  }

  .hero-title {
    max-width: 14ch;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-trust-badges {
    justify-content: flex-start;
  }

  .dashboard-mockup {
    transform: none;
  }

  .dashboard-mockup:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 600px) {
  .hero-dashboard-preview {
    max-width: 100%;
    padding: 0;
  }

  .mockup-content {
    flex-direction: column;
    min-height: auto;
  }

  .mockup-sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.6rem;
  }

  .sidebar-section {
    flex: 1;
    min-width: 70px;
  }

  .sidebar-progress {
    width: 100%;
    margin-top: 0;
  }

  .script-line {
    flex-wrap: nowrap;
  }

  .line-text {
    font-size: 0.68rem;
  }

  .mockup-controls-bar {
    gap: 0.3rem;
  }

  .mockup-controls-bar .control-btn {
    width: 24px;
    height: 24px;
    font-size: 0.55rem;
  }

  .mockup-controls-bar .control-btn.primary {
    width: 30px;
    height: 30px;
    font-size: 0.65rem;
  }
}

@media (max-width: 480px) {
  .mockup-title {
    display: none;
  }

  .sidebar-value {
    font-size: 0.7rem;
  }

  .line-status {
    display: none;
  }
}

/* ===== SCENE DIVIDER ===== */
.scene-divider {
  width: 1px;
  height: 80px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border-visible),
    transparent
  );
  margin: 0 auto;
}

/* ===== SECTION STYLING ===== */
.section {
  padding: var(--space-3xl) var(--space-lg);
  position: relative;
  width: 100%;
}

.section-sm {
  padding: var(--space-2xl) var(--space-lg);
}

.section-lg {
  padding: var(--space-3xl) var(--space-lg);
}

.section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* Section Headers - Editorial */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
  display: block;
}

.section-badge {
  margin-bottom: var(--space-sm);
}

.section-badge .badge {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: none;
  padding: 0;
}

.section-badge .badge i {
  display: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0 0 var(--space-sm) 0;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto;
}

/* ===== USE CASES - ACTOR FOCUSED ===== */
.use-cases-section {
  background: var(--bg-secondary);
  width: 100%;
}

.use-cases-section .container {
  max-width: 1200px;
}

.use-cases-section .section-header {
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.use-case-card {
  padding: var(--space-xl);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  text-align: left;
  transition: all var(--transition-medium);
  position: relative;
}

.use-case-card:hover {
  border-color: var(--border-visible);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.use-case-card .use-case-number {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: var(--space-md);
  display: block;
}

.use-case-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 var(--space-sm) 0;
  line-height: 1.3;
}

.use-case-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* ===== HOW IT WORKS - SIMPLE, QUIET ===== */
.process-section {
  background: var(--bg-primary);
  width: 100%;
}

.process-section .container {
  max-width: 1200px;
}

.process-section .section-header {
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  padding: var(--space-xl);
  text-align: left;
  transition: all var(--transition-medium);
}

.process-step:hover {
  border-color: var(--border-visible);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-gold);
  background: var(--accent-gold-soft);
  border: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  margin-bottom: var(--space-md);
}

.step-content {
  padding-top: 0;
}

.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.step-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
  max-width: 100%;
}

/* Hide process visuals */
.step-visual,
.process-connector {
  display: none;
}

/* ===== FEATURES - CLEAN GRID ===== */
.features-section {
  background: var(--bg-secondary);
  width: 100%;
}

.features-section .container {
  max-width: 1200px;
}

.features-section .section-header {
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.feature-card {
  padding: var(--space-xl);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  transition: all var(--transition-medium);
  text-align: left;
}

.feature-card::before {
  display: none;
}

.feature-card:hover {
  border-color: var(--border-visible);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--accent-gold);
  background: var(--accent-gold-soft);
  border: none;
  border-radius: 0.75rem;
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* Hide feature tags */
.feature-tags {
  display: none;
}

/* ===== WHY CUEME SECTION ===== */
.why-section {
  background: var(--bg-primary);
  width: 100%;
}

.why-section .container {
  max-width: 1200px;
}

.why-section .section-header {
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.why-section .features-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.why-section .feature-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
}

.why-section .feature-card:hover {
  border-color: var(--border-visible);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
  background: var(--bg-secondary);
  width: 100%;
}

.pricing-section::before {
  display: none;
}

.pricing-section .container {
  max-width: 1200px;
}

.pricing-section .section-header {
  max-width: 600px;
  margin: 0 auto var(--space-lg);
}

/* Pricing Controls */
.pricing-controls {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.billing-toggle,
.currency-toggle {
  display: inline-flex;
  background: var(--bg-elevated);
  border: 1px solid var(--border-visible);
  border-radius: 2rem;
  padding: 0.25rem;
}

.toggle-btn,
.currency-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  border-radius: 2rem;
}

.toggle-btn:hover,
.currency-btn:hover {
  color: var(--text-primary);
  background: transparent;
}

.toggle-btn.active,
.currency-btn.active {
  background: var(--text-primary);
  color: var(--bg-primary);
  box-shadow: none;
}

.toggle-btn.active::before,
.currency-btn.active::before {
  display: none;
}

.save-badge {
  background: var(--accent-gold-soft);
  color: var(--accent-gold);
  border: none;
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
  margin-left: 0.5rem;
  border-radius: 1rem;
}

/* Pricing Cards */
.pricing-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: stretch;
}

.pricing-step {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 1rem;
  padding: var(--space-xl);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-medium);
}

.pricing-step::before {
  display: none;
}

.pricing-step:hover {
  border-color: var(--border-visible);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-step.featured {
  border-color: var(--accent-gold);
  position: relative;
}

.pricing-step.featured:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(201, 169, 89, 0.15);
}

.pricing-step.coming-soon {
  opacity: 0.6;
}

.pricing-step .step-content {
  padding: 0;
}

.pricing-step .step-content h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.plan-for {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
}

.plan-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  background: transparent;
  border: 1px solid var(--border-visible);
  border-radius: 1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.plan-badge-primary {
  background: var(--accent-gold-soft);
  border-color: transparent;
  color: var(--accent-gold);
  box-shadow: none;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  margin-bottom: var(--space-sm);
}

.price-currency {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.price-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1;
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-left: 0.15rem;
}

.plan-subtext {
  font-size: 0.8rem;
  color: var(--text-secondary);
  background: var(--accent-gold-soft);
  border: none;
  border-radius: 0.5rem;
  padding: 0.4rem 0.6rem;
  margin-bottom: var(--space-md);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: var(--space-md) 0;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.4rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.plan-features li:hover {
  transform: none;
  color: var(--text-secondary);
}

.plan-features li i {
  color: var(--accent-gold);
  font-size: 0.65rem;
  margin-top: 0.35rem;
  background: transparent;
  width: auto;
  height: auto;
  flex-shrink: 0;
}

.plan-features li:hover i {
  transform: none;
}

.plan-features li.muted {
  opacity: 0.5;
}

.plan-features li.muted i {
  color: var(--text-muted);
}

.plan-cta {
  margin-top: auto;
  padding-top: var(--space-md);
}

.plan-cta .btn {
  width: 100%;
  padding: var(--btn-editorial-padding-y) var(--btn-editorial-padding-x);
  font-family: var(--btn-editorial-font);
  font-size: var(--btn-editorial-font-size);
  font-weight: var(--btn-editorial-font-weight);
  letter-spacing: var(--btn-editorial-letter-spacing);
  border-radius: var(--btn-editorial-radius);
  transition: all var(--transition-fast);
}

.plan-cta .btn::before {
  display: none;
}

.plan-cta .btn:hover {
  transform: none;
  box-shadow: none;
}

.plan-cta .btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  border: none;
}

.plan-cta .btn-primary:hover {
  opacity: 0.9;
}

.plan-cta .btn-outline {
  background: transparent;
  border: 1px solid var(--border-visible);
  color: var(--text-secondary);
}

.plan-cta .btn-outline:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.plan-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-sm);
  font-size: 0.75rem;
}

.plan-meta .muted {
  color: var(--text-muted);
}

.plan-meta .plan-link {
  color: var(--accent-gold);
}

.pricing-footnote {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 0.8rem;
  color: var(--text-muted);
  background: transparent;
  border: none;
  padding: 0;
  max-width: none;
}

.pricing-footnote i {
  display: none;
}

/* ===== FAQ SECTION ===== */
.faq-section {
  background: var(--bg-primary);
  width: 100%;
}

.faq-section .container {
  max-width: 900px;
}

.faq-section .section-header {
  max-width: 600px;
  margin: 0 auto var(--space-2xl);
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.faq-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--border-visible);
}

.faq-item.active {
  border-color: var(--accent-gold);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-lg);
  cursor: pointer;
  background: transparent;
  transition: all var(--transition-fast);
  gap: var(--space-md);
}

.faq-question h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
}

.faq-question i {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.faq-item:hover .faq-question i {
  color: var(--accent-gold);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--accent-gold);
}

.faq-answer {
  display: none;
  padding: 0 var(--space-lg) var(--space-lg);
  border-top: none;
  background: transparent;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-answer p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* Badge info style */
.badge-info {
  background: transparent;
  border: none;
  color: var(--text-muted);
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--bg-secondary);
  text-align: center;
  width: 100%;
}

.cta-section .container {
  max-width: 800px;
}

.cta-content {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 1.5rem;
  padding: var(--space-3xl) var(--space-2xl);
  position: relative;
  overflow: hidden;
}

/* Subtle gradient accent */
.cta-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--accent-gold);
  border-radius: 0 0 2px 2px;
}

.cta-badge {
  margin-bottom: var(--space-sm);
}

.cta-badge .badge {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border: none;
}

.cta-badge .badge i {
  display: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 450px;
  margin: 0 auto var(--space-lg);
}

.cta-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-lg);
}

.cta-actions .btn-primary {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: var(--btn-editorial-padding-y) var(--btn-editorial-padding-x);
  font-family: var(--btn-editorial-font);
  font-size: var(--btn-editorial-font-size);
  font-weight: var(--btn-editorial-font-weight);
  letter-spacing: var(--btn-editorial-letter-spacing);
  border-radius: var(--btn-editorial-radius);
}

.cta-actions .btn-primary:hover {
  opacity: 0.9;
}

.cta-actions .btn-outline {
  background: transparent;
  border: 1px solid var(--border-visible);
  color: var(--text-secondary);
  padding: var(--btn-editorial-padding-y) var(--btn-editorial-padding-x);
  font-family: var(--btn-editorial-font);
  font-size: var(--btn-editorial-font-size);
  font-weight: var(--btn-editorial-font-weight);
  letter-spacing: var(--btn-editorial-letter-spacing);
  border-radius: var(--btn-editorial-radius);
}

.cta-actions .btn-outline:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
}

.cta-features {
  display: flex;
  gap: var(--space-lg);
  justify-content: center;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.cta-feature i {
  color: var(--accent-gold);
  font-size: 0.65rem;
}

/* ===== STICKY CTA ===== */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100px;
  padding: var(--space-sm) var(--space-lg);
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-visible);
  display: flex;
  justify-content: center;
  transition: bottom var(--transition-medium);
  z-index: 100;
}

.sticky-cta.visible {
  bottom: 0;
}

.sticky-cta .btn {
  background: var(--text-primary);
  color: var(--bg-primary);
  padding: var(--btn-editorial-padding-y) var(--btn-editorial-padding-x);
  font-family: var(--btn-editorial-font);
  font-size: var(--btn-editorial-font-size);
  font-weight: var(--btn-editorial-font-weight);
  letter-spacing: var(--btn-editorial-letter-spacing);
  border-radius: var(--btn-editorial-radius);
}

/* Hide icons in buttons */
.btn i,
.btn-start-free i {
  display: none;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Scroll animations */
[data-scroll-animation] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

[data-scroll-animation].animate-fadeInUp,
[data-scroll-animation].animate-scaleIn,
[data-scroll-animation].animate-slideInLeft,
[data-scroll-animation].animate-slideInRight,
[data-scroll-animation].animate-slideInUp {
  opacity: 1;
  transform: translateY(0) scale(1) translateX(0);
}

[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

[data-animate].animate-fadeInUp {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered animation delays */
[data-scroll-animation]:nth-child(1) { transition-delay: 0s; }
[data-scroll-animation]:nth-child(2) { transition-delay: 0.1s; }
[data-scroll-animation]:nth-child(3) { transition-delay: 0.2s; }
[data-scroll-animation]:nth-child(4) { transition-delay: 0.3s; }
[data-scroll-animation]:nth-child(5) { transition-delay: 0.4s; }
[data-scroll-animation]:nth-child(6) { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-section .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-steps {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin: 0 auto;
  }

  .pricing-step.featured {
    order: -1;
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--space-2xl) var(--space-md);
  }

  .section .container {
    padding: 0 var(--space-sm);
  }

  .hero-section {
    padding: var(--space-xl) var(--space-sm);
    min-height: auto;
  }

  .hero-section .container {
    padding: 0 var(--space-sm);
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero-trust-badges {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .use-cases-grid,
  .process-steps,
  .features-grid,
  .why-section .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-controls {
    flex-direction: column;
    align-items: center;
  }

  .cta-content {
    padding: var(--space-2xl) var(--space-lg);
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .cta-features {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .pricing-step {
    padding: var(--space-lg);
  }

  .price-value {
    font-size: 2rem;
  }

  .use-case-card,
  .feature-card,
  .process-step {
    padding: var(--space-lg);
  }

  .cta-content {
    padding: var(--space-xl) var(--space-md);
    border-radius: 1rem;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-scroll-animation],
  [data-animate] {
    opacity: 1;
    transform: none;
  }
}


/* ═══════════════════════════════════════════════════════════════════════════
   ███████ ██████  ██ ████████  ██████  ██████  ██  █████  ██
   ██      ██   ██ ██    ██    ██    ██ ██   ██ ██ ██   ██ ██
   █████   ██   ██ ██    ██    ██    ██ ██████  ██ ███████ ██
   ██      ██   ██ ██    ██    ██    ██ ██   ██ ██ ██   ██ ██
   ███████ ██████  ██    ██     ██████  ██   ██ ██ ██   ██ ███████

   EDITORIAL DESIGN SYSTEM
   Cinematic, rehearsal-room inspired, actor-to-actor aesthetic
   ═══════════════════════════════════════════════════════════════════════════ */

/* ===== EDITORIAL DESIGN TOKENS ===== */
:root {
  /* Editorial Color Palette - Warm neutrals with deep theatre tones */
  --editorial-ink: #1a1a1f;
  --editorial-charcoal: #252529;
  --editorial-espresso: #2d2d32;
  --editorial-stone: #3a3a40;
  --editorial-warm-grey: #4a4a52;
  --editorial-mist: #6b6b75;
  --editorial-silver: #9a9aa5;
  --editorial-parchment: #e8e6e1;
  --editorial-cream: #f5f3ef;
  --editorial-ivory: #fdfcfa;

  /* Accent - Muted, warm, refined */
  --editorial-accent: #b8a07a;
  --editorial-accent-soft: rgba(184, 160, 122, 0.12);
  --editorial-accent-muted: rgba(184, 160, 122, 0.25);

  /* Typography Scale - Editorial */
  --type-display-xl: clamp(2.5rem, 6vw, 4rem);
  --type-display-lg: clamp(2rem, 4.5vw, 3rem);
  --type-display-md: clamp(1.5rem, 3.5vw, 2.25rem);
  --type-headline: clamp(1.25rem, 2.5vw, 1.75rem);
  --type-body-lg: clamp(1rem, 1.5vw, 1.15rem);
  --type-body: 0.95rem;
  --type-caption: 0.8rem;
  --type-micro: 0.7rem;

  /* Spacing - Editorial (generous breathing room) */
  --ed-space-xs: 0.5rem;
  --ed-space-sm: 1rem;
  --ed-space-md: 1.5rem;
  --ed-space-lg: 2.5rem;
  --ed-space-xl: 4rem;
  --ed-space-2xl: 6rem;
  --ed-space-3xl: 8rem;
  --ed-space-4xl: 12rem;

  /* Border Radius - Soft, editorial */
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;

  /* Shadows - Soft, layered */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-elevated: 0 16px 50px rgba(0, 0, 0, 0.12);
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.08);
}

/* ===== EDITORIAL SECTION BASE ===== */
.editorial-section {
  position: relative;
  padding: var(--ed-space-3xl) var(--ed-space-lg);
  background: var(--bg-primary);
  overflow: hidden;
}

.editorial-section .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--ed-space-lg);
  position: relative;
  z-index: 2;
}

/* ===== ABSTRACT SHAPE SYSTEM ===== */

/* Shape Backdrop Container */
.shape-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

/* Soft Blob Gradients */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.shape-blob-1 {
  width: 500px;
  height: 500px;
  top: -15%;
  right: -10%;
  background: radial-gradient(
    ellipse at center,
    rgba(184, 160, 122, 0.15) 0%,
    rgba(184, 160, 122, 0.05) 40%,
    transparent 70%
  );
}

.shape-blob-2 {
  width: 400px;
  height: 400px;
  bottom: -20%;
  left: -5%;
  background: radial-gradient(
    ellipse at center,
    rgba(113, 113, 122, 0.12) 0%,
    rgba(113, 113, 122, 0.04) 40%,
    transparent 70%
  );
}

.shape-blob-3 {
  width: 600px;
  height: 400px;
  top: 10%;
  left: -15%;
  background: radial-gradient(
    ellipse at center,
    rgba(184, 160, 122, 0.1) 0%,
    transparent 60%
  );
}

/* Gradient Band (for How It Works) */
.gradient-band {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    var(--bg-secondary) 0%,
    var(--bg-primary) 50%,
    var(--bg-secondary) 100%
  );
  opacity: 0.5;
  z-index: 0;
}

/* Glass Panel Overlay */
.card-glass-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.03) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}

/* Noise Texture Overlay */
.trust-panel-texture {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.02;
  border-radius: inherit;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION: WHAT CUEME DOES
   Asymmetric block layout
   ═══════════════════════════════════════════════════════════════════════════ */
.what-we-do-section {
  background: var(--bg-primary);
  padding: var(--ed-space-4xl) var(--ed-space-lg);
}

/* Asymmetric Layout */
.asymmetric-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--ed-space-lg);
  align-items: start;
}

/* Large Feature Card */
.card-feature-large {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--ed-space-2xl);
  transition: all var(--transition-medium);
  overflow: hidden;
}

.card-feature-large::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--editorial-accent) 0%,
    var(--editorial-accent-muted) 100%
  );
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.card-feature-large:hover::before {
  opacity: 1;
}

.card-feature-large:hover {
  border-color: var(--border-visible);
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
}

.card-feature-large .card-inner {
  position: relative;
  z-index: 1;
}

.card-accent-line {
  position: absolute;
  bottom: 0;
  left: var(--ed-space-2xl);
  right: var(--ed-space-2xl);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-visible) 50%,
    transparent 100%
  );
}

/* Support Cards Stack */
.cards-support-stack {
  display: flex;
  flex-direction: column;
  gap: var(--ed-space-md);
}

.card-support {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--ed-space-lg);
  transition: all var(--transition-medium);
}

.card-support:hover {
  border-color: var(--border-visible);
  transform: translateX(8px);
  box-shadow: var(--shadow-medium);
}

.card-support-accent {
  background: linear-gradient(
    135deg,
    var(--bg-secondary) 0%,
    rgba(184, 160, 122, 0.05) 100%
  );
  border-color: var(--editorial-accent-soft);
}

/* ═══════════════════════════════════════════════════════════════════════════
   EDITORIAL TYPOGRAPHY
   ═══════════════════════════════════════════════════════════════════════════ */

/* Card Eyebrow */
.card-eyebrow {
  font-family: var(--font-body);
  font-size: var(--type-micro);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--editorial-accent);
  margin-bottom: var(--ed-space-sm);
  display: block;
}

/* Card Headlines */
.card-headline {
  font-family: var(--font-display);
  font-size: var(--type-display-md);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0 0 var(--ed-space-md) 0;
  letter-spacing: -0.01em;
}

.card-title {
  font-family: var(--font-display);
  font-size: var(--type-headline);
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0 0 var(--ed-space-xs) 0;
}

/* Card Body */
.card-body {
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* Card Micro Detail */
.card-micro {
  font-family: var(--font-body);
  font-size: var(--type-micro);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: var(--ed-space-sm);
  display: block;
  opacity: 0.7;
}

/* Section Header Editorial */
.section-header-editorial {
  margin-bottom: var(--ed-space-xl);
}

.headline-editorial {
  font-family: var(--font-display);
  font-size: var(--type-display-lg);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0;
  letter-spacing: -0.02em;
}

.headline-editorial-large {
  font-family: var(--font-display);
  font-size: var(--type-display-xl);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-primary);
  margin: 0 0 var(--ed-space-md) 0;
  letter-spacing: -0.02em;
}

.body-editorial {
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 42ch;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION: WHAT WE OFFER
   Masonry/staggered card layout
   ═══════════════════════════════════════════════════════════════════════════ */
.what-we-offer-section {
  background: var(--bg-secondary);
  padding: var(--ed-space-4xl) var(--ed-space-lg);
}

/* Masonry Grid */
.masonry-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  grid-template-rows: auto auto;
  gap: var(--ed-space-lg);
}

/* Tall Card */
.card-tall {
  position: relative;
  grid-row: span 2;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--ed-space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 380px;
  transition: all var(--transition-medium);
  overflow: hidden;
}

.card-tall::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(184, 160, 122, 0.03) 100%
  );
  pointer-events: none;
}

.card-tall:hover {
  border-color: var(--border-visible);
  transform: translateY(-6px);
  box-shadow: var(--shadow-elevated);
}

.card-tall .card-inner {
  position: relative;
  z-index: 1;
}

/* Wide Card */
.card-wide {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: var(--ed-space-xl);
  transition: all var(--transition-medium);
}

.card-wide:hover {
  border-color: var(--border-visible);
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

/* Small Cards */
.card-small {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--ed-space-lg);
  transition: all var(--transition-medium);
}

.card-small:hover {
  border-color: var(--border-visible);
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION: HOW IT WORKS
   Single wide panel with embedded steps
   ═══════════════════════════════════════════════════════════════════════════ */
.how-it-works-section {
  padding: var(--ed-space-3xl) var(--ed-space-lg);
  background: var(--bg-primary);
}

/* Process Panel */
.process-panel {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: var(--ed-space-xl) var(--ed-space-2xl);
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-glass);
}

.process-panel-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--ed-space-md);
  flex-wrap: wrap;
}

/* Process Chips */
.process-chip {
  display: flex;
  align-items: center;
  gap: var(--ed-space-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 2rem;
  padding: 0.6rem 1.2rem;
  transition: all var(--transition-fast);
}

.process-chip:hover {
  border-color: var(--editorial-accent-soft);
  background: var(--editorial-accent-soft);
}

.chip-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--editorial-accent-soft);
  border-radius: 50%;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--editorial-accent);
}

.chip-text {
  font-family: var(--font-body);
  font-size: var(--type-body);
  font-weight: 500;
  color: var(--text-primary);
}

/* Process Connector */
.process-connector {
  width: 30px;
  height: 1px;
  background: var(--border-visible);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION: WHY ACTORS USE CUEME
   Split layout with card collage
   ═══════════════════════════════════════════════════════════════════════════ */
.why-actors-section {
  background: var(--bg-secondary);
  padding: var(--ed-space-4xl) var(--ed-space-lg);
}

/* Split Layout */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--ed-space-2xl);
  align-items: start;
}

.split-left {
  position: sticky;
  top: 120px;
}

.split-right {
  min-width: 0;
}

/* Card Collage */
.card-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--ed-space-md);
}

/* Anchor Card (larger) */
.card-anchor {
  grid-column: span 2;
  background: linear-gradient(
    135deg,
    var(--bg-elevated) 0%,
    rgba(184, 160, 122, 0.08) 100%
  );
  border: 1px solid var(--editorial-accent-soft);
  border-radius: var(--radius-xl);
  padding: var(--ed-space-xl);
  transition: all var(--transition-medium);
}

.card-anchor:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-elevated);
  border-color: var(--editorial-accent-muted);
}

/* Collage Small Cards */
.card-collage-small {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--ed-space-lg);
  transition: all var(--transition-fast);
}

.card-collage-small:hover {
  border-color: var(--border-visible);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.card-collage-accent {
  background: linear-gradient(
    135deg,
    var(--bg-elevated) 0%,
    rgba(184, 160, 122, 0.04) 100%
  );
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION: TRUST & CRAFT
   Statement panel with supporting mini-panels
   ═══════════════════════════════════════════════════════════════════════════ */
.trust-craft-section {
  background: var(--bg-primary);
  padding: var(--ed-space-4xl) var(--ed-space-lg);
}

/* Trust Layout */
.trust-layout {
  display: flex;
  flex-direction: column;
  gap: var(--ed-space-lg);
}

/* Main Statement Panel */
.trust-panel-main {
  position: relative;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: var(--ed-space-3xl);
  text-align: center;
  overflow: hidden;
}

.trust-panel-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--editorial-accent);
  border-radius: 0 0 2px 2px;
}

.trust-panel-inner {
  position: relative;
  z-index: 1;
}

.headline-statement {
  font-family: var(--font-display);
  font-size: var(--type-display-lg);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0 0 var(--ed-space-md) 0;
  letter-spacing: -0.02em;
}

.body-statement {
  font-family: var(--font-body);
  font-size: var(--type-body-lg);
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 60ch;
  margin: 0 auto;
}

/* Supporting Mini-Panels */
.trust-panels-support {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--ed-space-md);
}

.trust-panel-mini {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--ed-space-lg);
  text-align: center;
  transition: all var(--transition-fast);
}

.trust-panel-mini:hover {
  border-color: var(--border-visible);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.panel-title {
  font-family: var(--font-display);
  font-size: var(--type-headline);
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 var(--ed-space-xs) 0;
}

.panel-body {
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION: FAQ (EDITORIAL)
   Styled accordion with side reassurance card
   ═══════════════════════════════════════════════════════════════════════════ */
.faq-editorial-section {
  background: var(--bg-secondary);
  padding: var(--ed-space-4xl) var(--ed-space-lg);
}

.shape-backdrop-faq {
  z-index: 0;
}

/* FAQ Editorial Layout */
.faq-editorial-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--ed-space-xl);
  align-items: start;
}

/* FAQ Container */
.faq-container {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-2xl);
  padding: var(--ed-space-xl);
}

.faq-container .headline-editorial {
  margin-bottom: var(--ed-space-lg);
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--ed-space-xs);
}

.faq-item-editorial {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-item-editorial:hover {
  border-color: var(--border-visible);
}

.faq-item-editorial.active {
  border-color: var(--editorial-accent-soft);
  background: var(--editorial-accent-soft);
}

.faq-question-editorial {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--ed-space-md) var(--ed-space-lg);
  cursor: pointer;
  gap: var(--ed-space-md);
}

.faq-question-editorial h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
}

.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-muted);
  transition: all var(--transition-fast);
}

.faq-icon::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item-editorial.active .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item-editorial.active .faq-icon::before,
.faq-item-editorial.active .faq-icon::after {
  background: var(--editorial-accent);
}

.faq-answer-editorial {
  display: none;
  padding: 0 var(--ed-space-lg) var(--ed-space-lg);
}

.faq-item-editorial.active .faq-answer-editorial {
  display: block;
}

.faq-answer-editorial p {
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0;
}

/* Side Reassurance Card */
.faq-side-card {
  position: sticky;
  top: 120px;
}

.side-card-inner {
  background: linear-gradient(
    135deg,
    var(--bg-elevated) 0%,
    rgba(184, 160, 122, 0.06) 100%
  );
  border: 1px solid var(--editorial-accent-soft);
  border-radius: var(--radius-xl);
  padding: var(--ed-space-xl);
  text-align: center;
}

.side-card-icon {
  display: block;
  width: 40px;
  height: 40px;
  margin: 0 auto var(--ed-space-md);
  background: var(--editorial-accent-soft);
  border-radius: 50%;
  position: relative;
}

.side-card-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border: 2px solid var(--editorial-accent);
  border-radius: 50%;
}

.side-card-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--editorial-accent);
  border-radius: 50%;
}

.side-card-title {
  font-family: var(--font-display);
  font-size: var(--type-headline);
  font-weight: 500;
  color: var(--text-primary);
  margin: 0 0 var(--ed-space-xs) 0;
}

.side-card-body {
  font-family: var(--font-body);
  font-size: var(--type-body);
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SECTION: CLOSING CTA (EDITORIAL)
   Gradient shape band with strong headline
   ═══════════════════════════════════════════════════════════════════════════ */
.cta-editorial-section {
  position: relative;
  background: var(--bg-primary);
  padding: var(--ed-space-4xl) var(--ed-space-lg);
  overflow: hidden;
}

/* CTA Gradient Shape */
.cta-gradient-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 200%;
  background: radial-gradient(
    ellipse 50% 40% at 50% 50%,
    rgba(184, 160, 122, 0.08) 0%,
    rgba(184, 160, 122, 0.03) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-editorial-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-editorial-headline {
  font-family: var(--font-display);
  font-size: var(--type-display-lg);
  font-weight: 300;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0 0 var(--ed-space-xl) 0;
  letter-spacing: -0.02em;
}

.cta-editorial-actions {
  display: flex;
  gap: var(--ed-space-md);
  justify-content: center;
  flex-wrap: wrap;
}

/* Editorial Buttons — use tokens (single source: tokens.css §11) */
.btn-editorial-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--btn-editorial-padding-y) var(--btn-editorial-padding-x);
  background: var(--text-primary);
  color: var(--bg-primary);
  font-family: var(--btn-editorial-font);
  font-size: var(--btn-editorial-font-size);
  font-weight: var(--btn-editorial-font-weight);
  letter-spacing: var(--btn-editorial-letter-spacing);
  border: none;
  border-radius: var(--btn-editorial-radius);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-editorial-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  opacity: 0.95;
  color: var(--bg-primary);
  text-decoration: none;
}

.btn-editorial-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--btn-editorial-padding-y) var(--btn-editorial-padding-x);
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--btn-editorial-font);
  font-size: var(--btn-editorial-font-size);
  font-weight: var(--btn-editorial-font-weight);
  letter-spacing: var(--btn-editorial-letter-spacing);
  border: 1px solid var(--border-visible);
  border-radius: var(--btn-editorial-radius);
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-editorial-secondary:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
  text-decoration: none;
}

.cta-editorial-note {
  font-family: var(--font-body);
  font-size: var(--type-caption);
  color: var(--text-muted);
  margin: var(--ed-space-md) 0 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE: EDITORIAL SECTIONS
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .editorial-section {
    padding: var(--ed-space-2xl) var(--ed-space-md);
  }

  .editorial-section .container {
    padding: 0 var(--ed-space-md);
  }

  /* Asymmetric Layout */
  .asymmetric-layout {
    grid-template-columns: 1fr;
    gap: var(--ed-space-lg);
  }

  /* Masonry Grid */
  .masonry-grid {
    grid-template-columns: 1fr;
  }

  .card-tall {
    grid-row: span 1;
    min-height: auto;
  }

  /* Split Layout */
  .split-layout {
    grid-template-columns: 1fr;
    gap: var(--ed-space-xl);
  }

  .split-left {
    position: relative;
    top: 0;
  }

  /* Trust Panels */
  .trust-panels-support {
    grid-template-columns: 1fr;
  }

  /* FAQ Layout */
  .faq-editorial-layout {
    grid-template-columns: 1fr;
    gap: var(--ed-space-lg);
  }

  .faq-side-card {
    position: relative;
    top: 0;
    order: -1;
  }
}

@media (max-width: 768px) {
  .editorial-section {
    padding: var(--ed-space-xl) var(--ed-space-sm);
  }

  .editorial-section .container {
    padding: 0 var(--ed-space-sm);
  }

  /* Card Collage */
  .card-collage {
    grid-template-columns: 1fr;
  }

  .card-anchor {
    grid-column: span 1;
  }

  /* Process Panel */
  .process-panel {
    padding: var(--ed-space-lg);
  }

  .process-panel-inner {
    flex-direction: column;
    gap: var(--ed-space-sm);
  }

  .process-connector {
    width: 1px;
    height: 20px;
  }

  /* Typography Scale Down */
  .headline-editorial-large {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }

  .headline-editorial {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  /* CTA */
  .cta-editorial-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-editorial-primary,
  .btn-editorial-secondary {
    width: 100%;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .card-feature-large {
    padding: var(--ed-space-lg);
  }

  .trust-panel-main {
    padding: var(--ed-space-xl);
  }

  .faq-container {
    padding: var(--ed-space-md);
  }

  .faq-question-editorial {
    padding: var(--ed-space-sm) var(--ed-space-md);
  }

  .faq-answer-editorial {
    padding: 0 var(--ed-space-md) var(--ed-space-md);
  }
}

/* ═══════════════════════════════════════════════════════════════════
   Landing: email signup form and hero (moved from landing.html)
   ═══════════════════════════════════════════════════════════════════ */
.home-container .email-form-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

[data-theme="light"] .home-container .email-form-container {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.home-container .email-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  width: 100%;
  box-sizing: border-box;
}

.home-container .email-input-container {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.home-container .email-form-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
}

.home-container .email-input-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.home-container .submit-button-wrapper {
  flex-shrink: 0;
  min-width: fit-content;
}

@media (max-width: 768px) {
  .home-container .email-form-row {
    flex-direction: column;
    gap: 1rem;
  }
  .home-container .submit-button-wrapper {
    width: 100%;
  }
  .home-container .submit-button-wrapper .btn {
    width: 100%;
    justify-content: center;
  }
  .home-container .email-form-container {
    padding: 1.5rem;
    margin: 0 1rem;
  }
}

@media (max-width: 480px) {
  .home-container .email-form-container {
    padding: 1rem;
    margin: 0 0.5rem;
  }
  .home-container .email-form .form-control {
    min-height: 3rem;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    padding-right: 1.5rem;
    padding-left: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .home-container .submit-button-wrapper .btn {
    padding: 0.75rem 1rem;
    height: 3rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .home-container .email-form-container {
    max-width: 450px;
    padding: 1.75rem;
  }
  .home-container .submit-button-wrapper .btn {
    padding: 0 1.25rem;
  }
  .home-container .email-form .form-control {
    padding-right: 1.75rem;
    padding-left: 1.5rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.home-container .email-form .form-control {
  padding: 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
  min-height: 3.5rem;
  width: 100%;
  box-sizing: border-box;
  flex: 1;
  text-overflow: visible;
  overflow: visible;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  line-height: 1.5;
  padding-right: 2rem;
  padding-left: 1.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

[data-theme="light"] .home-container .email-form .form-control {
  border: 2px solid rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text-primary);
}

.home-container .email-form .form-control:focus {
  outline: none;
  border-color: var(--color-primary);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

[data-theme="light"] .home-container .email-form .form-control:focus {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.home-container .email-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
  text-overflow: visible;
  overflow: visible;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  opacity: 1;
  line-height: 1.5;
  text-align: center;
}

[data-theme="light"] .home-container .email-form .form-control::placeholder {
  color: rgba(0, 0, 0, 0.5);
  text-overflow: visible;
  overflow: visible;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  opacity: 1;
  line-height: 1.5;
  text-align: center;
}

.home-container .email-form .btn {
  padding: var(--btn-editorial-padding-y) var(--btn-editorial-padding-x);
  font-family: var(--btn-editorial-font);
  font-size: var(--btn-editorial-font-size);
  font-weight: var(--btn-editorial-font-weight);
  letter-spacing: var(--btn-editorial-letter-spacing);
  border-radius: var(--btn-editorial-radius);
  white-space: nowrap;
  min-height: 3.5rem;
  flex-shrink: 0;
}

.home-container .form-error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: rgba(220, 38, 38, 0.1);
  border-radius: 8px;
  border: 1px solid rgba(220, 38, 38, 0.2);
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

[data-theme="light"] .home-container .form-error {
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.3);
}

.home-container .email-input-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 0;
}

.home-container .hero-actions {
  justify-content: flex-start;
}

.home-container .hero-subtitle {
  text-align: left;
  max-width: 540px;
  margin: 0;
}

.home-container .coming-soon-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 1rem;
}

.home-container .email-form-container h3 {
  color: var(--color-text-primary);
}

.home-container .email-form-container p {
  color: var(--color-text-secondary);
}

@media (max-width: 768px) {
  .home-container .email-form {
    flex-direction: column;
  }
  .home-container .email-form .btn {
    width: 100%;
  }
}

.home-container .alert {
  padding: 1rem;
  border-radius: 8px;
  margin: 1rem 0;
  border: 1px solid;
}

.home-container .alert-success {
  background-color: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
  color: #065f46;
}

[data-theme="dark"] .home-container .alert-success {
  background-color: rgba(16, 185, 129, 0.2);
  color: #6ee7b7;
}

.home-container .alert-error {
  background-color: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
  color: #991b1b;
}

[data-theme="dark"] .home-container .alert-error {
  background-color: rgba(239, 68, 68, 0.2);
  color: #fca5a5;
}

.home-container .alert-warning {
  background-color: rgba(245, 158, 11, 0.1);
  border-color: #f59e0b;
  color: #92400e;
}

[data-theme="dark"] .home-container .alert-warning {
  background-color: rgba(245, 158, 11, 0.2);
  color: #fcd34d;
}

.home-container .alert-info {
  background-color: rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
  color: #1e40af;
}

[data-theme="dark"] .home-container .alert-info {
  background-color: rgba(59, 130, 246, 0.2);
  color: #93c5fd;
}

.home-container .submit-button-wrapper .btn {
  white-space: nowrap;
  min-width: fit-content;
  height: 3.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem;
  max-width: 100%;
  box-sizing: border-box;
}

[data-theme="light"] .home-container .submit-button-wrapper .btn {
  background: var(--color-primary);
  color: white;
  border: 2px solid var(--color-primary);
}

.home-container .submit-button-wrapper .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

/* Landing: replace inline style= with classes */
.landing-text-center { text-align: center; }
.landing-mb-1 { margin-bottom: 1rem; }
.landing-mb-2 { margin-bottom: 2rem; }
.landing-mt-1 { margin-top: 1rem; }
.landing-section-head {
  text-align: center;
  margin-bottom: 1rem;
}
.landing-section-p-sm {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 0.9em;
  color: var(--color-text-secondary, var(--text-secondary));
}
.landing-beta-box {
  text-align: center;
  padding: 1rem;
  background-color: var(--primary-50, var(--accent-gold-soft));
  border-radius: 8px;
  margin-top: 1rem;
}
.landing-beta-icon { color: var(--color-primary, var(--accent-gold)); }
.landing-beta-count {
  color: var(--color-primary, var(--accent-gold));
  font-weight: 600;
}
.landing-alert-wrap { margin-top: 1rem; text-align: center; }
.landing-anim-delay-2 { animation-delay: 0.2s; }
.landing-anim-delay-3 { animation-delay: 0.3s; }
.landing-anim-delay-4 { animation-delay: 0.4s; }
.landing-anim-delay-1 { animation-delay: 0.1s; }
.landing-anim-delay-5 { animation-delay: 0.5s; }
.plan-badge-success { background: var(--color-success, #10b981) !important; }
.plan-badge-premium { background: var(--color-premium, #6366f1) !important; }
.progress-fill-landing { width: 65%; }
