:root {
  --bg: #FAFAFA;
  --surface: #FFFFFF;
  --surface-2: #F4F5F7;
  --text: #0A0A0B;
  --text-muted: #5C5C66;
  --text-soft: #8A8A93;
  --accent: #2563FF;
  --accent-dark: #1E4FCC;
  --accent-soft: #E5EEFF;
  --gradient-sky: radial-gradient(ellipse 80% 60% at 50% 0%, #D5E8F7 0%, #FAFAFA 55%);
  --hairline: #E5E5EA;
  --hairline-strong: #D5D5DA;
  --shadow-card: 0 2px 4px rgba(10,10,11,0.04), 0 16px 32px -16px rgba(10,10,11,0.12);
  --shadow-deep: 0 8px 16px -8px rgba(10,10,11,0.1), 0 32px 64px -16px rgba(10,10,11,0.18);
  --font-display: 'Fraunces', 'Georgia', serif;
  --font-body: 'Geist', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-16: 64px;
  --space-24: 96px;
  --space-32: 128px;
  --container: 1180px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--accent); color: white; }

.hero-gradient {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 900px;
  background: var(--gradient-sky);
  pointer-events: none;
  z-index: -1;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--space-6); }

.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
  text-wrap: balance;
}
.display em {
  font-style: italic;
  color: var(--accent);
  font-weight: 700;
}
h1.display { font-size: clamp(44px, 7.5vw, 104px); }
h2.display { font-size: clamp(34px, 5.2vw, 68px); }

.lede {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 600px;
  margin-top: var(--space-3);
}

.kicker {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: var(--space-4);
}

