@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Special+Elite&display=swap");

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  color-scheme: dark;
  /* Base palette */
  --bg: hsl(0 0% 10%);
  --fg: hsl(0 0% 90%);
  --muted-fg: hsl(0 0% 70%);
  --card: hsl(0 0% 12%);
  --border: hsl(0 0% 30%);
  --input: hsl(0 0% 30%);
  --ring: hsl(0 0% 80%);
  --accent: hsl(0 0% 80%);
  --accent-fg: hsl(0 0% 12%);
  --primary: hsl(0 0% 90%);
  --primary-fg: hsl(0 0% 12%);
  --muted: hsl(0 0% 20%);
  --radius: 0px;

  /* Legacy compat */
  --panel: rgba(255, 255, 255, 0.055);
  --line: rgba(255, 255, 255, 0.18);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.625;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Special Elite", cursive;
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

p { margin: 0; color: hsl(var(--fg) / 0.8); line-height: 1.625; }

/* ============================================================
   GLASS PANEL
   ============================================================ */
.glass-panel {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ============================================================
   SITE SHELL & BACKGROUND BLOBS
   ============================================================ */
.site-shell {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -10;
  overflow: hidden;
  pointer-events: none;
}

.ambient-spot {
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  animation: mechanical-blink 7s step-end infinite;
}

.spot-a { width: 18rem; height: 18rem; filter: blur(80px); top: 0; left: 20%; animation-delay: 0s; }
.spot-b { width: 24rem; height: 24rem; filter: blur(90px); top: 30%; right: 10%; animation-delay: 2s; }
.spot-c { width: 16rem; height: 16rem; filter: blur(100px); bottom: 10%; left: 5%; animation-delay: 4s; }

/* ============================================================
   HEADER
   ============================================================ */
.header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: box-shadow 300ms ease, background 300ms ease;
  padding: 12px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: hsl(0 0% 10% / 0.9);
}

.header-wrap.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.header {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-name {
  font-family: "Special Elite", cursive;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.brand-dot {
  color: var(--bg);
  -webkit-text-stroke: 1px var(--fg);
}

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

.nav-link {
  position: relative;
  color: hsl(0 0% 70%);
  font-size: 0.9rem;
  font-family: Inter, system-ui, sans-serif;
  transition: color 150ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1.5px;
  width: 0;
  background: var(--fg);
  transition: width 200ms ease;
}

.nav-link:hover { color: var(--fg); }
.nav-link:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--fg);
  padding: 8px;
  border-radius: 6px;
  transition: background 150ms ease;
}

.hamburger:hover { background: rgba(255,255,255,0.08); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: hsl(0 0% 8% / 0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 16px;
}

.mobile-menu.open { display: flex; flex-direction: column; gap: 8px; }

.mobile-menu a {
  padding: 12px 16px;
  border-radius: 6px;
  color: hsl(0 0% 70%);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.95rem;
  transition: background 150ms, color 150ms;
}

.mobile-menu a:hover { background: rgba(255,255,255,0.06); color: var(--fg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 6px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  text-decoration: none;
}

.button:hover { transform: scale(1.04); }
.button:active { transform: scale(0.97); }

.button.primary {
  background: var(--primary);
  color: var(--primary-fg);
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
}

.button.primary:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.35); }

.button.outline {
  background: transparent;
  color: var(--fg);
  border-color: hsl(0 0% 40%);
}

.button.outline:hover { border-color: hsl(0 0% 60%); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.88rem;
  color: var(--fg);
  transition: background 150ms, border-color 150ms, transform 150ms;
}

.nav-cta:hover { background: rgba(255,255,255,0.07); border-color: hsl(0 0% 50%); transform: translateY(-1px); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  padding: 140px 0 80px;
  text-align: center;
  overflow: hidden;
}

.hero-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--accent);
  font: 600 0.78rem Inter, system-ui, sans-serif;
  background: rgba(255,255,255,0.04);
  opacity: 0;
  animation: fade-in 0.8s ease forwards;
  animation-delay: 0.1s;
}

