/* Qural Landing v5 — каждая секция в своём стиле */

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --text: #f0f0f0;
  --dim: #8888aa;
  --accent: #10b981;
  --accent2: #8b5cf6;
  --accent4: #ec4899;
  --blue: #3b82f6;
}
html { scroll-behavior: smooth; }
body { font-family: -apple-system, BlinkMacSystemFont, 'SF Pro', system-ui, sans-serif; overflow-x: hidden; }

/* ===== Scroll animations ===== */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.v { opacity: 1; transform: none; }
.rl { opacity: 0; transform: translateX(-60px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.rl.v { opacity: 1; transform: none; }
.rr { opacity: 0; transform: translateX(60px); transition: all 0.8s cubic-bezier(0.16,1,0.3,1); }
.rr.v { opacity: 1; transform: none; }
.rs { opacity: 0; transform: scale(0.8); transition: all 0.7s cubic-bezier(0.16,1,0.3,1); }
.rs.v { opacity: 1; transform: scale(1); }

/* Cursor glow (desktop) */
#cursorGlow {
  position: fixed; width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(16,185,129,0.05) 0%, transparent 70%);
  pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: opacity 0.3s;
}

/* =========================================================
   SECTION 1: HERO — dark cinematic, fullscreen canvas "video"
   ========================================================= */
.hero {
  position: relative; min-height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: #000;
}
.hero canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-grain {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  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");
  background-repeat: repeat; opacity: 0.5;
}
.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 20px;
  max-width: 700px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 20px; border-radius: 24px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.7); font-size: 13px; font-weight: 700;
  letter-spacing: 2px; margin-bottom: 28px; backdrop-filter: blur(12px);
}
.hero-badge .pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.5); } 50% { box-shadow: 0 0 0 8px transparent; } }
.hero h1 {
  font-size: clamp(40px, 10vw, 80px); font-weight: 900;
  line-height: 1.05; margin-bottom: 20px; color: #fff;
}
.hero h1 .grad {
  background: linear-gradient(135deg, #fff 0%, var(--accent) 50%, var(--accent2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 200% 200%;
  animation: heroGrad 6s ease infinite;
}
@keyframes heroGrad { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.hero .sub {
  font-size: clamp(16px, 3vw, 21px); color: rgba(255,255,255,0.5);
  max-width: 520px; margin: 0 auto 36px; line-height: 1.7;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 44px; background: #fff; color: #000;
  border-radius: 60px; font-weight: 700; font-size: 17px;
  text-decoration: none; transition: all 0.4s;
  box-shadow: 0 0 60px rgba(255,255,255,0.1);
}
.hero-cta:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 0 80px rgba(255,255,255,0.2); }
.hero-cta svg { width: 18px; height: 18px; }

/* Cycling words */
.cycle-word {
  display: inline-block; text-align: center;
  color: #fff; font-weight: 700;
  border-bottom: 2px solid rgba(139,92,246,0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cycle-word.out {
  opacity: 0; transform: translateY(-6px);
}

/* Glitch magic text */
.glitch-text {
  position: relative; display: inline-block;
  font-style: italic;
  font-weight: 800; letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 0 10px rgba(139,92,246,0.6), 0 0 40px rgba(139,92,246,0.2);
  animation: glitchGlow 4s ease-in-out infinite;
}
.glitch-text::before,
.glitch-text::after {
  content: attr(data-text);
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.glitch-text::before {
  color: #ff00ea;
  animation: glitch1 3.5s infinite linear;
  clip-path: inset(0 0 60% 0);
  text-shadow: -2px 0 #ff00ea;
}
.glitch-text::after {
  color: #00f0ff;
  animation: glitch2 3.5s infinite linear;
  clip-path: inset(60% 0 0 0);
  text-shadow: 2px 0 #00f0ff;
}
@keyframes glitch1 {
  0%, 89%   { transform: translate(0); }
  90%       { transform: translate(-3px, -1px); }
  91%       { transform: translate(2px, 1px); }
  92%       { transform: translate(-1px, 0); }
  93%, 100% { transform: translate(0); }
}
@keyframes glitch2 {
  0%, 84%   { transform: translate(0); }
  85%       { transform: translate(3px, 1px); }
  86%       { transform: translate(-2px, -1px); }
  87%       { transform: translate(1px, 0); }
  88%, 100% { transform: translate(0); }
}
.magic-canvas {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 3;
}

@keyframes glitchGlow {
  0%, 100% { text-shadow: 0 0 10px rgba(139,92,246,0.6), 0 0 40px rgba(139,92,246,0.2); }
  25%      { text-shadow: 0 0 15px rgba(236,72,153,0.7), 0 0 50px rgba(236,72,153,0.2), 0 0 80px rgba(139,92,246,0.1); }
  50%      { text-shadow: 0 0 12px rgba(103,232,249,0.6), 0 0 45px rgba(103,232,249,0.2); }
  75%      { text-shadow: 0 0 15px rgba(251,191,36,0.5), 0 0 50px rgba(139,92,246,0.25); }
}

/* Hero devices row */
.hero-devices {
  margin-top: 28px; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hd-icons {
  display: flex; align-items: center; gap: 8px;
}
.hd-icon {
  width: 32px; height: 32px; padding: 5px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px; border: 1px solid transparent;
  opacity: 0.2; transition: all 0.4s ease;
  color: #fff;
}
.hd-icon svg { width: 18px; height: 18px; }
.hd-icon.active {
  opacity: 1;
  border-color: rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 16px rgba(255,255,255,0.08);
  transform: scale(1.15);
}
.hd-text {
  font-size: 13px; color: rgba(255,255,255,0.4); letter-spacing: 0.5px;
}
.hd-text strong {
  color: rgba(255,255,255,0.75); font-weight: 600;
  transition: opacity 0.2s ease;
}
@media (max-width: 480px) {
  .hd-icons { gap: 4px; }
  .hd-icon { width: 28px; height: 28px; padding: 4px; }
  .hd-icon svg { width: 15px; height: 15px; }
}

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.3); font-size: 11px; letter-spacing: 2px;
}
.scroll-hint .mouse {
  width: 22px; height: 34px; border: 2px solid rgba(255,255,255,0.15);
  border-radius: 11px; position: relative;
}
.scroll-hint .mouse::after {
  content: ''; width: 3px; height: 7px; background: rgba(255,255,255,0.3);
  border-radius: 2px; position: absolute; top: 6px; left: 50%;
  transform: translateX(-50%); animation: scrollWheel 2s infinite;
}
@keyframes scrollWheel { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 20px; } }

/* =========================================================
   SECTION 2: STEPS — traveling chat showcase
   ========================================================= */
.sec-steps {
  background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
  padding: 100px 20px; position: relative; overflow: hidden;
}
.sec-steps .inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }
.sec-steps .sec-label {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent2); margin-bottom: 10px; font-weight: 700;
  transition: opacity 0.35s;
}
.sec-steps h2 {
  font-size: clamp(28px, 5vw, 40px); font-weight: 800;
  color: #111; margin-bottom: 36px; line-height: 1.2;
  transition: opacity 0.35s;
}

