﻿/* ═════════════════════════════════════════════════════════════════════════════
   SATORI UNIFIED THEME
   Comprehensive Zenscion Design System - Color System + Index Page Components
   ═════════════════════════════════════════════════════════════════════════════ */

:root {
  /* ── CORE COLOR PALETTE (SEMANTIC) ── */
  --enlightenment:       #F5A800;
  --enlightenment-light: #FFD166;
  --enlightenment-dark:  #B87A00;

  --void:                #1C1C2A;
  --void-light:          #2E2E42;
  --void-dark:           #0D0D14;

  --clarity:             #F0EDE8;

  /* ── SUPPORTING PALETTE ── */
  --dojo:                #7A8C5E;
  --dojo-light:          #A3B585;
  --dojo-dark:           #526040;

  --kensho:              #C96F84;
  --kensho-light:        #DFA0AE;
  --kensho-dark:         #9A4A5E;

  --mushin:              #A0BFCF;
  --mushin-light:        #C8DDE8;
  --mushin-dark:         #6A96AB;

  /* ── TYPOGRAPHY ── */
  --font-title:          'Sora', sans-serif;
  --font-display:        'Sora', sans-serif;
  --font-body:           'DM Sans', sans-serif;
  --font-code:           'Courier New', monospace;
  --font-mono:           'DM Mono', monospace;
  --font-weight-title:   800;
  --font-weight-normal:  400;
  --font-weight-light:   300;

  /* ── SPACING ── */
  --spacing-xs:          8px;
  --spacing-sm:          14px;
  --spacing-md:          16px;
  --spacing-lg:          28px;
  --spacing-xl:          32px;
  --spacing-2xl:         48px;
  --spacing-3xl:         64px;
  --spacing-4xl:         72px;
  --spacing-5xl:         80px;

  /* ── BORDER RADIUS ── */
  --radius-sm:           4px;
  --radius-md:           8px;
  --radius-lg:           12px;
  --radius-xl:           16px;
  --radius-2xl:          24px;
  --radius-full:         999px;

  /* ── SHADOWS ── */
  --shadow-xs:           0 1px 2px rgba(26,26,46,.06);
  --shadow-sm:           0 2px 8px rgba(26,26,46,.08);
  --shadow-md:           0 4px 16px rgba(26,26,46,.10);
  --shadow-lg:           0 8px 32px rgba(26,26,46,.12);
  --shadow-xl:           0 16px 48px rgba(26,26,46,.16);
  --shadow-rose:         0 8px 32px rgba(245,168,0,.25);

  /* ── TRANSITIONS & EASING ── */
  --transition-fast:     0.2s ease;
  --transition-normal:   0.25s cubic-bezier(.16,1,.3,1);
  --transition-slow:     0.3s cubic-bezier(.16,1,.3,1);
  --ease-out:            cubic-bezier(.16,1,.3,1);
  --ease-spring:         cubic-bezier(.34,1.56,.64,1);
  --duration-fast:       150ms;
  --duration-base:       250ms;
  --duration-slow:       400ms;

  /* ── OPACITY ── */
  --opacity-backdrop:    0.2;
  --opacity-subtle:      0.3;
  --opacity-muted:       0.45;
  --opacity-dim:         0.6;
  --opacity-visible:     1;


}

