/* ─── Orbatix Factory — site styles ─────────────────────────── */

* { box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: rgba(203, 166, 247, 0.35); color: var(--text); }

/* ─── Backgrounds: starfield + grid + scanlines ───────────────── */
.bg-stack { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(203, 166, 247, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(203, 166, 247, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 30%, transparent 80%);
}
.bg-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(180, 190, 254, 0.10), transparent 60%),
    radial-gradient(800px 500px at 15% 5%, rgba(245, 194, 231, 0.08), transparent 60%),
    radial-gradient(1000px 600px at 50% 100%, rgba(203, 166, 247, 0.18), transparent 65%);
}
.bg-scan {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(205, 214, 244, 0.012) 3px,
    rgba(205, 214, 244, 0.012) 4px
  );
  mix-blend-mode: overlay;
}
.bg-stars {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(205,214,244,0.6), transparent),
    radial-gradient(1px 1px at 28% 72%, rgba(180,190,254,0.5), transparent),
    radial-gradient(1.5px 1.5px at 42% 28%, rgba(203,166,247,0.7), transparent),
    radial-gradient(1px 1px at 56% 88%, rgba(245,194,231,0.5), transparent),
    radial-gradient(1px 1px at 71% 12%, rgba(180,190,254,0.6), transparent),
    radial-gradient(1.5px 1.5px at 88% 56%, rgba(203,166,247,0.5), transparent),
    radial-gradient(1px 1px at 7% 84%, rgba(205,214,244,0.5), transparent),
    radial-gradient(1px 1px at 95% 22%, rgba(245,194,231,0.4), transparent),
    radial-gradient(1px 1px at 33% 47%, rgba(205,214,244,0.4), transparent),
    radial-gradient(1px 1px at 64% 62%, rgba(205,214,244,0.5), transparent);
  animation: twinkle 6s ease-in-out infinite;
}
@keyframes twinkle {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* ─── Layout ─────────────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 1; }
main { position: relative; z-index: 1; }

/* ─── Nav ─────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  background: rgba(17, 17, 27, 0.65);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-weight: 600; letter-spacing: -0.01em;
}
.brand-name { font-size: 15px; }
.brand-name .accent { color: var(--mauve); }
/* Tag chico que va debajo del nombre Orbatix en el header de cada página. */
.brand-by {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 6px;
  font-weight: 400;
}
.brand { flex-direction: row; align-items: center; }
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.15; }
.nav-links {
  display: flex; align-items: center; gap: 24px;
  font-size: 13.5px;
  color: var(--subtext0);
}
.nav-links a:not(.nav-cta) { transition: color 120ms ease; }
.nav-links a:not(.nav-cta):hover { color: var(--text); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--mauve);
  color: var(--crust) !important;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 13px;
  transition: all 150ms ease;
}
.nav-cta:hover { background: var(--lavender); transform: translateY(-1px); box-shadow: 0 8px 20px -6px rgba(203,166,247,0.5); }

/* ─── Hero ────────────────────────────────────────────────────── */
.hero { position: relative; padding: 80px 0 100px; }
.hero-orbit {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  pointer-events: none;
  z-index: 0;
}
.hero-content { position: relative; z-index: 1; text-align: center; }

.eyebrow-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.6px; text-transform: uppercase;
  color: var(--mauve);
  background: rgba(203, 166, 247, 0.08);
  border: 1px solid rgba(203, 166, 247, 0.3);
  border-radius: 100px;
  margin-bottom: 28px;
}
.eyebrow-pill .pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mauve);
  box-shadow: 0 0 0 0 rgba(203, 166, 247, 0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(203,166,247,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(203,166,247,0); }
  100% { box-shadow: 0 0 0 0 rgba(203,166,247,0); }
}