.hero-title {
  max-width: 900px;
  margin: 0 auto 24px;
  font-size: clamp(3rem, 8vw, 6.5rem);
}

.hero-title .line1 {
  display: block;
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  animation: typewriter 0.9s steps(20, end) forwards;
  animation-delay: 0.3s;
}

.hero-title .line2 {
  display: block;
  color: var(--accent);
  overflow: hidden;
  clip-path: inset(0 100% 0 0);
  animation: typewriter 0.8s steps(20, end) forwards;
  animation-delay: 1.2s;
}

.hero-subtitle {
  max-width: 680px;
  margin: 0 auto 36px;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: hsl(0 0% 70%);
  opacity: 0;
  animation: fade-in 0.8s ease forwards;
  animation-delay: 2.2s;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-in 0.8s ease forwards;
  animation-delay: 2.7s;
}

/* Hero feature cards */
.hero-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 64px;
  text-align: left;
}

.feature-card {
  padding: 28px;
  border-radius: 12px;
  opacity: 0;
  transition: background 200ms;
}

.feature-card:nth-child(1) { animation: fade-in 0.7s ease forwards; animation-delay: 3.2s; }
.feature-card:nth-child(2) { animation: fade-in 0.7s ease forwards; animation-delay: 3.5s; }
.feature-card:nth-child(3) { animation: fade-in 0.7s ease forwards; animation-delay: 3.8s; }
.feature-card:hover { background: rgba(255,255,255,0.04); }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 200ms;
}

.feature-card:hover .feature-icon { transform: scale(1.1); }

.feature-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--fg);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-card h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--fg);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--muted-fg);
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.section {
  overflow: hidden;
  padding: 96px 0;
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: var(--fg);
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--muted-fg);
  max-width: 720px;
  margin-bottom: 48px;
}

.section-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.section-center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* Dark gradient band */
.dark-band {
  background: linear-gradient(180deg,
    hsl(0 0% 7%),
    hsl(0 0% 9%),
    hsl(0 0% 7%)
  );
}

/* ============================================================
   CREATOR TOOLS (section features)
   ============================================================ */
.creator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.creator-card {
  padding: 24px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.creator-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.creator-type-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(215 40% 40%), hsl(0 60% 50%));
  flex-shrink: 0;
}

.creator-type-icon svg {
  width: 22px;
  height: 22px;
  stroke: white;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  margin-bottom: 14px;
  transition: background 200ms;
}

.step-card:hover { background: rgba(255,255,255,0.06); }

.step-number {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--fg);
  color: var(--bg);
  font-family: "Special Elite", monospace;
  font-size: 1.3rem;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--fg);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: rgba(255,255,255,0.025);
  padding: 96px 0;
  overflow: hidden;
}

.testimonials-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.testimonials-carousel {
  position: relative;
  margin-top: 48px;
}

.testimonial-track {
  overflow: hidden;
}

.testimonial-slide {
  display: none;
}

.testimonial-slide.active {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 40px;
  border-radius: 16px;
  animation: fade-in 0.4s ease;
}

.testimonial-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,0.15);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.testimonial-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Special Elite", cursive;
  font-size: 2rem;
  color: var(--muted-fg);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.star {
  width: 16px;
  height: 16px;
  stroke: var(--fg);
  fill: none;
  stroke-width: 1.5;
}

.star.filled {
  fill: var(--fg);
}

.testimonial-quote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: hsl(0 0% 85%);
}

.testimonial-name {
  font-family: "Special Elite", cursive;
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 2px;
}

.testimonial-role {
  font-size: 0.85rem;
  color: var(--muted-fg);
  font-family: Inter, system-ui, sans-serif;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}

.carousel-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--fg);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms, border-color 150ms;
}

.carousel-btn:hover { background: rgba(255,255,255,0.07); border-color: hsl(0 0% 50%); }

.carousel-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.dot {
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: width 200ms, background 200ms;
  width: 8px;
}

.dot.active {
  background: var(--fg);
  width: 20px;
}