/* ── BACKGROUND GRADIENTS ── */
:root {
  --bg-gradient-accent:
    radial-gradient(ellipse 90% 45% at 50% -5%, rgba(245,168,0,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 55% 35% at 90% 105%, rgba(122,140,94,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 40% 30% at 5% 80%, rgba(160,191,207,0.05) 0%, transparent 50%);
}

/* ── COLOR APPLICATIONS (SEMANTIC) ── */
:root {
  --bg-primary:          var(--void-dark);
  --bg-secondary:        var(--void-light);
  --bg-tertiary:         var(--clarity);
  
  --text-primary:        var(--clarity);
  --text-secondary:      rgba(240,237,232,0.65);
  --text-muted:          rgba(240,237,232,0.3);
  --text-dim:            rgba(240,237,232,0.2);
  
  --border-subtle:       rgba(255,255,255,0.06);
  --border-lighter:      rgba(255,255,255,0.07);

  --accent:              var(--enlightenment);
  --accent-light:        var(--enlightenment-light);
  --accent-dark:         var(--enlightenment-dark);
}

/* ──────────────────────────────────────────────────────────────────────────
    SATORI COLOR SHOWCASE STYLES
    ────────────────────────────────────────────────────────────────────── */

/* ── SWATCH COLOR BLOCKS ── */
.sw-enlightenment .block {
  background: linear-gradient(145deg, #F5A800, #FFD580);
  color: #0D0D14;
}

.sw-void .block {
  background: linear-gradient(145deg, #1C1C2A, #2E2E42);
  color: #F0EDE8;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sw-clarity .block {
  background: linear-gradient(145deg, #F0EDE8, #FFF9F2);
  color: #1C1C2A;
}

.sw-dojo .block-sm {
  background: linear-gradient(135deg, #7A8C5E, #96AA74);
  color: #F0EDE8;
}

.sw-kensho .block-sm {
  background: linear-gradient(135deg, #C96F84, #DC90A2);
  color: #F0EDE8;
}

.sw-mushin .block-sm {
  background: linear-gradient(135deg, #A0BFCF, #BDD4DF);
  color: #1C1C2A;
}

/* ── CODE SYNTAX HIGHLIGHTING ── */
.kw   { color: var(--kensho); }
.prop { color: var(--mushin); }
.val  { color: var(--enlightenment); }
.cmt  { color: rgba(240,237,232,0.2); font-style: italic; }

/* ── BUTTON VARIANTS ── */
.pc-void {
  background: var(--void);
  color: var(--clarity);
}

.pc-gold {
  background: var(--enlightenment);
  color: var(--void-dark);
}

.pc-clarity {
  background: var(--clarity);
  color: var(--void);
}

.pc-dojo {
  background: var(--dojo);
  color: var(--clarity);
}

/* ──────────────────────────────────────────────────────────────────────────
    INDEX PAGE STYLES - COMPLETE APPLICATION UI
    ────────────────────────────────────────────── */

/* ── LIGHT THEME (default) ── */
:root {
  --ink:             #F0EDE8;
  --paper:           #1C1C2A;
  --slate:           #F0EDE8;
  --slate2:          #E2E2EE;
  --muted:           #6B6B8A;
  --border:          rgba(245,168,0,.20);
  --white:           #ffffff;
  --radius:          var(--radius-md);
  --nav-bg:          #F0EDE8;
  --nav-border:      rgba(245,168,0,.15);
  --hero-sub:        #4A4A6A;
  --result-text:     #1C1C2A;
  --field-bg:        #FFFFFF;
  --field-border:    rgba(245,168,0,.25);
  --drawer-bg:       rgba(240,237,232,0.99);
  --shadow:          0 4px 24px rgba(26,26,46,.08);
  --card-bg:         #FFFFFF;
  --row-alt:         #F0EDE8;
}

/* ── DARK THEME ── */
body.dark {
  --ink:             #1A1A2E;
  --paper:           #F0EDE8;
  --slate:           #252540;
  --slate2:          #32324F;
  --muted:           #A8A8C0;
  --border:          rgba(245,168,0,.20);
  --nav-bg:          rgba(26,26,46,0.97);
  --nav-border:      rgba(245,168,0,.18);
  --hero-sub:        #A8A8C0;
  --result-text:     #E2E2EE;
  --field-bg:        #1A1A2E;
  --field-border:    rgba(245,168,0,.20);
  --drawer-bg:       rgba(26,26,46,0.98);
  --shadow:          0 4px 24px rgba(0,0,0,.4);
  --card-bg:         #252540;
  --row-alt:         #1E1E38;
}

*, *::before, *::after { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html { scroll-behavior: smooth; }

body {
  background: #F0EDE8;
  color: #1C1C2A;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

/* ── GLOBAL BACKGROUND ── */
html, body { background-color: #F0EDE8 !important; }
body { background: #F0EDE8 !important; }

/* ── NAVIGATION ── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 1.2rem 4rem;
  border-bottom: 1px solid var(--nav-border);
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: none;
  transition: background 0.3s, border-color 0.3s;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-left: auto;
}

.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
  flex-shrink: 0;
}

.theme-toggle:hover { border-color: var(--enlightenment); color: var(--enlightenment); }
.theme-toggle .fa-sun { display: none; }
.theme-toggle .fa-moon { display: inline; }
body.dark .theme-toggle .fa-sun { display: inline; }
body.dark .theme-toggle .fa-moon { display: none; }

.logo {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--paper);
  display: none !important;
}

.logo span { color: var(--enlightenment); }

.logo-img-link { display: inline-flex; align-items: center; text-decoration: none; }
.logo-img { height: 62px; width: auto; display: block; }
.logo-img-sm { height: 42px; }
.logo-img-wrap { display: inline-flex; align-items: center; }

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--enlightenment); }
.nav-links a.active { color: var(--enlightenment); }
body.dark .nav-links a { color: #ffffff; }
body.dark .nav-links a:hover { color: var(--enlightenment); }

.nav-cta {
  background: var(--enlightenment);
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}

.nav-cta:hover { background: var(--enlightenment-light); transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--paper);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--drawer-bg);
  z-index: 99;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 2.5rem;
  gap: 2rem;
  transition: background 0.3s;
}

.nav-drawer.open { display: flex; animation: fadeUp 0.25s ease; }

.nav-drawer a {
  font-family: var(--font-body);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--paper);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color 0.2s;
}

.nav-drawer a:hover { color: var(--enlightenment); }

.nav-drawer .drawer-cta {
  margin-top: 1rem;
  background: var(--enlightenment);
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
}

.nav-drawer-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

/* ── HERO SECTION ── */
.hero {
  padding: 7rem 4rem 5rem;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--enlightenment);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--enlightenment);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--enlightenment);
}

.hero-sub {
  color: var(--hero-sub);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: var(--enlightenment);
  color: #ffffff;
  border: none;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { background: var(--enlightenment-light); transform: translateY(-2px); }

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--border);
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--radius-md);
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover { border-color: var(--enlightenment); color: var(--enlightenment); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 3rem;
}

.stat {
  background: var(--slate);
  padding: 1.5rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 800;
  color: var(--enlightenment);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 11px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ── HERO APP PREVIEW ── */
.hero-app-preview {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  position: relative;
}

.app-preview-header {
  background: var(--slate2);
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.app-preview-dots { display: flex; gap: 6px; }

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #ff5f57; }
.dot-y { background: #febc2e; }
.dot-g { background: #28c840; }

.app-preview-title {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.app-preview-body { padding: 1.5rem; }

.preview-step {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.step-num {
  background: var(--enlightenment);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-content { flex: 1; }

.step-label {
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--enlightenment);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.step-text { font-size: 13px; color: #d1d5db; line-height: 1.5; }

.step-bar {
  background: var(--void);
  border-radius: 2px;
  height: 5px;
  margin-top: 6px;
  overflow: hidden;
}

.step-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--enlightenment-dark), var(--enlightenment));
  border-radius: 2px;
  animation: fillBar 2.2s ease-out forwards;
}

.step-bar-fill-2 {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--enlightenment-dark), var(--enlightenment));
  border-radius: 2px;
  animation: fillBar 2s ease-out 2.4s forwards;
}

@keyframes fillBar { from { width: 0; } to { width: 100%; } }

.preview-result {
  background: rgba(232,24,90,.08);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem;
  margin-top: 1rem;
}

.result-tag {
  display: inline-block;
  background: var(--enlightenment);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
}

.result-title { font-size: 13px; font-weight: 600; color: var(--paper); margin-bottom: 4px; }
.result-meta { font-size: 11px; color: var(--muted); font-family: var(--font-mono); }

/* ── SECTIONS ── */
.section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 6rem 4rem;
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--enlightenment);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--paper);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.section-title em { color: var(--enlightenment); }
.section-sub { color: var(--muted); font-size: 1rem; max-width: 520px; line-height: 1.7; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 4rem;
}

/* ── PROCESS GRID ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 4rem;
}

.process-card {
  background: var(--slate);
  padding: 2rem;
  transition: background 0.2s;
  position: relative;
}

.process-card:hover { background: var(--slate2); }

.process-num {
  font-family: var(--font-body);
  font-size: 3.5rem;
  font-weight: 800;
  color: rgba(232,24,90,.12);
  line-height: 1;
  margin-bottom: 1.5rem;
}

.process-icon {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--enlightenment);
}

.process-title {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  color: var(--paper);
}

.process-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── DECISION STUDIO APP ── */
#decision-studio {
  background: var(--slate);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.app-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 5rem 4rem;
  min-height: 600px;
}

#email-gate {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.app-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ── PROGRESS BAR ── */
.progress-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
  position: relative;
}

.progress-bar::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: var(--border);
  z-index: 0;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.progress-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--void);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 8px;
  transition: all 0.3s;
}

.progress-step.active .progress-dot {
  background: var(--enlightenment);
  border-color: var(--enlightenment);
  color: #fff;
  font-weight: 600;
}

.progress-step.done .progress-dot {
  background: var(--dojo);
  border-color: var(--dojo);
  color: var(--void);
}

.progress-step-label {
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  text-align: center;
}

.progress-step.active .progress-step-label { color: var(--enlightenment); }

/* ── APP PANELS & FORMS ── */
.app-panel {
  display: none;
  animation: fadeUp 0.4s ease;
}

.app-panel.active { display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--paper);
  margin-bottom: 0.4rem;
}

.panel-sub { font-size: 14px; color: var(--muted); margin-bottom: 2rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 6px; }

.field label {
  font-size: 11px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.field input, .field select, .field textarea {
  background: var(--field-bg);
  border: 1px solid var(--field-border);
  color: var(--paper);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s, background 0.3s;
  resize: vertical;
}

.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--enlightenment);
  box-shadow: 0 0 0 3px rgba(245,168,0,.12);
}

.field select option { background: var(--void); }

.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  border: 1px solid var(--border);
  color: var(--muted);
  background: transparent;
  padding: 6px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.2s;
}

.chip:hover { border-color: var(--enlightenment); color: var(--enlightenment); }
.chip.selected { background: var(--enlightenment); color: #fff; border-color: var(--enlightenment); }

.panel-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
}

/* ── AI THINKING & RESULTS ── */
.ai-thinking {
  display: none;
  text-align: center;
  padding: 3rem 0;
}

.ai-thinking.show { display: block; }

.spinner {
  width: 48px;
  height: 48px;
  border: 3px solid var(--border);
  border-top-color: var(--enlightenment);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1.5rem;
}

@keyframes spin { to { transform: rotate(360deg); } }

.thinking-label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--enlightenment);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.result-container {
  display: none;
}

.result-container.show { display: block; animation: fadeUp 0.5s ease; }

.result-card {
  background: var(--void);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.result-card-header {
  background: rgba(232,24,90,.07);
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.result-card-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--paper);
}

.result-card-body { padding: 1.5rem; }

.result-text {
  font-size: 14px;
  color: var(--result-text);
  line-height: 1.75;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1rem;
}

.metric-item {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1rem;
  text-align: center;
}

.metric-value {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--enlightenment);
}