.hero h1 {
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  font-weight: 600;
  margin: 0 0 24px;
  text-wrap: balance;
}
.hero h1 .gradient {
  background: linear-gradient(120deg, #cba6f7 0%, #b4befe 40%, #f5c2e7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .strike {
  position: relative;
  color: var(--overlay1);
  font-weight: 400;
}
.hero h1 .strike::after {
  content: ""; position: absolute; left: -2%; right: -2%; top: 52%;
  height: 5px; background: var(--mauve); transform: rotate(-2deg);
  border-radius: 3px;
}

.hero-lead {
  font-size: 19px; line-height: 1.55;
  color: var(--subtext0);
  max-width: 620px; margin: 0 auto 40px;
  text-wrap: pretty;
}
.hero-cta-row {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-weight: 600; font-size: 14.5px;
  border: 1px solid transparent;
  transition: all 150ms ease;
}
.btn-primary {
  background: var(--mauve); color: var(--crust);
  box-shadow: 0 14px 40px -10px rgba(203,166,247,0.55), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-primary:hover { background: var(--lavender); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(205, 214, 244, 0.04);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: rgba(205, 214, 244, 0.08); border-color: rgba(203,166,247,0.4); }

.hero-stats {
  display: flex; justify-content: center; gap: 56px; flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat {
  text-align: left;
  font-family: var(--font-mono);
}
.hero-stat .num {
  font-size: 32px; font-weight: 600;
  background: linear-gradient(180deg, var(--text), var(--subtext0));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 11px; color: var(--overlay1); text-transform: uppercase;
  letter-spacing: 0.8px; margin-top: 6px;
}

/* ─── Sections ────────────────────────────────────────────────── */
.section { padding: 100px 0; position: relative; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--mauve);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--mauve);
}
.section-title {
  font-size: clamp(32px, 4.4vw, 52px); line-height: 1.05;
  letter-spacing: -0.025em; font-weight: 600;
  margin: 0 0 18px;
  max-width: 720px;
}
.section-sub {
  font-size: 17px; color: var(--subtext0); line-height: 1.55;
  max-width: 600px; margin: 0 0 56px;
}

/* ─── Manifesto ───────────────────────────────────────────────── */
.manifesto-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.manifesto-card {
  background: rgba(24, 24, 37, 0.6);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: background 200ms ease;
}
.manifesto-card:hover { background: rgba(30, 30, 46, 0.85); }
.manifesto-card .num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--overlay1); letter-spacing: 0.6px;
}
.manifesto-card .quote {
  font-size: clamp(20px, 1.7vw, 24px); line-height: 1.3;
  font-weight: 500; letter-spacing: -0.015em;
  text-wrap: balance;
}
.manifesto-card .quote em {
  font-style: normal;
  background: linear-gradient(120deg, var(--mauve), var(--lavender));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

@media (max-width: 720px) {
  .manifesto-grid { grid-template-columns: 1fr; }
}

/* ─── Process timeline ───────────────────────────────────────── */
.process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.process-step {
  background: rgba(24, 24, 37, 0.6);
  padding: 32px 28px;
  position: relative;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 240px;
  transition: background 200ms ease;
}
.process-step:hover { background: rgba(30, 30, 46, 0.9); }
.process-step .step-num {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--mauve); letter-spacing: 0.8px;
  display: flex; align-items: center; gap: 8px;
}
.process-step .step-num::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--mauve); box-shadow: 0 0 12px var(--mauve);
}
.process-step .step-title {
  font-size: 19px; font-weight: 600; letter-spacing: -0.015em;
}
.process-step .step-body {
  font-size: 14px; color: var(--subtext0); line-height: 1.55;
}
.process-step .step-time {
  margin-top: auto;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--overlay1); letter-spacing: 0.4px;
  padding-top: 16px;
  border-top: 1px dashed var(--border-strong);
}

@media (max-width: 900px) {
  .process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .process { grid-template-columns: 1fr; }
}

/* ─── Products ───────────────────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.product-card {
  position: relative;
  background: linear-gradient(180deg, rgba(30, 30, 46, 0.85), rgba(17, 17, 27, 0.6));
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: 36px;
  display: flex; flex-direction: column; gap: 20px;
  overflow: hidden;
  transition: all 250ms ease;
  text-decoration: none; color: inherit;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(203, 166, 247, 0.4);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 80px -20px rgba(203,166,247,0.25);
}
.product-card .glow {
  position: absolute; inset: -50% -20% auto auto;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(203,166,247,0.18), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  opacity: 0.6;
  transition: opacity 250ms ease;
}
.product-card:hover .glow { opacity: 1; }
.product-card .badge {
  align-self: flex-start;
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
}
.badge.live { background: rgba(166, 227, 161, 0.12); color: var(--green); border: 1px solid rgba(166,227,161,0.3); }
.badge.flagship { background: rgba(203, 166, 247, 0.14); color: var(--mauve); border: 1px solid rgba(203,166,247,0.4); }
.badge.soon { background: rgba(180, 190, 254, 0.1); color: var(--lavender); border: 1px solid rgba(180,190,254,0.3); }

.product-card .head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.product-card h3 {
  font-size: 28px; line-height: 1.1; letter-spacing: -0.02em;
  font-weight: 600; margin: 0;
}
.product-card h3 .accent { color: var(--mauve); }
.product-card .sub {
  color: var(--subtext0); font-size: 15.5px; line-height: 1.55;
  margin: 0;
}
.product-card .preview {
  flex: 1;
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--subtext0);
  min-height: 140px;
  position: relative;
  overflow: hidden;
}
.product-card .footer-row {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--overlay1);
}
.product-card .footer-row .arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--mauve);
  transition: transform 200ms ease;
}
.product-card:hover .footer-row .arrow { transform: translateX(4px); }

@media (max-width: 820px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* preview specifics */
.preview-terminal .ln { display: block; line-height: 1.7; }
.preview-terminal .prompt { color: var(--mauve); }
.preview-terminal .out { color: var(--overlay1); }