/* ============================================================
   WRITER SECTION
   ============================================================ */
.writer-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.check-list {
  padding: 0;
  margin: 24px 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted-fg);
  font-size: 0.95rem;
}

.check-list li .check-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--fg);
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
}

/* Writer mock */
.writer-mock-wrap {
  position: relative;
  transition: transform 300ms ease;
}

.writer-mock-bg {
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, hsl(215 30% 30%), hsl(0 40% 30%));
  transform: rotate(3deg) scale(0.95);
  opacity: 0.7;
  transition: transform 500ms ease;
}

.writer-mock-wrap:hover .writer-mock-bg {
  transform: rotate(6deg) scale(1.05);
}

.writer-mock-wrap:hover { transform: scale(1.02); }

.writer-preview {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e1e1e, #111);
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.window-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--border);
}

.window-dot { width: 12px; height: 12px; border-radius: 50%; }
.window-dot.red { background: #ef4444; }
.window-dot.yellow { background: #eab308; }
.window-dot.green { background: #22c55e; }

.writer-tabs {
  display: flex;
  gap: 4px;
  padding: 0 16px;
  margin-left: auto;
}

.writer-tab {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 0.75rem;
  font-family: Inter, system-ui, sans-serif;
  background: transparent;
  color: rgba(255,255,255,0.5);
  transition: background 150ms, color 150ms;
}

.writer-tab:hover { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }
.writer-tab.active { background: rgba(255,255,255,0.12); color: white; }

.writer-tab svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.editor-body {
  padding: 28px 32px;
  min-height: 220px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.editor-body .editor-title {
  font-family: "Special Elite", cursive;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 14px;
  display: block;
}

.editor-body p { color: rgba(255,255,255,0.55); margin-bottom: 0; }
.editor-body .comment { color: rgba(255,255,255,0.3); margin-top: 20px; }

.editor-format-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.15);
  margin-bottom: 10px;
}

.editor-code-line { margin-bottom: 6px; font-family: monospace; font-size: 0.88rem; }
.editor-code-line.green { color: #4ade80; }
.editor-code-line.blue { color: #60a5fa; }
.editor-code-line.dim { color: rgba(255,255,255,0.4); }

.editor-ai-label { color: #34d399; margin-bottom: 10px; font-size: 0.9rem; }
.editor-ai-text { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* ============================================================
   SUPPORT SECTION
   ============================================================ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.support-card {
  padding: 28px;
  border-radius: 12px;
  transition: transform 300ms ease, box-shadow 300ms ease, background 200ms;
}

.support-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.06);
}

.support-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.support-card-icon.featured { background: rgba(255,255,255,0.1); }
.support-card-icon.normal { background: rgba(255,255,255,0.06); }

.support-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--fg);
}

.support-card p { font-size: 0.93rem; color: var(--muted-fg); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
  padding: 96px 0;
  text-align: center;
}

.newsletter-inner {
  width: min(780px, calc(100% - 32px));
  margin: 0 auto;
}

.newsletter-inner .section-title { margin-bottom: 16px; }
.newsletter-inner p { font-size: 1.05rem; margin-bottom: 28px; }
.newsletter-inner .button { margin-top: 0; }

/* ============================================================
   FOOTER
   ============================================================ */
footer.site-footer {
  background: hsl(0 0% 7%);
  color: hsl(0 0% 65%);
  padding: 64px 0 0;
  font-size: 0.9rem;
  font-family: Inter, system-ui, sans-serif;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand-name {
  font-family: "Special Elite", cursive;
  font-size: 1.3rem;
  color: var(--fg);
  margin-bottom: 12px;
}

.footer-brand-desc {
  color: hsl(0 0% 55%);
  font-size: 0.88rem;
  max-width: 240px;
  line-height: 1.6;
}

.footer-col h3 {
  font-family: "Special Elite", cursive;
  font-size: 0.95rem;
  color: hsl(0 0% 80%);
  margin-bottom: 16px;
  font-weight: 400;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: hsl(0 0% 55%);
  font-size: 0.88rem;
  transition: color 150ms;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid hsl(0 0% 18%);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright { font-size: 0.82rem; color: hsl(0 0% 45%); }

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-size: 0.82rem;
  color: hsl(0 0% 45%);
  transition: color 150ms;
}

.footer-social a:hover { color: white; }

/* ============================================================
   PAGES — shared
   ============================================================ */
.page-wrap {
  min-height: 62vh;
  padding: 130px 0 80px;
}

.page-inner {
  width: min(1000px, calc(100% - 32px));
  margin: 0 auto;
}

.page-inner h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 48px;
  text-align: center;
}

.content-box {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(8px);
}

.content-box h2 {
  font-size: 1.4rem;
  color: var(--fg);
  margin: 32px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.content-box h2:first-child { margin-top: 0; }

.content-box p, .content-box li {
  color: var(--muted-fg);
  font-size: 0.95rem;
  line-height: 1.75;
}

.content-box ul {
  padding-left: 1.4rem;
  margin: 8px 0;
}

.content-box li { margin-bottom: 6px; }

.last-update {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: right;
  font-size: 0.85rem;
  color: var(--muted-fg);
}

/* ============================================================
   ROADMAP PAGE
   ============================================================ */
.roadmap-hero {
  padding: 130px 0 64px;
  text-align: center;
}

.roadmap-inner {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

.roadmap-progress-wrap {
  max-width: 520px;
  margin: 40px auto 16px;
}

.roadmap-bar-outer {
  height: 8px;
  background: rgba(255,255,255,0.1);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 10px;
}

.roadmap-bar-inner {
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, #a855f7, #3b82f6);
  border-radius: 999px;
}

.roadmap-phases {
  display: flex;
  justify-content: space-between;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.78rem;
  color: var(--muted-fg);
}

.roadmap-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}

.roadmap-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.025);
}

.roadmap-card-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: "Special Elite", cursive;
  font-size: 1.5rem;
}

