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

:root {
  --bg: #08080a;
  --surface: #111114;
  --surface2: #18181c;
  --border: rgba(255,255,255,0.07);
  --border2: rgba(255,255,255,0.12);
  --text: #f0f0f4;
  --muted: #6b6b78;
  --muted2: #9898a8;
  --orange: #ff6a00;
  --orange2: #ff4500;
  --orange-glow: rgba(255,106,0,0.18);
  --orange-faint: rgba(255,106,0,0.06);
  --green: #22c55e;
  --r: 12px;
  --r2: 16px;
  --r3: 20px;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed; top: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 8px 0 16px;
  height: 52px;
  width: min(860px, calc(100vw - 40px));

  /* liquid glass pill */
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.09) 0%,
    rgba(255,255,255,0.04) 50%,
    rgba(255,255,255,0.07) 100%
  );
  backdrop-filter: blur(28px) saturate(180%) brightness(1.1);
  -webkit-backdrop-filter: blur(28px) saturate(180%) brightness(1.1);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 100px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.2),
    0 8px 32px rgba(0,0,0,0.4),
    0 2px 8px rgba(0,0,0,0.25);
}

/* top specular highlight — the liquid glass signature */
nav::before {
  content: '';
  position: absolute;
  top: 0; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.6) 40%,
    rgba(255,255,255,0.8) 50%,
    rgba(255,255,255,0.6) 60%,
    transparent
  );
  border-radius: 100px;
  pointer-events: none;
}

.nav-logo {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo svg { width: 26px; height: 26px; }
.nav-logo-name {
  font-size: 16px; font-weight: 800; color: var(--text);
  letter-spacing: -0.03em;
}
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--muted2);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.btn-nav {
  padding: 8px 16px; border-radius: 100px;
  font-size: 13px; font-weight: 700;
  font-family: 'Outfit', sans-serif;
  background: var(--orange); color: #fff;
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.2s; white-space: nowrap;
  box-shadow: 0 2px 12px rgba(255,106,0,0.35);
}
.btn-nav:hover {
  background: #ff7a1a;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(255,106,0,0.5);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 160px 24px 80px;
  overflow: hidden;
}

/* radial glow behind hero */
.hero::after {
  content: '';
  position: absolute;
  top: 10%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 500px;
  background: radial-gradient(ellipse, rgba(255,106,0,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 5px 14px 5px 8px;
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.25);
  border-radius: 100px;
  font-size: 12px; font-weight: 600; color: #ff9050;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.02em;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero-title {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
  max-width: 900px;
  position: relative; z-index: 1;
  margin-bottom: 8px;
}
.hero-title .crack {
  color: var(--orange);
  display: inline-block;
  animation: jolt 4s ease-in-out infinite;
}
@keyframes jolt {
  0%, 85%, 100% { transform: none; }
  88% { transform: skewX(-8deg) translateX(3px); }
  91% { transform: skewX(4deg) translateX(-2px); }
  94% { transform: skewX(-2deg); }
  97% { transform: none; }
}

.hero-sub {
  font-size: clamp(17px, 2.5vw, 21px);
  font-weight: 400;
  color: var(--muted2);
  max-width: 580px;
  line-height: 1.55;
  margin: 20px auto 44px;
  position: relative; z-index: 1;
}

.hero-actions {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 12px;
  position: relative; z-index: 1;
  margin-bottom: 48px;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: 10px;
  font-size: 15px; font-weight: 700;
  font-family: 'Outfit', sans-serif;
  background: var(--orange);
  color: #fff; border: none; cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(255,106,0,0.3);
}
.btn-primary:hover {
  background: #ff7a1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,106,0,0.4);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 14px 26px; border-radius: 10px;
  font-size: 15px; font-weight: 700;
  font-family: 'Outfit', sans-serif;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border2);
  cursor: pointer; text-decoration: none;
  transition: all 0.25s;
}
.btn-secondary:hover {
  background: var(--surface2);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* animated lasso in hero */
.hero-lasso {
  position: relative; z-index: 1;
  margin-bottom: 44px;
}
.hero-lasso svg {
  width: 110px; height: 110px;
  animation: spin-lasso 6s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255,106,0,0.5));
}
@keyframes spin-lasso {
  0%   { transform: rotate(0deg) scale(1); }
  20%  { transform: rotate(25deg) scale(1.04); }
  40%  { transform: rotate(-15deg) scale(0.97); }
  60%  { transform: rotate(10deg) scale(1.02); }
  80%  { transform: rotate(-5deg) scale(1); }
  100% { transform: rotate(0deg) scale(1); }
}