.preview-creator {
  display: flex; flex-direction: column; gap: 10px;
  justify-content: center;
}
.preview-creator .input-mock {
  background: rgba(205, 214, 244, 0.04);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 10px 12px;
  font-size: 11px;
  color: var(--text);
}
.preview-creator .input-mock .caret {
  display: inline-block; width: 1px; height: 12px;
  background: var(--mauve); vertical-align: -2px;
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}
@keyframes blink { 50% { opacity: 0; } }
.preview-creator .chip {
  display: inline-block;
  background: rgba(203, 166, 247, 0.1);
  border: 1px solid rgba(203, 166, 247, 0.3);
  color: var(--mauve);
  font-size: 10px; padding: 3px 8px;
  border-radius: 100px;
  margin-right: 6px;
}

.preview-cloud {
  display: flex; flex-direction: column; gap: 8px;
  justify-content: center;
  font-family: var(--font-mono);
}
.cloud-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 11px;
  padding: 6px 10px;
  background: rgba(137, 180, 250, 0.05);
  border: 1px solid rgba(137, 180, 250, 0.15);
  border-radius: var(--r-sm);
}
.cloud-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: cloud-pulse 1.6s ease-in-out infinite;
}
@keyframes cloud-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
.cloud-label { flex: 1; color: var(--text); }
.cloud-status {
  color: var(--green);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.preview-ia {
  display: flex; flex-direction: column; gap: 10px;
  justify-content: center;
}
.ia-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 8px 10px;
  background: rgba(166, 227, 161, 0.04);
  border-left: 2px solid rgba(166, 227, 161, 0.5);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}
.ia-num {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--green);
  letter-spacing: 0.1em;
  padding-top: 1px;
}
.ia-text {
  flex: 1;
  font-size: 11px;
  color: var(--text);
  line-height: 1.5;
}

/* ─── Metrics ────────────────────────────────────────────────── */
.metrics {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.metric {
  background: rgba(24, 24, 37, 0.6);
  padding: 36px 28px;
  position: relative;
}
.metric .v {
  font-family: var(--font-mono); font-weight: 600;
  font-size: 44px; line-height: 1;
  background: linear-gradient(180deg, var(--mauve), var(--lavender));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  letter-spacing: -0.02em;
}
.metric .l {
  margin-top: 12px;
  font-size: 13px; color: var(--subtext0);
  line-height: 1.45;
}
@media (max-width: 820px) {
  .metrics { grid-template-columns: repeat(2, 1fr); }
}

/* ─── CTA banner ─────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  border: 1px solid rgba(203, 166, 247, 0.3);
  border-radius: var(--r-xl);
  padding: 64px 48px;
  text-align: center;
  background:
    radial-gradient(800px 300px at 50% 100%, rgba(203,166,247,0.18), transparent 70%),
    linear-gradient(180deg, rgba(30, 30, 46, 0.95), rgba(17, 17, 27, 0.95));
  overflow: hidden;
}
.cta-banner h2 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05; letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 20px;
}
.cta-banner h2 .gradient {
  background: linear-gradient(120deg, #cba6f7, #b4befe, #f5c2e7);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.cta-banner p {
  font-size: 18px; color: var(--subtext0);
  max-width: 560px; margin: 0 auto 32px;
}

/* ─── Footer ─────────────────────────────────────────────────── */
.factory-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 40px;
  position: relative; z-index: 1;
  background: rgba(17, 17, 27, 0.5);
}
.factory-footer .grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.factory-footer .desc {
  margin: 16px 0 0; max-width: 320px;
  color: var(--subtext0); font-size: 13.5px; line-height: 1.55;
}
.factory-footer h5 {
  font-family: var(--font-mono); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.8px;
  color: var(--overlay1);
  margin: 0 0 14px;
}
.factory-footer ul { list-style: none; padding: 0; margin: 0; }
.factory-footer li { margin-bottom: 10px; }
.factory-footer li a { font-size: 14px; color: var(--subtext0); transition: color 120ms ease; }
.factory-footer li a:hover { color: var(--mauve); }
.factory-footer .bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--overlay1);
  flex-wrap: wrap; gap: 12px;
}
@media (max-width: 720px) {
  .factory-footer .grid { grid-template-columns: 1fr 1fr; }
}

