/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── DARK THEME (default) ── */
:root,
[data-theme="dark"] {
  --bg:          #0a0a0f;
  --surface:     #13131a;
  --surface2:    #1c1c28;
  --border:      rgba(255,255,255,0.07);
  --accent:      #7c5cfc;
  --accent2:     #c084fc;
  --accent-glow: rgba(124,92,252,0.35);
  --text:        #f0f0f8;
  --muted:       #8888a8;
  --white:       #ffffff;
  --nav-bg:      rgba(10,10,15,0.80);
  --shadow:      0 40px 120px rgba(0,0,0,0.55);
  --orb-opacity: 0.18;
  --noise-opacity: 0.4;
  --card-hover-shadow: 0 8px 40px rgba(124,92,252,0.15);
}

/* ── LIGHT THEME ── */
[data-theme="light"] {
  --bg:          #f5f4ff;
  --surface:     #ffffff;
  --surface2:    #eeedf8;
  --border:      rgba(0,0,0,0.08);
  --accent:      #6d43f5;
  --accent2:     #a855f7;
  --accent-glow: rgba(109,67,245,0.25);
  --text:        #1a1a2e;
  --muted:       #6b6b8d;
  --white:       #1a1a2e;
  --nav-bg:      rgba(245,244,255,0.88);
  --shadow:      0 24px 80px rgba(109,67,245,0.12);
  --orb-opacity: 0.1;
  --noise-opacity: 0.15;
  --card-hover-shadow: 0 8px 32px rgba(109,67,245,0.12);
}

/* ── BASE ── */
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  transition: background 0.35s ease, color 0.35s ease;
}

/* ── NOISE ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
  opacity: var(--noise-opacity);
  transition: opacity 0.35s;
}

/* ── ORBS ── */
.orb {
  position: fixed; border-radius: 50%;
  filter: blur(120px);
  pointer-events: none; z-index: 0;
  opacity: var(--orb-opacity);
  transition: opacity 0.35s;
}
.orb-1 { width: 600px; height: 600px; background: var(--accent); top: -200px; left: -200px; }
.orb-2 { width: 500px; height: 500px; background: var(--accent2); bottom: 10%; right: -200px; }

/* ── UTILITY ── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }

.tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(124,92,252,.12); border: 1px solid rgba(124,92,252,.28);
  color: var(--accent2); font-size: 13px; font-weight: 500;
  padding: 5px 14px; border-radius: 8px; letter-spacing: .03em;
}
[data-theme="light"] .tag {
  background: rgba(109,67,245,.1); border-color: rgba(109,67,245,.25);
}
.tag svg { width: 14px; height: 14px; }
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  transition: background 0.35s ease, border-color 0.35s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 64px;
}
.logo {
  display: inline-flex; align-items: center; gap: 0;
  color: var(--white); text-decoration: none; transition: color 0.35s;
  line-height: 0;
}
.brand-logo {
  height: 24px;
  width: auto;
  display: block;
  transition: filter 0.35s ease, opacity 0.35s ease;
}
[data-theme="light"] .brand-logo { filter: none; }
[data-theme="dark"] .brand-logo { filter: brightness(0) invert(1); }
.logo-footer .brand-logo { opacity: 0.92; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; transition: color .2s; }
.nav-links a:hover { color: var(--text); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-sign-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 40px; padding: 0 18px;
  border: 1px solid var(--border); border-radius: 999px;
  color: var(--text); text-decoration: none; font-size: 14px; font-weight: 600;
  background: rgba(255,255,255,0.02);
  transition: border-color .2s, background .2s, transform .15s, color .2s;
  white-space: nowrap;
}
.nav-sign-btn:hover {
  border-color: rgba(124,92,252,.4);
  background: rgba(124,92,252,.08);
  color: var(--white);
  transform: translateY(-1px);
}

/* Language switcher */
.lang-switcher {
  display: flex; align-items: center; gap: 4px;
  border: 1px solid var(--border); border-radius: 999px;
  padding: 4px 10px; transition: border-color 0.3s;
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  font-family: 'Manrope', sans-serif; font-size: 12px; font-weight: 700;
  color: var(--muted); padding: 2px 4px; border-radius: 4px;
  transition: color .2s, background .2s; letter-spacing: .06em;
}
.lang-btn.active { color: var(--accent); }
.lang-btn:hover:not(.active) { color: var(--text); }
.lang-sep { color: var(--border); font-size: 12px; user-select: none; }

