:root {
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Space Grotesk', var(--font-body);

  --surface-0: #07070b;
  --surface-1: rgba(18, 18, 28, 0.76);
  --surface-2: #101018;
  --surface-3: #171722;
  --surface-4: #222231;
  --surface-dark: #0b0b12;
  --surface-darker: #050508;

  --ink-1: #f8fafc;
  --ink-2: #a8b1c2;
  --ink-3: #778196;
  --ink-inverse: #050508;

  --line: rgba(255, 249, 244, 0.1);
  --line-strong: rgba(255, 249, 244, 0.18);
  --line-inverse: rgba(10, 10, 14, 0.2);

  --brand: #60a5fa;
  --brand-strong: #2563eb;
  --brand-soft: rgba(96, 165, 250, 0.12);
  --brand-glow: rgba(96, 165, 250, 0.22);
  --accent: #fb7185;
  --accent-soft: rgba(251, 113, 133, 0.14);
  --success: #2dd4bf;

  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.24);
  --shadow-card: 0 28px 68px rgba(0, 0, 0, 0.28);
  --shadow-hero: 0 44px 120px rgba(0, 0, 0, 0.38);

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 36px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--ink-1);
  background:
    radial-gradient(circle at 16% 10%, rgba(96, 165, 250, 0.18), transparent 30%),
    radial-gradient(circle at 82% 8%, rgba(251, 113, 133, 0.2), transparent 34%),
    linear-gradient(180deg, #07070b 0%, var(--surface-0) 48%, #0b0b12 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 249, 244, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 249, 244, 0.026) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 80%);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
  position: relative;
  z-index: 1;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 18px 0 0;
}

.header-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(13, 13, 20, 0.78);
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 12px 30px rgba(42, 25, 28, 0.04);
  transition:
    background 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease;
}