/* ─── Orbital animations ──────────────────────────────────── */
.orbital {
  display: block;
  filter: drop-shadow(0 0 80px rgba(203, 166, 247, 0.15));
}
.ring-spin {
  transform-origin: 0 0;
  animation: ring-spin linear infinite;
}
.ring-spin.r1 { animation-direction: reverse; }
@keyframes ring-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ─── Lang toggle (reused) ─────────────────────────────────── */
.lang-toggle {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 11px;
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(205, 214, 244, 0.03);
}
.lang-toggle button {
  background: transparent; border: none;
  color: var(--overlay1);
  padding: 6px 10px; cursor: pointer;
  font-family: inherit; font-size: inherit;
  letter-spacing: 0.5px;
  transition: all 120ms ease;
}
.lang-toggle button:hover { color: var(--text); }
.lang-toggle button.active {
  background: rgba(203, 166, 247, 0.16);
  color: var(--mauve);
}

/* ═══════════════════════════════════════════════════════════ */
/*  CREATOR — flujo de captura de idea (3 pantallas)           */
/* ═══════════════════════════════════════════════════════════ */

.creator-page {
  min-height: 100vh;
  display: flex; flex-direction: column;
  position: relative; z-index: 1;
}
.creator-orbit-bg {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 1100px; height: 1100px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

.creator-progress {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-mono); font-size: 11px;
  color: var(--overlay1); letter-spacing: 0.6px;
  margin-bottom: 36px;
}
.creator-progress .bar {
  flex: 1;
  height: 2px;
  background: rgba(205, 214, 244, 0.06);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.creator-progress .bar .fill {
  position: absolute; inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--mauve), var(--lavender), var(--pink));
  border-radius: 100px;
  transition: width 500ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px var(--mauve);
}
.creator-progress .step-label {
  white-space: nowrap;
}
.creator-progress .step-label .accent {
  color: var(--mauve);
}

.creator-stage {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 80px 0 60px;
}
.creator-card {
  width: 100%;
  max-width: 760px;
  position: relative;
}

/* Screen 1: idea input */
.creator-screen-1 .lead-eyebrow {
  font-family: var(--font-mono); font-size: 12px;
  color: var(--mauve); letter-spacing: 1.4px; text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 10px;
}
.creator-screen-1 .lead-eyebrow::before {
  content: "◉"; color: var(--mauve);
}
.creator-screen-1 h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.02; letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 18px;
  text-wrap: balance;
}
.creator-screen-1 h1 .gradient {
  background: linear-gradient(120deg, var(--mauve), var(--lavender), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.creator-screen-1 .lead {
  font-size: 17px; color: var(--subtext0); line-height: 1.55;
  max-width: 560px; margin: 0 0 40px;
}

.idea-input {
  position: relative;
  background: rgba(17, 17, 27, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-xl);
  padding: 4px;
  transition: all 200ms ease;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.idea-input:focus-within {
  border-color: rgba(203, 166, 247, 0.5);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5), 0 0 0 4px rgba(203,166,247,0.1);
}
.idea-input textarea {
  width: 100%;
  min-height: 140px;
  background: transparent;
  border: 0;
  resize: none;
  padding: 22px 24px 12px;
  font-family: var(--font-sans);
  font-size: 18px; line-height: 1.5;
  color: var(--text);
  outline: none;
}
.idea-input textarea::placeholder { color: var(--overlay0); }
.idea-input .input-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 12px 8px 24px;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono); font-size: 12px;
  color: var(--overlay1);
}
.idea-input .scan {
  display: inline-flex; align-items: center; gap: 8px;
}
.idea-input .scan .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(166,227,161,0.5); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(166,227,161,0); }
}

.send-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: var(--mauve);
  color: var(--crust);
  border: 0;
  border-radius: var(--r-md);
  font-family: var(--font-sans); font-weight: 600; font-size: 13.5px;
  cursor: pointer;
  transition: all 150ms ease;
  box-shadow: 0 8px 24px -8px rgba(203,166,247,0.5);
}
.send-btn:hover:not(:disabled) {
  background: var(--lavender);
  transform: translateY(-1px);
}
.send-btn:disabled { opacity: 0.5; cursor: not-allowed; box-shadow: none; }

.idea-suggestions {
  margin-top: 24px;
  display: flex; flex-wrap: wrap; gap: 8px;
}
.idea-suggestions .label {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--overlay1); letter-spacing: 0.4px;
  margin-right: 6px;
  align-self: center;
}
.idea-suggestions button {
  background: rgba(205, 214, 244, 0.04);
  border: 1px solid var(--border);
  color: var(--subtext0);
  padding: 8px 12px;
  border-radius: 100px;
  font-size: 12.5px;
  cursor: pointer;
  transition: all 150ms ease;
}
.idea-suggestions button:hover {
  border-color: rgba(203, 166, 247, 0.4);
  color: var(--text);
  background: rgba(203, 166, 247, 0.06);
}