/* Theme toggle */
.theme-toggle {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface2); border: 1px solid var(--border);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: background 0.3s, border-color 0.3s, color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover { color: var(--accent); border-color: rgba(124,92,252,.4); transform: rotate(15deg); }
.theme-toggle svg { width: 16px; height: 16px; }
.theme-icon { display: flex; align-items: center; justify-content: center; }
[data-theme="dark"]  .theme-icon.sun  { display: flex; }
[data-theme="dark"]  .theme-icon.moon { display: none; }
[data-theme="light"] .theme-icon.sun  { display: none; }
[data-theme="light"] .theme-icon.moon { display: flex; }

.nav-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white; border: none; padding: 9px 20px;
  border-radius: 10px; font-size: 14px; font-weight: 500;
  text-decoration: none;
  cursor: pointer; font-family: 'Manrope', sans-serif;
  transition: opacity .2s, transform .15s; white-space: nowrap;
}
.nav-cta:hover { opacity: .88; transform: translateY(-1px); }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none; flex-direction: column;
  background: var(--surface); border-top: 1px solid var(--border);
  position: absolute; top: 64px; left: 0; right: 0; z-index: 99;
  transition: background 0.35s;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 24px; color: var(--text); text-decoration: none;
  font-size: 15px; border-bottom: 1px solid var(--border); transition: background .2s;
}
.mobile-menu a:hover { background: var(--surface2); }
.mobile-controls {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 24px; border-bottom: 1px solid var(--border);
}
.mobile-menu .m-cta {
  margin: 0; text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white !important; padding: 13px; border-radius: 10px; font-weight: 500;
  border: none;
  border-bottom: none !important;
  width: 100%;
  cursor: pointer;
}
.mobile-menu .m-cta:hover { background: linear-gradient(135deg, var(--accent), var(--accent2)); }
.m-actions {
  display: flex; flex-direction: column; gap: 12px;
  padding: 16px 24px 20px;
}
.mobile-menu .m-sign {
  margin: 0; text-align: center;
  color: var(--text); padding: 13px; border-radius: 10px; font-weight: 600;
  border: 1px solid var(--border); border-bottom: 1px solid var(--border) !important;
  background: var(--surface2);
}
.mobile-menu .m-sign:hover { background: var(--surface2); }

/* ── HERO ── */
.hero { padding: 110px 0 80px; text-align: center; }
.hero .tag { margin-bottom: 28px; }
.hero h1 {
  font-family: 'Rubik', sans-serif; font-weight: 700;
  font-size: clamp(38px, 7vw, 80px); line-height: 1.07;
  letter-spacing: -.03em; color: var(--white);
  max-width: 900px; margin: 0 auto 24px;
  transition: color 0.35s;
}
.hero p {
  color: var(--muted); font-size: clamp(16px, 2.2vw, 20px);
  max-width: 580px; margin: 0 auto 40px; line-height: 1.65;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white; padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  border: none; cursor: pointer; font-family: 'Manrope', sans-serif;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px var(--accent-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px var(--accent-glow); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text); padding: 14px 28px;
  border-radius: 10px; font-size: 15px; font-weight: 500;
  text-decoration: none; border: 1px solid var(--border);
  cursor: pointer; font-family: 'Manrope', sans-serif;
  transition: border-color .2s, background .2s, color 0.35s;
}
.btn-ghost:hover { border-color: rgba(124,92,252,.5); background: rgba(124,92,252,.06); }

