:root {
  color-scheme: dark;
  --void: #05060a;
  --ink: #f8fbff;
  --muted: #98a4b8;
  --line: rgba(156, 185, 255, .18);
  --glass: rgba(12, 18, 32, .72);
  --glass-strong: rgba(18, 27, 48, .9);
  --cyan: #46f4ff;
  --violet: #a96cff;
  --ember: #ff5f38;
  --gold: #ffd36a;
  --green: #58ffbd;
  --radius: 8px;
}

:root[data-theme="light"] {
  color-scheme: light;
  --void: #f6f7f9;
  --ink: #16191f;
  --muted: #687080;
  --line: rgba(28, 34, 45, .16);
  --glass: rgba(255, 255, 255, .82);
  --glass-strong: rgba(255, 255, 255, .94);
  --cyan: #286c76;
  --violet: #5f6472;
  --ember: #8f4a38;
  --gold: #8b6a2b;
  --green: #326d58;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(70, 244, 255, .16), transparent 28rem),
    radial-gradient(circle at 85% 18%, rgba(169, 108, 255, .14), transparent 34rem),
    linear-gradient(135deg, #05060a 0%, #090d18 48%, #120b13 100%);
  color: var(--ink);
  overflow-x: hidden;
}
:root[data-theme="light"] body {
  background:
    radial-gradient(circle at 18% 8%, rgba(40, 108, 118, .08), transparent 28rem),
    radial-gradient(circle at 85% 18%, rgba(95, 100, 114, .08), transparent 34rem),
    linear-gradient(135deg, #f7f8fa 0%, #eef1f4 52%, #f8f5f0 100%);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(70, 244, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(70, 244, 255, .045) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 82%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
main { min-height: calc(100vh - 138px); position: relative; }

.ambient { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.ambient span {
  position: absolute;
  width: 28rem;
  aspect-ratio: 1;
  border-radius: 999px;
  filter: blur(72px);
  opacity: .18;
  animation: drift 18s ease-in-out infinite alternate;
}
.ambient span:nth-child(1) { left: -9rem; top: 8rem; background: var(--cyan); }
.ambient span:nth-child(2) { right: -8rem; top: 4rem; background: var(--violet); animation-delay: -5s; }
.ambient span:nth-child(3) { left: 42%; bottom: -12rem; background: var(--ember); animation-delay: -8s; }

.site-header, .site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 58px);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 6, 10, .72);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(0,0,0,.32);
}
:root[data-theme="light"] .site-header {
  background: rgba(247, 249, 252, .78);
}
:root[data-theme="light"] .ambient span { opacity: .08; }
.site-footer {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  background: rgba(5, 6, 10, .74);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 950;
  font-size: 23px;
  letter-spacing: 0;
}
.brand::before {
  content: "";
  width: 12px;
  height: 32px;
  margin-right: 12px;
  background: linear-gradient(var(--cyan), var(--ember));
  box-shadow: 0 0 24px rgba(70, 244, 255, .7);
  clip-path: polygon(50% 0, 100% 38%, 66% 100%, 0 100%, 32% 38%);
}
.brand span { color: var(--cyan); text-shadow: 0 0 18px rgba(70,244,255,.7); }
nav, nav form, .actions, .segmented, .inline { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
nav a { color: var(--muted); font-weight: 800; transition: color .2s ease, text-shadow .2s ease; }
nav a:hover { color: var(--cyan); text-shadow: 0 0 18px rgba(70,244,255,.55); }
.link-button { border: 0; background: transparent; color: var(--muted); font: inherit; font-weight: 800; cursor: pointer; }
.theme-toggle {
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.theme-toggle::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
}
:root[data-theme="light"] .theme-toggle { background: rgba(255,255,255,.68); }

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid rgba(70,244,255,.46);
  background: linear-gradient(135deg, rgba(70,244,255,.96), rgba(169,108,255,.94));
  color: #03050a;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 0 24px rgba(70,244,255,.24), inset 0 1px 0 rgba(255,255,255,.46);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
:root[data-theme="light"] .button {
  background: linear-gradient(135deg, #1f2937, #4b5563);
  color: #fff;
  border-color: rgba(31, 41, 55, .38);
  box-shadow: 0 12px 28px rgba(31,41,55,.18), inset 0 1px 0 rgba(255,255,255,.24);
}
.button::after {
  content: "";
  position: absolute;
  inset: -80% -30%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.55), transparent);
  transform: translateX(-60%) rotate(20deg);
  transition: transform .55s ease;
  opacity: .24;
  pointer-events: none;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 0 34px rgba(70,244,255,.38); }
.button:hover::after { transform: translateX(65%) rotate(20deg); }
.button.small { min-height: 38px; padding: 0 15px; }
.button.ghost {
  background: rgba(255,255,255,.03);
  color: var(--ink);
  border-color: var(--line);
}
.button.pulse { animation: pulseGlow 2.5s ease-in-out infinite; }
.button:disabled,
button:disabled {
  cursor: wait;
  opacity: .62;
  transform: none;
}

.notice {
  margin: 16px clamp(18px, 4vw, 58px);
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--glass-strong);
  box-shadow: 0 16px 42px rgba(0,0,0,.28);
}
.notice.success { border-color: rgba(88, 255, 189, .35); color: var(--green); }
.notice.error { border-color: rgba(255, 95, 56, .45); color: var(--ember); }