.roadmap-card-num.purple { background: rgba(168,85,247,0.15); color: #c084fc; }
.roadmap-card-num.blue { background: rgba(59,130,246,0.15); color: #60a5fa; }
.roadmap-card-num.teal { background: rgba(20,184,166,0.15); color: #2dd4bf; }

.roadmap-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--fg);
}

.roadmap-card p { font-size: 0.88rem; color: var(--muted-fg); }

.roadmap-content {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 80px;
}

/* ============================================================
   LEGAL PAGES — enriched
   ============================================================ */
.legal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 16px;
}

.legal-full { grid-column: 1 / -1; }

/* ============================================================
   LANG SWITCHER
   ============================================================ */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 4px;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: hsl(0 0% 55%);
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 3px 7px;
  border-radius: 4px;
  transition: background 150ms, color 150ms;
}

.lang-btn:hover { color: var(--fg); }
.lang-btn.active { background: rgba(255,255,255,0.12); color: var(--fg); }

.lang-sep {
  color: hsl(0 0% 35%);
  font-size: 0.7rem;
  user-select: none;
}

/* ============================================================
   ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes mechanical-blink {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.2; }
}

@keyframes typewriter {
  from { clip-path: inset(0 100% 0 0); opacity: 0; transform: translateY(6px); }
  to   { clip-path: inset(0 0% 0 0);   opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-soft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 820px) {
  .nav { display: none; }
  .hamburger { display: flex; }

  .hero-title { font-size: clamp(2.5rem, 10vw, 4rem); }
  .hero-section { padding: 100px 0 60px; }

  .hero-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .creator-grid,
  .writer-split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .roadmap-cards {
    grid-template-columns: 1fr;
  }

  .legal-grid {
    grid-template-columns: 1fr;
  }
  .legal-full { grid-column: 1; }

  .section { padding: 64px 0; }
  .content-box { padding: 28px 20px; }
  .testimonial-slide.active { flex-direction: column; text-align: center; }
  .testimonial-avatar { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}