/* Floating bubbles background */
.bubbles-bg { position: absolute; inset: 0; z-index: 1; pointer-events: auto; }
.bubble {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 16px; max-width: 260px;
  font-size: 13px; line-height: 1.4; white-space: nowrap;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1), opacity 0.5s, filter 0.5s;
  cursor: default; pointer-events: auto;
  animation: bubbleFloat 20s ease-in-out infinite alternate;
}
.bubble-user { background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.15); color: #166534; }
.bubble-ai { background: rgba(139,92,246,0.08); border: 1px solid rgba(139,92,246,0.15); color: #5b21b6; }
.bubble-icon { font-size: 16px; flex-shrink: 0; }
.bubble-text { overflow: hidden; text-overflow: ellipsis; transition: opacity 0.3s; }
@keyframes bubbleFloat {
  0%   { transform: scale(var(--s,1)) translate(0, 0); }
  25%  { transform: scale(var(--s,1)) translate(15px, -20px); }
  50%  { transform: scale(var(--s,1)) translate(-10px, -5px); }
  75%  { transform: scale(var(--s,1)) translate(20px, 15px); }
  100% { transform: scale(var(--s,1)) translate(-5px, -15px); }
}

/* === Step cards row === */
.steps-row { display: flex; gap: 14px; margin-bottom: 24px; }
.scard {
  flex: 1; padding: 18px 16px; border-radius: 14px;
  background: rgba(255,255,255,0.88); border: 2px solid transparent;
  backdrop-filter: blur(8px); cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.scard:hover { border-color: rgba(16,185,129,0.3); box-shadow: 0 6px 24px rgba(16,185,129,0.08); }
.scard.active {
  border-color: var(--accent); background: rgba(255,255,255,0.96);
  box-shadow: 0 8px 28px rgba(16,185,129,0.12); transform: translateY(-2px);
}
.scard-n {
  width: 30px; height: 30px; border-radius: 9px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 13px; margin-bottom: 10px;
}
.scard-t {
  font-weight: 700; font-size: 15px; color: #111; margin: 0 0 4px;
  transition: opacity 0.35s;
}
.scard-d {
  font-size: 12px; color: #888; line-height: 1.4; margin: 0;
  transition: opacity 0.35s;
}
@media (max-width: 600px) {
  .steps-row { flex-direction: column; gap: 10px; }
}

/* === Chat stage (traveling chat) === */
.sc-stage { position: relative; min-height: 320px; }
.sc-ptr {
  position: absolute; top: -7px; width: 14px; height: 14px;
  background: #1a1a2e; transform: rotate(45deg); z-index: 4;
  transition: left 0.5s cubic-bezier(0.4,0,0.2,1);
  border-top: 1px solid rgba(255,255,255,0.08);
  border-left: 1px solid rgba(255,255,255,0.08);
}
.sc-chat {
  position: absolute; top: 0; left: 0;
  width: min(360px, 90vw); border-radius: 16px; overflow: hidden;
  background: #1a1a2e; border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18), 0 0 40px rgba(139,92,246,0.04);
  z-index: 3;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.3s;
}
.sc-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px; background: rgba(255,255,255,0.03);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sc-dot { width: 8px; height: 8px; border-radius: 50%; }
.sc-dot:nth-child(1) { background: #ef4444; }
.sc-dot:nth-child(2) { background: #f59e0b; }
.sc-dot:nth-child(3) { background: #22c55e; }
.sc-title { flex: 1; font-size: 12px; color: rgba(255,255,255,0.5); margin-left: 6px; font-weight: 600; }
.sc-num {
  font-size: 10px; color: rgba(255,255,255,0.3);
  padding: 2px 8px; border-radius: 4px; background: rgba(255,255,255,0.05);
}

/* Chat messages */
.sc-msgs {
  padding: 14px; min-height: 160px; max-height: 220px;
  overflow-y: auto; display: flex; flex-direction: column; gap: 8px;
}
.sc-msg {
  padding: 8px 12px; border-radius: 12px;
  font-size: 12px; line-height: 1.5; max-width: 88%;
  animation: scMsgIn 0.3s ease-out;
}
@keyframes scMsgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.sc-msg-user {
  background: rgba(16,185,129,0.15); color: #a7f3d0;
  align-self: flex-end; border-bottom-right-radius: 4px;
}
.sc-msg-ai {
  background: rgba(139,92,246,0.12); color: #c4b5fd;
  align-self: flex-start; border-bottom-left-radius: 4px;
}

/* Action lines */
.sc-action {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: rgba(255,255,255,0.35); padding: 3px 0;
  animation: scMsgIn 0.3s ease-out;
}
.sc-action-active { color: rgba(255,255,255,0.6); }
.sc-action-done { color: #4ade80; }
.sc-spinner {
  width: 10px; height: 10px; border: 2px solid rgba(139,92,246,0.2);
  border-top-color: var(--accent2); border-radius: 50%; flex-shrink: 0;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.sc-check { color: #4ade80; font-weight: bold; flex-shrink: 0; }

/* Chat input footer */
.sc-foot {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-top: 1px solid rgba(255,255,255,0.06);
}
.sc-inp {
  flex: 1; min-height: 28px; padding: 6px 10px; border-radius: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  font-size: 12px; color: #e0e0e0; font-family: inherit;
  display: flex; align-items: center; line-height: 1.4;
  overflow: hidden; word-break: break-word;
}
.sc-cursor {
  display: inline-block; width: 1.5px; height: 14px;
  background: var(--accent); margin-left: 1px;
  animation: cursorBlink 1s step-end infinite;
}
@keyframes cursorBlink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }
.sc-send {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--accent); color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: bold; flex-shrink: 0;
  transition: opacity 0.3s;
}
.sc-send.dim { opacity: 0.3; }

/* Mini browser result overlay */
.sc-mini {
  position: absolute; top: 0; left: 0;
  width: min(360px, 90vw); border-radius: 14px; overflow: hidden;
  background: #fff; border: 1px solid #e0e0e0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  z-index: 5;
  opacity: 0; pointer-events: none;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1), opacity 0.4s;
}
.sc-mini.show { opacity: 1; pointer-events: auto; }
.sc-mini-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px; background: #f5f5f5;
  border-bottom: 1px solid #e8e8e8;
}
.sc-mini-url {
  flex: 1; font-size: 10px; color: #999;
  padding: 3px 8px; border-radius: 4px;
  background: #fff; border: 1px solid #e0e0e0;
  font-family: monospace; margin-left: 4px;
}
.sc-mini-page {
  height: 260px; overflow-y: auto;
}

/* Idea navigation dots */
.sc-pips {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
}
.sc-pip {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(0,0,0,0.1); cursor: pointer;
  transition: all 0.3s;
}
.sc-pip:hover { background: rgba(16,185,129,0.3); transform: scale(1.2); }
.sc-pip.active { background: var(--accent); transform: scale(1.2); box-shadow: 0 0 8px rgba(16,185,129,0.4); }

/* =========================================================
   SECTION 3: SNAKE — forest / nature theme
   ========================================================= */
.sec-snake {
  background: #0a160a;
  padding: 100px 20px; position: relative; overflow: hidden;
}
#forestCanvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
.sec-snake .inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.sec-snake .sec-label {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: #4ade80; margin-bottom: 10px; font-weight: 700;
}
.sec-snake h2 {
  font-size: clamp(28px, 5vw, 40px); font-weight: 800;
  color: #e8f5e8; margin-bottom: 8px; line-height: 1.2;
}
.sec-snake .desc { color: #8ab88a; font-size: 16px; line-height: 1.7; margin-bottom: 32px; max-width: 500px; }

.snake-showcase {
  border-radius: 20px; overflow: hidden;
  background: #0f1f0f; border: 2px solid rgba(74,222,128,0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(74,222,128,0.05);
}
.snake-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: rgba(74,222,128,0.04);
  border-bottom: 1px solid rgba(74,222,128,0.1);
}
.snake-bar-dots { display: flex; gap: 6px; }
.snake-bar-dots span { width: 10px; height: 10px; border-radius: 50%; }
.snake-bar-dots span:nth-child(1) { background: rgba(239,68,68,0.6); }
.snake-bar-dots span:nth-child(2) { background: rgba(245,158,11,0.6); }
.snake-bar-dots span:nth-child(3) { background: rgba(74,222,128,0.6); }
.snake-bar-url {
  flex: 1; margin-left: 8px; padding: 5px 12px; border-radius: 8px;
  background: rgba(74,222,128,0.04); border: 1px solid rgba(74,222,128,0.1);
  font-size: 12px; color: #6b9b6b; font-family: monospace;
}
.snake-bar-tag {
  padding: 4px 10px; border-radius: 8px; font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  background: rgba(74,222,128,0.12); color: #4ade80; border: 1px solid rgba(74,222,128,0.2);
}

.snake-body { display: flex; flex-wrap: wrap; }
.snake-main { flex: 1; min-width: 320px; padding: 24px; display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; }
.snake-sidebar {
  width: 280px; padding: 24px; border-left: 1px solid rgba(74,222,128,0.08);
  display: flex; flex-direction: column; gap: 16px;
  background: rgba(0,0,0,0.2);
}
@media (max-width: 800px) {
  .snake-body { flex-direction: column; }
  .snake-sidebar { width: 100%; border-left: none; border-top: 1px solid rgba(74,222,128,0.08); }
  .snake-main { justify-content: center; }
}

.snake-info { max-width: 240px; }
.snake-info h3 { font-size: 20px; font-weight: 800; color: #4ade80; margin-bottom: 6px; }
.snake-score-big {
  font-size: 52px; font-weight: 900; color: #4ade80;
  margin: 8px 0; line-height: 1; font-variant-numeric: tabular-nums;
  text-shadow: 0 0 30px rgba(74,222,128,0.3);
}
.snake-hint { font-size: 13px; color: #6b9b6b; line-height: 1.6; margin-bottom: 12px; }
.snake-hint kbd {
  display: inline-block; padding: 2px 7px; border-radius: 5px;
  background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2);
  font-size: 11px; font-family: monospace; color: #8bdb8b; margin: 0 2px;
}
.snake-best { font-size: 12px; color: #4a7a4a; }

.snake-canvas-wrap {
  position: relative; border-radius: 12px; overflow: hidden;
  box-shadow: 0 0 40px rgba(0,0,0,0.6);
}
.snake-canvas-wrap canvas { display: block; }
.s-over {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: rgba(10,22,10,0.88); backdrop-filter: blur(6px);
  z-index: 2; border-radius: 12px; gap: 10px;
}
.s-over.hide { display: none; }
.s-over-title { font-size: 22px; font-weight: 800; color: #4ade80; }
.s-over-score { font-size: 14px; color: #6b9b6b; }
.s-btn {
  padding: 14px 28px; border-radius: 12px; border: none;
  background: linear-gradient(135deg, #16a34a, #059669);
  color: #fff; font-size: 16px; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: all 0.3s;
  box-shadow: 0 0 30px rgba(22,163,74,0.3);
}
.s-btn:hover { transform: scale(1.05); box-shadow: 0 0 50px rgba(22,163,74,0.5); }

.s-ctrl { display: none; margin-top: 12px; }
@media (max-width: 768px) {
  .s-ctrl {
    display: grid; grid-template-columns: repeat(3, 50px);
    grid-template-rows: repeat(2, 50px); gap: 5px; justify-content: center;
  }
}
.s-ctrl button {
  width: 50px; height: 50px; border-radius: 12px;
  border: 1px solid rgba(74,222,128,0.15); background: rgba(74,222,128,0.06);
  color: #4ade80; font-size: 20px; cursor: pointer;
  font-family: inherit; transition: all 0.2s;
}
.s-ctrl button:active { background: #16a34a; color: #fff; transform: scale(0.9); }

/* Snake prompt buttons */
.snake-prompt-list { display: flex; flex-direction: column; gap: 10px; }
.snake-prompt-item {
  display: block; padding: 12px 14px; border-radius: 12px;
  background: rgba(74,222,128,0.05); border: 1px solid rgba(74,222,128,0.12);
  text-decoration: none; color: inherit; transition: all 0.3s; cursor: pointer;
}
.snake-prompt-item:hover { border-color: rgba(74,222,128,0.3); background: rgba(74,222,128,0.08); transform: translateX(4px); }
.snake-prompt-label { font-size: 11px; color: #4a7a4a; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; font-weight: 600; }
.snake-prompt-text { font-size: 13px; color: #8bdb8b; line-height: 1.5; }
.snake-prompt-arrow { float: right; color: #4ade80; font-size: 16px; margin-top: -20px; }
.sidebar-title { font-size: 14px; font-weight: 700; color: #4ade80; margin-bottom: 4px; }
.sidebar-desc { font-size: 12px; color: #4a7a4a; margin-bottom: 8px; }

/* =========================================================
   SECTION 4: GREETING — warm festive pink/gold
   ========================================================= */
.sec-greeting {
  background: linear-gradient(135deg, #2d1525 0%, #1f0f2a 50%, #1a0f25 100%);
  padding: 100px 20px;
  position: relative; overflow: hidden;
}
.sec-greeting > canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}
.widget-video-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; pointer-events: none;
}
.widget-video-overlay {
  position: absolute; inset: 0; z-index: 0;
  background: rgba(10, 5, 20, 0.35);
  pointer-events: none;
}
.sec-greeting > .inner { position: relative; z-index: 1; }
.sec-greeting .inner { max-width: 1100px; margin: 0 auto; }
.sec-greeting .sec-label {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent4); margin-bottom: 10px; font-weight: 700;
}
.sec-greeting h2 {
  font-size: clamp(28px, 5vw, 40px); font-weight: 800;
  color: #f8e0f0; margin-bottom: 8px;
}
.sec-greeting .desc { color: #b08aa0; font-size: 16px; line-height: 1.7; margin-bottom: 32px; max-width: 500px; }

.showcase-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 800px) { .showcase-grid { grid-template-columns: 1fr; gap: 20px; } }

.browser-window {
  border-radius: 16px; overflow: hidden; transition: transform 0.4s, box-shadow 0.4s;
  display: flex; flex-direction: column;
}
.browser-window:hover { transform: translateY(-4px); }
.browser-body { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.browser-body > .greeting-inner,
.browser-body > .widgets-row { flex: 1; }

/* Card browser — warm */
.bw-card {
  border: 1px solid rgba(236,72,153,0.15); background: #1a0f1a;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(236,72,153,0.04);
}
.bw-card:hover { box-shadow: 0 25px 70px rgba(0,0,0,0.5), 0 0 60px rgba(236,72,153,0.08); }
.bw-card .browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: rgba(236,72,153,0.03);
  border-bottom: 1px solid rgba(236,72,153,0.08);
}
.bw-card .browser-url {
  flex: 1; margin-left: 8px; padding: 5px 12px; border-radius: 8px;
  background: rgba(236,72,153,0.04); border: 1px solid rgba(236,72,153,0.08);
  font-size: 12px; color: #a06080; font-family: monospace;
}
.bw-card .browser-tag {
  padding: 4px 10px; border-radius: 8px; font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  background: rgba(236,72,153,0.12); color: var(--accent4); border: 1px solid rgba(236,72,153,0.2);
}

/* Widget browser — cool tech */
.bw-widget {
  border: 1px solid rgba(99,102,241,0.15); background: #0c0c1a;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(99,102,241,0.04);
}
.bw-widget:hover { box-shadow: 0 25px 70px rgba(0,0,0,0.5), 0 0 60px rgba(99,102,241,0.08); }
.bw-widget .browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 16px; background: rgba(99,102,241,0.03);
  border-bottom: 1px solid rgba(99,102,241,0.08);
}
.bw-widget .browser-url {
  flex: 1; margin-left: 8px; padding: 5px 12px; border-radius: 8px;
  background: rgba(99,102,241,0.04); border: 1px solid rgba(99,102,241,0.08);
  font-size: 12px; color: #7070b0; font-family: monospace;
}
.bw-widget .browser-tag {
  padding: 4px 10px; border-radius: 8px; font-size: 10px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  background: rgba(99,102,241,0.12); color: #818cf8; border: 1px solid rgba(99,102,241,0.2);
}

.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.08); }
.browser-dots span:nth-child(1) { background: rgba(239,68,68,0.5); }
.browser-dots span:nth-child(2) { background: rgba(245,158,11,0.5); }
.browser-dots span:nth-child(3) { background: rgba(74,222,128,0.5); }

.greeting-inner {
  padding: 48px 24px; text-align: center; position: relative; overflow: hidden;
  min-height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(236,72,153,0.04), rgba(245,158,11,0.03));
  flex: 1;
}
.greeting-inner > canvas {
  position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0;
}
.greeting-inner > * { position: relative; z-index: 1; }
.greeting-text-anim {
  font-size: 15px; color: #d4a0c0; min-height: 24px; margin-top: 12px;
  transition: opacity 0.4s;
}
.greeting-inner h3 {
  font-size: clamp(26px, 6vw, 42px); font-weight: 900; margin-bottom: 14px;
  background: linear-gradient(90deg, #f59e0b, #ec4899, #8b5cf6, #f59e0b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; background-size: 300% 100%;
  animation: gradShift 4s linear infinite;
  transition: opacity 0.4s;
}
@keyframes gradShift { 0% { background-position: 0% 50%; } 100% { background-position: 300% 50%; } }
.greeting-inner p { color: #a06080; font-size: 14px; margin-bottom: 18px; }
.cbtn {
  padding: 14px 28px; border-radius: 14px; border: none;
  background: linear-gradient(135deg, var(--accent4), var(--accent2));
  color: #fff; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all 0.3s; font-family: inherit;
  box-shadow: 0 0 30px rgba(236,72,153,0.2);
}
.cbtn:hover { transform: scale(1.05); box-shadow: 0 0 50px rgba(236,72,153,0.4); }
.confetti { position: absolute; pointer-events: none; animation: cfall 3s ease-out forwards; }
@keyframes cfall { 0% { opacity:1; transform: translateY(0) rotate(0) scale(1); } 100% { opacity:0; transform: translateY(500px) rotate(1080deg) scale(0); } }

/* Widgets */
.widgets-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; padding: 16px; overflow: hidden; }
@media (max-width: 800px) { .widgets-row { grid-template-columns: 1fr; gap: 10px; padding: 12px; } }
.widget-item { text-align: center; padding: 14px 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; min-width: 0; overflow: hidden; background: rgba(12,12,30,0.65); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: 12px; border: 1px solid rgba(99,102,241,0.12); }
.widget-label { font-size: 12px; color: #7070b0; margin-top: 10px; font-weight: 500; }

/* Clock */
.clock-wrap { display: inline-block; width: min(140px, 100%); height: min(140px, 36vw); aspect-ratio: 1; position: relative; }
.clock-face { width: 100%; height: 100%; border-radius: 50%; border: 2px solid rgba(99,102,241,0.3); background: rgba(99,102,241,0.04); position: relative; }
.clock-center { position: absolute; width: 7px; height: 7px; background: #818cf8; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 5; box-shadow: 0 0 8px #818cf8; }
.clock-hand { position: absolute; bottom: 50%; left: 50%; transform-origin: 50% 100%; border-radius: 2px; }
.hand-h { width: 3px; height: 35px; background: #e0e0e0; margin-left: -1.5px; }
.hand-m { width: 2px; height: 46px; background: #818cf8; margin-left: -1px; }
.hand-s { width: 1px; height: 52px; background: var(--accent); margin-left: -0.5px; }
.clock-marks { position: absolute; inset: 0; }
.clock-mark { position: absolute; width: 2px; height: 7px; background: rgba(255,255,255,0.15); top: 5px; left: 50%; margin-left: -1px; transform-origin: 50% 65px; }
.clock-mark.major { height: 10px; width: 2px; background: rgba(255,255,255,0.4); }

/* Weather */
.weather { display: inline-flex; flex-direction: column; align-items: center; }
.weather-icon { font-size: clamp(28px, 8vw, 42px); margin-bottom: 4px; }
.weather-temp { font-size: clamp(24px, 7vw, 36px); font-weight: 800; color: #e0e0e0; }
.weather-city { font-size: 13px; color: #7070b0; }
.weather-desc { font-size: 12px; color: #5050a0; }

/* Calculator */
.calc { display: inline-block; border-radius: 12px; overflow: hidden; border: 1px solid rgba(99,102,241,0.1); background: rgba(99,102,241,0.02); width: 100%; max-width: 230px; box-sizing: border-box; }
.calc-display { padding: 10px 8px 4px; text-align: right; font-size: clamp(18px, 5vw, 26px); font-weight: 700; color: #e0e0e0; border-bottom: 1px solid rgba(99,102,241,0.08); min-height: 40px; overflow: hidden; }
.calc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; padding: 4px; }
.calc-grid button { height: clamp(32px, 8vw, 40px); border: none; border-radius: 8px; font-size: clamp(12px, 3vw, 15px); font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.15s; background: rgba(255,255,255,0.05); color: #e0e0e0; }
.calc-grid button:hover { background: rgba(255,255,255,0.1); }
.calc-grid button:active { transform: scale(0.92); }
.calc-grid .op { background: rgba(99,102,241,0.12); color: #818cf8; }
.calc-grid .eq { background: linear-gradient(135deg, #6366f1, #818cf8); color: #fff; }

/* Demo prompts grid (sec-greeting) */
.demo-prompts {
  margin-top: 40px; text-align: center;
}
.demo-prompts-title {
  font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px;
}
.demo-prompts-desc {
  font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px;
}
.demo-prompts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: left;
}
@media (max-width: 700px) { .demo-prompts-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .demo-prompts-grid { grid-template-columns: 1fr; } }

.demo-prompt-card {
  display: block; text-decoration: none; padding: 16px 14px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; transition: all 0.3s; position: relative;
}
.demo-prompt-card:hover {
  background: rgba(139,92,246,0.12); border-color: rgba(139,92,246,0.3);
  transform: translateY(-2px);
}
.demo-prompt-icon { font-size: 22px; margin-bottom: 8px; }
.demo-prompt-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--accent2); margin-bottom: 6px;
}
.demo-prompt-text { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.demo-prompt-arrow {
  position: absolute; top: 14px; right: 14px;
  font-size: 14px; color: rgba(255,255,255,0.25); transition: color 0.3s;
}
.demo-prompt-card:hover .demo-prompt-arrow { color: var(--accent2); }

/* =========================================================
   SECTION 5: REAL SITES — light editorial / magazine
   ========================================================= */
.sec-sites {
  background: #f7f7f8;
  padding: 100px 20px;
}
.sec-sites .inner { max-width: 1100px; margin: 0 auto; }
.sec-sites .sec-label {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent2); margin-bottom: 10px; font-weight: 700;
}
.sec-sites h2 {
  font-size: clamp(28px, 5vw, 40px); font-weight: 800;
  color: #111; margin-bottom: 8px;
}
.sec-sites .desc { color: #666; font-size: 16px; line-height: 1.7; margin-bottom: 36px; max-width: 500px; }

.sites-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .sites-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sites-grid { grid-template-columns: 1fr; } }
.site-card {
  border-radius: 14px; overflow: hidden; background: #fff;
  border: 1px solid #e0e0e0; transition: all 0.4s;
  cursor: pointer; text-decoration: none; color: inherit; display: block;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.site-card:hover { border-color: #c0c0c0; box-shadow: 0 12px 40px rgba(0,0,0,0.1); transform: translateY(-4px); }
.site-preview { position: relative; width: 100%; padding-top: 62%; overflow: hidden; background: #f0f0f0; }
.site-preview iframe {
  position: absolute; top: 0; left: 0;
  width: 375%; height: 375%;
  transform: scale(0.2667); transform-origin: 0 0;
  border: none; pointer-events: none;
}
.site-preview-overlay { position: absolute; inset: 0; z-index: 2; }
.site-meta { padding: 14px 16px; }
.site-meta-name { font-weight: 700; font-size: 15px; color: #111; margin-bottom: 2px; display: flex; align-items: center; gap: 8px; }
.site-meta-name .live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 6px var(--accent); flex-shrink: 0; }
.site-meta-type { font-size: 12px; color: #888; }
.site-made-by { font-size: 11px; color: #bbb; margin-top: 6px; }

/* =========================================================
   SECTION 6: READY — everything works now
   ========================================================= */
.sec-ready {
  background: linear-gradient(180deg, #070318 0%, #0d0625 50%, #0a0420 100%);
  padding: 100px 20px; position: relative; overflow: hidden;
}
.sec-ready .inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.sec-ready .sec-label {
  font-size: 13px; letter-spacing: 3px; text-transform: uppercase;
  color: #10b981; margin-bottom: 10px; font-weight: 700;
}
.sec-ready h2 {
  font-size: clamp(30px, 5vw, 44px); font-weight: 800;
  color: #fff; margin-bottom: 8px;
}
.sec-ready .desc { color: #8888aa; font-size: 16px; line-height: 1.7; margin-bottom: 48px; max-width: 500px; margin-left: auto; margin-right: auto; }

.ready-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: left;
}
@media (max-width: 700px) { .ready-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .ready-grid { grid-template-columns: 1fr; } }

.ready-item {
  padding: 24px 20px; border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.35s;
}
.ready-item:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(16,185,129,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(16,185,129,0.08);
}

.ready-icon {
  width: 40px; height: 40px; margin-bottom: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(16,185,129,0.12); border-radius: 10px;
}
.ready-icon svg { width: 22px; height: 22px; stroke: #10b981; }

.ready-label { font-weight: 700; font-size: 15px; color: #fff; margin-bottom: 6px; }
.ready-desc { font-size: 13px; color: #8888aa; line-height: 1.55; margin-bottom: 12px; }

.ready-status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.5px;
  color: #10b981; text-transform: uppercase;
}
.ready-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16,185,129,0.6);
  animation: readyPulse 2s ease-in-out infinite;
}
@keyframes readyPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(16,185,129,0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 4px rgba(16,185,129,0.3); }
}

/* =========================================================
   SECTION 7: CAPABILITIES — colorful cards on white
   ========================================================= */
.sec-caps {
  background: linear-gradient(180deg, #fff 0%, #f5f0ff 100%);
  padding: 100px 20px;
}
.sec-caps .inner { max-width: 1100px; margin: 0 auto; }
.sec-caps .sec-label {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent2); margin-bottom: 10px; font-weight: 700;
}
.sec-caps h2 {
  font-size: clamp(28px, 5vw, 40px); font-weight: 800;
  color: #111; margin-bottom: 8px;
}
.sec-caps .desc { color: #666; font-size: 16px; line-height: 1.7; margin-bottom: 36px; max-width: 500px; }

.cards-3d { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 700px) { .cards-3d { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .cards-3d { grid-template-columns: 1fr; } }
.card-3d { perspective: 800px; }
.card-3d-inner {
  padding: 28px 20px; border-radius: 18px; border: 1px solid #e8e0f0;
  background: #fff; transition: all 0.4s; transform-style: preserve-3d;
  text-align: center; min-height: 170px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.card-3d:hover .card-3d-inner { box-shadow: 0 16px 50px rgba(139,92,246,0.12); border-color: rgba(139,92,246,0.2); }
.card-icon { font-size: 34px; margin-bottom: 10px; }
.card-t { font-weight: 700; font-size: 16px; color: #222; margin-bottom: 6px; }
.card-d { font-size: 13px; color: #888; line-height: 1.5; }

/* =========================================================
   SECTION 8: FOR WHO — dark with emoji cards
   ========================================================= */
.sec-who {
  background: linear-gradient(180deg, #f5f0ff 0%, #ede5ff 100%);
  padding: 100px 20px;
}
.sec-who .inner { max-width: 1000px; margin: 0 auto; text-align: center; }
.sec-who .sec-label {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent2); margin-bottom: 10px; font-weight: 700;
}
.sec-who h2 {
  font-size: clamp(26px, 5vw, 38px); font-weight: 800;
  color: #111; margin-bottom: 40px; line-height: 1.3;
}
.who-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; text-align: left;
}
@media (max-width: 700px) { .who-grid { grid-template-columns: 1fr; } }
.who-card {
  padding: 32px 24px; border-radius: 20px;
  background: #fff; border: 1px solid #e8e0f0;
  box-shadow: 0 4px 20px rgba(139,92,246,0.06);
  transition: all 0.35s;
}
.who-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(139,92,246,0.12);
  border-color: rgba(139,92,246,0.25);
}
.who-emoji { font-size: 40px; margin-bottom: 16px; }
.who-title { font-size: 18px; font-weight: 700; color: #111; margin-bottom: 8px; }
.who-text { font-size: 14px; color: #666; line-height: 1.65; }

/* =========================================================
   SECTION 9: PRICING — gradient dark
   ========================================================= */
.sec-pricing {
  background: linear-gradient(180deg, #070318 0%, #0d0625 50%, #0a0420 100%);
  padding: 100px 20px; position: relative;
}
.sec-pricing .inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.sec-pricing .sec-label {
  font-size: 12px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px; font-weight: 700;
}
.sec-pricing h2 {
  font-size: clamp(30px, 5vw, 44px); font-weight: 800;
  color: #fff; margin-bottom: 8px;
}
.sec-pricing .desc {
  color: #8888aa; font-size: 16px; line-height: 1.7; margin-bottom: 48px;
  max-width: 400px; margin-left: auto; margin-right: auto;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; text-align: left;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; } }

.price-card {
  padding: 28px 22px; border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s; position: relative;
  display: flex; flex-direction: column;
}
.price-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(139,92,246,0.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(139,92,246,0.1);
}
.price-card.popular {
  border-color: var(--accent);
  background: rgba(16,185,129,0.06);
  box-shadow: 0 0 40px rgba(16,185,129,0.1);
}
.price-card.popular:hover {
  box-shadow: 0 16px 50px rgba(16,185,129,0.15);
}
.price-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--accent2); margin-bottom: 12px;
}
.price-card.popular .price-badge {
  background: var(--accent); color: #fff;
  padding: 4px 12px; border-radius: 20px; font-size: 11px;
}
.price-name {
  font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 12px;
}
.price-amount {
  font-size: 36px; font-weight: 900; color: #fff; margin-bottom: 4px;
  line-height: 1.1;
}
.price-currency { font-size: 16px; font-weight: 500; color: #8888aa; }
.price-period { font-size: 13px; color: #666; margin-bottom: 20px; }
.price-features {
  list-style: none; padding: 0; margin: 0 0 24px; flex: 1;
}
.price-features li {
  font-size: 13px; color: #aaa; padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex; align-items: center; gap: 8px;
}
.price-features li::before {
  content: '\2713'; color: var(--accent); font-weight: 700; font-size: 12px;
}
.price-btn {
  display: block; text-align: center; padding: 14px 20px;
  border-radius: 12px; font-weight: 700; font-size: 14px;
  text-decoration: none; transition: all 0.3s;
  background: rgba(255,255,255,0.08); color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
}
.price-btn:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-2px);
}
.price-btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border: none;
  box-shadow: 0 4px 20px rgba(16,185,129,0.25);
}
.price-btn.primary:hover {
  box-shadow: 0 8px 30px rgba(16,185,129,0.4);
}

/* Hero trial text */
.hero-trial {
  margin-top: 12px; font-size: 13px; color: rgba(255,255,255,0.4);
  letter-spacing: 0.3px;
}

/* =========================================================
   REGISTRATION MODAL
   ========================================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,0.7); backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-box {
  background: linear-gradient(145deg, #151030, #0d0825);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 22px; padding: 36px 28px; width: 90%; max-width: 400px;
  position: relative; transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(139,92,246,0.08);
}
.modal-overlay.open .modal-box { transform: none; }
.modal-close {
  position: absolute; top: 14px; right: 16px;
  background: none; border: none; color: rgba(255,255,255,0.4);
  font-size: 28px; cursor: pointer; line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: #fff; }
.modal-title {
  font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 16px;
  text-align: center;
}
.modal-prompt-preview {
  display: none; padding: 12px 14px; border-radius: 10px; margin-bottom: 16px;
  background: rgba(139,92,246,0.08); border: 1px solid rgba(139,92,246,0.15);
  font-size: 12px; color: #c4b5fd; line-height: 1.5;
  max-height: 80px; overflow: hidden;
}
.modal-form {
  display: flex; flex-direction: column; gap: 10px;
}
.reg-input {
  width: 100%; padding: 14px 18px; border-radius: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-size: 15px; font-family: inherit;
  outline: none; transition: all 0.3s;
  -webkit-appearance: none;
}
.reg-input::placeholder { color: rgba(255,255,255,0.3); }
.reg-input:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 0 20px rgba(16,185,129,0.1);
}
select.reg-input { cursor: pointer; }
select.reg-input option { background: #1a1a2e; color: #fff; }

.modal-submit {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 16px; border: none; border-radius: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff; font-size: 16px; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: all 0.3s; margin-top: 4px;
  box-shadow: 0 4px 20px rgba(16,185,129,0.25);
}
.modal-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(16,185,129,0.4); }
.modal-submit:disabled { opacity: 0.6; cursor: default; transform: none; }

.modal-note {
  font-size: 11px; color: rgba(255,255,255,0.3); text-align: center;
}
.reg-result {
  font-size: 14px; font-weight: 600; text-align: center;
  min-height: 20px; transition: all 0.3s;
}
.reg-result.success { color: var(--accent); }
.reg-result.error { color: #ef4444; }

/* OTP phone row */
.otp-phone-row {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; overflow: hidden; transition: all 0.3s;
}
.otp-phone-row:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(16,185,129,0.1);
}
.otp-prefix {
  padding: 14px 0 14px 16px; color: rgba(255,255,255,0.5);
  font-size: 15px; font-weight: 600; flex-shrink: 0;
}
.otp-phone-input {
  border: none !important; background: transparent !important;
  border-radius: 0 !important; padding-left: 6px !important;
  box-shadow: none !important;
}

/* OTP code digits */
.otp-code-row {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 8px 0 16px;
}
.otp-digit {
  width: 44px; height: 52px; border-radius: 12px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  color: #fff; font-size: 24px; font-weight: 700;
  text-align: center; outline: none; font-family: inherit;
  transition: all 0.2s; caret-color: var(--accent);
}
.otp-digit:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 16px rgba(16,185,129,0.15);
}
.otp-dash { color: rgba(255,255,255,0.2); font-size: 18px; }

/* Sent info */
.otp-sent-info {
  text-align: center; font-size: 13px; color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

/* Resend */
.otp-resend {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 8px;
}
.otp-resend-btn {
  background: none; border: none; color: var(--accent2);
  font-size: 13px; cursor: pointer; font-family: inherit;
  text-decoration: underline; transition: opacity 0.2s;
}
.otp-resend-btn:disabled { opacity: 0.3; cursor: default; text-decoration: none; }
.otp-timer { font-size: 12px; color: rgba(255,255,255,0.3); }

/* Success */
.otp-success {
  text-align: center; padding: 24px 0;
}
.otp-success-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: #fff; margin: 0 auto 16px;
  box-shadow: 0 0 40px rgba(16,185,129,0.3);
}
.otp-success-text {
  font-size: 16px; color: #fff; font-weight: 600; line-height: 1.5;
}

@media (max-width: 400px) {
  .otp-digit { width: 38px; height: 46px; font-size: 20px; }
  .otp-code-row { gap: 5px; }
}

/* Footer */
.footer {
  text-align: center; padding: 40px 20px 60px;
  background: #060310; color: #444; font-size: 12px;
}
.footer a { color: var(--accent); text-decoration: none; }
.footer-ai {
  margin-top: 8px; font-size: 11px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-weight: 600;
}