.launch-strip {
  width: min(1220px, calc(100% - 36px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.launch-strip span {
  min-height: 40px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(70,244,255,.18);
  border-radius: var(--radius);
  background: rgba(70,244,255,.055);
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-align: center;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .82fr);
  gap: clamp(30px, 6vw, 98px);
  align-items: center;
  padding: clamp(54px, 8vw, 112px) clamp(18px, 4vw, 58px) 42px;
  overflow: hidden;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  font-weight: 950;
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: .14em;
}
.hero h1 {
  margin: 0;
  font-size: clamp(68px, 11vw, 144px);
  line-height: .84;
  letter-spacing: 0;
  text-shadow: 0 0 22px rgba(70,244,255,.34), 0 26px 90px rgba(0,0,0,.65);
}
.hero p {
  max-width: 670px;
  color: #c5ccda;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}
:root[data-theme="light"] .hero p { color: #344054; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.trust-row span {
  padding: 8px 11px;
  border: 1px solid rgba(70,244,255,.18);
  border-radius: 999px;
  background: rgba(70,244,255,.06);
  color: #dce6f8;
  font-size: 13px;
  font-weight: 900;
}
:root[data-theme="light"] .trust-row span { color: #25364f; background: rgba(255,255,255,.66); }
.product-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 1000px;
}
.home-mockup-card {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(70,244,255,.18);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(13,18,31,.94), rgba(5,7,13,.96)),
    radial-gradient(circle at 52% 30%, rgba(70,244,255,.12), transparent 48%);
  box-shadow: 0 44px 110px rgba(0,0,0,.6), 0 0 46px rgba(70,244,255,.18);
  transform: rotateY(-8deg) rotateX(4deg);
  animation: floatProduct 7s ease-in-out infinite;
  isolation: isolate;
}
.home-mockup-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.04) brightness(.98);
}
.home-mockup-aura {
  position: absolute;
  inset: 10%;
  background: conic-gradient(from 180deg, rgba(70,244,255,.8), rgba(139,108,255,.75), rgba(255,95,56,.62), rgba(70,244,255,.8));
  filter: blur(46px);
  opacity: .28;
  z-index: -1;
  animation: spin 12s linear infinite;
}
.home-print-zone {
  position: absolute;
  left: 48.8%;
  top: 48.7%;
  width: 17.5%;
  aspect-ratio: .82;
  translate: -50% -50%;
  display: grid;
  place-items: center;
  align-content: center;
  gap: clamp(1px, .32vw, 4px);
  padding: 0;
  mix-blend-mode: normal;
  transform: rotate(-.8deg);
}
.home-fw-mark {
  color: var(--gold);
  font-size: clamp(24px, 3.25vw, 46px);
  line-height: .76;
  font-weight: 950;
  text-shadow: 0 1px 0 rgba(0,0,0,.75), 0 0 10px rgba(255,211,106,.45);
}
.home-print-copy {
  max-width: 100%;
  color: #f6fbff;
  font-size: clamp(6px, .7vw, 10px);
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
  text-align: center;
  overflow-wrap: anywhere;
  text-shadow: 0 1px 0 rgba(0,0,0,.84), 0 0 6px rgba(0,0,0,.55);
}
.hero-telemetry {
  position: absolute;
  right: 5%;
  bottom: 8%;
  width: min(210px, 42%);
  display: grid;
  gap: 5px;
  padding: 13px;
  border: 1px solid rgba(255,211,106,.25);
  border-radius: var(--radius);
  background: rgba(4,8,16,.76);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
}
.hero-telemetry span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.hero-telemetry strong { color: #fff; font-size: 20px; line-height: 1; }
.hero-telemetry small { color: var(--muted); line-height: 1.35; }
.home-product-shadow {
  position: absolute;
  left: 24%;
  right: 17%;
  bottom: 5%;
  height: 12%;
  background: radial-gradient(ellipse, rgba(0,0,0,.46), transparent 68%);
  filter: blur(10px);
  opacity: .7;
  pointer-events: none;
}

.home-proof {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.home-proof article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: linear-gradient(145deg, rgba(12,18,32,.76), rgba(7,10,18,.7));
  box-shadow: 0 20px 58px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.04);
}
.home-proof span {
  color: var(--cyan);
  font-weight: 950;
  letter-spacing: .14em;
}
.home-proof h2 { margin: 9px 0; font-size: 24px; }
.home-proof p { margin: 0; color: var(--muted); line-height: 1.5; }

.metrics, .catalog-strip {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.metrics div, .catalog-strip article, .feature-band, .panel.narrow, .sidebar, .generator, .design-card, table {
  background: linear-gradient(145deg, rgba(15, 23, 42, .82), rgba(6, 10, 20, .86));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.04);
}
:root[data-theme="light"] .metrics div,
:root[data-theme="light"] .catalog-strip article,
:root[data-theme="light"] .feature-band,
:root[data-theme="light"] .panel.narrow,
:root[data-theme="light"] .sidebar,
:root[data-theme="light"] .generator,
:root[data-theme="light"] .design-card,
:root[data-theme="light"] .design-path-panel,
:root[data-theme="light"] .path-switch,
:root[data-theme="light"] .pay-summary,
:root[data-theme="light"] .quota,
:root[data-theme="light"] .product-preview-wrap,
:root[data-theme="light"] table,
:root[data-theme="light"] .preview-lab {
  background: linear-gradient(145deg, rgba(255,255,255,.9), rgba(244,246,249,.86));
  box-shadow: 0 18px 48px rgba(31,41,55,.12), inset 0 1px 0 rgba(255,255,255,.8);
}
.metrics div, .catalog-strip article { padding: 26px clamp(18px, 4vw, 42px); position: relative; overflow: hidden; }
.catalog-strip article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent, rgba(70,244,255,.07), transparent);
  transform: translateX(-100%);
  animation: scan 6s ease-in-out infinite;
}
.metrics strong { display: block; font-size: 36px; color: var(--cyan); }
.metrics span, .catalog-strip p, .quota span, .upgrade span { color: var(--muted); }