/* ── DEMO CARD ── */
.demo-wrap {
  max-width: 760px; margin: 64px auto 0;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  box-shadow: var(--shadow);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.ab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.ab-card {
  background: var(--surface2); border-radius: 10px;
  aspect-ratio: 16/10; display: flex; align-items: center; justify-content: center;
  font-family: 'Rubik', sans-serif; font-weight: 800; font-size: 52px;
  color: rgba(124,92,252,.18); border: 1px solid var(--border);
  transition: background 0.35s, border-color 0.35s;
}
[data-theme="light"] .ab-card { color: rgba(109,67,245,.15); }
.ab-labels { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ab-label { display: flex; align-items: center; justify-content: space-between; }
.ab-label span { font-size: 13px; color: var(--muted); }
.ab-label strong { font-size: 18px; font-weight: 700; font-family: 'Rubik', sans-serif; }
.ab-label:first-child strong { color: var(--accent2); }
.ab-label:last-child strong { color: var(--accent); }
.vote-bar-wrap { margin-top: 16px; }
.vote-bar { height: 6px; border-radius: 999px; background: var(--surface2); overflow: hidden; transition: background 0.35s; }
.vote-bar-fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  width: 0; transition: width 1.2s cubic-bezier(.4,0,.2,1);
}

/* ── FEATURES ── */
.features { padding: 100px 0; }
.section-head { text-align: center; margin-bottom: 64px; }
.section-head h2 {
  font-family: 'Rubik', sans-serif; font-weight: 700;
  font-size: clamp(28px, 5vw, 52px); color: var(--white);
  letter-spacing: -.025em; margin-bottom: 16px; transition: color 0.35s;
}
.section-head p { color: var(--muted); font-size: 18px; max-width: 500px; margin: 0 auto; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px;
  transition: background 0.35s, border-color .25s, transform .25s, box-shadow .25s;
}
.feature-card:hover { border-color: rgba(124,92,252,.4); transform: translateY(-4px); box-shadow: var(--card-hover-shadow); }
.feat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(124,92,252,.12); border: 1px solid rgba(124,92,252,.22);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  color: var(--accent);
}
[data-theme="light"] .feat-icon {
  background: rgba(109,67,245,.1); border-color: rgba(109,67,245,.22);
}
.feat-icon svg { width: 20px; height: 20px; flex-shrink: 0; }
.feature-card h3 {
  font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 18px;
  color: var(--white); margin-bottom: 10px; transition: color 0.35s;
}
.feature-card p { color: var(--muted); font-size: 15px; line-height: 1.65; }