.site-header.is-scrolled .header-shell {
  background: rgba(13, 13, 20, 0.94);
  border-color: rgba(255, 249, 244, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.26);
  transform: translateY(4px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.12), rgba(251, 113, 133, 0.16));
  border: 1px solid rgba(255, 249, 244, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.brand-mark img {
  width: 34px;
  height: auto;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-copy span {
  font-size: 0.73rem;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-link,
.mobile-link,
.footer-column a,
.footer-top-link {
  position: relative;
  text-decoration: none;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 0.94rem;
  font-weight: 600;
  transition:
    color 0.24s ease,
    background 0.24s ease,
    transform 0.24s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #f8fafc;
  background: rgba(255, 249, 244, 0.08);
  transform: translateY(-1px);
}

.header-actions,
.hero-actions-row,
.cta-actions,
.mobile-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  white-space: nowrap;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease,
    background 0.24s ease,
    color 0.24s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #2563eb 0%, #8b1538 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 22px 40px rgba(139, 21, 56, 0.24);
}

.btn-secondary {
  color: #f8fafc;
  background: rgba(255, 249, 244, 0.06);
  border-color: rgba(255, 249, 244, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(96, 165, 250, 0.28);
  background: rgba(255, 249, 244, 0.1);
}

.btn-light {
  color: #f8fafc;
  background:
    linear-gradient(135deg, rgba(37, 99, 235, 0.96) 0%, rgba(139, 21, 56, 0.94) 58%, rgba(251, 113, 133, 0.9) 100%);
  border-color: rgba(255, 249, 244, 0.16);
  box-shadow:
    0 18px 42px rgba(37, 99, 235, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-light:hover,
.btn-light:focus-visible {
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.98) 0%, rgba(162, 31, 72, 0.96) 58%, rgba(251, 113, 133, 0.94) 100%);
  border-color: rgba(255, 249, 244, 0.24);
  box-shadow:
    0 22px 46px rgba(139, 21, 56, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-large {
  min-height: 56px;
  padding: 0 24px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 249, 244, 0.12);
  border-radius: 14px;
  background: rgba(255, 249, 244, 0.08);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #f8fafc;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle.is-open span:first-child {
  transform: rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  z-index: 45;
}

.hero-section {
  padding: 24px 0 18px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  width: 420px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 21, 56, 0.12), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(460px, 1.08fr);
  gap: 44px;
  align-items: start;
}

.hero-copy {
  position: relative;
  z-index: 1;
  padding-top: 0;
}

.eyebrow,
.section-chip,
.pricing-label,
.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.section-chip,
.pricing-label {
  color: #cfe7ff;
  background: rgba(255, 249, 244, 0.06);
  border: 1px solid rgba(255, 249, 244, 0.12);
}

.section-chip--dark {
  color: rgba(255, 249, 244, 0.76);
  background: rgba(255, 249, 244, 0.08);
  border: 1px solid rgba(255, 249, 244, 0.12);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  box-shadow: 0 0 0 6px rgba(139, 21, 56, 0.08);
  animation: pulse-dot 2.6s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.82);
    opacity: 0.6;
  }
}

.hero-title,
.section-heading h2,
.pricing-copy h2,
.pricing-faq-copy h2,
.cta-copy h2 {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.06em;
}

.hero-title {
  max-width: 13.5ch;
  font-size: clamp(3rem, 4.55vw, 4.3rem);
  line-height: 1.04;
}

.hero-title span {
  display: block;
  color: #f7b4c4;
}

.hero-text {
  max-width: 40rem;
  margin: 22px 0 0;
  color: var(--ink-2);
  font-size: clamp(1.04rem, 1.7vw, 1.2rem);
}

.hero-plan-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.hero-plan-card {
  display: grid;
  gap: 8px;
  min-height: 164px;
  padding: 18px;
  border-radius: 22px;
  color: #e5edf8;
  text-decoration: none;
  background:
    radial-gradient(circle at 88% 8%, rgba(96, 165, 250, 0.16), transparent 38%),
    rgba(255, 249, 244, 0.06);
  border: 1px solid rgba(255, 249, 244, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

.hero-plan-card:hover,
.hero-plan-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(147, 197, 253, 0.34);
  outline: none;
}

.hero-plan-card:focus-visible {
  box-shadow:
    0 0 0 3px rgba(147, 197, 253, 0.24),
    0 0 0 6px rgba(7, 7, 11, 0.78),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-plan-card--premium {
  background:
    radial-gradient(circle at 86% 8%, rgba(245, 158, 11, 0.2), transparent 38%),
    linear-gradient(180deg, rgba(22, 18, 12, 0.86), rgba(255, 249, 244, 0.055));
  border-color: rgba(245, 158, 11, 0.28);
}

.hero-plan-kicker {
  color: #f7b4c4;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-plan-card strong {
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 4vw, 2.9rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-plan-card strong span {
  margin-left: 4px;
  color: var(--ink-3);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
}

.hero-plan-card > span:last-of-type,
.hero-plan-card em {
  color: var(--ink-2);
  font-size: 0.88rem;
  font-style: normal;
}

.hero-actions-row {
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-tertiary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 4px;
  color: var(--ink-2);
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}

.hero-tertiary-link:hover,
.hero-tertiary-link:focus-visible {
  color: #f8fafc;
  outline: none;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.hero-proof,
.pricing-points,
.cta-meta {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof li,
.cta-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  color: #d9e5f5;
  background: rgba(255, 249, 244, 0.055);
  border: 1px solid rgba(255, 249, 244, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
}

.control-deck {
  position: relative;
  padding: 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 249, 244, 0.1);
  background:
    radial-gradient(circle at 78% 6%, rgba(251, 113, 133, 0.18), transparent 32%),
    radial-gradient(circle at 18% 92%, rgba(96, 165, 250, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(18, 18, 26, 0.94), rgba(8, 8, 13, 0.97));
  box-shadow: var(--shadow-hero);
  overflow: hidden;
}

.hero-scroll-cue {
  display: none;
  width: fit-content;
  margin-top: 18px;
  color: #cfe7ff;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
}

.hero-scroll-cue::after {
  content: '';
  display: block;
  width: 1px;
  height: 32px;
  margin: 10px auto 0;
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.9), rgba(251, 113, 133, 0));
}

.control-deck::before,
.control-deck::after {
  content: '';
  position: absolute;
  display: none;
  border-radius: 50%;
  pointer-events: none;
}

.control-deck::before {
  top: 0;
  right: 0;
  width: 220px;
  height: 220px;
  transform: translate(36%, -36%);
  background: radial-gradient(circle, rgba(139, 21, 56, 0.18), transparent 68%);
}

.control-deck::after {
  bottom: 0;
  left: 0;
  width: 220px;
  height: 220px;
  transform: translate(-36%, 36%);
  background: radial-gradient(circle, rgba(214, 106, 74, 0.18), transparent 68%);
}

.event-stage-anchor {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  padding: 10px;
  border: 1px solid rgba(255, 249, 244, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 28%, rgba(56, 189, 248, 0.12), transparent 34%),
    radial-gradient(circle at 74% 42%, rgba(245, 158, 11, 0.12), transparent 35%),
    linear-gradient(180deg, rgba(255, 249, 244, 0.075), rgba(255, 249, 244, 0.026));
  overflow: hidden;
}

.event-stage-anchor svg {
  display: block;
  width: 100%;
  height: clamp(238px, 22vw, 278px);
  min-height: 0;
}

.event-stage-anchor text {
  fill: #f8fafc;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
  dominant-baseline: middle;
  text-anchor: middle;
}

.flow-shell {
  fill: rgba(5, 8, 17, 0.94);
  stroke: rgba(255, 249, 244, 0.12);
  stroke-width: 1.2;
}

.flow-halo {
  fill: rgba(96, 165, 250, 0.065);
  stroke: rgba(167, 139, 250, 0.18);
  stroke-width: 1.2;
}

.flow-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.flow-line-main {
  stroke: url(#landingFlowLine);
  stroke-width: 7;
}

.flow-line-branch {
  stroke: rgba(226, 232, 240, 0.26);
  stroke-width: 2;
}

.flow-arrow-head {
  fill: #f59e0b;
}

.flow-card rect,
.flow-output rect {
  fill: url(#landingOutputFill);
  stroke: rgba(255, 249, 244, 0.12);
  stroke-width: 1.2;
}

.flow-card-input rect {
  fill: rgba(15, 37, 72, 0.84);
  stroke: rgba(96, 165, 250, 0.42);
}

.flow-core rect {
  fill: url(#landingCoreFill);
  stroke: rgba(196, 181, 253, 0.42);
  stroke-width: 1.3;
}

.flow-core-mark {
  fill: rgba(5, 8, 17, 0.42);
  stroke: rgba(255, 249, 244, 0.24);
  stroke-width: 1.1;
}

.flow-core-spark {
  fill: none;
  stroke: #f8fafc;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-kicker,
.flow-sub,
.flow-core-sub {
  font-family: var(--font-body);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.event-stage-anchor .flow-kicker {
  fill: #93c5fd;
  font-size: 10px;
  font-weight: 900;
}

.event-stage-anchor .flow-title {
  fill: #f8fafc;
  font-size: 22px;
  font-weight: 850;
}

.event-stage-anchor .flow-sub {
  fill: #bfdbfe;
  font-size: 12px;
  font-weight: 850;
}

.event-stage-anchor .flow-core-title {
  fill: #fff7ed;
  font-size: 26px;
  font-weight: 900;
}

.event-stage-anchor .flow-core-sub {
  fill: #e9d5ff;
  font-size: 12px;
  font-weight: 850;
}

.event-stage-anchor .flow-core-action {
  fill: #e9d5ff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
}

.flow-output rect {
  stroke: rgba(148, 163, 184, 0.18);
}

.flow-output-strong rect {
  fill: rgba(20, 83, 45, 0.42);
  stroke: rgba(45, 212, 191, 0.46);
}

.event-stage-anchor .flow-output-title {
  fill: #f8fafc;
  font-size: 17px;
  font-weight: 850;
}

.event-stage-anchor .stage-title {
  fill: #f8fafc;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
}

.event-stage-anchor .stage-sub {
  fill: #9aa8ba;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  dominant-baseline: middle;
  text-anchor: middle;
}

.stage-node,
.stage-core {
  stroke-width: 1.4;
}

.stage-floor {
  fill: rgba(7, 8, 15, 0.9);
  stroke: rgba(255, 249, 244, 0.1);
}

.stage-map {
  fill: url(#landingStageFill);
  stroke: rgba(255, 249, 244, 0.2);
  stroke-width: 1.5;
}

.stage-grid-line {
  fill: none;
  stroke: rgba(255, 249, 244, 0.1);
  stroke-width: 1;
}

.stage-connector {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.stage-connector-main {
  stroke: url(#landingOpsLine);
  stroke-width: 8;
}

.stage-connector-soft {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 2;
}

.stage-connector-dash {
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 2;
  stroke-dasharray: 7 10;
}

.stage-ring {
  fill: none;
  stroke: rgba(167, 139, 250, 0.28);
  stroke-width: 1.5;
  stroke-dasharray: 8 10;
}

.stage-node-blue {
  fill: rgba(96, 165, 250, 0.16);
  stroke: rgba(147, 197, 253, 0.44);
}

.stage-node-green {
  fill: rgba(34, 197, 94, 0.13);
  stroke: rgba(134, 239, 172, 0.36);
}

.stage-node-pink {
  fill: rgba(244, 114, 182, 0.13);
  stroke: rgba(249, 168, 212, 0.36);
}

.stage-node-gold {
  fill: rgba(251, 191, 36, 0.12);
  stroke: rgba(252, 211, 77, 0.34);
}

.stage-core {
  fill: rgba(139, 92, 246, 0.18);
  stroke: rgba(196, 181, 253, 0.48);
}

.stage-console rect {
  fill: rgba(255, 249, 244, 0.075);
  stroke: rgba(255, 249, 244, 0.12);
}

.stage-console-title {
  fill: #f8fafc;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-anchor: middle;
}

.deck-top,
.pricing-card-top,
.footer-brand-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.deck-top {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.deck-title {
  display: grid;
  gap: 4px;
}

.deck-kicker {
  color: var(--ink-3);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.deck-title strong {
  font-size: 1.18rem;
  letter-spacing: -0.03em;
}

.deck-live,
.pricing-badge {
  color: #93f5e5;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.2);
}

.deck-live,
.pricing-badge {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-card,
.pricing-card,
.footer-shell {
  backdrop-filter: blur(10px);
}

.deck-story {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  align-items: stretch;
  gap: 18px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 249, 244, 0.045);
  border: 1px solid rgba(255, 249, 244, 0.08);
}

.deck-copy {
  display: grid;
  align-content: start;
  min-width: 0;
}

.deck-copy p {
  margin: 12px 0 0;
  color: var(--ink-2);
  font-size: 0.96rem;
}

.module-cluster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  align-items: stretch;
  gap: 10px;
}

.module-cluster span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: 0;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(139, 21, 56, 0.08);
  border: 1px solid rgba(139, 21, 56, 0.12);
  color: var(--brand);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: manual;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  font-weight: 700;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading h2,
.pricing-copy h2,
.cta-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.98;
}

.section-heading p,
.pricing-copy p,
.cta-copy p,
.footer-brand p {
  margin: 16px 0 0;
  color: var(--ink-2);
  font-size: 1.02rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  grid-column: span 4;
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 236px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(30, 21, 24, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition:
    transform 0.26s ease,
    box-shadow 0.26s ease,
    border-color 0.26s ease;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, rgba(96, 165, 250, 0.7), rgba(251, 113, 133, 0.58));
  opacity: 0.78;
}

.feature-card:hover,
.feature-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(139, 21, 56, 0.16);
  box-shadow: 0 24px 44px rgba(56, 31, 34, 0.12);
}

.feature-card--wide {
  grid-column: span 4;
}

.feature-card--accent {
  background:
    linear-gradient(180deg, rgba(96, 165, 250, 0.12) 0%, rgba(255, 249, 244, 0.045) 100%);
}

.feature-card--tint {
  background:
    linear-gradient(180deg, rgba(251, 113, 133, 0.1) 0%, rgba(255, 249, 244, 0.045) 100%);
}

.feature-badge {
  width: fit-content;
  color: var(--ink-3);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-icon {
  width: 54px;
  height: 54px;
  color: #dbeafe;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.14), rgba(251, 113, 133, 0.12));
  border: 1px solid rgba(255, 249, 244, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.feature-card h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.16;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.pricing-section {
  padding-top: 86px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.pricing-copy {
  position: sticky;
  top: 120px;
}

.pricing-points {
  display: grid;
  gap: 12px;
}

.pricing-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255, 249, 244, 0.06);
  border: 1px solid rgba(255, 249, 244, 0.1);
  color: #d9e5f5;
  font-weight: 600;
}

.pricing-points li::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  box-shadow: 0 0 0 5px rgba(139, 21, 56, 0.08);
}

.pricing-card {
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 249, 244, 0.1);
  background:
    radial-gradient(circle at 84% 10%, rgba(251, 113, 133, 0.14), transparent 32%),
    linear-gradient(180deg, rgba(18, 18, 26, 0.9), rgba(8, 8, 13, 0.96));
  box-shadow: var(--shadow-card);
}

.pricing-card-premium {
  border-color: rgba(245, 158, 11, 0.26);
  background:
    radial-gradient(circle at 82% 8%, rgba(245, 158, 11, 0.18), transparent 31%),
    linear-gradient(180deg, rgba(22, 18, 12, 0.94), rgba(8, 8, 13, 0.97));
}

.price-value {
  margin-top: 16px;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 5.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.price-value span {
  font-size: 1.6rem;
  color: var(--ink-3);
}

.price-note {
  margin-top: 12px;
  color: var(--ink-3);
  font-size: 0.94rem;
}

.price-fit {
  margin: 18px 0 0;
  color: #d9e5f5;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.55;
}

.price-features {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 249, 244, 0.08);
  font-size: 0.95rem;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(45, 212, 191, 0.12);
  color: var(--success);
  font-size: 0.82rem;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-faq-section {
  padding-top: 24px;
}

.pricing-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 34px;
  align-items: start;
}

.pricing-faq-copy p {
  max-width: 34rem;
  margin: 18px 0 0;
  color: var(--ink-2);
}

.pricing-faq-list {
  display: grid;
  gap: 12px;
}

.pricing-faq-list details {
  padding: 0;
  border-radius: 22px;
  border: 1px solid rgba(255, 249, 244, 0.1);
  background: rgba(18, 18, 26, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.pricing-faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 60px;
  padding: 0 20px;
  color: #f8fafc;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.pricing-faq-list summary::after {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #93f5e5;
  background: rgba(45, 212, 191, 0.1);
  border: 1px solid rgba(45, 212, 191, 0.2);
  flex-shrink: 0;
}

.pricing-faq-list details[open] summary::after {
  content: '–';
}

.pricing-faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--ink-2);
}

.cta-section {
  padding-top: 84px;
  padding-bottom: 84px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(214, 106, 74, 0.2), transparent 28%),
    linear-gradient(135deg, var(--surface-dark) 0%, var(--surface-darker) 100%);
  border: 1px solid var(--line-inverse);
  box-shadow: 0 36px 80px rgba(18, 13, 14, 0.28);
  overflow: hidden;
}

.cta-copy,
.cta-actions {
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: grid;
  gap: 12px;
  min-width: 220px;
}

.cta-copy h2,
.cta-copy p {
  color: var(--ink-inverse);
}

.cta-copy p {
  max-width: 40rem;
  color: rgba(255, 249, 244, 0.72);
}

.cta-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-meta span {
  color: rgba(255, 249, 244, 0.8);
  background: rgba(255, 249, 244, 0.06);
  border: 1px solid rgba(255, 249, 244, 0.1);
}

.site-footer {
  padding: 0 0 48px;
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(30, 21, 24, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.footer-brand {
  display: grid;
  gap: 14px;
}

.footer-brand-top {
  justify-content: flex-start;
}

.footer-brand-top img {
  width: 34px;
  height: auto;
}

.footer-brand-top span {
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-title {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column a,
.footer-top-link {
  color: var(--ink-2);
  font-weight: 600;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-top-link:hover,
.footer-top-link:focus-visible {
  color: var(--brand);
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(30, 21, 24, 0.08);
  color: var(--ink-3);
  font-size: 0.9rem;
}

/* Premium dark Picmate direction: operations stage, not generic light SaaS. */
body {
  color: #f8fafc;
  background:
    radial-gradient(circle at 18% 12%, rgba(59, 130, 246, 0.15), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(251, 113, 133, 0.18), transparent 34%),
    linear-gradient(180deg, #07070b 0%, #101018 52%, #0b0b12 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(255, 249, 244, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 249, 244, 0.026) 1px, transparent 1px);
}

.header-shell,
.mobile-menu-inner,
.control-deck,
.feature-card,
.pricing-card,
.footer-shell {
  border-color: rgba(255, 249, 244, 0.1);
  background: rgba(18, 18, 26, 0.74);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.site-header.is-scrolled .header-shell {
  background: rgba(18, 18, 26, 0.9);
  border-color: rgba(255, 249, 244, 0.12);
}

.brand-copy strong,
.hero-title,
.section-heading h2,
.pricing-copy h2,
.pricing-faq-copy h2,
.cta-copy h2,
.deck-title strong,
.feature-card h3,
.pricing-price,
.footer-title {
  color: #f8fafc;
}

.brand-copy span,
.hero-text,
.deck-copy p,
.feature-card p,
.pricing-copy p,
.pricing-faq-copy p,
.footer-brand p,
.footer-column a,
.footer-bottom,
.deck-kicker {
  color: #a8b1c2;
}

.hero-title span,
.section-chip,
.eyebrow,
.pricing-label {
  color: #f7b4c4;
}

.eyebrow,
.section-chip,
.pricing-label,
.hero-proof li,
.cta-meta span,
.deck-story,
.module-cluster span,
.btn-secondary,
.nav-link:hover,
.nav-link:focus-visible,
.mobile-link {
  color: #e5edf8;
  background: rgba(255, 249, 244, 0.06);
  border-color: rgba(255, 249, 244, 0.1);
  box-shadow: none;
}

.nav-link {
  color: #a8b1c2;
}

.btn-primary {
  background: linear-gradient(135deg, #2563eb 0%, #8b1538 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.18);
}

.control-deck {
  background:
    radial-gradient(circle at 80% 0%, rgba(251, 113, 133, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(18, 18, 26, 0.95), rgba(9, 10, 16, 0.96));
}

.control-deck::before {
  background: radial-gradient(circle, rgba(96, 165, 250, 0.16), transparent 68%);
}

.control-deck::after {
  background: radial-gradient(circle, rgba(214, 106, 74, 0.16), transparent 68%);
}

.cta-panel {
  background:
    radial-gradient(circle at 18% 20%, rgba(96, 165, 250, 0.18), transparent 32%),
    linear-gradient(135deg, #151018 0%, #07070b 100%);
}

@media (max-width: 1100px) {
  .hero-grid,
  .pricing-grid,
  .pricing-faq-grid,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 26px;
  }

  .pricing-copy {
    position: static;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 920px) {
  .site-header {
    padding-top: 12px;
  }

  .header-shell {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    position: relative;
    display: inline-flex;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: calc(96px + env(safe-area-inset-top, 0px));
    left: max(12px, env(safe-area-inset-left, 12px));
    right: max(12px, env(safe-area-inset-right, 12px));
    max-width: 1180px;
    width: auto;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .mobile-menu.is-open {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .mobile-menu-inner {
    display: grid;
    gap: 10px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 249, 244, 0.12);
    background: rgba(13, 13, 20, 0.96);
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.28);
  }

  .mobile-link {
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border-radius: 16px;
    background: rgba(255, 249, 244, 0.06);
    color: #f8fafc;
    font-weight: 700;
  }

  .mobile-actions {
    margin-top: 8px;
    flex-direction: column;
    align-items: stretch;
  }

  .mobile-actions .btn {
    width: 100%;
  }

  .feature-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .feature-card,
  .feature-card--wide {
    grid-column: span 3;
  }
}

@media (max-width: 700px) {
  .shell {
    width: min(1180px, calc(100% - 24px));
  }

  .section {
    padding: 72px 0;
  }

  .hero-section {
    padding-top: 18px;
  }

  body.menu-open::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 35;
    background: rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(4px);
  }

  .hero-grid {
    align-items: start;
  }

  .hero-copy {
    padding-top: 0;
  }

  .eyebrow {
    max-width: 100%;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    white-space: normal;
    line-height: 1.25;
    border-radius: 18px;
  }

  .control-deck,
  .pricing-card,
  .cta-panel,
  .footer-shell {
    padding: 22px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-card--wide {
    grid-column: auto;
    min-height: unset;
  }

  .hero-proof {
    display: none;
  }

  .hero-scroll-cue {
    display: inline-block;
  }

  .hero-proof li,
  .cta-meta span {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.84rem;
  }

  .hero-proof li {
    justify-content: center;
    min-width: 0;
    width: 100%;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: manual;
    text-align: center;
  }

  .control-deck {
    padding: 16px;
    border-radius: 24px;
  }

  .deck-top {
    margin-bottom: 12px;
  }

  .deck-title strong {
    font-size: 1rem;
  }

  .event-stage-anchor {
    border-radius: 22px;
  }

  .event-stage-anchor svg {
    min-height: 190px;
  }

  .event-stage-anchor text {
    font-size: 15px;
  }

  .event-stage-anchor .flow-kicker {
    font-size: 9px;
  }

  .event-stage-anchor .flow-title {
    font-size: 20px;
  }

  .event-stage-anchor .flow-sub,
  .event-stage-anchor .flow-core-sub {
    font-size: 10px;
  }

  .event-stage-anchor .flow-core-action {
    font-size: 12px;
  }

  .event-stage-anchor .flow-core-title {
    font-size: 24px;
  }

  .event-stage-anchor .flow-output-title {
    font-size: 16px;
  }

  .event-stage-anchor .stage-sub {
    font-size: 9px;
  }

  .deck-story {
    display: grid;
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .module-cluster {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 8px;
  }

  .module-cluster span {
    min-width: 0;
    justify-content: center;
    min-height: 36px;
    padding: 0 8px;
    font-size: 0.78rem;
    word-break: normal;
    overflow-wrap: normal;
    hyphens: manual;
    text-align: center;
  }
}

@media (max-width: 540px) {
  .hero-section {
    padding-top: 18px;
  }

  .shell {
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    padding: 0 12px;
  }

  .header-shell {
    padding: 14px;
  }

  .brand-copy span {
    display: none;
  }

  .hero-title {
    max-width: 100%;
    font-size: clamp(2.25rem, 10.5vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  .hero-actions-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions-row .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .section-heading h2,
  .pricing-copy h2,
  .pricing-faq-copy h2,
  .cta-copy h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .hero-plan-strip {
    grid-template-columns: 1fr;
  }

  .price-value {
    font-size: 3.6rem;
  }

  .footer-shell {
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
