/* ============ 30DaySites design system ============ */
:root {
  --navy-950: #081226;
  --navy-900: #0b1b3a;
  --navy-800: #10275c;
  --navy-700: #16367c;
  --blue-600: #1e62e0;
  --blue-500: #2e7cff;
  --blue-100: #dce9ff;
  --orange-500: #ff6b2c;
  --orange-600: #f0561a;
  --orange-100: #ffe6d9;
  --bg: #f5f8fe;
  --ink: #111c33;
  --muted: #51617d;
  --line: #e3eaf6;
  --white: #ffffff;
  --radius: 14px;
  --shadow-sm: 0 1px 3px rgba(11, 27, 58, 0.08);
  --shadow-md: 0 8px 30px rgba(11, 27, 58, 0.12);
  --shadow-lg: 0 20px 60px rgba(11, 27, 58, 0.18);
  --font-head: "Sora", -apple-system, sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; font-weight: 700; }
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
.container { width: min(1160px, 92%); margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 28px; border-radius: 10px; border: none; cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: #fff; box-shadow: 0 6px 20px rgba(240, 86, 26, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(240, 86, 26, 0.45); }
.btn-secondary {
  background: var(--white); color: var(--navy-800);
  border: 1.5px solid var(--line); box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: var(--blue-500); color: var(--blue-600); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,0.35); }
.btn-ghost:hover { border-color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: 1.08rem; }
.btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none !important; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(245, 248, 254, 0.85); backdrop-filter: blur(12px);
  transition: box-shadow 0.25s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,0.92); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; color: var(--navy-900); letter-spacing: -0.5px; }
.logo em { font-style: normal; color: var(--orange-500); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a { font-weight: 500; font-size: 0.95rem; color: var(--muted); transition: color 0.15s; }
.nav-links a:hover { color: var(--navy-900); }
@media (max-width: 800px) { .nav-links a:not(.btn) { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative; padding: 150px 0 90px;
  background: radial-gradient(1200px 600px at 85% -10%, rgba(46, 124, 255, 0.14), transparent 60%),
              radial-gradient(900px 500px at -10% 40%, rgba(255, 107, 44, 0.1), transparent 55%),
              var(--bg);
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); letter-spacing: -1.5px; margin-bottom: 20px; }
.hero h1 .accent { color: var(--blue-600); }
.hero h1 .underline {
  background: linear-gradient(transparent 62%, var(--orange-100) 62%);
}
.hero .sub { font-size: 1.18rem; color: var(--muted); max-width: 540px; margin-bottom: 30px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; font-size: 0.9rem; color: var(--muted); font-weight: 500; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust svg { flex-shrink: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 7px 16px; font-size: 0.83rem; font-weight: 600; color: var(--blue-600);
  box-shadow: var(--shadow-sm); margin-bottom: 22px;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange-500); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1);} 50% { opacity: 0.5; transform: scale(0.8);} }

/* Browser mockup */
.mockup-wrap { position: relative; }
.mockup {
  background: var(--white); border-radius: 16px; box-shadow: var(--shadow-lg);
  overflow: hidden; border: 1px solid var(--line);
  animation: float 7s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-12px);} }