.metric-key {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 4px;
}

.action-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── USE CASES ── */
.usecase-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.usecase-card {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  transition: all 0.25s;
  cursor: default;
}

.usecase-card:hover {
  border-color: var(--enlightenment-dark);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.uc-sector {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--enlightenment);
  margin-bottom: 1rem;
}

.uc-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 0.5rem; color: var(--paper); }
.uc-desc { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
.uc-roi {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dojo);
  letter-spacing: 0.06em;
}

/* ── CONTACT FORM ── */
.contact-form-wrap {
  max-width: 640px;
  margin: 2.5rem auto 0;
  text-align: left;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 1.1rem;
}

.contact-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  background: var(--slate);
  border: 1px solid var(--border);
  color: var(--paper);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: var(--radius-md);
  outline: none;
  width: 100%;
  transition: border-color 0.2s, background 0.3s;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--muted);
  opacity: 0.7;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: var(--enlightenment);
  box-shadow: 0 0 0 3px rgba(245,168,0,.12);
}

.contact-field select option { background: var(--void); }
.contact-field textarea { resize: vertical; min-height: 110px; }

.contact-submit {
  width: 100%;
  background: var(--enlightenment);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-submit:hover { background: var(--enlightenment-light); transform: translateY(-2px); }
.contact-submit:active { transform: translateY(0); }

.contact-success {
  display: none;
  text-align: center;
  padding: 2.5rem 1rem;
}

.contact-success .success-icon {
  width: 52px;
  height: 52px;
  background: var(--enlightenment);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  color: #fff;
}

.contact-success h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--paper);
  margin-bottom: 0.5rem;
}

.contact-success p { color: var(--muted); font-size: 14px; margin: 0; }

/* ── MODALS ── */
.contact-modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.55); z-index: 500;
  align-items: center; justify-content: center;
  padding: 1.5rem; backdrop-filter: blur(4px);
}

.contact-modal-overlay.open { display: flex; animation: fadeIn 0.2s ease; }

@keyframes fadeIn { from{opacity:0} to{opacity:1} }

.contact-modal {
  background: var(--void); border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem; width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  animation: modalSlideUp 0.25s ease;
}

@keyframes modalSlideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

.contact-modal-header {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 0.75rem;
}

.contact-modal-close {
  background: none; border: 1px solid var(--border); color: var(--muted);
  width: 30px; height: 30px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; cursor: pointer;
  font-size: 12px; transition: all 0.2s; flex-shrink: 0;
}

.contact-modal-close:hover { border-color: var(--enlightenment); color: var(--enlightenment); }

/* ── STRIPE MODAL ── */
.stripe-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.65); z-index: 900;
  align-items: center; justify-content: center;
  padding: 1.5rem; backdrop-filter: blur(6px);
}

.stripe-overlay.open { display: flex; animation: fadeIn 0.2s ease; }

.stripe-modal-wrap { position: relative; width: 100%; max-width: 420px; }

.stripe-close {
  position: absolute; top: -44px; right: 0;
  background: var(--enlightenment); border: none; color: #fff;
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; z-index: 10; transition: all 0.2s;
}

.stripe-close:hover { background: var(--enlightenment-light); transform: scale(1.1); }

.stripe-modal {
  background: var(--void); border: 1px solid var(--border); border-radius: 14px;
  padding: 2rem; box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  animation: modalSlideUp 0.25s ease;
}

.stripe-modal-eyebrow {
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--dojo); margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.4rem;
}

.stripe-modal-plan {
  font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.3rem;
}

.stripe-modal-price {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 800;
  color: var(--paper); letter-spacing: -0.03em; line-height: 1; margin-bottom: 1.25rem;
}

.stripe-modal-price span { font-size: 1rem; font-weight: 400; color: var(--muted); letter-spacing: 0; }

.stripe-modal-divider { border: none; border-top: 1px solid var(--border); margin: 1.25rem 0; }

.stripe-modal-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 0; }

.stripe-modal-features li { display: flex; align-items: center; gap: 0.6rem; font-size: 13.5px; color: var(--paper); }
.stripe-modal-features li i { color: var(--dojo); font-size: 11px; flex-shrink: 0; }

.stripe-modal-cta {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  width: 100%; background: var(--enlightenment); color: #fff; border: none;
  padding: 1rem; font-family: var(--font-body); font-size: 15px; font-weight: 700;
  border-radius: var(--radius-md); cursor: pointer; text-decoration: none;
  transition: all 0.2s; margin-bottom: 1rem;
}

.stripe-modal-cta:hover { background: var(--enlightenment-light); transform: translateY(-1px); text-decoration: none; }

.stripe-modal-note {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-family: var(--font-mono); font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--muted);
}

