/* =========================================================
   VoidStar — Design Tokens
   Primary signature motif: the on-device status LED — true of
   all 4 SKUs (Shutter/Home x GSM/Cloud), unlike the shutter rib.
   The corrugated rib (.rib-band/.rib-bg) is a secondary texture,
   used sparingly, not the default site-wide divider.
   ========================================================= */
:root {
  /* Color — light-dominant, purple/blue as accent not canvas */
  --void-ink: #faf8f4;
  --panel: #ffffff;
  --panel-raised: #f3eefb;
  --rib-line: #d9d0ea;
  --rib-line-soft: #e6dff5;

  --purple-500: #7c3aed;
  --purple-600: #6b21d9;
  --purple-700: #5b18c4;
  --violet-900: #2c1263;

  --cloud-blue: #0b7a9c;
  --cloud-blue-dim: #bfe6f2;
  --tint-lilac: #f3eefb;

  --alarm: #c23c1f;
  --alarm-dim: #f6d9cf;
  --led-green: #17a367;
  --led-green-dim: #cdf1e0;

  --text-primary: #1a1720;
  --text-muted: #5b5568;
  --text-faint: #6c6680;

  /* Type */
  --font-display: "Big Shoulders Display", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --fs-hero: clamp(2.75rem, 7vw, 5.75rem);
  --fs-h1: clamp(2.1rem, 4.4vw, 3.4rem);
  --fs-h2: clamp(1.65rem, 3.2vw, 2.35rem);
  --fs-h3: 1.3rem;
  --fs-body-lg: 1.125rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-mono: 0.78rem;

  /* Space */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-card: 0 16px 36px -24px rgba(26, 23, 32, 0.22);
  --content-max: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  /* Zeroing animation-duration above collapses panel-spotlight to its
     final (dim) keyframe on all panels at once — force full-contrast,
     static presentation instead of a permanently dimmed one. */
  .scenario-panel {
    opacity: 1 !important;
    transform: none !important;
    box-shadow: none !important;
    border-color: var(--rib-line) !important;
  }
}

body {
  margin: 0;
  background: var(--void-ink);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -60px;
  z-index: 100;
  background: var(--purple-600);
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  transition: top 0.15s ease;
}

.skip-link:focus {
  top: var(--sp-4);
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 var(--sp-4);
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p {
  margin: 0 0 var(--sp-4);
  color: var(--text-muted);
  max-width: 62ch;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cloud-blue);
  display: inline-block;
  margin-bottom: var(--sp-3);
}

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

@media (min-width: 768px) {
  .container { padding: 0 var(--sp-8); }
}

section {
  padding: var(--sp-16) 0;
  position: relative;
}

/* ---------- Corrugated shutter rib texture ---------- */
.rib-band {
  height: 14px;
  width: 100%;
  background: repeating-linear-gradient(
    180deg,
    var(--rib-line) 0px,
    var(--rib-line) 2px,
    transparent 2px,
    transparent 7px
  );
  opacity: 0.9;
}

.rib-bg {
  background-image: repeating-linear-gradient(
    180deg,
    rgba(26, 23, 32, 0.035) 0px,
    rgba(26, 23, 32, 0.035) 1px,
    transparent 1px,
    transparent 9px
  );
}

/* ---------- Status strip (mirrors on-device LED indicator) ---------- */
.status-strip {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: var(--sp-3) var(--sp-4);
  background: var(--panel);
  border: 1px solid var(--rib-line);
  border-radius: var(--radius-md);
}

.status-strip .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--led-green);
  box-shadow: 0 0 0 3px var(--led-green-dim);
  margin-right: var(--sp-2);
}

.status-strip .dot.blue {
  background: var(--cloud-blue);
  box-shadow: 0 0 0 3px var(--cloud-blue-dim);
}

.status-strip .dot.amber {
  background: var(--alarm);
  box-shadow: 0 0 0 3px var(--alarm-dim);
}

@media (prefers-reduced-motion: no-preference) {
  .status-strip .dot {
    animation: pulse-led 2.4s ease-in-out infinite;
  }
}

@keyframes pulse-led {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--cloud-blue);
  outline-offset: 3px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple-500), var(--purple-600));
  color: #fff;
  box-shadow: 0 10px 22px -12px rgba(124, 58, 237, 0.45);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px -12px rgba(124, 58, 237, 0.55);
}