/* crack flash */
.crack-flash {
  position: absolute;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,106,0,0.6) 0%, transparent 70%);
  opacity: 0;
  pointer-events: none;
  animation: crack-burst 6s ease-in-out infinite;
}
@keyframes crack-burst {
  0%, 38%, 100% { opacity: 0; transform: translate(-50%,-50%) scale(0.5); }
  42% { opacity: 1; transform: translate(-50%,-50%) scale(1.2); }
  50% { opacity: 0; transform: translate(-50%,-50%) scale(1.6); }
}

.hero-note {
  font-size: 12px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  position: relative; z-index: 1;
  display: flex; align-items: center; gap: 6px;
}
.hero-note span { color: var(--muted2); }

/* ── PROOF TICKER ── */
.ticker-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,106,0,0.03);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}
.ticker-track {
  display: flex; align-items: center;
  width: max-content;
  animation: ticker 28s linear infinite;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 48px;
  font-size: 13px; font-weight: 500; color: var(--muted2);
  white-space: nowrap;
  font-family: 'JetBrains Mono', monospace;
}
.ticker-item .t-accent { color: var(--orange); font-weight: 700; }
.ticker-sep { color: var(--border2); }

/* ── SECTION BASE ── */
section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 24px;
}
.section-eyebrow {
  font-size: 11px; font-weight: 700; color: var(--orange);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.section-eyebrow::before {
  content: '';
  width: 18px; height: 2px;
  background: var(--orange); border-radius: 2px;
}
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.1; color: var(--text);
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px; color: var(--muted2);
  max-width: 520px; line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--orange-faint) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s;
}
.step-card:hover { border-color: rgba(255,106,0,0.3); transform: translateY(-3px); }
.step-card:hover::before { opacity: 1; }
.step-num {
  font-size: 11px; font-weight: 700; color: var(--orange);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.1em; margin-bottom: 20px;
}
.step-icon {
  width: 44px; height: 44px; margin-bottom: 16px;
  background: var(--orange-faint);
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.step-title {
  font-size: 18px; font-weight: 800;
  letter-spacing: -0.02em; margin-bottom: 8px;
}
.step-desc {
  font-size: 14px; color: var(--muted2); line-height: 1.6;
}

/* ── DEMO VISUAL ── */
.demo-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r3);
  overflow: hidden;
  margin-top: 56px;
  position: relative;
}
.demo-titlebar {
  background: var(--surface2);
  border-bottom: 1px solid var(--border);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
}
.demo-dots { display: flex; gap: 6px; }
.demo-dot { width: 10px; height: 10px; border-radius: 50%; }
.demo-dot.r { background: #ff5f57; }
.demo-dot.y { background: #febc2e; }
.demo-dot.g { background: #28c940; }
.demo-title-text {
  font-size: 11px; color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  flex: 1; text-align: center;
}
.demo-body {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 320px;
}
.demo-editor {
  padding: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.8;
  border-right: 1px solid var(--border);
}
.code-line { display: flex; gap: 16px; }
.line-num { color: #333; user-select: none; min-width: 16px; text-align: right; }
.kw { color: #c678dd; }
.fn { color: #61afef; }
.str { color: #98c379; }
.cm { color: #4a4a5a; }
.demo-overlay-side {
  padding: 28px 24px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(255,106,0,0.04) 0%, transparent 100%);
}
.demo-lasso-anim {
  position: relative;
  width: 100px; height: 100px;
}
.demo-lasso-anim svg {
  width: 100px; height: 100px;
  animation: swing 2s ease-in-out infinite;
  filter: drop-shadow(0 0 14px rgba(255,106,0,0.6));
}
@keyframes swing {
  0%, 100% { transform: rotate(-20deg); }
  50% { transform: rotate(20deg); }
}
.demo-crack-text {
  font-size: 28px; font-weight: 900; color: var(--orange);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.1em;
  animation: crack-text 2s ease-in-out infinite;
}
@keyframes crack-text {
  0%, 40%, 100% { opacity: 0.3; transform: scale(0.95); }
  50% { opacity: 1; transform: scale(1.08); }
  60% { opacity: 0.8; transform: scale(1); }
}
.demo-message {
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.25);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 12px; color: #ff9050;
  font-family: 'JetBrains Mono', monospace;
  text-align: center;
  line-height: 1.5;
  max-width: 200px;
}

/* ── THEMES ── */
.themes-section { text-align: center; }
.themes-section .section-eyebrow { justify-content: center; }
.themes-section .section-eyebrow::before { display: none; }
.themes-section .section-sub { margin: 0 auto; }

.themes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 56px;
  text-align: left;
}
.theme-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s;
  position: relative;
}
.theme-card:hover { transform: translateY(-4px); border-color: var(--border2); }
.theme-card.free-theme { border-color: rgba(34,197,94,0.25); }
.theme-thumb {
  height: 90px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.theme-info { padding: 12px 14px; }
.theme-info-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.theme-name-text { font-size: 13px; font-weight: 700; letter-spacing: -0.01em; }
.theme-badge-free {
  font-size: 9px; font-weight: 700; color: var(--green);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 4px; padding: 2px 6px;
  font-family: 'JetBrains Mono', monospace;
}
.theme-badge-premium {
  font-size: 9px; font-weight: 700; color: #ff9050;
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.2);
  border-radius: 4px; padding: 2px 6px;
  font-family: 'JetBrains Mono', monospace;
}
.theme-type { font-size: 11px; color: var(--muted); font-family: 'JetBrains Mono', monospace; }

/* individual theme gradients */
.t-classic  { background: linear-gradient(135deg, #2a1f10 0%, #4a3018 50%, #3a2510 100%); }
.t-western  { background: linear-gradient(135deg, #1a1208 0%, #4a3218 50%, #2a1e0e 100%); }
.t-samurai  { background: linear-gradient(135deg, #0a0a12 0%, #1e2030 50%, #0d0f1a 100%); }
.t-plasma   { background: linear-gradient(135deg, #0d0520 0%, #1a0840 50%, #200a50 100%); }
.t-fire     { background: linear-gradient(135deg, #1a0500 0%, #3a0f00 50%, #1a0800 100%); }
.t-lightning { background: linear-gradient(135deg, #08080f 0%, #101830 50%, #0a0a18 100%); }
.t-viking   { background: linear-gradient(135deg, #0c0c0e 0%, #1c1c20 50%, #14141a 100%); }
.t-pharaoh  { background: linear-gradient(135deg, #100d00 0%, #281e00 50%, #1a1400 100%); }

/* theme icon glows */
.t-classic .theme-glow  { color: #c8954a; font-size: 32px; filter: drop-shadow(0 0 12px #c8954a88); }
.t-western .theme-glow  { color: #e8a050; font-size: 32px; filter: drop-shadow(0 0 12px #e8a05088); }
.t-samurai .theme-glow  { color: #e8e8f4; font-size: 32px; filter: drop-shadow(0 0 12px #e8e8f488); }
.t-plasma  .theme-glow  { color: #a855f7; font-size: 32px; filter: drop-shadow(0 0 12px #a855f788); }
.t-fire    .theme-glow  { color: #ff4500; font-size: 32px; filter: drop-shadow(0 0 16px #ff450088); }
.t-lightning .theme-glow { color: #fbbf24; font-size: 32px; filter: drop-shadow(0 0 12px #fbbf2488); }
.t-viking  .theme-glow  { color: #9ca3af; font-size: 32px; filter: drop-shadow(0 0 12px #9ca3af88); }
.t-pharaoh .theme-glow  { color: #f59e0b; font-size: 32px; filter: drop-shadow(0 0 14px #f59e0b88); }

/* ── SOCIAL PROOF ── */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.proof-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 22px 22px 20px;
  transition: border-color 0.2s;
}
.proof-card:hover { border-color: var(--border2); }
.proof-stars {
  color: var(--orange); font-size: 13px;
  letter-spacing: 2px; margin-bottom: 12px;
}
.proof-text {
  font-size: 14px; color: var(--muted2);
  line-height: 1.65; margin-bottom: 16px;
  font-style: italic;
}
.proof-text strong { color: var(--text); font-style: normal; }
.proof-author {
  display: flex; align-items: center; gap: 10px;
}
.proof-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--orange);
}
.proof-name { font-size: 13px; font-weight: 600; }
.proof-handle { font-size: 11px; color: var(--muted); font-family: 'JetBrains Mono', monospace; }

/* ── PRICING ── */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
  max-width: 760px;
  margin-left: auto; margin-right: auto;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 32px 28px;
  position: relative;
  transition: all 0.25s;
}
.pricing-card.featured {
  border-color: rgba(255,106,0,0.4);
  background: linear-gradient(145deg, rgba(255,106,0,0.06) 0%, var(--surface) 100%);
  box-shadow: 0 0 0 1px rgba(255,106,0,0.2), 0 16px 48px rgba(255,106,0,0.12);
}
.pricing-card:hover { transform: translateY(-3px); }
.pricing-tag {
  font-size: 10px; font-weight: 700; color: var(--orange);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 12px;
}
.pricing-name { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.pricing-price {
  display: flex; align-items: baseline; gap: 4px;
  margin-bottom: 6px;
}
.pricing-amount { font-size: 44px; font-weight: 900; letter-spacing: -0.04em; color: var(--text); }
.pricing-period { font-size: 14px; color: var(--muted2); }
.pricing-desc { font-size: 13px; color: var(--muted2); margin-bottom: 24px; line-height: 1.5; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--muted2); line-height: 1.4;
}
.pricing-features li::before {
  content: '✓';
  color: var(--green); font-weight: 700;
  font-size: 13px; flex-shrink: 0; margin-top: 1px;
}
.btn-pricing {
  display: block; width: 100%;
  padding: 13px; border-radius: 9px;
  font-size: 15px; font-weight: 700;
  font-family: 'Outfit', sans-serif;
  text-align: center; text-decoration: none;
  cursor: pointer; border: none; transition: all 0.2s;
}
.btn-pricing.orange {
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 16px rgba(255,106,0,0.3);
}
.btn-pricing.orange:hover { background: #ff7a1a; transform: translateY(-1px); }
.btn-pricing.ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border2);
}
.btn-pricing.ghost:hover { background: var(--surface2); }

/* ── FAQ ── */
.faq-list {
  display: flex; flex-direction: column;
  gap: 2px;
  margin-top: 56px;
  max-width: 760px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: rgba(255,106,0,0.3); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px; font-weight: 600;
  user-select: none;
}
.faq-q:hover { color: var(--orange); }
.faq-arrow {
  color: var(--muted); font-size: 16px;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(45deg); color: var(--orange); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 14px; color: var(--muted2); line-height: 1.7;
  padding: 0 22px;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 22px 18px; }

/* ── EMAIL CTA ── */
.email-section {
  text-align: center;
  background: linear-gradient(180deg, transparent 0%, rgba(255,106,0,0.04) 100%);
  border-top: 1px solid var(--border);
}
.email-section .section-title { margin-bottom: 12px; }
.email-section .section-sub { margin: 0 auto 36px; }
.email-form {
  display: flex; gap: 10px;
  max-width: 440px; margin: 0 auto 14px;
}
.email-input {
  flex: 1; padding: 13px 16px; border-radius: 9px;
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--text); font-size: 14px;
  font-family: 'Outfit', sans-serif;
  outline: none; transition: border-color 0.2s;
}
.email-input::placeholder { color: var(--muted); }
.email-input:focus { border-color: rgba(255,106,0,0.5); }
.email-note { font-size: 12px; color: var(--muted); font-family: 'JetBrains Mono', monospace; }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 24px;
  max-width: 1100px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-left {
  display: flex; align-items: center; gap: 10px;
}
.footer-logo svg { width: 22px; height: 22px; }
.footer-name { font-size: 14px; font-weight: 700; color: var(--muted2); }
.footer-copy { font-size: 12px; color: var(--muted); margin-top: 3px; font-family: 'JetBrains Mono', monospace; }
.footer-links { display: flex; gap: 24px; }
.footer-links a {
  font-size: 13px; color: var(--muted);
  text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* ── SCROLL FADE IN ── */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0 6px 0 14px; top: 12px; }
  .nav-links { display: none; }
  .steps-grid { grid-template-columns: 1fr; }
  .themes-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .demo-body { grid-template-columns: 1fr; }
  .demo-editor { border-right: none; border-bottom: 1px solid var(--border); }
  footer { flex-direction: column; gap: 20px; text-align: center; }
  .email-form { flex-direction: column; }
}
/* ── COOKIE BANNER ── */
#cookieBanner {
  position: fixed;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  width: min(680px, calc(100vw - 32px));
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 14px 14px 14px 20px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.09) 0%,
    rgba(255,255,255,0.04) 60%,
    rgba(255,255,255,0.07) 100%
  );
  backdrop-filter: blur(28px) saturate(180%) brightness(1.1);
  -webkit-backdrop-filter: blur(28px) saturate(180%) brightness(1.1);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 100px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.2),
    inset 0 -1px 0 rgba(0,0,0,0.2),
    0 8px 40px rgba(0,0,0,0.5),
    0 2px 12px rgba(0,0,0,0.3);
  animation: cookie-slide-up 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#cookieBanner::before {
  content: '';
  position: absolute;
  top: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.55) 40%,
    rgba(255,255,255,0.75) 50%,
    rgba(255,255,255,0.55) 60%,
    transparent
  );
  border-radius: 100px;
  pointer-events: none;
}
@keyframes cookie-slide-up {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.cookie-text {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--muted2); line-height: 1.4;
  flex: 1;
}
.cookie-text a { color: var(--orange); text-decoration: none; }
.cookie-text a:hover { text-decoration: underline; }
.cookie-actions {
  display: flex; gap: 8px; flex-shrink: 0;
}
.cookie-decline {
  padding: 8px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
  font-family: 'Outfit', sans-serif;
  background: transparent; color: var(--muted2);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.cookie-decline:hover { color: var(--text); border-color: rgba(255,255,255,0.25); }
.cookie-accept {
  padding: 8px 18px; border-radius: 100px;
  font-size: 12px; font-weight: 700;
  font-family: 'Outfit', sans-serif;
  background: var(--orange); color: #fff;
  border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap;
  box-shadow: 0 2px 10px rgba(255,106,0,0.35);
}
.cookie-accept:hover { background: #ff7a1a; }
@media (max-width: 600px) {
  #cookieBanner { flex-direction: column; border-radius: 20px; padding: 18px 18px 14px; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-decline, .cookie-accept { flex: 1; text-align: center; }
}