.feature-band {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: minmax(0, .7fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
}
.feature-band h2 { margin: 0; max-width: 580px; font-size: clamp(30px, 4vw, 56px); line-height: 1; }
.pipeline { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; justify-content: flex-end; }
.pipeline span {
  padding: 12px 14px;
  border: 1px solid rgba(70,244,255,.25);
  border-radius: var(--radius);
  background: rgba(70,244,255,.06);
  font-weight: 900;
}
.pipeline i { width: 34px; height: 1px; background: linear-gradient(90deg, var(--cyan), transparent); }
.catalog-strip article span { color: var(--cyan); font-weight: 950; }
.catalog-strip h2 { margin: 8px 0; font-size: 28px; }

.quality-gate,
.style-gallery {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto 26px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15, 23, 42, .82), rgba(6, 10, 20, .86));
  box-shadow: 0 22px 70px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.04);
}
:root[data-theme="light"] .quality-gate,
:root[data-theme="light"] .style-gallery {
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(244,246,249,.88));
  box-shadow: 0 18px 48px rgba(31,41,55,.12), inset 0 1px 0 rgba(255,255,255,.8);
}
.quality-gate {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, 1fr);
  gap: 24px;
  align-items: start;
}
.quality-gate h2,
.style-gallery h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
}
.quality-gate p { color: var(--muted); line-height: 1.55; }
.quality-grid,
.style-grid,
.queue-grid,
.checkout-proof-grid {
  display: grid;
  gap: 12px;
}
.quality-grid,
.style-grid,
.queue-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.quality-grid article,
.style-grid article,
.queue-grid article,
.checkout-proof-grid span {
  padding: 15px;
  border: 1px solid rgba(156,185,255,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
}
.quality-grid strong,
.style-grid span,
.queue-grid span {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.quality-grid span,
.style-grid strong,
.queue-grid small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.45;
}
.style-grid strong {
  color: var(--ink);
  font-size: 20px;
}
:root[data-theme="light"] .style-grid strong { color: #25364f; }
.queue-grid article { min-height: 130px; }
.queue-grid strong {
  display: block;
  margin-top: 8px;
  color: var(--gold);
  font-size: clamp(34px, 4vw, 54px);
  line-height: .9;
}
.health-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.health-grid article {
  display: grid;
  gap: 6px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
}
.health-grid strong { font-size: 18px; }
.health-grid span { color: var(--muted); font-weight: 850; }
.health-grid .is-ready {
  border-color: rgba(88,255,189,.24);
  background: rgba(88,255,189,.055);
}
.health-grid .is-ready strong { color: var(--green); }
.health-grid .is-warning {
  border-color: rgba(255,95,56,.28);
  background: rgba(255,95,56,.055);
}
.health-grid .is-warning strong { color: var(--ember); }

.plan-compare {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto 34px;
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15, 23, 42, .82), rgba(6, 10, 20, .86));
  box-shadow: 0 22px 70px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.04);
}
:root[data-theme="light"] .plan-compare,
:root[data-theme="light"] .plan-card {
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(244,246,249,.88));
  box-shadow: 0 18px 48px rgba(31,41,55,.12), inset 0 1px 0 rgba(255,255,255,.8);
}
.plan-intro h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
}
.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.plan-card {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
  position: relative;
  overflow: hidden;
}
.plan-card.featured {
  border-color: rgba(255,211,106,.38);
  box-shadow: 0 24px 80px rgba(255,211,106,.08), inset 0 1px 0 rgba(255,255,255,.06);
}
.plan-card.featured::before {
  content: "Best value";
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,211,106,.13);
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.plan-name {
  color: var(--cyan);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.plan-card strong {
  font-size: clamp(42px, 6vw, 72px);
  line-height: .9;
}
.plan-card strong span {
  font-size: 18px;
  color: var(--muted);
}
.plan-card p { color: var(--muted); margin: 0; line-height: 1.5; }
.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.plan-card li {
  padding-left: 26px;
  position: relative;
  color: #dce6f8;
}
:root[data-theme="light"] .plan-card li { color: #25364f; }
.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--cyan), var(--violet));
  box-shadow: 0 0 16px rgba(70,244,255,.3);
}

.seo-hero {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto 28px;
  min-height: 62vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .62fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 7vw, 92px) 0 22px;
}
.seo-hero h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(46px, 7vw, 96px);
  line-height: .9;
}
.seo-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
}
.seo-hero picture {
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0,0,0,.42);
  transform: rotateY(-5deg) rotateX(3deg);
}
.seo-hero img {
  display: block;
  width: 100%;
  height: auto;
}
.seo-section {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto 28px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(11,16,31,.82), rgba(6,8,15,.74));
  box-shadow: 0 22px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.04);
}
:root[data-theme="light"] .seo-section,
:root[data-theme="light"] .seo-hero picture {
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(244,246,249,.88));
  box-shadow: 0 18px 48px rgba(31,41,55,.12), inset 0 1px 0 rgba(255,255,255,.8);
}
.seo-feature-grid,
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.seo-feature-grid article,
.faq-list article,
.content-page article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255,255,255,.035);
}
.seo-feature-grid article span {
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 16px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
}
.seo-feature-grid h3,
.faq-list h2,
.faq-list h3,
.content-page h2 {
  margin: 0 0 8px;
}
.seo-feature-grid p,
.faq-list p,
.content-page p,
.seo-copy {
  color: var(--muted);
  line-height: 1.55;
}
.seo-pipeline { margin-bottom: 20px; }
.content-page { display: grid; gap: 18px; }