/* ── VIDEO MODAL ── */
.video-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.25s ease;
  padding: 2rem;
}

.video-overlay.open { display: flex; }

.video-modal-wrap {
  position: relative;
  width: 90%;
  max-width: 860px;
}

.video-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: var(--enlightenment);
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  z-index: 10;
  transition: background 0.2s, transform 0.15s;
}

.video-close:hover { background: var(--enlightenment-light); transform: scale(1.1); }

.video-modal {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7);
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn { from { transform: scale(0.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }

.video-modal iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── ORG CONTEXT MODAL ── */
.org-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.2s ease;
}

.org-modal-overlay.open { display: flex; }

.org-modal {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  animation: scaleIn 0.25s ease;
}

.org-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.org-modal-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--paper);
}

.org-modal-close {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.org-modal-close:hover { color: var(--enlightenment); }

.org-beacon {
  width: 9px; height: 9px; border-radius: 50%;
  display: inline-block; flex-shrink: 0;
}

.org-beacon.green  { background: #059669; box-shadow: 0 0 0 0 rgba(5,150,105,0.5);  animation: beaconGreen 2s ease-in-out infinite; }
.org-beacon.amber  { background: #f59e0b; box-shadow: 0 0 0 0 rgba(245,158,11,0.5); animation: beaconAmber 2s ease-in-out infinite; }
.org-beacon.red    { background: #ef4444; box-shadow: 0 0 0 0 rgba(239,68,68,0.5);  animation: beaconRed   2s ease-in-out infinite; }

@keyframes beaconGreen { 0%,100%{box-shadow:0 0 0 0 rgba(5,150,105,0.5)}   50%{box-shadow:0 0 0 5px rgba(5,150,105,0)} }
@keyframes beaconAmber { 0%,100%{box-shadow:0 0 0 0 rgba(245,158,11,0.5)} 50%{box-shadow:0 0 0 5px rgba(245,158,11,0)} }
@keyframes beaconRed   { 0%,100%{box-shadow:0 0 0 0 rgba(239,68,68,0.5)}  50%{box-shadow:0 0 0 5px rgba(239,68,68,0)} }

.org-context-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.org-context-btn:hover { border-color: var(--enlightenment); color: var(--enlightenment); }

/* ── DEMO SLIDES ── */
.demo-slide {
  display: none;
  animation: slideIn 0.45s ease;
}

.demo-slide.active { display: block; }

@keyframes slideIn { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
@keyframes popIn { from { transform:scale(0); opacity:0; } to { transform:scale(1); opacity:1; } }

.demo-body-fixed {
  padding: 1.2rem 1.5rem;
  height: 280px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.demo-match-card {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0.6rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.2s;
  position: relative;
  overflow: visible;
}

.demo-match-card:hover { border-color: var(--enlightenment); transform: translateX(3px); }
.demo-match-card.selected { border-color: var(--enlightenment); background: rgba(232,24,90,.06); }
.demo-match-card.hovered {
  border-color: rgba(232,24,90,.6);
  background: rgba(232,24,90,.06);
}

.demo-match-score {
  background: var(--enlightenment); color: #fff;
  font-family: var(--font-mono); font-size: 9px; font-weight: 700;
  padding: 3px 7px; border-radius: 3px; flex-shrink: 0; white-space: nowrap;
}

.demo-match-body { flex: 1; }
.demo-match-title { font-size: 11px; font-weight: 600; color: var(--paper); margin-bottom: 2px; }
.demo-match-sub { font-size: 10px; color: var(--muted); font-family: var(--font-mono); }

#demo-cursor-float {
  position: absolute;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24'%3E%3Cpath fill='%23D33479' stroke='white' stroke-width='1' d='M4 0l16 12-7 1-4 8z'/%3E%3C/svg%3E") no-repeat center/contain;
  pointer-events: none;
  opacity: 0;
  z-index: 10;
  transition: top 0.5s cubic-bezier(0.25,0.46,0.45,0.94), left 0.5s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.2s;
}

@keyframes cardClick {
  0%   { transform: scale(1); }
  40%  { transform: scale(0.97); }
  100% { transform: scale(1); }
}

.demo-match-card.clicking { animation: cardClick 0.25s ease forwards; }

.demo-chat-msg {
  font-size: 11px; line-height: 1.5; padding: 6px 10px;
  border-radius: 8px; max-width: 90%; opacity: 0;
  animation: fadeUp 0.4s ease forwards;
}

.demo-chat-ai {
  background: var(--slate2); color: var(--paper);
  border-radius: 2px 8px 8px 8px; align-self: flex-start;
}

.demo-chat-user {
  background: var(--enlightenment); color: #fff;
  border-radius: 8px 2px 8px 8px; align-self: flex-end; margin-left: auto;
}

.demo-chat-submit {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  opacity: 0; animation: fadeUp 0.4s ease forwards;
}

.demo-chat-submit span { font-size: 10px; color: var(--muted); font-family: var(--font-mono); }

.demo-submit-btn {
  background: var(--enlightenment); color: #fff; border: none;
  padding: 7px 14px; font-family: var(--font-body);
  font-size: 11px; font-weight: 600; border-radius: 3px;
  cursor: pointer; transition: background 0.2s;
}

.demo-submit-btn:hover { background: var(--enlightenment-light); }

.demo-metric {
  background: var(--slate); border: 1px solid var(--border);
  border-radius: 4px; padding: 0.6rem; text-align: center;
}


/* ══════════════════════════════════════════════════
     LEGAL PAGES STYLES (Cancellation, Privacy, Terms)
  ══════════════════════════════════════════════════ */

.plan-table {
  width: 100%; border-collapse: collapse; margin: 2rem 0 3rem 0;
}
.plan-table thead th {
  background: var(--slate); color: var(--paper); text-align: left;
  padding: 1rem; font-weight: 700; border: 1px solid var(--border);
}
.plan-table tbody tr:nth-child(odd) { background: rgba(0,0,0,0.02); }
.plan-table td {
  padding: 1rem; border: 1px solid var(--border); color: var(--muted);
}
.plan-table td strong { color: var(--paper); font-weight: 600; }

.callout {
  background: rgba(245,168,0,.06); border: 1px solid rgba(245,168,0,.20);
  border-left: 4px solid var(--enlightenment); border-radius: 6px; padding: 1.25rem;
  margin: 2rem 0; line-height: 1.75;
}
.callout strong { color: var(--paper); font-weight: 600; }
.callout.green {
  background: rgba(13,184,122,.08); border-color: rgba(13,184,122,.20);
  border-left-color: #0DB87A;
}
.callout.amber {
  background: rgba(245,168,0,.08); border-color: rgba(245,168,0,.22);
  border-left-color: var(--enlightenment);
}

.back-link {
  font-family: var(--font-mono); font-size: 12px; color: var(--muted);
  text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
  transition: color 0.2s;
}
.back-link:hover { color: var(--enlightenment); }

.last-updated {
  font-family: var(--font-mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.06em; margin-bottom: 3rem;
}

.divider {
  border: none; border-top: 1px solid var(--border); margin: 3rem 0;
}

.container {
  max-width: 820px; margin: 0 auto; padding: 5rem 2rem 6rem;
}

.eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--enlightenment); margin-bottom: 1rem;
}

h1 {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.1; letter-spacing: -0.02em; color: var(--paper); margin-bottom: 0.5rem;
}

h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 1.1rem;
  color: var(--paper); margin-bottom: 0.75rem; margin-top: 2.5rem;
}

h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  color: var(--paper); margin-bottom: 0.5rem;
}

h4, h5, h6 {
  font-family: var(--font-display); font-weight: 700;
  color: var(--paper); margin-bottom: 0.5rem;
}

p { color: var(--muted); font-size: 15px; margin-bottom: 1rem; line-height: 1.75; }

ul { color: var(--muted); font-size: 15px; padding-left: 1.5rem; margin-bottom: 1rem; }
ul li { margin-bottom: 0.5rem; }

a { color: var(--enlightenment); text-decoration: none; }
a:hover { text-decoration: underline; }

strong { color: var(--paper); font-weight: 600; }

nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 4rem; border-bottom: 1px solid var(--border);
  background: var(--nav-bg); position: sticky; top: 0; z-index: 100;
  backdrop-filter: none;
}

.logo { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  letter-spacing: -0.02em; color: var(--paper); text-decoration: none;
}
.logo span { color: var(--enlightenment); }

footer {
  border-top: 1px solid var(--border); padding: 2rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--muted); font-family: var(--font-mono);
}
footer a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--enlightenment); }