/* ===== BUTTONS ===== */
.btn-dark {
  background: var(--text);
  color: white;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px -4px rgba(10,10,11,0.25);
}
.btn-dark:hover { background: #1F1F25; transform: translateY(-2px); }
.btn-dark-lg { padding: 14px 24px; font-size: 14px; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-6);
  align-items: center;
  padding: var(--space-4) var(--space-6);
  background: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.nav .logo { justify-self: start; }
.nav-links { justify-self: center; }
.nav .nav-right { justify-self: end; }

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

.lang-toggle {
  background: white;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: border-color 0.2s, color 0.2s;
}
.lang-toggle:hover { border-color: var(--accent); }
.lang-toggle .active { color: var(--accent); }
.lang-divider { opacity: 0.4; }
.nav.scrolled { border-bottom-color: var(--hairline); }
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.logo-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #5C8BFF);
  display: inline-block;
  box-shadow: 0 0 12px rgba(37, 99, 255, 0.5);
}
.nav-links {
  display: flex;
  gap: var(--space-6);
  justify-content: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

/* ===== HERO ===== */
.hero {
  padding: var(--space-16) var(--space-6) var(--space-24);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero .container { display: flex; flex-direction: column; align-items: center; position: relative; z-index: 2; }

/* ===== ORBITAL ANIMATED BACKGROUND ===== */
.orbital {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 1400px;
  height: 1100px;
  pointer-events: none;
  z-index: 0;
}
.orb-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 1000px;
  height: 1000px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(37, 99, 255, 0.18), rgba(37, 99, 255, 0.04) 40%, transparent 70%);
  filter: blur(40px);
}
.orb-core {
  position: absolute;
  top: 50%; left: 50%;
  width: 90px; height: 90px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 35% 30%, #FFFFFF, var(--accent) 50%, var(--accent-dark) 90%);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(37, 99, 255, 0.55), 0 0 160px rgba(37, 99, 255, 0.3);
  animation: orb-pulse 4s ease-in-out infinite;
}
@keyframes orb-pulse {
  0%, 100% { box-shadow: 0 0 80px rgba(37, 99, 255, 0.55), 0 0 160px rgba(37, 99, 255, 0.3); transform: translate(-50%, -50%) scale(1); }
  50% { box-shadow: 0 0 120px rgba(37, 99, 255, 0.8), 0 0 240px rgba(37, 99, 255, 0.45); transform: translate(-50%, -50%) scale(1.05); }
}
.orb-ring {
  position: absolute;
  top: 50%; left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 255, 0.2);
  transform: translate(-50%, -50%);
}
.r-1 { width: 280px; height: 280px; animation: ring-spin-cw 28s linear infinite; }
.r-2 { width: 500px; height: 500px; animation: ring-spin-ccw 48s linear infinite; border-color: rgba(37, 99, 255, 0.14); }
.r-3 { width: 760px; height: 760px; animation: ring-spin-cw 80s linear infinite; border-color: rgba(37, 99, 255, 0.09); }
@keyframes ring-spin-cw { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes ring-spin-ccw { to { transform: translate(-50%, -50%) rotate(-360deg); } }
.orb-planet {
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  top: -8px;
  left: 50%;
  margin-left: -8px;
}
.p-1 {
  background: radial-gradient(circle at 30% 30%, #FFFFFF, #5C8BFF 60%, var(--accent) 100%);
  box-shadow: 0 0 24px rgba(37, 99, 255, 0.7);
}
.p-2 {
  background: radial-gradient(circle at 30% 30%, #FFFFFF, #4FE8A8 60%, #16C672 100%);
  box-shadow: 0 0 24px rgba(22, 198, 114, 0.7);
  top: auto; bottom: -8px;
  width: 12px; height: 12px;
  margin-left: -6px;
}
.p-3 {
  background: radial-gradient(circle at 30% 30%, #FFFFFF, #FFCB6F 60%, #FF8800 100%);
  box-shadow: 0 0 24px rgba(255, 139, 111, 0.6);
  width: 20px; height: 20px;
  left: -10px; top: 50%;
  margin-top: -10px; margin-left: 0;
}
.orb-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(37, 99, 255, 0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(37, 99, 255, 0.07) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 45%, black 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 45%, black 0%, transparent 80%);
}
.orb-particles {
  position: absolute;
  inset: 0;
}
.orb-particles span {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 8px var(--accent);
  animation: particle-float linear infinite;
}
@keyframes particle-float {
  0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  20% { opacity: 0.7; }
  80% { opacity: 0.7; }
  100% { opacity: 0; transform: translate(var(--tx, 80px), var(--ty, -80px)) scale(1); }
}
@media (max-width: 900px) {
  .orbital { width: 900px; height: 800px; top: -40px; }
  .r-3 { width: 580px; height: 580px; }
  .r-2 { width: 400px; height: 400px; }
  .r-1 { width: 220px; height: 220px; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: white;
  border: 1px solid var(--hairline);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: var(--space-8);
  box-shadow: 0 2px 8px rgba(10,10,11,0.04);
}
.badge-dot {
  width: 6px; height: 6px;
  background: #16C672;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(22, 198, 114, 0.2);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  max-width: 1100px;
  margin: 0 auto var(--space-6);
}

.hero-sub {
  font-size: clamp(15px, 1.2vw, 19px);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-8);
  line-height: 1.6;
}

.waitlist-inline {
  display: flex;
  gap: var(--space-2);
  background: white;
  padding: 6px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
  width: 100%;
  max-width: 460px;
  margin-bottom: var(--space-4);
}
.waitlist-inline input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 10px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
}
.waitlist-inline input::placeholder { color: var(--text-soft); }
.waitlist-inline .btn-dark { white-space: nowrap; }

.hero-foot { color: var(--text-soft); }

/* ===== DASHBOARD MOCKUP ===== */
.dashboard {
  margin-top: var(--space-16);
  width: 100%;
  max-width: 1080px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-deep);
  overflow: hidden;
  text-align: left;
  transform: perspective(2000px) rotateX(2deg);
  transition: transform 0.6s ease;
}
.dashboard:hover { transform: perspective(2000px) rotateX(0deg) translateY(-4px); }

.dash-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--surface-2);
  border-bottom: 1px solid var(--hairline);
}
.dash-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.dash-dot-r { background: #FF5F57; }
.dash-dot-y { background: #FFBD2E; }
.dash-dot-g { background: #28C840; }
.dash-url { margin-left: 12px; color: var(--text-soft); font-size: 11px; }

.dash-body {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 380px;
}

.dash-side {
  border-right: 1px solid var(--hairline);
  padding: var(--space-4);
  background: #FAFBFC;
}
.dash-side-label {
  font-size: 10px;
  color: var(--text-soft);
  padding: 4px 8px;
  margin-bottom: 8px;
}
.dash-ep {
  padding: 10px 12px;
  border-radius: 8px;
  margin-bottom: 4px;
  cursor: pointer;
  transition: background 0.15s;
}
.dash-ep:hover { background: white; }
.dash-ep.active { background: white; border: 1px solid var(--hairline); box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.dash-ep-title { font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.dash-ep-meta { font-size: 11px; color: var(--text-soft); }

.dash-main { padding: var(--space-6); position: relative; }
.dash-main-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-6);
}
.dash-main-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
}
.dash-main-title em { color: var(--accent); font-style: italic; }
.dash-main-meta {
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 4px;
}
.dash-pill {
  background: var(--accent);
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: var(--space-6);
}
.ds-card {
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 96px;
}
.ds-label { font-size: 9px; color: var(--text-soft); letter-spacing: 0.12em; }
.ds-value {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.03em;
}
.ds-unit { font-size: 16px; color: var(--text-soft); margin-left: 2px; font-style: italic; }
.ds-delta { font-size: 10px; color: var(--text-muted); }
.ds-up { color: #16C672; font-weight: 700; }

.ds-card-chart { background: linear-gradient(135deg, var(--accent-soft), var(--surface-2)); }
.ds-spark {
  display: flex;
  gap: 3px;
  align-items: flex-end;
  height: 22px;
  margin-top: 2px;
}
.ds-spark span {
  flex: 1;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.85;
}

.ds-card-pie {
  position: relative;
}
.ds-pie {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: conic-gradient(var(--accent) 0% 48%, #5C8BFF 48% 80%, #16C672 80% 100%);
  position: absolute;
  top: 12px;
  right: 14px;
}
.ds-pie::after {
  content: '';
  position: absolute;
  inset: 8px;
  background: var(--surface-2);
  border-radius: 50%;
}
.ds-card-pie .ds-value { display: none; }
.ds-card-pie .ds-label { margin-bottom: 4px; }
.ds-pie-legend {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 4px;
}
.ds-pie-legend span { display: flex; align-items: center; gap: 5px; }
.ds-pie-legend i {
  width: 6px; height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.dash-waveform {
  display: flex;
  align-items: center;
  gap: 2px;
  height: 96px;
  margin-bottom: var(--space-6);
  padding: 4px;
  background: linear-gradient(180deg, transparent, rgba(37,99,255,0.04));
  border-radius: 8px;
  position: relative;
}
.dash-waveform::after {
  content: '';
  position: absolute;
  left: 38%;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(37, 99, 255, 0.6);
  border-radius: 2px;
  z-index: 2;
}
.dash-waveform span {
  flex: 1;
  background: linear-gradient(180deg, #5C8BFF, var(--accent));
  border-radius: 2px;
  opacity: 0.9;
  transform-origin: center;
  animation: wave-bar ease-in-out infinite;
  min-height: 6px;
}
.dash-waveform span.wf-muted {
  background: linear-gradient(180deg, var(--text-soft), var(--text-muted));
  opacity: 0.3;
}
@keyframes wave-bar {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}

.dash-bottom {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  align-items: stretch;
}
.dash-transcript {
  background: var(--surface-2);
  padding: 14px 16px;
  border-radius: 8px;
  display: flex;
  gap: 12px;
  font-size: 14px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}
.dash-transcript .t-time {
  color: var(--accent);
  font-style: normal;
  font-size: 11px;
  padding-top: 4px;
  white-space: nowrap;
  font-family: var(--font-mono);
}

.ai-suggestion {
  position: relative;
  background: white;
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 16px 36px -8px rgba(37, 99, 255, 0.25);
  animation: float 3s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.ai-cta {
  margin-top: 4px;
  background: var(--accent);
  color: white;
  border: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  padding: 7px 12px;
  border-radius: 6px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.2s;
}
.ai-cta:hover { background: var(--accent-dark); }
@media (max-width: 720px) {
  .dash-bottom { grid-template-columns: 1fr; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
.ai-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
}
.ai-spark { color: var(--accent); font-size: 14px; }
.ai-title { color: var(--text); }
.ai-body { display: flex; flex-direction: column; gap: 4px; font-size: 11px; }
.ai-tag { font-family: var(--font-mono); color: var(--text-muted); }
.ai-score { color: var(--text-muted); }
.ai-score strong { color: #16C672; }

/* ===== TRUST ===== */
.trust { padding: var(--space-12) var(--space-6); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); background: white; }
.trust-label { text-align: center; color: var(--text-soft); margin-bottom: var(--space-6); }
.marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: var(--space-12);
  width: max-content;
  animation: marquee-scroll 40s linear infinite;
  padding: 0 var(--space-6);
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-track span {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  color: var(--text-soft);
  letter-spacing: -0.02em;
  opacity: 0.65;
  transition: opacity 0.2s, color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.marquee-track span:hover { opacity: 1; color: var(--accent); }

/* ===== PROBLEM ===== */
.problem { padding: var(--space-32) var(--space-6); }
.section-head { margin-bottom: var(--space-16); max-width: 960px; }
.section-head h2 { margin-bottom: var(--space-3); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-6);
}
.pain {
  background: white;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: var(--space-8);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pain:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.pain-num { color: var(--accent); margin-bottom: var(--space-4); font-size: 12px; }
.pain h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: var(--space-3);
  line-height: 1.15;
}
.pain p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.how { padding: var(--space-32) var(--space-6); background: var(--surface-2); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.step-card {
  background: white;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-card);
}
.step-head {
  display: flex;
  align-items: baseline;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--hairline);
}
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
}
.step-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 22px;
}
.step-mini {
  background: var(--surface-2);
  border-radius: 8px;
  padding: var(--space-4);
  min-height: 130px;
  margin-bottom: var(--space-4);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.step-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.mini-upload { display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.mini-icon {
  width: 32px; height: 32px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
.mini-file { font-size: 12px; color: var(--text); font-weight: 600; }
.mini-size { font-size: 10px; color: var(--text-soft); }

.mini-progress { display: flex; flex-direction: column; gap: 10px; }
.mini-prog-row { display: grid; grid-template-columns: 90px 1fr; gap: 10px; align-items: center; }
.mini-prog-name { font-size: 10px; color: var(--text-muted); }
.mini-prog-bar {
  height: 6px;
  background: var(--hairline);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}
.mini-prog-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #5C8BFF);
  border-radius: 3px;
  transition: width 0.6s ease;
}

.mini-publish { display: flex; flex-direction: column; gap: 6px; }
.mini-channel {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: white;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 500;
}
.ch-dot {
  width: 6px; height: 6px;
  background: #16C672;
  border-radius: 50%;
}

/* ===== FEATURES ===== */
.features { padding: var(--space-32) var(--space-6); }
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}
.feature-card {
  background: white;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s;
}
.feature-card:hover { transform: translateY(-4px); }
.feature-tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.feature-card h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  margin-bottom: var(--space-3);
  line-height: 1.15;
}
.feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: var(--space-6); }
.feature-ui { background: var(--surface-2); border-radius: 8px; padding: var(--space-4); }

.ui-clips { display: flex; flex-direction: column; gap: 6px; }
.ui-clip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  border: 1px solid var(--hairline);
}
.ui-clip-pro { border-color: var(--accent); background: var(--accent-soft); }
.ui-clip-time { font-size: 10px; color: var(--text-muted); }
.ui-clip-score { font-weight: 700; color: #16C672; font-size: 13px; }
.ui-clip-pro .ui-clip-score { color: var(--accent); }

.ui-transcript { display: flex; flex-direction: column; gap: 6px; font-size: 13px; line-height: 1.6; }
.ui-line { color: var(--text); }
.ui-spk { color: var(--accent); font-size: 10px; font-weight: 700; margin-right: 6px; }

.ui-seo-title { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.ui-seo-desc { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; line-height: 1.4; }
.ui-seo-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ui-seo-tags span {
  background: white;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  color: var(--accent);
  border: 1px solid var(--hairline);
}

.ui-cal { display: flex; flex-direction: column; gap: 6px; }
.ui-cal-row { display: flex; gap: 6px; align-items: center; }
.ui-cal-d { width: 24px; color: var(--text-muted); font-size: 10px; }
.ui-cal-slot {
  flex: 1;
  height: 18px;
  border-radius: 4px;
  background: white;
  border: 1px solid var(--hairline);
}
.ui-cal-slot.filled { background: var(--accent); border-color: var(--accent); }

/* ===== SOCIAL PROOF ===== */
.social { padding: var(--space-32) var(--space-6); background: var(--surface-2); }
.tweets {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
}
.tweet {
  background: white;
  padding: var(--space-6);
  border-radius: var(--radius);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-card);
  transition: transform 0.2s;
}
.tweet:hover { transform: translateY(-2px); }
.tweet-head { display: flex; align-items: center; gap: 12px; margin-bottom: var(--space-4); }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: linear-gradient(135deg, var(--accent-soft), var(--surface-2));
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.avatar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.4), transparent 50%);
}
.avatar-1, .avatar-2, .avatar-3, .avatar-4 {
  background-size: cover;
  background-position: center;
}
.avatar-1 { background-image: url('assets/ivan.jpg'); }
.avatar-2 { background-image: url('assets/anton.jpg'); }
.avatar-3 { background-image: url('assets/maria.jpg'); }
.avatar-4 { background-image: url('assets/dmitry.jpg'); }
.avatar::after { display: none; }
.tweet-name { font-size: 13px; font-weight: 600; }
.tweet-handle { color: var(--text-soft); font-size: 11px; }
.tweet p { font-size: 15px; line-height: 1.5; color: var(--text); }

/* ===== PRICING ===== */
.pricing { padding: var(--space-32) var(--space-6); }
.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
}
.tier {
  background: white;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.tier-btn { margin-top: auto; }
.tier:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.tier.highlight {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-soft) 0%, white 50%);
  box-shadow: var(--shadow-deep);
  transform: scale(1.02);
}
.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 10px;
  font-weight: 700;
}
.tier-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 4px;
}
.tier-desc { font-size: 13px; color: var(--text-muted); margin-bottom: var(--space-6); }
.tier-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: var(--space-6); padding-bottom: var(--space-6); border-bottom: 1px solid var(--hairline); }
.tier-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.03em;
  line-height: 1;
}
.tier-per { color: var(--text-soft); font-size: 11px; }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: var(--space-8); }
.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}
.tier-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
.tier-btn {
  width: 100%;
  padding: 12px;
  background: white;
  color: var(--text);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.tier-btn:hover { background: var(--text); color: white; border-color: var(--text); }
.tier-btn-primary { background: var(--text); color: white; border-color: var(--text); }
.tier-btn-primary:hover { background: var(--accent); border-color: var(--accent); }

/* ===== FINAL CTA ===== */
.cta-final {
  padding: var(--space-32) var(--space-6);
  background: linear-gradient(180deg, white 0%, var(--accent-soft) 100%);
  text-align: center;
  border-top: 1px solid var(--hairline);
}
.cta-final h2 { max-width: 900px; margin: 0 auto var(--space-6); }
.cta-final .lede { margin: 0 auto var(--space-8); }
.waitlist-big {
  display: flex;
  gap: var(--space-2);
  background: white;
  padding: 6px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-deep);
  max-width: 580px;
  margin: 0 auto;
}
.waitlist-big input,
.waitlist-big select {
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
}
.waitlist-big input { flex: 1; min-width: 0; }
.waitlist-big select { width: 130px; border-left: 1px solid var(--hairline); cursor: pointer; }
.form-result-final {
  font-family: var(--font-display);
  font-style: italic;
  margin-top: var(--space-6);
  font-size: 18px;
  color: var(--accent);
  min-height: 24px;
}