.btn-ghost {
  background: transparent;
  border-color: var(--rib-line);
  color: var(--text-primary);
}

.btn-ghost:hover {
  border-color: var(--purple-500);
  color: var(--purple-500);
}

.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 244, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--rib-line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-decoration: none;
  color: var(--text-primary);
}

.brand .mark {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--purple-500), var(--cloud-blue));
  flex-shrink: 0;
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--sp-8);
  list-style: none;
  margin: 0;
  padding: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.15s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text-primary);
}

.nav-cta {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}

.nav-login {
  display: none;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-login:hover {
  color: var(--cloud-blue);
  border-color: var(--cloud-blue-dim);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--rib-line);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
}

.mobile-panel {
  display: none;
  flex-direction: column;
  gap: var(--sp-1);
  padding: var(--sp-4) 0 var(--sp-6);
  border-top: 1px solid var(--rib-line-soft);
}

.mobile-panel.open {
  display: flex;
}

.mobile-panel a {
  text-decoration: none;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.85rem;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--rib-line-soft);
}

.mobile-panel a[aria-current="page"] { color: var(--text-primary); }

.mobile-panel .btn { margin-top: var(--sp-3); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-login { display: inline-flex; align-items: center; }
  .nav-toggle { display: none; }
  .mobile-panel { display: none !important; }
}

/* ---------- Hero ---------- */
.hero {
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-16);
  overflow: hidden;
}

.hero-inner {
  max-width: 46rem;
}

.hero h1 {
  font-size: var(--fs-hero);
  margin-bottom: var(--sp-6);
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--purple-500), var(--cloud-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lede {
  font-size: var(--fs-body-lg);
  max-width: 42ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin: var(--sp-8) 0;
}

/* ---------- Hero product matrix (mount x alert picker) ---------- */
.matrix {
  margin-top: var(--sp-12);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rib-line);
  background: var(--panel);
  box-shadow: var(--shadow-card);
  padding: var(--sp-8);
}

.matrix-prompt {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin: 0 0 var(--sp-6);
}

.matrix-axes {
  display: grid;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
}

@media (min-width: 640px) {
  .matrix-axes { grid-template-columns: 1fr 1fr; }
}

.matrix-axis-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--sp-2);
}

.matrix-buttons {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.matrix-btn {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--rib-line);
  background: var(--panel-raised);
  color: var(--text-muted);
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.matrix-btn:hover {
  border-color: var(--purple-500);
  color: var(--text-primary);
}

.matrix-btn[aria-pressed="true"] {
  background: var(--purple-500);
  border-color: var(--purple-500);
  color: #fff;
}

.matrix-btn:focus-visible {
  outline: 2px solid var(--cloud-blue);
  outline-offset: 2px;
}

.matrix-result { position: relative; }

.matrix-card {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--rib-line-soft);
}

.matrix-card[hidden] { display: none; }

.matrix-card-icon { margin-bottom: var(--sp-2); }

.matrix-card ul {
  list-style: none;
  padding: 0;
  margin: var(--sp-2) 0 var(--sp-4);
  color: var(--text-muted);
  font-size: var(--fs-small);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.matrix-card ul li::before {
  content: "— ";
  color: var(--purple-500);
}

.matrix-card-link {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--purple-500);
  text-decoration: none;
  align-self: flex-start;
}

.matrix-card-link:hover { text-decoration: underline; }

/* ---------- Scenario: break-in → alert sequence ---------- */
.scenario-section { padding-top: var(--sp-8); }

.hammer-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--rib-line);
  background: var(--panel-raised);
  color: var(--purple-500);
  cursor: pointer;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.hammer-btn:hover:not(:disabled) {
  border-color: var(--purple-500);
}

.hammer-btn:hover:not(:disabled) svg {
  transform: rotate(-18deg);
}

.hammer-btn svg { transition: transform 0.15s ease; }

.hammer-btn:disabled {
  color: var(--text-faint);
  cursor: default;
}

.hammer-btn:focus-visible {
  outline: 2px solid var(--cloud-blue);
  outline-offset: 2px;
}

/* ---------- Manual (hammer-triggered) scenario playback ---------- */
.scenario.manual .scenario-panel {
  animation: none;
  opacity: 0.55;
  transform: scale(0.98);
  border-color: var(--rib-line);
  box-shadow: none;
}