@media (max-width: 700px) {
  nav { padding: 1rem 1.5rem; }
  .container { padding: 3rem 1.5rem 4rem; }
  footer { flex-direction: column; gap: 0.75rem; text-align: center; padding: 1.5rem; }
}


/* ══════════════════════════════════════════════════
     SUPPORT PAGE STYLES
  ══════════════════════════════════════════════════ */

.support-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin: 2rem 0;
}

.support-card {
  background: var(--slate); border: 1px solid var(--border); border-radius: 10px;
  padding: 1.75rem; text-align: center; transition: transform 0.2s, box-shadow 0.2s;
}
.support-card:hover {
  transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.support-card-icon {
  width: 48px; height: 48px; background: rgba(245,168,0,.1);
  border: 1px solid rgba(245,168,0,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem; font-size: 1.2rem; color: var(--enlightenment);
}

.support-card h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  color: var(--paper); margin-bottom: 0.4rem;
}

.support-card p {
  font-size: 13px; color: var(--muted); margin-bottom: 0.75rem;
}

.support-card .card-link {
  display: inline-block; font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em; color: var(--enlightenment);
  border: 1px solid rgba(245,168,0,.3); border-radius: 20px;
  padding: 4px 14px; transition: all 0.2s;
}
.support-card .card-link:hover {
  background: var(--enlightenment); color: #fff; text-decoration: none;
}

.response-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(13,184,122,0.08); border: 1px solid rgba(13,184,122,0.2);
  color: #0DB87A; font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 14px;
  border-radius: 20px; margin-bottom: 2.5rem;
}

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 0; cursor: pointer; font-size: 14px; font-weight: 600;
  color: var(--paper); user-select: none;
}
.faq-q:hover { color: var(--enlightenment); }

.faq-icon {
  font-size: 12px; color: var(--muted); transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--enlightenment); }

.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s;
  font-size: 14px; color: var(--muted); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 1.1rem; }