/* Screen 2: questions */
.creator-screen-2 .q-eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--mauve); letter-spacing: 1px; text-transform: uppercase;
  display: flex; justify-content: space-between;
  margin-bottom: 14px;
}
.creator-screen-2 h2 {
  font-size: clamp(28px, 3.8vw, 40px);
  line-height: 1.1; letter-spacing: -0.025em;
  font-weight: 600;
  margin: 0 0 12px;
  text-wrap: balance;
}
.creator-screen-2 .q-hint {
  color: var(--subtext0); font-size: 15px;
  margin: 0 0 32px;
}

.q-options {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 10px; margin-bottom: 32px;
}
.q-option {
  background: rgba(17, 17, 27, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 18px 20px;
  text-align: left;
  cursor: pointer;
  transition: all 150ms ease;
  display: flex; align-items: center; gap: 14px;
  font-size: 15px; color: var(--text);
  font-family: inherit;
}
.q-option:hover {
  border-color: rgba(203, 166, 247, 0.4);
  background: rgba(30, 30, 46, 0.85);
}
.q-option.selected {
  border-color: var(--mauve);
  background: rgba(203, 166, 247, 0.1);
  box-shadow: 0 0 0 3px rgba(203,166,247,0.12);
}
.q-option .marker {
  width: 18px; height: 18px;
  border: 1.5px solid var(--border-strong);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: all 150ms ease;
}
.q-option.selected .marker {
  border-color: var(--mauve);
}
.q-option.selected .marker::after {
  content: ""; position: absolute; inset: 3px;
  border-radius: 50%; background: var(--mauve);
  box-shadow: 0 0 8px var(--mauve);
}

.q-text-input {
  background: rgba(17, 17, 27, 0.7);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 14px 16px;
  width: 100%;
  font: inherit; font-size: 15px;
  color: var(--text);
  outline: none;
  margin-bottom: 32px;
  transition: all 150ms ease;
}
.q-text-input:focus { border-color: rgba(203, 166, 247, 0.5); box-shadow: 0 0 0 3px rgba(203,166,247,0.1); }
.q-text-input::placeholder { color: var(--overlay0); }

.q-nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.q-back {
  background: transparent; border: 0;
  color: var(--overlay1);
  font: inherit; font-size: 13px;
  cursor: pointer;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 10px 12px;
  transition: color 150ms ease;
}
.q-back:hover { color: var(--text); }
.q-back:disabled { opacity: 0.4; cursor: not-allowed; }

@media (max-width: 600px) {
  .q-options { grid-template-columns: 1fr; }
}

/* Screen 3: launch / confirmation */
.creator-screen-3 {
  text-align: center;
  position: relative;
}
.launch-rings {
  width: 240px; height: 240px;
  margin: 0 auto 32px;
  position: relative;
}
.launch-rings .ring {
  position: absolute; inset: 0;
  border: 1px solid var(--mauve);
  border-radius: 50%;
  opacity: 0;
  animation: launch-pulse 2.4s ease-out infinite;
}
.launch-rings .ring:nth-child(2) { animation-delay: 0.6s; }
.launch-rings .ring:nth-child(3) { animation-delay: 1.2s; }
@keyframes launch-pulse {
  0% { transform: scale(0.4); opacity: 0; border-width: 2px; }
  20% { opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; border-width: 0.5px; }
}
.launch-rings .core {
  position: absolute; top: 50%; left: 50%;
  width: 60px; height: 60px;
  margin: -30px 0 0 -30px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--mauve), var(--lavender) 40%, transparent 70%);
  filter: blur(2px);
  animation: core-glow 2s ease-in-out infinite;
}
@keyframes core-glow {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.15); opacity: 1; }
}
.launch-rings .check {
  position: absolute; top: 50%; left: 50%;
  width: 80px; height: 80px;
  margin: -40px 0 0 -40px;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
}