.panel, .admin, .workspace {
  width: min(1220px, calc(100% - 36px));
  margin: 34px auto;
}
.store-admin {
  width: min(1500px, calc(100% - 36px));
}
.admin-hero {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
}
.admin-hero h1 { margin: 0; font-size: clamp(42px, 6vw, 76px); line-height: .9; }
.admin-hero p { max-width: 760px; color: var(--muted); line-height: 1.5; }
.range-filter { min-width: 220px; }
.admin-kpis {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}
.admin-kpis article,
.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15, 23, 42, .82), rgba(6, 10, 20, .86));
  box-shadow: 0 22px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.04);
}
:root[data-theme="light"] .admin-kpis article,
:root[data-theme="light"] .admin-card {
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(244,246,249,.88));
  box-shadow: 0 18px 48px rgba(31,41,55,.12), inset 0 1px 0 rgba(255,255,255,.8);
}
.admin-kpis article {
  display: grid;
  gap: 7px;
  min-height: 142px;
  padding: 18px;
}
.admin-kpis span,
.section-title span,
.admin-table small,
.mini-list span,
.mini-list small,
.pipeline-bars span { color: var(--muted); }
.admin-kpis strong {
  color: var(--cyan);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: .95;
}
.admin-kpis small { color: var(--muted); line-height: 1.35; }
.admin-grid { display: grid; gap: 16px; margin-bottom: 16px; }
.admin-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.admin-grid.signup-grid { grid-template-columns: minmax(270px, .38fr) minmax(0, 1fr); align-items: start; }
.admin-card { padding: 20px; margin-bottom: 16px; }
.section-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}
.section-title h2 { margin: 0; font-size: clamp(24px, 3vw, 34px); }
.pipeline-bars, .mini-list { display: grid; gap: 10px; }
.pipeline-bars div, .mini-list div {
  display: grid;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
}
.admin-table-wrap { width: 100%; overflow-x: auto; }
.admin-table {
  min-width: 1320px;
  background: transparent;
  box-shadow: none;
  border: 0;
}
.signup-table { min-width: 880px; }
.admin-table th, .admin-table td { vertical-align: top; }
.admin-table td > strong,
.admin-table td > small,
.admin-table td > a { display: block; margin-bottom: 5px; }
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(70,244,255,.24);
  border-radius: 999px;
  background: rgba(70,244,255,.08);
  color: var(--cyan);
  font-weight: 900;
  white-space: nowrap;
}
.status-paid, .status-shipped, .status-fulfilled {
  border-color: rgba(88,255,189,.28);
  background: rgba(88,255,189,.08);
  color: var(--green);
}
.status-cancelled, .status-refunded, .status-on-hold {
  border-color: rgba(255,95,56,.34);
  background: rgba(255,95,56,.08);
  color: var(--ember);
}
.customer-orders {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.order-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 14px;
}
.order-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15, 23, 42, .86), rgba(5, 9, 18, .92));
  box-shadow: 0 22px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.04);
}
.order-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--gold), var(--violet));
  opacity: .75;
}
:root[data-theme="light"] .order-card {
  background: linear-gradient(145deg, rgba(255,255,255,.95), rgba(244,247,251,.9));
  box-shadow: 0 18px 48px rgba(31,41,55,.12), inset 0 1px 0 rgba(255,255,255,.8);
}
.empty-order {
  grid-template-columns: minmax(0, 1fr);
  max-width: 720px;
}
.empty-order strong {
  color: var(--cyan);
  font-size: 22px;
}
.empty-order p,
.order-state {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}
.order-next {
  margin: -6px 0 0;
  color: var(--gold);
  font-weight: 900;
}
.order-card-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.order-card-head h3 {
  margin: 4px 0 0;
  font-size: 20px;
  line-height: 1.15;
}
.order-card-head strong {
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
  white-space: nowrap;
}
.order-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}
.order-progress span {
  position: relative;
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.order-progress span::before {
  content: "";
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(156,185,255,.16);
  box-shadow: inset 0 0 0 1px rgba(156,185,255,.08);
}
.order-progress span.is-complete {
  color: var(--cyan);
}
.order-progress span.is-complete::before {
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  box-shadow: 0 0 18px rgba(70,244,255,.24);
}
.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.admin-actions, .admin-inline { display: grid; gap: 8px; }
.admin-inline {
  grid-template-columns: repeat(2, minmax(110px, 1fr));
  padding: 8px;
  border: 1px solid rgba(156,185,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.025);
}
.admin-inline.compact { grid-template-columns: repeat(3, minmax(110px, 1fr)); }
.admin-inline .button { grid-column: 1 / -1; }
.admin-inline input, .admin-inline select {
  min-height: 38px;
  padding: 9px 10px;
  font-size: 14px;
}
.admin-table a, .mini-list a { color: var(--cyan); font-weight: 850; }
.signup-trend i {
  display: block;
  width: var(--bar);
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  box-shadow: 0 0 18px rgba(70,244,255,.22);
}
.checkout-shell {
  width: min(1220px, calc(100% - 36px));
  margin: 34px auto;
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(300px, 1fr);
  gap: 22px;
  align-items: start;
}
.checkout-shell .panel { width: 100%; }
.panel.narrow { max-width: 540px; padding: 30px; }
.auth-panel { display: grid; gap: 16px; }
.auth-copy,
.auth-switch,
.field-help {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.auth-switch a { color: var(--cyan); font-weight: 900; }
.auth-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.auth-proof span {
  padding: 10px;
  border: 1px solid rgba(70,244,255,.16);
  border-radius: var(--radius);
  background: rgba(70,244,255,.055);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}
.pay-panel { max-width: none; margin: 0; }
.checkout-review {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15, 23, 42, .82), rgba(6, 10, 20, .86));
  box-shadow: 0 22px 70px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.04);
}
:root[data-theme="light"] .checkout-review {
  background: linear-gradient(145deg, rgba(255,255,255,.92), rgba(244,246,249,.88));
  box-shadow: 0 18px 48px rgba(31,41,55,.12), inset 0 1px 0 rgba(255,255,255,.8);
}
.checkout-review h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
}
.checkout-preview {
  display: grid;
  place-items: center;
  min-height: 260px;
  border: 1px solid rgba(70,244,255,.15);
  border-radius: var(--radius);
  background: radial-gradient(circle, rgba(70,244,255,.12), rgba(3,6,12,.86));
  overflow: hidden;
}
.checkout-preview img {
  width: 100%;
  height: 100%;
  max-height: 360px;
  object-fit: contain;
}
.checkout-proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.checkout-proof-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.35;
}
.pay-summary {
  display: grid;
  gap: 8px;
  padding: 18px;
  margin: 18px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.04);
}
.pay-summary strong { font-size: 36px; color: var(--cyan); }
.pay-summary small { color: var(--muted); }
.checkout-status {
  min-height: 24px;
  color: var(--muted);
  font-weight: 800;
}
.checkout-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 16px;
}
.checkout-steps span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.checkout-steps span.is-active {
  color: #031018;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  border-color: transparent;
}
.payment-readiness {
  display: grid;
  gap: 5px;
  padding: 14px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,211,106,.22);
  border-radius: var(--radius);
  background: rgba(255,211,106,.065);
}
.payment-readiness strong { color: var(--gold); }
.payment-readiness span { color: var(--muted); line-height: 1.45; }
.checkout-assurance {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(88,255,189,.2);
  border-radius: var(--radius);
  background: rgba(88,255,189,.06);
}
.checkout-assurance p { margin-bottom: 0; color: var(--muted); line-height: 1.5; }
.stack { display: grid; gap: 16px; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
label { display: grid; gap: 7px; font-weight: 850; color: #dbe7ff; }
:root[data-theme="light"] label { color: #25364f; }
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(156,185,255,.24);
  background: rgba(3, 6, 12, .72);
  color: var(--ink);
  border-radius: var(--radius);
  padding: 13px 14px;
  font: inherit;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
:root[data-theme="light"] input,
:root[data-theme="light"] select,
:root[data-theme="light"] textarea {
  background: rgba(255,255,255,.86);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(70,244,255,.72);
  box-shadow: 0 0 0 4px rgba(70,244,255,.1), 0 0 24px rgba(70,244,255,.16);
}
textarea { min-height: 132px; resize: vertical; }

.workspace {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.sidebar, .generator, .design-card { padding: 22px; }
.sidebar { display: grid; gap: 18px; position: sticky; top: 86px; }
.sidebar h1, .admin h1 { margin: 0; font-size: 44px; line-height: .95; }
.plan-pill {
  width: fit-content;
  margin: 0;
  padding: 8px 11px;
  color: var(--green);
  border: 1px solid rgba(88,255,189,.28);
  background: rgba(88,255,189,.07);
  border-radius: var(--radius);
  font-weight: 900;
  text-transform: uppercase;
}
.quota {
  padding: 15px;
  border: 1px solid rgba(70,244,255,.14);
  border-radius: var(--radius);
  background: rgba(70,244,255,.05);
}
.quota strong { display: block; font-size: 34px; color: var(--cyan); }
.upgrade { display: grid; gap: 8px; border-top: 1px solid var(--line); padding-top: 18px; }
.readiness-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(70,244,255,.18);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(70,244,255,.07), rgba(255,211,106,.045));
}
.readiness-panel > strong {
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.readiness-panel div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding-top: 8px;
  border-top: 1px solid rgba(156,185,255,.12);
}
.readiness-panel span { color: var(--muted); font-size: 12px; font-weight: 900; }
.readiness-panel b { color: var(--ink); text-align: right; }
.studio-price {
  padding: 12px;
  border: 1px solid rgba(255,211,106,.22);
  border-radius: var(--radius);
  background: rgba(255,211,106,.07);
  color: var(--gold);
  font-weight: 950;
}
.sidebar-help {
  color: var(--muted);
  line-height: 1.45;
}
.studio-main { display: grid; gap: 24px; }
.studio-guidance {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 15px 16px;
  border: 1px solid rgba(88,255,189,.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(88,255,189,.07), rgba(70,244,255,.045));
}
.studio-guidance strong {
  color: var(--green);
  white-space: nowrap;
}
.studio-guidance span {
  color: var(--muted);
  line-height: 1.45;
}
.preview-lab {
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(300px, 1fr);
  gap: 20px;
  align-items: stretch;
  background: linear-gradient(145deg, rgba(15, 23, 42, .82), rgba(6, 10, 20, .86));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 22px 70px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.04);
  padding: 22px;
}
.preview-controls {
  display: grid;
  gap: 14px;
  align-content: start;
}
.preview-controls h2 { margin: 0; font-size: clamp(28px, 4vw, 44px); line-height: 1; }
.quick-text-tools {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}
.quick-text-tools button {
  min-height: 36px;
  border: 1px solid rgba(70,244,255,.18);
  border-radius: var(--radius);
  background: rgba(70,244,255,.055);
  color: var(--ink);
  font-weight: 950;
  cursor: pointer;
}
.quick-text-tools button:hover {
  border-color: rgba(70,244,255,.5);
  box-shadow: 0 0 20px rgba(70,244,255,.12);
}
.preview-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.swatch-row button {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(156,185,255,.28);
  border-radius: 999px;
  background: var(--swatch);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.22), 0 8px 18px rgba(0,0,0,.2);
  cursor: pointer;
}
.swatch-row button:hover {
  transform: translateY(-1px);
  border-color: rgba(70,244,255,.7);
}
.control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
input[type="range"] {
  accent-color: var(--cyan);
  padding: 0;
  min-height: 28px;
}
.product-preview-wrap {
  min-height: 520px;
  width: 100%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(70,244,255,.13);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 42%, rgba(70,244,255,.14), transparent 13rem),
    linear-gradient(145deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  overflow: hidden;
}
.product-preview {
  position: relative;
  width: min(96%, 500px);
  aspect-ratio: 1;
  background: rgba(5,8,17,.82);
  color: var(--print-color);
  display: block;
  filter: drop-shadow(0 38px 58px rgba(0,0,0,.42));
  transition: width .28s ease, background .2s ease;
  min-height: 0;
  overflow: hidden;
  border-radius: 12px;
}
.print-safe-frame {
  position: absolute;
  z-index: 3;
  left: 39%;
  top: 39%;
  width: 22%;
  height: 25%;
  min-width: 120px;
  border: 1px dashed rgba(70,244,255,.48);
  border-radius: 6px;
  pointer-events: none;
  transform: translate(calc(var(--art-x, 0) * .45%), calc(var(--art-y, 0) * .45%));
  box-shadow: 0 0 20px rgba(70,244,255,.1), inset 0 0 18px rgba(70,244,255,.05);
}
.print-safe-frame span {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 6px);
  translate: -50% 0;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(3,6,12,.78);
  color: var(--cyan);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.product-preview.hoodie .print-safe-frame {
  left: 40%;
  top: 40%;
  width: 22%;
  height: 22%;
}
.product-preview.hat .print-safe-frame {
  left: 42%;
  top: 23%;
  width: 20%;
  height: 13%;
  min-width: 90px;
  transform: translate(calc(var(--art-x, 0) * .32%), calc(var(--art-y, 0) * .32%));
}
.mockup-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  user-select: none;
  pointer-events: none;
}
.product-preview.hoodie {
  width: min(96%, 500px);
  border-radius: 12px;
}
.product-preview.hat {
  width: min(96%, 500px);
  aspect-ratio: 1;
  border-radius: 12px;
  transform: none;
}
.preview-hood,
.preview-bill { display: none; }
.preview-print-zone {
  position: absolute;
  z-index: 2;
  left: 39%;
  top: 39%;
  width: 22%;
  height: 25%;
  min-width: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  cursor: grab;
  touch-action: none;
  transform: translate(calc(var(--art-x, 0) * .45%), calc(var(--art-y, 0) * .45%));
  mix-blend-mode: multiply;
}
.preview-print-zone.is-dragging { cursor: grabbing; }
.product-preview.hoodie .preview-print-zone {
  left: 40%;
  top: 40%;
  width: 22%;
  height: 22%;
  transform: translate(calc(var(--art-x, 0) * .45%), calc(var(--art-y, 0) * .45%));
}
.product-preview.hat .preview-print-zone {
  left: 42%;
  top: 23%;
  width: 20%;
  height: 13%;
  min-width: 90px;
  transform: translate(calc(var(--art-x, 0) * .32%), calc(var(--art-y, 0) * .32%));
  mix-blend-mode: multiply;
}
.preview-print-zone img {
  position: absolute;
  inset: 5%;
  width: 90%;
  height: 90%;
  object-fit: contain;
  opacity: 0;
  transform: scale(calc((var(--art-scale, 100) / 100) * .9));
  transform-origin: center;
  transition: opacity .18s ease;
}
.preview-print-zone.has-art img { opacity: 1; }
.preview-print-zone.has-art span { opacity: .9; transform: translateY(72%); font-size: 13px; }
.preview-print-zone span {
  display: block;
  max-width: 100%;
  color: var(--print-color);
  font-size: calc(var(--text-size, 46) * 1px);
  line-height: .92;
  font-weight: 950;
  text-shadow: 0 0 14px color-mix(in srgb, var(--print-color) 55%, transparent);
  overflow-wrap: anywhere;
  transform: translate(calc(var(--text-x, 0) * 1%), calc(var(--text-y, 0) * 1%));
  transition: opacity .18s ease, transform .18s ease, font-size .18s ease;
}
.preview-print-zone span.is-empty { display: none; }
.product-preview.hat .preview-print-zone span { font-size: clamp(18px, 3vw, 34px); }