.scenario.manual .scenario-panel.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: var(--purple-500);
  box-shadow: 0 0 0 1px var(--purple-500), var(--shadow-card);
}

.scenario.manual .scenario-panel.is-hit {
  animation: hit-shake 0.4s ease-in-out;
}

@keyframes hit-shake {
  0%, 100% { transform: translateX(0) scale(1); }
  20% { transform: translateX(-4px) scale(1.02); }
  40% { transform: translateX(4px) scale(1.02); }
  60% { transform: translateX(-2px) scale(1); }
  80% { transform: translateX(2px) scale(1); }
}

.scenario {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: var(--sp-4);
}

@media (min-width: 860px) {
  .scenario {
    flex-direction: row;
    align-items: center;
  }
}

.scenario-panel {
  flex: 1;
  position: relative;
  background: var(--panel);
  border: 1px solid var(--rib-line);
  border-radius: var(--radius-lg);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  animation: panel-spotlight 7.2s ease-in-out infinite backwards;
}

.scenario-panel .idx {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  color: var(--purple-500);
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-3);
}

.scenario-panel .scenario-icon {
  display: flex;
  justify-content: center;
  margin-bottom: var(--sp-4);
}

.scenario-panel h3 { margin-bottom: var(--sp-2); }
.scenario-panel p { margin: 0 auto; font-size: var(--fs-small); }

.scenario-arrow {
  align-self: center;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: 1.1rem;
  transform: rotate(90deg);
}

@media (min-width: 860px) {
  .scenario-arrow { transform: none; }
}

@keyframes panel-spotlight {
  0%, 3% {
    opacity: 0.55;
    transform: scale(0.98);
    border-color: var(--rib-line);
    box-shadow: none;
  }
  8%, 27% {
    opacity: 1;
    transform: scale(1);
    border-color: var(--purple-500);
    box-shadow: 0 0 0 1px var(--purple-500), var(--shadow-card);
  }
  33%, 100% {
    opacity: 0.55;
    transform: scale(0.98);
    border-color: var(--rib-line);
    box-shadow: none;
  }
}

.pulse-dot {
  animation: pulse-led 2.4s ease-in-out infinite;
}

.siren-ring {
  transform-origin: 70px 24px;
  animation: siren-ping 1.8s ease-out infinite;
}

.siren-ring-2 { animation-delay: 0.6s; }

@keyframes siren-ping {
  0% { r: 4; opacity: 0.9; }
  100% { r: 20; opacity: 0; }
}

.ring-wave {
  transform-origin: 48px 32px;
  animation: ring-ping 1.8s ease-out infinite;
}

.ring-wave-2 { animation-delay: 0.6s; }

@keyframes ring-ping {
  0% { r: 10; opacity: 0.9; }
  100% { r: 26; opacity: 0; }
}

.led-ping {
  animation: led-ping-anim 1.8s ease-out infinite;
}

@keyframes led-ping-anim {
  0% { r: 6; opacity: 0.9; }
  100% { r: 14; opacity: 0; }
}

.force-mark {
  transform-box: fill-box;
  transform-origin: center;
  animation: force-jolt 2.2s ease-in-out infinite;
}

@keyframes force-jolt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(2px); }
}

.owner-eyes {
  animation: wake-up 2.4s ease-in-out infinite;
}

@keyframes wake-up {
  0%, 55% { stroke: var(--text-faint); }
  80%, 100% { stroke: var(--led-green); }
}

/* ---------- Grid / Cards ---------- */
.grid-2 {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}

.grid-4 {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1000px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--panel);
  border: 1px solid var(--rib-line);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.card-icon { margin-bottom: var(--sp-1); }

.anatomy {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  font-size: var(--fs-small);
  color: var(--text-muted);
}

.anatomy li {
  display: flex;
  gap: var(--sp-3);
  align-items: baseline;
}

.anatomy strong {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  color: var(--purple-500);
  flex-shrink: 0;
}

/* ---------- Timeline ---------- */
.timeline {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
  position: relative;
}

@media (min-width: 800px) {
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }
  .timeline::before {
    content: "";
    position: absolute;
    top: 0.55rem;
    left: 8%;
    right: 8%;
    height: 2px;
    background: var(--rib-line);
  }
}