@media (max-width: 700px) {
  .support-cards { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════════════
     STUDIO PAGE STYLES
  ══════════════════════════════════════════════════ */

/* ── STUDIO HEADER ── */
.studio-header {
  position: fixed; top: 0; left: 0; right: 0; height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; border-bottom: 1px solid var(--border);
  background: var(--void); z-index: 50; box-sizing: border-box;
}
.header-right { display: flex; align-items: center; gap: 1rem; }
.close-btn { background: none; border: 1px solid var(--border); color: var(--muted);
  padding: 0.4rem 1rem; font-family: var(--font-display); font-size: 12px;
  border-radius: var(--radius-md); cursor: pointer; transition: all 0.2s;
  display: flex; align-items: center; gap: 0.4rem; }
.close-btn:hover { border-color: var(--enlightenment); color: var(--enlightenment); }

/* ── STUDIO BODY ── */
.studio-body {
  position: fixed; top: 133px; bottom: 72px; left: 0; right: 0;
  overflow-y: auto; overflow-x: hidden; padding: 2rem 5%;
  box-sizing: border-box; scrollbar-width: none;
}
.studio-body::-webkit-scrollbar { display: none; }

/* ── STUDIO FOOTER ── */
.studio-footer {
  position: fixed; bottom: 0; left: 0; right: 0; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; background: var(--void); border-top: 1px solid var(--border);
  z-index: 50; box-sizing: border-box;
}

/* ── PROGRESS BAR ── */
.progress-bar { display: flex; align-items: center; margin-bottom: 3rem; position: relative; }
.progress-bar::before { content: ''; position: absolute; top: 14px; left: 14px; right: 14px;
  height: 1px; background: var(--border); z-index: 0; }
.progress-step { display: flex; flex-direction: column; align-items: center; flex: 1;
  position: relative; z-index: 1; cursor: pointer; }
.progress-dot { width: 28px; height: 28px; border-radius: 50%; background: var(--void);
  border: 2px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-family: 'DM Mono',monospace; font-size: 10px; color: var(--muted);
  margin-bottom: 6px; transition: all 0.3s; }
.progress-step.active .progress-dot { background: var(--enlightenment); border-color: var(--enlightenment); color: #fff; font-weight: 600; }
.progress-step.done .progress-dot { background: var(--dojo); border-color: var(--dojo); color: var(--void); }
.progress-step-label { font-family: 'DM Mono',monospace; font-size: 9px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted); text-align: center; }
.progress-step.active .progress-step-label { color: var(--enlightenment); }

/* ── APP PANELS ── */
.app-panel { display: none; animation: fadeUp 0.35s ease; }
.app-panel.active { display: block; }
@keyframes fadeUp { from { opacity:0; transform:translateY(12px); } to { opacity:1; transform:translateY(0); } }
.panel-title { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem;
  color: var(--paper); margin-bottom: 0.4rem; letter-spacing: -0.02em; }
.panel-sub { font-size: 14px; color: var(--muted); margin-bottom: 2rem; }

/* ── FORMS ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 11px; font-family: 'DM Mono',monospace; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted); }
.field input, .field select, .field textarea {
  background: var(--field-bg); border: 1px solid var(--border); color: var(--paper);
  padding: 0.75rem 1rem; font-family: var(--font-display); font-size: 14px;
  border-radius: var(--radius-md); outline: none; transition: border-color 0.2s; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--enlightenment); }
.field select option { background: var(--void); }

/* ── CHIPS ── */
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { border: 1px solid var(--border); color: var(--muted); background: transparent;
  padding: 6px 14px; font-family: 'DM Mono',monospace; font-size: 11px;
  letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer;
  border-radius: 20px; transition: all 0.2s; }
.chip:hover { border-color: var(--enlightenment); color: var(--enlightenment); }
.chip.selected { background: var(--enlightenment); color: #fff; border-color: var(--enlightenment); }

/* ── BUTTONS ── */
.btn-primary { background: var(--enlightenment); color: #fff; border: none; padding: 0.85rem 2rem;
  font-family: var(--font-display); font-size: 14px; font-weight: 600; cursor: pointer;
  border-radius: var(--radius-md); transition: all 0.2s; text-decoration: none; display: inline-block; }
.btn-primary:hover { background: var(--enlightenment-light); }
.btn-ghost { background: transparent; color: var(--paper); border: 1px solid var(--border);
  padding: 0.85rem 2rem; font-family: var(--font-display); font-size: 14px; font-weight: 500;
  cursor: pointer; border-radius: var(--radius-md); transition: all 0.2s; display: inline-block; }
.btn-ghost:hover { border-color: var(--enlightenment); color: var(--enlightenment); }

/* ── OTP ── */
.otp-wrap { max-width: 440px; margin: 2rem auto; text-align: center;
  padding: 2.5rem; background: var(--slate); border: 1px solid var(--border);
  border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }

/* ── AI THINKING ── */
.ai-thinking { display: none; text-align: center; padding: 3rem 0; }
.ai-thinking.show { display: block; }
.spinner { width: 48px; height: 48px; border: 3px solid var(--border);
  border-top-color: var(--enlightenment); border-radius: 50%;
  animation: spin 0.8s linear infinite; margin: 0 auto 1.5rem; }
@keyframes spin { to { transform: rotate(360deg); } }
.thinking-label { font-family: 'DM Mono',monospace; font-size: 12px; color: var(--enlightenment);
  letter-spacing: 0.08em; text-transform: uppercase; }

/* ── RESULT CARDS ── */
.result-container { display: none; }
.result-container.show { display: block; animation: fadeUp 0.5s ease; }
.result-card { background: var(--void); border: 1px solid var(--border); border-radius: 6px;
  overflow: hidden; margin-bottom: 1rem; }
.result-card-header { background: rgba(232,24,90,.07); padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.result-card-title { font-weight: 600; font-size: 14px; color: var(--paper); }
.result-card-body { padding: 1.5rem; }
.result-text { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* ── METRICS GRID ── */
.metrics-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin-top: 1rem; }
.metric-item { background: var(--slate); border: 1px solid var(--border); border-radius: 4px;
  padding: 1rem; text-align: center; }
.metric-value { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--enlightenment); }
.metric-key { font-family: 'DM Mono',monospace; font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--muted); margin-top: 4px; }

/* ── ORG BEACON (Pulsing dots) ── */
.org-beacon { width: 9px; height: 9px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
.org-beacon.green  { background: #059669; animation: beaconGreen 2s ease-in-out infinite; }
.org-beacon.amber  { background: #f59e0b; animation: beaconAmber 2s ease-in-out infinite; }
.org-beacon.red    { background: #ef4444; animation: beaconRed   2s ease-in-out infinite; }
@keyframes beaconGreen { 0%,100% { box-shadow:0 0 0 0 rgba(5,150,105,0.5); }   50% { box-shadow:0 0 0 5px rgba(5,150,105,0); } }
@keyframes beaconAmber { 0%,100% { box-shadow:0 0 0 0 rgba(245,158,11,0.5); } 50% { box-shadow:0 0 0 5px rgba(245,158,11,0); } }
@keyframes beaconRed   { 0%,100% { box-shadow:0 0 0 0 rgba(239,68,68,0.5); }  50% { box-shadow:0 0 0 5px rgba(239,68,68,0); } }

/* ── ORG CONTEXT BUTTON ── */
.org-context-btn { background: none; border: 1px solid var(--border); color: var(--muted);
  font-family: 'DM Mono',monospace; font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.08em; padding: 4px 12px; border-radius: 20px; cursor: pointer;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 5px; }
.org-context-btn:hover { border-color: var(--enlightenment); color: var(--enlightenment); }

/* ── ORG MODAL ── */
.org-modal-overlay { display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.6); z-index: 200; align-items: center;
  justify-content: center; padding: 1.5rem; }
.org-modal-overlay.open { display: flex; }
.org-modal { background: var(--slate); border: 1px solid var(--border); border-radius: 10px;
  padding: 2rem; width: 100%; max-width: 700px; max-height: 90vh; overflow-y: auto;
  overflow-x: hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.3); box-sizing: border-box; }
.org-modal * { box-sizing: border-box; }
.org-modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.6rem; }
.org-modal-title { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--paper); }
.org-modal-close { background: none; border: none; color: var(--muted); font-size: 1.1rem;
  cursor: pointer; padding: 4px; transition: color 0.2s; }
.org-modal-close:hover { color: var(--enlightenment); }

/* ── TOAST ── */
.toast { position: fixed; bottom: 5rem; right: 2rem; background: var(--dojo); color: var(--void);
  padding: 0.75rem 1.5rem; border-radius: 4px; font-family: 'DM Mono',monospace; font-size: 12px;
  font-weight: 500; transform: translateY(100px); opacity: 0; transition: all 0.3s; z-index: 999; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ── FULLSCREEN PROMPT ── */
#fs-prompt {
  display: none; position: fixed; top: 1rem; left: 50%; transform: translateX(-50%);
  background: #0a0c14; color: #fff;
  padding: 0.65rem 1rem; z-index: 200;
  align-items: center; gap: 0.75rem;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  border-radius: 8px; border: 1px solid rgba(232,24,90,.4);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  white-space: nowrap;
}
#fs-prompt button {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.3);
  color: #fff; padding: 0.3rem 0.75rem; border-radius: 3px;
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
#fs-prompt button:hover { background: rgba(255,255,255,0.25); }

/* ── MOBILE STUDIO ── */
@media (max-width: 768px) {
  .studio-header { padding: 0 4%; height: 56px; }
  .close-btn-label { display: none; }
  .close-btn { width: 32px; height: 32px; padding: 0; display: flex; align-items: center;
    justify-content: center; border-radius: var(--radius-md); font-size: 13px; }
  .studio-body { top: 122px; bottom: 64px; padding: 1.25rem 4%; }
  .studio-footer { height: 64px; padding: 0 4%; }
  .studio-footer .btn-ghost,
  .studio-footer .btn-primary { min-width: 48px; width: 48px; height: 40px; padding: 0;
    font-size: 22px; line-height: 40px; text-align: center; border-radius: 8px; flex-shrink: 0; }
  
  .progress-bar { margin-bottom: 1.25rem; }
  .progress-dot { width: 24px; height: 24px; font-size: 9px; margin-bottom: 4px; }
  .progress-bar::before { top: 12px; }
  .progress-step-label { font-size: 7px; }
  .panel-title { font-size: 1.1rem; }
  .panel-sub { font-size: 13px; margin-bottom: 1rem; }
  .form-grid { grid-template-columns: 1fr; gap: 0.75rem; }
  .field input, .field select, .field textarea { font-size: 16px; padding: 0.65rem 0.85rem; }
  .field textarea { min-height: 80px; }
  .chip { padding: 5px 12px; font-size: 10px; }
  .metrics-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .metric-value { font-size: 1.4rem; }
  .otp-wrap { padding: 1.5rem 1.25rem; margin: 1rem auto; }

  .org-modal-overlay {
    padding: 0;
    align-items: flex-end;
  }
  .org-modal {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    border-radius: 16px 16px 0 0;
    max-height: 88vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 1.5rem;
    margin: 0;
  }
  .org-modal .form-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .org-modal .field,
  .org-modal .field.form-full {
    width: 100%;
    grid-column: unset;
  }
  .org-modal .field input,
  .org-modal .field select {
    width: 100%;
    min-width: 0;
  }

  #fs-prompt { display: none !important; }
}

.demo-metric-val {
  font-family: var(--font-body); font-weight: 800;
  font-size: 1.1rem; color: var(--enlightenment);
}

.demo-metric-key {
  font-family: var(--font-mono); font-size: 8px;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-top: 2px;
}

.demo-dots {
  display: flex; justify-content: center; gap: 6px;
  padding: 8px 0 4px;
  border-top: 1px solid var(--border);
  background: var(--slate);
}

.demo-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: background 0.2s;
}

.demo-dot.active { background: var(--enlightenment); }

/* ── CHAT UI ── */
.chat-row {
  display: flex;
  align-items: flex-end;
  gap: 7px;
}

.chat-row-user { flex-direction: row; justify-content: flex-end; }
.chat-row-ai { flex-direction: row; }

.chat-avatar {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1.5px solid rgba(156,163,175,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 9px; font-weight: 700;
  background: var(--slate2);
}

.chat-avatar-uc { background: var(--void); }
.uc-u { color: var(--paper); font-family: var(--font-body); font-weight: 800; }
.uc-c { color: var(--enlightenment); font-family: var(--font-body); font-weight: 800; }
.chat-avatar-user { background: var(--slate2); }

.chat-bubble {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 10.5px;
  line-height: 1.5;
  max-width: 200px;
  word-break: break-word;
}

.chat-bubble-ai {
  background: var(--slate2);
  color: var(--paper);
  border-radius: 3px 10px 10px 10px;
  border: 1px solid var(--border);
}

.chat-bubble-user {
  background: var(--enlightenment);
  color: #fff;
  border-radius: 10px 3px 10px 10px;
}

.chat-bubble-confirm {
  background: rgba(5,150,105,0.1);
  color: var(--paper);
  border: 1px solid rgba(5,150,105,0.3);
  border-radius: 3px 10px 10px 10px;
}

.chat-cursor {
  display: inline-block;
  color: var(--enlightenment);
  font-weight: 300;
  animation: blink 0.7s step-end infinite;
  margin-left: 1px;
}

.chat-cursor.hidden { display: none; }

@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

/* ── CTA STRIP ── */
.cta-strip {
  border-top: 1px solid var(--border);
  padding: 6rem 4rem;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(232,24,90,.08) 0%, transparent 70%);
}

.cta-strip h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.cta-strip h2 em { color: var(--enlightenment); }
.cta-strip p { color: var(--muted); font-size: 1rem; margin-bottom: 2.5rem; }

/* ── PRICING ── */
.pricing-hero { padding: 3.5rem 4rem 2.5rem; text-align: center; max-width: 780px; margin: 0 auto; }

.pricing-tag { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(232,24,90,.08); border: 1px solid rgba(232,24,90,.2); color: var(--enlightenment); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 14px; border-radius: 20px; }

.plans-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; max-width: 1140px; margin: 0 auto 3rem; padding: 0 4rem; }