.generation-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(2, 5, 12, .74);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s ease;
}
.generation-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}
.generation-modal {
  width: min(520px, 100%);
  border: 1px solid rgba(70,244,255,.28);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(9,16,34,.97), rgba(6,10,20,.97)),
    radial-gradient(circle at 18% 0%, rgba(70,244,255,.22), transparent 15rem);
  box-shadow: 0 28px 90px rgba(0,0,0,.52), inset 0 1px 0 rgba(255,255,255,.08);
}
.generation-modal h2 { margin: 6px 0 12px; font-size: clamp(28px, 5vw, 42px); }
.generation-stage { color: var(--cyan); font-weight: 900; margin-bottom: 14px; }
.generation-bar {
  height: 14px;
  overflow: hidden;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
}
.generation-bar span {
  display: block;
  width: 6%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--gold));
  box-shadow: 0 0 24px rgba(70,244,255,.38);
  transition: width .82s ease;
}
.generation-modal small { display: block; margin-top: 14px; color: var(--muted); }
.font-tech { font-family: Inter, ui-sans-serif, system-ui, sans-serif; letter-spacing: .02em; }
.font-luxury { font-family: Georgia, "Times New Roman", serif; font-weight: 700; }
.font-street { font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif; letter-spacing: .04em; }
.font-clean { font-family: Arial, Helvetica, sans-serif; font-weight: 800; }
.font-condensed { font-family: "Arial Narrow", "Roboto Condensed", Impact, sans-serif; font-weight: 900; letter-spacing: .03em; }
.font-mono { font-family: "Courier New", ui-monospace, monospace; font-weight: 900; letter-spacing: .04em; }
.font-varsity { font-family: Georgia, "Times New Roman", serif; font-weight: 900; letter-spacing: .05em; text-transform: uppercase; }
.font-script { font-family: "Brush Script MT", "Segoe Script", cursive; font-weight: 700; }
.font-impact { font-family: Impact, Haettenschweiler, "Arial Black", sans-serif; font-weight: 900; text-transform: uppercase; }
.font-outline {
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  color: transparent;
  -webkit-text-stroke: 1.6px var(--print-color);
  text-shadow: none;
}
.font-neon { font-family: Arial, Helvetica, sans-serif; font-weight: 950; text-shadow: 0 0 8px var(--print-color), 0 0 22px var(--print-color); }
.font-chrome { font-family: Arial Black, Impact, sans-serif; font-weight: 950; filter: drop-shadow(0 2px 0 rgba(255,255,255,.35)); }
.font-carbon { font-family: Arial Black, Impact, sans-serif; font-weight: 950; letter-spacing: .03em; opacity: .9; }
.font-military { font-family: Impact, Arial Black, sans-serif; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.font-racing { font-family: Arial Narrow, Impact, sans-serif; font-style: italic; font-weight: 950; letter-spacing: .08em; }
.font-college { font-family: Georgia, serif; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
.font-retro { font-family: Trebuchet MS, Arial, sans-serif; font-weight: 900; letter-spacing: .05em; }
.font-minimal { font-family: Helvetica, Arial, sans-serif; font-weight: 500; letter-spacing: .02em; }
.font-editorial { font-family: Didot, Bodoni 72, Georgia, serif; font-weight: 700; }
.font-gothic { font-family: Georgia, Times New Roman, serif; font-weight: 950; letter-spacing: .03em; }
.font-rounded { font-family: Trebuchet MS, Arial, sans-serif; font-weight: 950; border-radius: 999px; }
.font-wide { font-family: Arial Black, Arial, sans-serif; font-weight: 950; letter-spacing: .16em; }
.font-narrow { font-family: Arial Narrow, Impact, sans-serif; font-weight: 900; letter-spacing: .02em; }
.font-heavy { font-family: Arial Black, Impact, sans-serif; font-weight: 950; }
.font-light { font-family: Helvetica Neue, Arial, sans-serif; font-weight: 300; letter-spacing: .08em; }
.font-italic { font-family: Georgia, serif; font-style: italic; font-weight: 800; }
.font-smallcaps { font-family: Georgia, serif; font-variant: small-caps; letter-spacing: .08em; }
.font-spaced { font-family: Arial, sans-serif; font-weight: 900; letter-spacing: .2em; }
.font-shadow { font-family: Arial Black, Impact, sans-serif; font-weight: 950; text-shadow: 4px 4px 0 rgba(0,0,0,.42); }
.font-glow { font-family: Arial Black, Impact, sans-serif; font-weight: 950; text-shadow: 0 0 16px var(--print-color); }
.font-double { font-family: Arial Black, Impact, sans-serif; color: transparent; -webkit-text-stroke: 2px var(--print-color); text-shadow: 3px 3px 0 rgba(255,255,255,.18); }
.font-slab { font-family: Rockwell, Georgia, serif; font-weight: 950; }
.font-typewriter { font-family: Courier New, ui-monospace, monospace; font-weight: 800; }
.font-digital { font-family: Lucida Console, Courier New, monospace; font-weight: 900; letter-spacing: .08em; }
.font-pixel { font-family: Courier New, monospace; font-weight: 950; letter-spacing: .02em; text-transform: uppercase; }
.font-stencil { font-family: Impact, Arial Black, sans-serif; font-weight: 900; letter-spacing: .1em; opacity: .86; }
.font-brush { font-family: Brush Script MT, Segoe Script, cursive; font-weight: 800; }
.font-marker { font-family: Comic Sans MS, Trebuchet MS, cursive; font-weight: 900; }
.font-signature { font-family: Segoe Script, Brush Script MT, cursive; font-weight: 700; }
.font-luxe-script { font-family: Snell Roundhand, Segoe Script, cursive; font-weight: 700; }
.font-sport { font-family: Arial Black, Impact, sans-serif; font-style: italic; text-transform: uppercase; }
.font-comic { font-family: Comic Sans MS, Trebuchet MS, cursive; font-weight: 900; }
.font-western { font-family: Rockwell, Georgia, serif; font-weight: 950; letter-spacing: .06em; }
.font-cyber { font-family: Lucida Console, Courier New, monospace; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
.font-capsule { font-family: Trebuchet MS, Arial, sans-serif; font-weight: 950; letter-spacing: .06em; }
.font-arcade { font-family: Courier New, monospace; font-weight: 950; text-transform: uppercase; text-shadow: 3px 0 0 rgba(0,0,0,.24); }
.font-metal { font-family: Impact, Arial Black, sans-serif; font-weight: 950; letter-spacing: .05em; transform: skewX(-6deg) translate(calc(var(--text-x, 0) * 1%), calc(var(--text-y, 0) * 1%)); }
.font-fashion { font-family: Didot, Georgia, serif; font-weight: 500; letter-spacing: .18em; text-transform: uppercase; }
.font-luxury-caps { font-family: Georgia, serif; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; }
.font-plain-bold { font-family: Arial, Helvetica, sans-serif; font-weight: 950; }
.font-soft { font-family: Trebuchet MS, Arial, sans-serif; font-weight: 800; }
.font-future { font-family: Arial Black, Arial, sans-serif; font-weight: 950; letter-spacing: .12em; }
.font-terminal { font-family: Lucida Console, Courier New, monospace; font-weight: 800; }
.font-banner { font-family: Impact, Arial Black, sans-serif; font-weight: 950; letter-spacing: .1em; text-decoration: underline; text-underline-offset: .16em; }
.font-emboss { font-family: Arial Black, Impact, sans-serif; font-weight: 950; text-shadow: 1px 1px 0 rgba(255,255,255,.45), -1px -1px 0 rgba(0,0,0,.35); }
.font-inset { font-family: Arial Black, Impact, sans-serif; font-weight: 950; text-shadow: inset 0 1px 0 rgba(0,0,0,.4), 0 -1px 0 rgba(0,0,0,.55); }
.font-clean-outline { font-family: Arial, Helvetica, sans-serif; font-weight: 950; color: transparent; -webkit-text-stroke: 1.2px var(--print-color); text-shadow: none; }
.font-jersey { font-family: Impact, Arial Black, sans-serif; font-weight: 950; letter-spacing: .1em; text-transform: uppercase; }
.font-premium { font-family: Georgia, Times New Roman, serif; font-weight: 700; letter-spacing: .12em; }
.font-loud { font-family: Impact, Arial Black, sans-serif; font-weight: 950; letter-spacing: .04em; text-transform: uppercase; text-shadow: 3px 3px 0 rgba(0,0,0,.35); }
.font-sleek { font-family: Helvetica Neue, Arial, sans-serif; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.design-path-panel {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(15, 23, 42, .84), rgba(6, 10, 20, .86));
  box-shadow: 0 22px 70px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.04);
}
.path-header h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
}
.path-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 6px;
  border: 1px solid rgba(70,244,255,.14);
  border-radius: var(--radius);
  background: rgba(255,255,255,.035);
}
.path-switch button {
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: calc(var(--radius) - 3px);
  background: transparent;
  color: var(--muted);
  font-weight: 950;
  cursor: pointer;
}
.path-switch button.is-active {
  color: #041018;
  background: linear-gradient(135deg, var(--cyan), var(--gold));
  box-shadow: 0 12px 32px rgba(70,244,255,.18);
}
.path-panel { display: none; }
.path-panel.is-active { display: block; }
.path-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}
.generator { display: grid; gap: 14px; position: relative; overflow: hidden; }
.generator::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--violet), transparent);
  animation: slideLine 3s linear infinite;
}
.generator h2 { margin: 0; font-size: clamp(28px, 4vw, 48px); }
.upload-generator {
  border-style: dashed;
  border-color: rgba(255,211,106,.24);
}
.upload-generator input[type="file"] {
  padding: 13px;
  cursor: pointer;
}
.upload-generator small {
  color: var(--muted);
  line-height: 1.5;
}
.upload-checklist {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.upload-checklist span {
  padding: 10px;
  border: 1px solid rgba(255,211,106,.18);
  border-radius: var(--radius);
  background: rgba(255,211,106,.06);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.35;
}
.upload-status {
  display: block;
  color: var(--gold);
  font-weight: 850;
  line-height: 1.45;
}
.prompt-coach {
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(70,244,255,.16);
  border-radius: var(--radius);
  background: rgba(70,244,255,.055);
}
.prompt-coach strong {
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.prompt-coach span { color: var(--muted); line-height: 1.4; }
.prompt-coach.is-strong {
  border-color: rgba(88,255,189,.28);
  background: rgba(88,255,189,.065);
}
.prompt-coach.is-strong strong { color: var(--green); }
.prompt-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.prompt-tools small {
  color: var(--muted);
  font-weight: 900;
  margin-right: 4px;
}
.prompt-tools button {
  min-height: 34px;
  border: 1px solid rgba(70,244,255,.2);
  border-radius: 999px;
  background: rgba(70,244,255,.06);
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
  padding: 0 12px;
}
.prompt-tools button:hover { border-color: rgba(70,244,255,.55); }
.mode-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,211,106,.24);
  border-radius: var(--radius);
  background: rgba(255,211,106,.07);
  color: var(--text);
  font-weight: 900;
}
.mode-toggle input {
  width: auto;
  min-height: auto;
  accent-color: var(--gold);
}
.segmented label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(255,255,255,.03);
}
.segmented input { width: auto; accent-color: var(--cyan); }
.design-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(196px, 1fr));
  gap: 16px;
}
.design-library-title { margin-top: 4px; }
.design-card {
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.design-card:hover {
  transform: translateY(-4px);
  border-color: rgba(70,244,255,.5);
  box-shadow: 0 26px 80px rgba(0,0,0,.42), 0 0 28px rgba(70,244,255,.14);
}
.design-card img { aspect-ratio: 1; object-fit: contain; background: radial-gradient(circle, rgba(70,244,255,.12), rgba(3,6,12,.9)); border-radius: var(--radius); }
.design-card p { min-height: 150px; font-size: 20px; font-weight: 850; }
.design-card small { display: block; margin-top: 10px; color: var(--muted); }
.select-design { width: 100%; margin-top: 12px; min-height: 36px; }
.empty-design {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}
.empty-preview {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: radial-gradient(circle, rgba(70,244,255,.16), rgba(3,6,12,.92));
  color: var(--gold);
  font-size: 52px;
  font-weight: 950;
}
.image-missing::before {
  content: "Artwork file could not be loaded";
  display: block;
  padding: 14px;
  margin-bottom: 10px;
  color: var(--ember);
  border: 1px solid rgba(255,95,56,.35);
  border-radius: var(--radius);
  background: rgba(255,95,56,.08);
}
table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}
th, td { text-align: left; border-bottom: 1px solid var(--line); padding: 13px; color: #dce6f8; }
:root[data-theme="light"] th,
:root[data-theme="light"] td { color: #25364f; }
th { background: rgba(70,244,255,.07); color: var(--cyan); text-transform: uppercase; font-size: 12px; letter-spacing: .08em; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes drift { to { transform: translate3d(4rem, -2rem, 0) scale(1.12); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floatProduct {
  0%, 100% { transform: rotateY(-8deg) rotateX(4deg) translateY(0); }
  50% { transform: rotateY(-4deg) rotateX(6deg) translateY(-16px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 24px rgba(70,244,255,.24), inset 0 1px 0 rgba(255,255,255,.46); }
  50% { box-shadow: 0 0 44px rgba(70,244,255,.44), 0 0 70px rgba(169,108,255,.22), inset 0 1px 0 rgba(255,255,255,.46); }
}
@keyframes scan { 0%, 42% { transform: translateX(-100%); } 70%, 100% { transform: translateX(100%); } }
@keyframes slideLine { to { transform: translateX(100%); } }

@media (max-width: 900px) {
  .hero, .workspace, .metrics, .catalog-strip, .feature-band, .preview-lab, .plan-grid, .seo-hero, .seo-feature-grid, .faq-list, .home-proof, .launch-strip, .quality-gate, .quality-grid, .style-grid, .queue-grid, .health-grid, .checkout-shell, .auth-proof { grid-template-columns: 1fr; }
  .admin-hero, .section-title { align-items: flex-start; flex-direction: column; }
  .admin-kpis, .admin-grid.two, .admin-grid.signup-grid { grid-template-columns: 1fr; }
  .range-filter { width: 100%; }
  .pipeline { justify-content: flex-start; }
  .seo-hero { min-height: 0; padding-top: 42px; }
  .seo-hero picture { transform: none; }
  .hero h1 { font-size: clamp(56px, 16vw, 92px); }
  .product-stage { min-height: 345px; }
  .home-mockup-card { width: min(90vw, 350px); }
  .hero-telemetry { right: 4%; bottom: 5%; width: min(190px, 54%); }
  .home-print-zone {
    left: 48.8%;
    top: 48.8%;
    width: 17.6%;
  }
  .home-fw-mark { font-size: clamp(22px, 7vw, 32px); }
  .home-print-copy { font-size: 6px; }
  .sidebar { position: static; }
  .site-header, .site-footer { align-items: flex-start; flex-direction: column; }
  .product-preview-wrap { min-height: 310px; }
  .control-grid, .path-switch, .quick-text-tools, .preview-actions, .upload-checklist, .checkout-proof-grid { grid-template-columns: 1fr; }
  .studio-guidance { align-items: flex-start; flex-direction: column; }
  .checkout-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .empty-design { grid-template-columns: 1fr; }
  .checkout-shell { width: min(100% - 24px, 1220px); margin-top: 18px; }
  table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    white-space: nowrap;
  }
  .site-header nav { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