/* ===== FOOTER ===== */
.footer { background: white; border-top: 1px solid var(--hairline); padding: var(--space-12) 0 var(--space-6); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--hairline);
}
.footer-grid > div { display: flex; flex-direction: column; gap: 8px; }
.footer-grid .muted { color: var(--text-muted); font-size: 13px; margin-top: 8px; }
.footer-label { color: var(--text-soft); margin-bottom: 4px; }
.footer-grid a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}
.footer-grid a:hover { color: var(--text); }
.footer-bottom {
  margin-top: var(--space-6);
  color: var(--text-soft);
  text-align: left;
  font-size: 10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .dash-body { grid-template-columns: 1fr; }
  .dash-side { border-right: none; border-bottom: 1px solid var(--hairline); }
  .ai-suggestion { position: static; width: auto; margin-top: var(--space-4); }
  .steps-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .tweets { grid-template-columns: 1fr; }
  .tiers { grid-template-columns: 1fr; }
  .tier.highlight { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .waitlist-inline, .waitlist-big { flex-direction: column; border-radius: var(--radius); padding: var(--space-3); gap: var(--space-3); }
  .waitlist-big select { width: 100%; border-left: none; border-top: 1px solid var(--hairline); }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ===== CHAT WIDGET ===== */
.chat-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  border: none;
  cursor: pointer;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px -8px rgba(37, 99, 255, 0.55);
  transition: transform 0.2s, box-shadow 0.2s;
}
.chat-toggle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  animation: chat-pulse 2.6s ease-out infinite;
  opacity: 0;
}
@keyframes chat-pulse {
  0% { opacity: 0.85; transform: scale(0.95); }
  100% { opacity: 0; transform: scale(1.45); }
}
.chat-toggle:hover { transform: scale(1.06); box-shadow: 0 16px 40px -8px rgba(37, 99, 255, 0.7); }
.chat-toggle svg { width: 26px; height: 26px; }