.plan-card { background: var(--card-bg); border: 1px solid var(--border); border-radius: 10px; padding: 2rem; display: flex; flex-direction: column; position: relative; transition: transform 0.2s, box-shadow 0.2s; }

.plan-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px rgba(0,0,0,0.12); }

.plan-card.featured { border-color: var(--enlightenment); box-shadow: 0 0 0 2px var(--enlightenment), 0 20px 50px rgba(232,24,90,.12); }

.plan-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--enlightenment); color: #fff; font-family: var(--font-mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 3px 14px; border-radius: 20px; white-space: nowrap; }

.plan-name { font-family: var(--font-mono); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 0.4rem; }

.plan-price { font-family: var(--font-body); font-size: 2.6rem; font-weight: 800; color: var(--paper); letter-spacing: -0.03em; line-height: 1; margin-bottom: 0.2rem; }

.plan-price span { font-size: 1rem; font-weight: 500; color: var(--muted); letter-spacing: 0; }

.plan-tagline { font-size: 13px; color: var(--muted); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; flex: 1; margin-bottom: 1.75rem; }

.plan-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 13.5px; color: var(--paper); line-height: 1.5; }

.plan-features li .fi { font-size: 12px; margin-top: 3px; flex-shrink: 0; }
.plan-features li.check .fi { color: var(--dojo); }
.plan-features li.dash .fi { color: var(--muted); opacity: 0.4; }

.plan-cta { display: block; text-align: center; padding: 0.85rem 1rem; font-family: var(--font-body); font-size: 14px; font-weight: 700; border-radius: var(--radius-md); cursor: pointer; text-decoration: none; transition: all 0.2s; border: none; }