/* ── HOW ── */
.how { padding: 80px 0 100px; }
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 24px;
  left: calc(16.66% + 24px); right: calc(16.66% + 24px);
  height: 1px; background: linear-gradient(90deg, var(--accent), var(--accent2)); opacity: .35;
}
.step { text-align: center; padding: 0 24px; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 1px solid rgba(124,92,252,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 17px; color: var(--accent);
  margin: 0 auto 20px; position: relative; z-index: 1;
}
[data-theme="light"] .step-num { border-color: rgba(109,67,245,.3); }
.step h4 { font-family: 'Rubik', sans-serif; font-weight: 700; font-size: 17px; color: var(--white); margin-bottom: 8px; transition: color 0.35s; }
.step p { color: var(--muted); font-size: 14px; }

/* ── PRICING ── */
.pricing { padding: 80px 0 120px; }
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 800px; margin: 0 auto; }
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 40px;
  transition: background 0.35s, border-color 0.35s;
}
.price-card.featured {
  border-color: rgba(124,92,252,.45);
  background: linear-gradient(180deg, rgba(124,92,252,.07) 0%, var(--surface) 100%);
  position: relative;
}
[data-theme="light"] .price-card.featured {
  background: linear-gradient(180deg, rgba(109,67,245,.06) 0%, var(--surface) 100%);
}
.coming-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--muted); font-size: 11px; font-weight: 700;
  padding: 4px 14px; border-radius: 999px; white-space: nowrap;
  letter-spacing: .08em; transition: background 0.35s;
}
.plan-name {
  font-family: 'Rubik', sans-serif;
  font-size: 18px; color: var(--white); font-weight: 700; margin-bottom: 10px;
  transition: color 0.35s;
}
.plan-price {
  font-family: 'Rubik', sans-serif; font-weight: 800; font-size: 52px;
  color: var(--white); line-height: 1; margin-bottom: 6px; transition: color 0.35s;
}
.plan-price sup { font-size: 22px; vertical-align: super; }
.plan-price sub { font-size: 16px; font-weight: 400; color: var(--muted); }
.plan-desc { color: var(--muted); font-size: 14px; margin-bottom: 24px; max-width: 32ch; }
.plan-features { list-style: none; margin-bottom: 32px; display: flex; flex-direction: column; gap: 12px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 15px; color: var(--text); transition: color 0.35s; }
.plan-features li .check {
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(124,92,252,.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  margin-top: 2px;
}
[data-theme="light"] .plan-features li .check { background: rgba(109,67,245,.12); }
.plan-features li .check svg { width: 11px; height: 11px; stroke: var(--accent2); }
.price-card.featured .plan-price { color: var(--accent2); }

.btn-plan-primary {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: white; padding: 14px; border-radius: 10px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  border: none; cursor: pointer; font-family: 'Manrope', sans-serif;
  transition: opacity .2s, transform .15s;
  box-shadow: 0 4px 24px var(--accent-glow);
}
.btn-plan-primary:hover { opacity: .88; transform: translateY(-1px); }
.btn-plan-ghost {
  display: block; width: 100%; text-align: center;
  background: transparent; color: var(--muted); padding: 14px;
  border-radius: 10px; font-size: 15px; font-weight: 500;
  text-decoration: none; border: 1px solid var(--border); cursor: not-allowed;
  font-family: 'Manrope', sans-serif; transition: border-color 0.35s;
}

/* ── CONTENT PAGES ── */
.page-hero {
  padding: 96px 0 32px;
  text-align: center;
}
.page-kicker { margin-bottom: 22px; }
.page-title {
  font-family: 'Rubik', sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: -.03em;
  color: var(--white);
  margin-bottom: 18px;
}
.page-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 19px);
}
.legal-page,
.support-page {
  padding: 28px 0 110px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.legal-card,
.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.legal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.legal-meta {
  padding: 24px;
}
.legal-meta-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 10px;
}
.legal-updated {
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 12px;
}
.legal-meta-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.legal-toc {
  padding: 24px;
}
.legal-card-title {
  font-family: 'Rubik', sans-serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 16px;
}
.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.toc-list a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.toc-list a:hover { color: var(--text); }
.legal-content {
  padding: 28px;
}
.legal-section + .legal-section {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.legal-section h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 26px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 14px;
}
.legal-section p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.75;
}
.legal-section p + p { margin-top: 12px; }
.legal-list {
  margin-top: 14px;
  padding-left: 20px;
  color: var(--text);
}
.legal-list li + li { margin-top: 10px; }
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 24px;
}
.support-card {
  padding: 28px;
}
.support-card h2,
.support-form-head h2 {
  font-family: 'Rubik', sans-serif;
  font-size: 26px;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 12px;
}
.support-card p,
.support-form-head p,
.form-note {
  color: var(--muted);
  line-height: 1.7;
}
.info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}
.info-list li {
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--surface2);
  border: 1px solid var(--border);
}
.info-list strong {
  display: block;
  font-family: 'Rubik', sans-serif;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 6px;
}
.info-list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}
.support-form-card {
  padding: 30px;
}
.support-form-head {
  margin-bottom: 22px;
}
.support-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-full {
  grid-column: 1 / -1;
}
.field span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface2);
  color: var(--text);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.35s;
}
.field textarea {
  min-height: 180px;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(124,92,252,.55);
  box-shadow: 0 0 0 4px rgba(124,92,252,.12);
}
.support-form .btn-primary {
  align-self: flex-start;
}
.success-banner {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(124,92,252,.12);
  border: 1px solid rgba(124,92,252,.24);
  color: var(--text);
}
.hidden { display: none; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border); padding: 36px 0;
  position: relative; z-index: 1; transition: border-color 0.35s;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { color: var(--muted); font-size: 13px; text-decoration: none; transition: color .2s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { color: var(--muted); font-size: 13px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp .7s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .22s; }
.delay-3 { animation-delay: .34s; }
.delay-4 { animation-delay: .46s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .legal-layout,
  .support-grid,
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 72px 0 60px; }
  .page-hero { padding: 72px 0 20px; }
  .demo-wrap { padding: 20px; margin-top: 48px; }
  .features { padding: 72px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .price-card { padding: 28px 24px; }
  .legal-content,
  .legal-meta,
  .legal-toc,
  .support-card,
  .support-form-card { padding: 24px 20px; }
  .nav-right { gap: 10px; }
  .mobile-controls { justify-content: space-between; }
}