.chat-window {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: min(380px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 140px));
  background: white;
  border: 1px solid var(--accent);
  z-index: 100;
  display: none;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px -12px rgba(10, 10, 11, 0.35), 0 0 0 1px rgba(37, 99, 255, 0.15);
  animation: chat-in 0.25s ease-out;
}
@keyframes chat-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-window.open { display: flex; }
.chat-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--hairline);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--surface-2);
}
.chat-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  color: var(--text);
}
.chat-title-dot {
  width: 8px; height: 8px;
  background: #16C672;
  border-radius: 50%;
  margin-right: 10px;
  box-shadow: 0 0 0 3px rgba(22, 198, 114, 0.2);
  animation: pulse-dot 1.6s infinite;
}
.chat-close {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 18px;
  padding: 6px;
  transition: color 0.2s;
}
.chat-close:hover { color: var(--accent); }
.chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: white;
}
.chat-msg {
  max-width: 86%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  animation: msg-in 0.3s ease-out;
}
@keyframes msg-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chat-msg.bot {
  background: var(--surface-2);
  align-self: flex-start;
  border: 1px solid var(--hairline);
  color: var(--text);
}
.chat-msg.user {
  background: var(--accent);
  color: white;
  align-self: flex-end;
  font-weight: 500;
}
.chat-options { display: flex; flex-direction: column; gap: 8px; align-self: stretch; }
.chat-option {
  text-align: left;
  background: white;
  border: 1px solid var(--hairline-strong);
  color: var(--text);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.2s;
}
.chat-option:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.chat-input-form {
  padding: 12px;
  border-top: 1px solid var(--hairline);
  display: flex;
  gap: 8px;
  background: var(--surface-2);
}
.chat-input {
  flex: 1;
  background: white;
  border: 1px solid var(--hairline-strong);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
  padding: 10px 14px;
  border-radius: 8px;
  outline: none;
}
.chat-input:focus { border-color: var(--accent); }
.chat-send {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0 18px;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  border-radius: 8px;
}
.chat-send:hover { background: var(--accent-dark); }