.plan-cta.primary { background: var(--enlightenment); color: #fff; }
.plan-cta.primary:hover { background: var(--enlightenment-light); transform: translateY(-1px); }
.plan-cta.ghost { background: transparent; color: var(--paper); border: 1px solid var(--border); }
.plan-cta.ghost:hover { border-color: var(--enlightenment); color: var(--enlightenment); }

.plan-consultation { margin-top: 1rem; text-align: center; font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--enlightenment); }

/* ── COMPARISON TABLE ── */
.compare-wrap { max-width: 1140px; margin: 0 auto 2rem; padding: 0 4rem; }

.compare-heading { text-align: center; margin-bottom: 2.5rem; }

.compare-heading h2 { font-family: var(--font-display); font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 800; letter-spacing: -0.02em; color: var(--paper); margin-bottom: 0.4rem; }

.compare-heading p { color: var(--muted); font-size: 14px; }

.compare-table { width: 100%; border-collapse: collapse; border: 1px solid var(--border); border-radius: 10px; overflow: hidden; }

.compare-table thead th { background: var(--slate2); padding: 1.2rem 1.5rem; text-align: left; }

.compare-table thead th:first-child { width: 32%; }
.compare-table thead th.th-plan { text-align: center; }
.compare-table thead th.th-featured { background: rgba(232,24,90,.08); border-top: 2px solid var(--enlightenment); }

.th-name { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 2px; }

.th-price-val { font-family: var(--font-body); font-size: 1.4rem; font-weight: 800; color: var(--paper); letter-spacing: -0.02em; }

.th-badge { display: inline-block; background: var(--enlightenment); color: #fff; font-family: var(--font-mono); font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 2px 8px; border-radius: 10px; margin-left: 6px; vertical-align: middle; }

.compare-table tbody tr { border-bottom: 1px solid var(--border); }
.compare-table tbody tr:last-child { border-bottom: none; }
.compare-table tbody tr:nth-child(even) { background: var(--row-alt); }
.compare-table tbody tr.cta-row { background: var(--card-bg) !important; }

.compare-table tbody td { padding: 0.9rem 1.5rem; font-size: 13.5px; color: var(--muted); vertical-align: middle; }
.compare-table tbody td.row-label { color: var(--paper); font-weight: 500; font-size: 13px; }
.compare-table tbody td.col-center { text-align: center; }
.compare-table tbody td.col-featured { background: rgba(232,24,90,.04); text-align: center; }

.check-icon { color: var(--dojo); font-size: 14px; }
.dash-icon { color: var(--muted); opacity: 0.35; font-size: 14px; }
.strong-val { font-weight: 700; color: var(--paper); }

.tag-val { display: inline-block; background: rgba(232,24,90,.1); color: var(--enlightenment); font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.06em; padding: 2px 8px; border-radius: 10px; }

.tbl-cta { display: inline-block; padding: 0.6rem 1.4rem; font-family: var(--font-body); font-size: 13px; font-weight: 700; border-radius: var(--radius-md); cursor: pointer; text-decoration: none; transition: all 0.2s; }

.tbl-cta.primary { background: var(--enlightenment); color: #fff; }
.tbl-cta.primary:hover { background: var(--enlightenment-light); }
.tbl-cta.ghost { background: transparent; color: var(--paper); border: 1px solid var(--border); }
.tbl-cta.ghost:hover { border-color: var(--enlightenment); color: var(--enlightenment); }

/* ── FAQ ── */
.faq-wrap { max-width: 760px; margin: 0 auto; padding: 0 4rem; }

.faq-heading { text-align: center; margin-bottom: 2.5rem; }

.faq-heading h2 { font-family: var(--font-display); font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 800; letter-spacing: -0.02em; color: var(--paper); margin-bottom: 0.3rem; }

.faq-heading p { color: var(--muted); font-size: 14px; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; cursor: pointer; font-size: 14px; font-weight: 600; color: var(--paper); user-select: none; }

.faq-q:hover { color: var(--enlightenment); }

.faq-icon { font-size: 12px; color: var(--muted); transition: transform 0.25s; flex-shrink: 0; }

.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--enlightenment); }
.faq-item.open .faq-q { color: var(--enlightenment); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s; font-size: 13.5px; color: var(--muted); line-height: 1.75; }

.faq-item.open .faq-a { max-height: 220px; padding-bottom: 1.1rem; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
  font-family: var(--font-mono);
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--dojo);
  color: var(--void);
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.3s;
  z-index: 999;
}

.toast.show { transform: translateY(0); opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; gap: 1rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-right { gap: 0.5rem; }
  .nav-right .theme-toggle { order: 2; }
  .nav-hamburger { display: flex; order: 3; }
  .nav-right { display: flex; align-items: center; }

  .hero { grid-template-columns: 1fr; padding: 3rem 1.5rem 2rem; gap: 2.5rem; }
  .hero-app-preview { display: none; }
  .hero-actions { flex-wrap: nowrap; gap: 0.6rem; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { padding: 0.65rem 1rem; font-size: 13px; flex: 1; text-align: center; }

  .section { padding: 3.5rem 1.5rem; }
  #how-it-works .section-title { font-size: 1.5rem; max-width: 100% !important; }
  #how-it-works > div:first-child { grid-template-columns: 1fr !important; gap: 0.75rem; }

  .process-grid { grid-template-columns: 1fr; }
  .app-container { padding: 3rem 1.5rem; }
  .form-grid { grid-template-columns: 1fr; }
  .usecase-list { grid-template-columns: 1fr; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .divider { margin: 0 1.5rem; }
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2rem 1.5rem; }
  .cta-strip { padding: 4rem 1.5rem; }
  .hero-stats { grid-template-columns: 1fr 1fr 1fr; }
  .plans-grid { grid-template-columns: 1fr; padding: 0 1.5rem; gap: 2rem; }
  .compare-wrap { padding: 0 1.5rem; overflow-x: auto; }

  .compare-table { min-width: 0; width: 100%; }
  .compare-table thead th { padding: 0.75rem 0.5rem; }
  .compare-table thead th:first-child { width: 28%; }
  .compare-table tbody td { padding: 0.65rem 0.5rem; font-size: 11px; }
  .compare-table tbody td.row-label { font-size: 11px; }
  .th-price-val { font-size: 1rem; }
  .th-name { font-size: 9px; }
  .tbl-cta { padding: 0.45rem 0.6rem; font-size: 11px; white-space: nowrap; }
  .tag-val { font-size: 9px; padding: 1px 5px; }
  .check-icon, .dash-icon { font-size: 12px; }
  .strong-val { font-size: 11px; }

  .faq-wrap { padding: 0 1.5rem; }
  .pricing-hero { padding: 2.5rem 1.5rem 1.5rem; }
}

/* ── GLOBAL LINKS ── */
a { color: #F5A800; }
a:hover { color: #FFB929; }