.timeline-step {
  position: relative;
  padding-top: var(--sp-6);
}

.timeline-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--purple-500);
  box-shadow: 0 0 0 3px var(--tint-lilac);
}

.timeline-t {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  color: var(--purple-500);
  margin-bottom: var(--sp-2);
}

.timeline-step p { margin: 0; font-size: var(--fs-small); }

.card:hover {
  border-color: var(--purple-500);
  transform: translateY(-3px);
}

.card .tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--rib-line);
  color: var(--text-muted);
}

.tag.cloud { color: var(--cloud-blue); border-color: var(--cloud-blue-dim); }
.tag.standalone { color: var(--alarm); border-color: var(--alarm-dim); }

.card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: var(--fs-small);
}

.card ul li { margin-bottom: var(--sp-1); }

.card .spec {
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  color: var(--text-faint);
  border-top: 1px solid var(--rib-line);
  padding-top: var(--sp-3);
  margin-top: auto;
}

/* ---------- Comparison table ---------- */
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--rib-line);
  border-radius: var(--radius-lg);
  background: var(--panel);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-size: var(--fs-small);
}

th, td {
  text-align: left;
  padding: var(--sp-4) var(--sp-6);
  border-bottom: 1px solid var(--rib-line);
  white-space: nowrap;
}

thead th {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--panel-raised);
}

tbody td:first-child {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--text-primary);
}

tbody tr:last-child td { border-bottom: none; }

/* ---------- Steps / flow ---------- */
.flow {
  display: grid;
  gap: var(--sp-6);
  grid-template-columns: 1fr;
}

@media (min-width: 800px) {
  .flow.two-path { grid-template-columns: 1fr 1fr; }
}

.flow-path {
  background: var(--panel);
  border: 1px solid var(--rib-line);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
}

.flow-path h3 { margin-bottom: var(--sp-6); }

.flow-step {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-4) 0;
  border-top: 1px solid var(--rib-line-soft);
}

.flow-step:first-of-type { border-top: none; padding-top: 0; }

.flow-step .idx {
  font-family: var(--font-mono);
  color: var(--purple-500);
  font-size: var(--fs-small);
  flex-shrink: 0;
  width: 2rem;
}

.flow-step p { margin: 0; font-size: var(--fs-small); }
.flow-step strong { color: var(--text-primary); display: block; margin-bottom: 2px; }

/* ---------- Pricing ---------- */
.price-card {
  background: var(--panel);
  border: 1px solid var(--rib-line);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.price-card.featured {
  border-color: var(--purple-500);
  box-shadow: 0 0 0 1px var(--purple-500), var(--shadow-card);
}

.price-card .amount {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--text-primary);
}

.price-card .amount span {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: none;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--text-muted);
  font-size: var(--fs-small);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.price-card ul li::before {
  content: "— ";
  color: var(--purple-500);
}

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--rib-line);
  padding: var(--sp-6) 0;
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--purple-500);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.faq-item[open] summary::after { content: "\2212"; }

.faq-item p { margin-top: var(--sp-3); }

/* ---------- Forms ---------- */
.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.form-field label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--panel-raised);
  border: 1px solid var(--rib-line);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  padding: 0.8rem 1rem;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--purple-500);
  outline-offset: 1px;
}

.form-field textarea { resize: vertical; min-height: 120px; }

.form-notice {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--cloud-blue);
  margin: 0 0 var(--sp-4);
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--rib-line-soft);
  padding: var(--sp-16) 0 var(--sp-8);
}

.footer-grid {
  display: grid;
  gap: var(--sp-8);
  grid-template-columns: 1fr;
  margin-bottom: var(--sp-12);
}

@media (min-width: 700px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}

.footer-grid h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--sp-4);
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.footer-grid a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: var(--fs-small);
}

.footer-grid a:hover { color: var(--text-primary); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--rib-line-soft);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-faint);
}

/* ---------- Utilities ---------- */
.section-head {
  max-width: 40rem;
  margin-bottom: var(--sp-12);
}

.text-center { text-align: center; margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0; }
.callout {
  background: linear-gradient(135deg, rgba(124,58,237,0.10), rgba(15,143,184,0.08));
  border: 1px solid var(--rib-line);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
}

.placeholder-art {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--rib-line);
  background: var(--panel);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  text-align: center;
  padding: var(--sp-4);
}