.creator-screen-3 .status {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--green); letter-spacing: 1.4px; text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 8px;
}
.creator-screen-3 .status .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}
.creator-screen-3 h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05; letter-spacing: -0.03em;
  font-weight: 600;
  margin: 0 0 18px;
}
.creator-screen-3 h1 .gradient {
  background: linear-gradient(120deg, var(--mauve), var(--lavender), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.creator-screen-3 .lead {
  font-size: 17px; color: var(--subtext0); line-height: 1.55;
  max-width: 520px; margin: 0 auto 40px;
}

.summary-card {
  background: rgba(17, 17, 27, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: left;
  margin-bottom: 32px;
}
.summary-card h4 {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--overlay1); letter-spacing: 0.8px; text-transform: uppercase;
  margin: 0 0 16px;
}
.summary-card .row {
  display: flex; gap: 16px; padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--border);
}
.summary-card .row:last-child { border-bottom: 0; }
.summary-card .row .key {
  color: var(--overlay1); font-family: var(--font-mono);
  flex: 0 0 140px; font-size: 12.5px;
}
.summary-card .row .val { color: var(--text); flex: 1; }
.summary-card .idea-quote {
  background: rgba(30, 30, 46, 0.6);
  border-left: 2px solid var(--mauve);
  padding: 14px 16px;
  margin-bottom: 16px;
  font-style: italic;
  color: var(--subtext1); font-size: 14.5px; line-height: 1.5;
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
}

.creator-actions {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}

/* Tiny header with back-to-orbatix */
.creator-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(17, 17, 27, 0.65);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.creator-header .inner {
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
}
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12px;
  color: var(--overlay1);
  transition: color 150ms ease;
}
.back-link:hover { color: var(--mauve); }


/* ─── Creator featured card ───────────────────────────────── */
.creator-feature {
  position: relative;
  margin-bottom: 24px;
  padding: 0;
  overflow: hidden;
  display: block;
  min-height: 360px;
}
.creator-feature-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(ellipse 600px 400px at 75% 50%, rgba(203,166,247,0.18), transparent 60%);
  pointer-events: none;
}
.creator-feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  position: relative;
}
.creator-feature-text {
  padding: 56px 56px 56px 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.creator-feature-title {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 18px 0 16px;
  font-weight: 700;
}
.creator-feature-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--subtext1);
  margin-bottom: 20px;
  text-wrap: pretty;
  max-width: 520px;
}
.creator-feature-meta {
  display: flex; gap: 8px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--overlay1);
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.creator-feature-cta {
  display: inline-flex;
  align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--mauve);
  letter-spacing: 0.05em;
  transition: gap 200ms ease;
}
.creator-feature:hover .creator-feature-cta { gap: 14px; }
.creator-feature-cta svg { transition: transform 200ms ease; }
.creator-feature:hover .creator-feature-cta svg { transform: translateX(4px); }

.creator-feature-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  border-left: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(203,166,247,0.04), transparent 60%);
}
.creator-orb {
  position: absolute;
  width: 80%;
  height: 80%;
  opacity: 0.85;
}
.creator-feature-input {
  position: relative;
  z-index: 2;
  background: rgba(24,24,37,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(203,166,247,0.3);
  border-radius: var(--r-md);
  padding: 18px 20px;
  width: 92%;
  max-width: 360px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.input-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--mauve);
  margin-bottom: 10px;
}
.input-line {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text);
  padding: 8px 12px;
  background: rgba(205,214,244,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  margin-bottom: 10px;
}
.input-chips {
  display: flex; gap: 6px; flex-wrap: wrap;
}
.input-chips .chip {
  font-size: 10px;
  background: rgba(203,166,247,0.1);
  border: 1px solid rgba(203,166,247,0.3);
  color: var(--mauve);
  padding: 3px 8px;
  border-radius: 100px;
}

.services-2col {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 920px) {
  .creator-feature-grid { grid-template-columns: 1fr; }
  .creator-feature-visual { border-left: none; border-top: 1px solid var(--border); min-height: 320px; }
  .creator-feature-text { padding: 36px; }
  .services-2col { grid-template-columns: 1fr; }
}

/* ─── Tools section (Terminal) ─────────────────────────────── */
.section-tools {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  padding-top: 100px;
  position: relative;
}
.section-tools::before {
  content: "";
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--mauve), transparent);
  opacity: 0.5;
}
.tools-eyebrow { color: var(--blue) !important; }

.tool-feature {
  padding: 0;
  overflow: hidden;
  display: block;
}
.tool-feature-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(ellipse 600px 400px at 25% 50%, rgba(116,199,236,0.14), transparent 60%);
  pointer-events: none;
}
.tool-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  position: relative;
}
.tool-feature-text {
  padding: 56px;
  display: flex; flex-direction: column; justify-content: center;
}
.tool-badge {
  background: rgba(116,199,236,0.12) !important;
  color: var(--sky) !important;
  border-color: rgba(116,199,236,0.3) !important;
}
.tool-feature-title {
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.1;
  margin: 18px 0 14px;
  font-weight: 700;
}
.tool-feature-sub {
  font-size: 16px;
  line-height: 1.55;
  color: var(--subtext1);
  margin-bottom: 24px;
  text-wrap: pretty;
}
.tool-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex; flex-direction: column; gap: 10px;
}
.tool-feature-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px;
  color: var(--text);
}
.tool-feature-list .bullet {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sky);
  box-shadow: 0 0 8px var(--sky);
  flex-shrink: 0;
}
.tool-feature-cta-row {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.tool-feature-cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--sky);
  letter-spacing: 0.05em;
  transition: gap 200ms ease;
}
.tool-feature:hover .tool-feature-cta { gap: 14px; }
.tool-feature-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--overlay1);
  letter-spacing: 1px;
}