.mockup-bar { display: flex; align-items: center; gap: 6px; padding: 12px 16px; background: #eef3fb; border-bottom: 1px solid var(--line); }
.mockup-bar i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.mockup-bar i:nth-child(1){background:#ff5f57} .mockup-bar i:nth-child(2){background:#febc2e} .mockup-bar i:nth-child(3){background:#28c840}
.mockup-url { flex: 1; margin-left: 10px; background: #fff; border: 1px solid var(--line); border-radius: 6px; font-size: 0.72rem; color: var(--muted); padding: 4px 10px; font-weight: 500; }
.mockup-body { padding: 0; }
.mock-hero { background: linear-gradient(135deg, var(--navy-800), var(--navy-900)); padding: 28px 24px; color: #fff; }
.mock-hero .mh-badge { display:inline-block; font-size: 0.6rem; background: rgba(255,107,44,0.2); color: #ffb38f; padding: 3px 10px; border-radius: 99px; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 10px; }
.mock-hero h4 { font-size: 1.15rem; margin-bottom: 6px; }
.mock-hero p { font-size: 0.72rem; opacity: 0.75; margin-bottom: 14px; }
.mock-hero .mh-cta { display:inline-block; background: var(--orange-500); font-size: 0.7rem; font-weight: 700; padding: 7px 16px; border-radius: 7px; }
.mock-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 18px 24px 24px; }
.mock-card { border: 1px solid var(--line); border-radius: 10px; padding: 12px 10px; text-align: center; }
.mock-card i { display:block; width: 26px; height: 26px; margin: 0 auto 8px; border-radius: 8px; background: var(--blue-100); }
.mock-card b { font-size: 0.62rem; color: var(--ink); display: block; }
.mock-card s { text-decoration: none; display: block; height: 4px; border-radius: 2px; background: #edf1f8; margin-top: 6px; }

.float-chip {
  position: absolute; background: var(--white); border-radius: 12px; box-shadow: var(--shadow-md);
  padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 600;
  border: 1px solid var(--line); animation: float 6s ease-in-out infinite;
}
.float-chip.a { top: -22px; right: -10px; animation-delay: 1.2s; }
.float-chip.b { bottom: -18px; left: -14px; animation-delay: 2.4s; }
.float-chip .ic { width: 34px; height: 34px; border-radius: 9px; display: flex; align-items: center; justify-content: center; color: #fff; }
.float-chip .ic.green { background: #1fab55; }
.float-chip .ic.orange { background: var(--orange-500); }
.float-chip small { display: block; color: var(--muted); font-weight: 500; font-size: 0.72rem; }
@media (max-width: 940px) { .float-chip { display: none; } }

/* ---------- Stat strip ---------- */
.stats { background: var(--navy-900); color: #fff; padding: 34px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat b { font-family: var(--font-head); font-size: 2rem; display: block; color: var(--orange-500); }
.stat span { font-size: 0.88rem; opacity: 0.75; }

/* ---------- Sections ---------- */
.section { padding: 90px 0; }
.section.alt { background: var(--white); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-head .kicker { color: var(--orange-600); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.5px; display: block; margin-bottom: 12px; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); letter-spacing: -1px; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 860px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; position: relative; box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step .num {
  width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600)); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; margin-bottom: 18px;
}
.step:nth-child(2) .num { background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); }
.step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.96rem; }
.step .time { display: inline-block; margin-top: 14px; font-size: 0.78rem; font-weight: 700; color: var(--blue-600); background: var(--blue-100); padding: 4px 12px; border-radius: 99px; }

/* Features */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 1000px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; transition: transform 0.22s ease, border-color 0.22s ease;
}
.feature:hover { transform: translateY(-4px); border-color: var(--blue-500); }
.feature .fic {
  width: 42px; height: 42px; border-radius: 11px; background: var(--white);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px; color: var(--blue-600);
}
.feature h4 { font-size: 1.02rem; margin-bottom: 7px; }
.feature p { font-size: 0.88rem; color: var(--muted); }

/* Trades strip */
.trades { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.trade-chip {
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 22px; font-weight: 600; font-size: 0.92rem; color: var(--navy-800);
  box-shadow: var(--shadow-sm); transition: all 0.2s ease;
}
.trade-chip:hover { border-color: var(--orange-500); color: var(--orange-600); transform: translateY(-2px); }

/* Pricing */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
@media (max-width: 920px) { .pricing { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }
.plan {
  background: var(--white); border: 1.5px solid var(--line); border-radius: 18px;
  padding: 36px 30px; display: flex; flex-direction: column; position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.plan.featured { border-color: var(--orange-500); box-shadow: var(--shadow-md); background: linear-gradient(180deg, #fff 0%, #fff9f5 100%); }
.plan .tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600)); color: #fff;
  font-size: 0.74rem; font-weight: 700; padding: 6px 18px; border-radius: 99px; letter-spacing: 0.5px;
}
.plan h3 { font-size: 1.15rem; margin-bottom: 6px; }
.plan .desc { font-size: 0.88rem; color: var(--muted); margin-bottom: 18px; }
.plan .price { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; letter-spacing: -1.5px; }
.plan .price small { font-size: 1rem; color: var(--muted); font-weight: 500; letter-spacing: 0; }
.plan .setup { font-size: 0.82rem; color: #1fab55; font-weight: 700; margin-bottom: 22px; }
.plan ul { list-style: none; margin-bottom: 26px; flex: 1; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.92rem; padding: 7px 0; color: var(--ink); }
.plan li svg { flex-shrink: 0; margin-top: 4px; }
.plan .btn { width: 100%; }

/* Currency toggle + ZAR builder */
.currency-toggle {
  display: inline-flex; gap: 6px; margin-top: 22px; background: var(--bg);
  border: 1.5px solid var(--line); border-radius: 999px; padding: 5px;
}
.currency-toggle button {
  border: none; background: transparent; cursor: pointer; font-family: var(--font-head);
  font-weight: 600; font-size: 0.9rem; color: var(--muted); padding: 9px 20px; border-radius: 999px;
  transition: all 0.2s ease;
}
.currency-toggle button.active {
  background: var(--navy-900); color: #fff; box-shadow: var(--shadow-sm);
}
.zar-builder {
  max-width: 660px; margin: 0 auto; background: var(--white);
  border-radius: 22px; box-shadow: var(--shadow-lg); overflow: hidden;
  border: 1px solid var(--line);
}
.zar-head {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 30px 34px; color: #fff;
  background: linear-gradient(120deg, var(--navy-900), var(--navy-800) 60%, var(--navy-700));
  position: relative; overflow: hidden;
}
.zar-head::after {
  content: ""; position: absolute; width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,44,0.35), transparent 65%);
  top: -140px; right: -80px; pointer-events: none;
}
.zar-badge {
  display: inline-block; background: rgba(255,107,44,0.18); color: #ffb38f;
  border: 1px solid rgba(255,107,44,0.4); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; padding: 5px 13px; border-radius: 99px;
  margin-bottom: 10px;
}
.zar-head h3 { font-size: 1.45rem; margin-bottom: 6px; }
.zar-head p { font-size: 0.86rem; opacity: 0.75; max-width: 360px; }
.zar-baseprice { text-align: right; position: relative; z-index: 1; white-space: nowrap; }
.zar-baseprice small { display: block; font-size: 0.75rem; opacity: 0.65; font-weight: 500; }
.zar-baseprice b { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; letter-spacing: -1.5px; }
.zar-baseprice span { font-size: 1rem; opacity: 0.7; }

.zar-addons { padding: 10px 18px; }
.zar-addon {
  display: flex; align-items: center; gap: 14px; padding: 15px 16px; cursor: pointer;
  border-radius: 14px; margin: 4px 0; border: 1.5px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  user-select: none;
}
.zar-addon:hover { background: var(--bg); transform: translateX(3px); }
.zar-addons .zar-addon.on { background: #fff7f2; border-color: var(--orange-500); }
.zar-addon input { display: none; }
.za-emoji {
  width: 42px; height: 42px; border-radius: 12px; background: var(--bg);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; flex-shrink: 0; transition: all 0.18s ease;
}
.zar-addon.on .za-emoji { background: var(--orange-100); border-color: var(--orange-500); }
.za-info { flex: 1; min-width: 0; }
.za-info b { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.97rem; }
.za-info small { display: block; color: var(--muted); font-size: 0.82rem; margin-top: 1px; }
.za-price {
  font-family: var(--font-head); font-weight: 700; font-size: 0.95rem;
  color: var(--muted); white-space: nowrap; transition: color 0.18s ease;
}
.zar-addon.on .za-price { color: var(--orange-600); }
.za-switch {
  width: 48px; height: 28px; border-radius: 99px; background: #dbe3f0;
  position: relative; flex-shrink: 0; transition: background 0.22s ease;
}
.za-switch::after {
  content: ""; position: absolute; width: 22px; height: 22px; border-radius: 50%;
  background: #fff; top: 3px; left: 3px; box-shadow: 0 1px 4px rgba(11,27,58,0.3);
  transition: transform 0.22s cubic-bezier(.4,0,.2,1);
}
.zar-addon input:checked ~ .za-switch {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
}
.zar-addon input:checked ~ .za-switch::after { transform: translateX(20px); }

.zar-footer {
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  flex-wrap: wrap; padding: 22px 34px; border-top: 1px solid var(--line);
  background: var(--bg);
}
.zar-total small { display: block; font-size: 0.8rem; color: var(--muted); font-weight: 600; }
.zar-total b {
  font-family: var(--font-head); font-size: 2.1rem; font-weight: 800;
  color: var(--ink); letter-spacing: -1px; display: inline-block;
}
.zar-total b.pop { animation: totalPop 0.35s ease; }
.zar-total .zt-mo { font-size: 1rem; color: var(--muted); font-weight: 500; }
@keyframes totalPop { 0% { transform: scale(1); } 40% { transform: scale(1.14); color: var(--orange-600); } 100% { transform: scale(1); } }
@media (max-width: 620px) {
  .zar-head { flex-direction: column; align-items: flex-start; padding: 24px 22px; }
  .zar-baseprice { text-align: left; }
  .zar-footer { flex-direction: column; align-items: stretch; text-align: center; padding: 20px 22px; }
  .za-info small { display: none; }
}

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 12px; margin-bottom: 12px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 20px 24px; font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { transition: transform 0.25s ease; flex-shrink: 0; color: var(--blue-600); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a p { padding: 0 24px 20px; color: var(--muted); font-size: 0.95rem; }

/* CTA band */
.cta-band {
  background: linear-gradient(120deg, var(--navy-900), var(--navy-800) 55%, var(--navy-700));
  color: #fff; padding: 80px 0; position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,44,0.25), transparent 65%);
  top: -200px; right: -100px;
}
.cta-band .inner { position: relative; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: -1px; margin-bottom: 16px; }
.cta-band p { opacity: 0.8; font-size: 1.1rem; margin-bottom: 30px; }

/* Footer */
.footer { background: var(--navy-950); color: #93a3c0; padding: 48px 0 32px; font-size: 0.88rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 18px; }
.footer .logo { color: #fff; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; } .reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; } .reveal.d4 { transition-delay: 0.32s; }

/* ============ Wizard ============ */
.wizard-page { min-height: 100vh; display: flex; flex-direction: column; }
.wizard-main { flex: 1; display: flex; align-items: flex-start; justify-content: center; padding: 110px 4% 60px; }
.wizard-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-md); width: min(680px, 100%); padding: 42px 44px;
}
@media (max-width: 560px) { .wizard-card { padding: 30px 22px; } }
.progress-track { height: 7px; background: var(--line); border-radius: 99px; margin-bottom: 10px; overflow: hidden; }
.progress-fill { height: 100%; width: 0%; border-radius: 99px; background: linear-gradient(90deg, var(--blue-500), var(--orange-500)); transition: width 0.45s cubic-bezier(.4,0,.2,1); }
.progress-label { font-size: 0.8rem; color: var(--muted); font-weight: 600; margin-bottom: 28px; }
.wstep { display: none; animation: fadeUp 0.4s ease; }
.wstep.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px);} to { opacity: 1; transform: translateY(0);} }
.wstep h2 { font-size: 1.5rem; letter-spacing: -0.5px; margin-bottom: 8px; }
.wstep .hint { color: var(--muted); font-size: 0.95rem; margin-bottom: 26px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 7px; }
.field label .opt { color: var(--muted); font-weight: 400; font-size: 0.82rem; }
.field input[type="text"], .field input[type="email"], .field input[type="tel"], .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--bg);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(46,124,255,0.12); background: #fff;
}
.field .err { color: #d33; font-size: 0.8rem; margin-top: 5px; display: none; }
.field.invalid input, .field.invalid select { border-color: #d33; }
.field.invalid .err { display: block; }
.chip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
@media (max-width: 560px) { .chip-grid { grid-template-columns: repeat(2, 1fr); } }
.chip {
  border: 1.5px solid var(--line); border-radius: 11px; padding: 14px 8px; text-align: center;
  cursor: pointer; font-weight: 600; font-size: 0.86rem; background: var(--bg);
  transition: all 0.15s ease; user-select: none;
}
.chip:hover { border-color: var(--blue-500); }
.chip.selected { border-color: var(--blue-600); background: var(--blue-100); color: var(--blue-600); }
.chip .emoji { display: block; font-size: 1.4rem; margin-bottom: 5px; }
.checks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
@media (max-width: 560px) { .checks { grid-template-columns: 1fr; } }
.check {
  display: flex; align-items: center; gap: 10px; border: 1.5px solid var(--line);
  border-radius: 10px; padding: 11px 14px; cursor: pointer; font-size: 0.9rem; font-weight: 500;
  background: var(--bg); transition: all 0.15s ease; user-select: none;
}
.check:hover { border-color: var(--blue-500); }
.check.selected { border-color: var(--blue-600); background: var(--blue-100); }
.check input { display: none; }
.wizard-nav { display: flex; justify-content: space-between; margin-top: 32px; gap: 12px; }
.color-row { display: flex; gap: 12px; flex-wrap: wrap; }
.color-dot {
  width: 46px; height: 46px; border-radius: 50%; cursor: pointer; border: 3px solid transparent;
  transition: transform 0.15s ease, border-color 0.15s ease; position: relative;
}
.color-dot:hover { transform: scale(1.1); }
.color-dot.selected { border-color: var(--ink); transform: scale(1.12); }

/* Generating screen */
.genwrap { text-align: center; padding: 30px 0 10px; }
.gen-ring {
  width: 96px; height: 96px; margin: 0 auto 28px; border-radius: 50%;
  border: 5px solid var(--line); border-top-color: var(--orange-500); border-right-color: var(--blue-500);
  animation: spin 1.1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.gen-status { font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; min-height: 1.6em; }
.gen-sub { color: var(--muted); font-size: 0.9rem; margin-top: 8px; }

/* Preview screen */
.preview-frame-wrap {
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-md);
  margin: 20px 0 26px; background: #fff;
}
.preview-frame-wrap iframe { width: 100%; height: 460px; border: none; display: block; }
.preview-url {
  display: flex; align-items: center; gap: 10px; background: var(--bg); border: 1px solid var(--line);
  border-radius: 10px; padding: 12px 16px; font-size: 0.92rem; font-weight: 600; color: var(--blue-600);
  margin-bottom: 20px; word-break: break-all;
}
.preview-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.trial-note { font-size: 0.85rem; color: var(--muted); margin-top: 16px; }