.tool-feature-visual {
  padding: 40px;
  border-left: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(116,199,236,0.04), transparent 60%);
  display: flex; align-items: center;
}

/* Inner terminal mock */
.tool-terminal {
  width: 100%;
  background: rgba(17,17,27,0.92);
  border: 1px solid rgba(116,199,236,0.25);
  border-radius: var(--r-md);
  overflow: hidden;
  font-family: var(--font-mono);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.tt-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: rgba(24,24,37,0.9);
  border-bottom: 1px solid var(--border);
}
.tt-dot {
  width: 11px; height: 11px;
  border-radius: 50%;
}
.tt-dot.red { background: #f38ba8; }
.tt-dot.yellow { background: #f9e2af; }
.tt-dot.green { background: #a6e3a1; }
.tt-title {
  margin-left: 12px;
  font-size: 11px;
  color: var(--overlay1);
  letter-spacing: 0.5px;
}
.tt-body {
  padding: 18px 18px 12px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--text);
}
.tt-ln { display: block; }
.tt-ln.out { color: var(--overlay1); }
.tt-prompt { color: var(--mauve); }
.tt-arrow { color: var(--sky); margin: 0 6px; }
.tt-caret {
  display: inline-block;
  width: 7px; height: 13px;
  background: var(--sky);
  vertical-align: -2px;
  animation: blink 1s step-end infinite;
}

.tt-copilot {
  margin: 12px 18px 18px;
  padding: 12px 14px;
  background: rgba(203,166,247,0.06);
  border: 1px solid rgba(203,166,247,0.25);
  border-radius: var(--r-sm);
}
.tt-copilot-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--mauve);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.tt-copilot-icon {
  font-size: 12px;
}
.tt-copilot-msg {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text);
  font-family: var(--font-sans);
}

@media (max-width: 920px) {
  .tool-feature-grid { grid-template-columns: 1fr; }
  .tool-feature-visual { border-left: none; border-top: 1px solid var(--border); padding: 32px; }
  .tool-feature-text { padding: 36px; }
}

/* ──────────────────────────────────────────────────────────────────
   Mobile rollups — additive only; existing breakpoints above stand.
   Two tiers: tablet/small (≤760) and phone (≤480).
   ────────────────────────────────────────────────────────────────── */

@media (max-width: 760px) {
  .container { padding: 0 20px; }

  /* Nav: keep brand + LangToggle + CTA; hide intermediate links so they
     don't wrap and break the bar. They still exist in the DOM (and the
     anchors are scroll targets) — this is purely visual decluttering. */
  .nav-inner { height: 56px; }
  .nav-links { gap: 14px; font-size: 13px; }
  .nav-links a:not(.back-link):not(.nav-cta) { display: none; }
  .nav-cta { padding: 7px 12px; font-size: 12.5px; }

  /* Hero */
  .hero { padding: 48px 0 64px; }
  .hero-orbit { width: 600px; height: 600px; }
  .hero h1 { font-size: clamp(36px, 9vw, 56px); margin-bottom: 18px; }
  .hero-lead { font-size: 16px; margin-bottom: 28px; }
  .hero-cta-row { gap: 10px; margin-bottom: 36px; }
  .btn { padding: 12px 18px; font-size: 14px; }
  .hero-stats { gap: 28px; padding-top: 28px; }
  .hero-stat .num { font-size: 26px; }

  /* Sections */
  .section { padding: 60px 0; }
  .section-eyebrow { margin-bottom: 12px; }
  .section-title { font-size: clamp(26px, 6vw, 36px); margin-bottom: 12px; }
  .section-sub { font-size: 15px; margin-bottom: 36px; }

  /* Manifesto / process / products */
  .manifesto-card { padding: 28px 22px; }
  .manifesto-card .quote { font-size: 18px; }
  .process-step { padding: 24px 22px; min-height: 200px; }
  .process-step .step-title { font-size: 17px; }
  .product-card { padding: 28px 24px; gap: 16px; }

  /* Metrics: one column on phone — too cramped at 2col under 480 */
  .metrics { gap: 16px; }

  /* Creator featured card on the home (not the Creator page itself) */
  .creator-feature-text { padding: 32px 24px; }
  .creator-feature-title { font-size: clamp(28px, 6.5vw, 40px); }
  .creator-feature-sub { font-size: 15px; }
  .creator-feature-visual { padding: 28px; min-height: 240px; }
  .creator-feature-input { padding: 14px 16px; }
  .tool-feature-text { padding: 32px 24px; }
  .tool-feature-title { font-size: clamp(26px, 6.5vw, 36px); }
  .tool-feature-visual { padding: 24px; }

  /* CTA banner */
  .cta-banner { padding: 44px 24px; }

  /* Footer: still 2 cols on tablet, drop the desc width cap */
  .factory-footer { padding: 48px 0 32px; }
  .factory-footer .grid { gap: 32px; }
  .factory-footer .desc { max-width: none; }
  .factory-footer .bottom { font-size: 11px; }

  /* Creator page */
  .creator-stage { padding: 36px 0 32px; }
  .creator-progress { gap: 12px; margin-bottom: 24px; }
  .creator-progress .step-label { white-space: normal; line-height: 1.35; }
  .creator-header .inner { height: 52px; }
  .creator-header .inner > div:last-child { gap: 12px !important; }
  .creator-header .inner > div:last-child > span:first-child { display: none; }
  .creator-card { padding: 28px 22px; }
  .creator-screen-1 h1 { font-size: clamp(28px, 6.8vw, 40px); }
  .creator-screen-1 .lead { font-size: 15px; }
  .idea-input textarea { font-size: 15px; min-height: 96px; }
  .input-bar { flex-wrap: wrap; gap: 8px; }
  .send-btn { padding: 9px 14px; font-size: 13px; }
  .q-eyebrow { font-size: 11px; flex-wrap: wrap; gap: 6px; }
  .creator-screen-2 h2 { font-size: clamp(22px, 5.5vw, 30px); }
  .q-hint { font-size: 13.5px; }
  .q-text-input { font-size: 15px; padding: 12px 14px; }
  .q-options { gap: 8px; }
  .q-option { padding: 12px 14px; font-size: 14px; }
  .q-back { padding: 8px 10px; }
  .creator-screen-3 h1 { font-size: clamp(28px, 7vw, 42px); }
  .summary-card { padding: 22px 18px; }
  .creator-actions { gap: 8px; }
  .creator-actions .btn { padding: 10px 14px; font-size: 13.5px; flex: 1; min-width: 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }

  /* Hero — push title further down so the orbital backdrop doesn't crowd it */
  .hero { padding: 36px 0 56px; }
  .hero-orbit { width: 460px; height: 460px; }
  .hero h1 { font-size: clamp(30px, 10vw, 44px); }
  .hero-stats { gap: 22px; }

  /* Sections */
  .section { padding: 48px 0; }
  .section-title { font-size: clamp(24px, 7vw, 32px); }

  /* Metrics → single column */
  .metrics { grid-template-columns: 1fr !important; }

  /* Footer → single column on phones */
  .factory-footer .grid { grid-template-columns: 1fr; }
  .factory-footer .bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* CTA banner: tight padding, smaller H2 */
  .cta-banner { padding: 36px 18px; }
  .cta-banner h2 { font-size: clamp(24px, 7.5vw, 36px); }
  .cta-banner p { font-size: 15px; margin-bottom: 24px; }

  /* Manifesto grid — keep card body tight */
  .manifesto-card { padding: 22px 18px; }
  .process-step { padding: 22px 18px; min-height: 0; }

  /* Products — smaller visual padding */
  .product-card { padding: 24px 20px; }
  .creator-feature-text { padding: 24px 20px; }
  .creator-feature-visual { padding: 22px; min-height: 200px; }
  .tool-feature-text { padding: 24px 20px; }
  .tool-feature-visual { padding: 20px; }

  /* Creator page */
  .creator-card { padding: 22px 18px; border-radius: 14px; }
  .idea-input textarea { font-size: 14.5px; }
  .creator-progress .step-label { font-size: 11px; }

  /* Summary card on Screen3: stack key/val rows so long values don't truncate */
  .summary-card { padding: 18px 16px; }
  .summary-card .row { flex-direction: column; gap: 4px; padding: 8px 0; }
  .summary-card .row .key { flex: none; font-size: 11px; }
  .summary-card .row .val { font-size: 14px; }

  /* Launch animation smaller on phones */
  .launch-rings { width: 180px; height: 180px; margin-bottom: 24px; }
  .launch-rings .core { width: 44px; height: 44px; margin: -22px 0 0 -22px; }
  .launch-rings .check { width: 60px; height: 60px; margin: -30px 0 0 -30px; }
  .launch-rings .check svg { width: 30px; height: 30px; }

  /* Creator-actions buttons go full width to be tappable */
  .creator-actions { flex-direction: column; }
  .creator-actions .btn,
  .creator-actions .send-btn { width: 100%; justify-content: center; }
}
