:root {
  color-scheme: light;
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #fafbfd;
  --sidebar: #07111f;
  --sidebar-soft: #0b1628;
  --sidebar-card: #12243a;
  --text: #0f172a;
  --text-2: #334155;
  --muted: #64748b;
  --muted-2: #94a3b8;
  --line: #e5e9f0;
  --primary: #4f46e5;
  --primary-2: #6366f1;
  --ai: #a855f7;
  --success: #10b981;
  --info: #0ea5e9;
  --warning: #f59e0b;
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, .06);
  --shadow: 0 24px 70px rgba(15, 23, 42, .13);
  --radius: 12px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background:
    linear-gradient(rgba(79, 70, 229, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(79, 70, 229, .045) 1px, transparent 1px),
    var(--bg);
  background-size: 48px 48px;
  font: 15px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(99, 102, 241, .12), transparent 32%),
    radial-gradient(circle at 82% 10%, rgba(168, 85, 247, .1), transparent 29%),
    linear-gradient(180deg, rgba(255,255,255,.85), rgba(246,248,251,.94));
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--primary-2), var(--ai), var(--info));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  width: min(1180px, calc(100% - 32px));
  min-height: 70px;
  margin: 14px auto 0;
  padding: 10px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(229, 233, 240, .86);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-sm);
}

.brand-slot {
  width: 164px;
  height: 38px;
  display: flex;
  align-items: center;
  border-radius: 12px;
}

.brand-slot img { width: 100%; height: 100%; object-fit: contain; }
.brand-slot .brand-icon { display: none; }
.brand-slot.small { width: 120px; height: 36px; }

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 28px);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a:hover { color: var(--primary); }

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.lang-switch {
  min-height: 38px;
  padding: 3px;
  display: inline-flex;
  gap: 2px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
}

.lang-switch button {
  min-width: 36px;
  border: 0;
  border-radius: 9px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
}

.lang-switch button.active {
  color: white;
  background: var(--sidebar);
  box-shadow: var(--shadow-sm);
}

.header-cta,
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.header-cta {
  padding: 0 18px;
  color: white;
  background: var(--sidebar);
}

.button {
  padding: 0 20px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.button.primary {
  border: 0;
  color: white;
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
  box-shadow: 0 10px 22px rgba(79, 70, 229, .26);
}

.button.ghost { color: var(--primary); background: #eef2ff; border-color: #c7d2fe; }
.button.dark { color: white; background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.18); }

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 126px) 0;
}

.section-band {
  width: 100%;
  margin: 0;
  padding: clamp(78px, 9vw, 132px) 0;
}

.band-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.dark-band {
  color: white;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    radial-gradient(circle at 82% 10%, rgba(168,85,247,.22), transparent 30%),
    radial-gradient(circle at 8% 80%, rgba(14,165,233,.16), transparent 28%),
    linear-gradient(145deg, #07111f, #0b1628 48%, #111936);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
}

.dark-band h2,
.dark-band h3 { color: white; }
.dark-band .eyebrow { color: #c4b5fd; }
.dark-band p,
.dark-band .section-head p:not(.eyebrow) { color: #cbd5e1; }

.hero {
  min-height: calc(100svh - 84px);
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(30px, 6vw, 76px);
  padding-top: clamp(56px, 8vw, 100px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(42px, 7.3vw, 86px);
  line-height: .94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.22;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--text-2);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats {
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-stats div {
  min-height: 102px;
  padding: 16px;
  border: 1px solid rgba(229, 233, 240, .9);
  border-radius: var(--radius);
  background: rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
}

.hero-stats dt {
  color: var(--primary);
  font-size: 26px;
  line-height: 1;
  font-weight: 900;
}

.hero-stats dd { margin: 10px 0 0; color: var(--muted); font-size: 12px; font-weight: 700; }

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  perspective: 1400px;
}

.hero-visual picture {
  width: min(740px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 24px;
  background: white;
  box-shadow: 0 30px 100px rgba(15, 23, 42, .18);
  transform: rotateX(5deg) rotateY(-7deg);
  animation: floatHero 8s ease-in-out infinite;
}

.problems-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.problem-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  max-width: 620px;
  font-size: 18px;
}

.problem-list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.problem-list article {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  background: rgba(255,255,255,.055);
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
}

.problem-list strong {
  display: block;
  color: white;
  font-size: 16px;
}

.problem-list span {
  display: block;
  margin-top: 9px;
  color: #a8b3c7;
  font-size: 13px;
}

.band-visual {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 34px 110px rgba(0,0,0,.34);
}

.orbital-card {
  position: absolute;
  z-index: 2;
  padding: 10px 13px;
  border: 1px solid rgba(255,255,255,.56);
  border-radius: 12px;
  color: white;
  background: rgba(7, 17, 31, .82);
  box-shadow: 0 18px 50px rgba(7, 17, 31, .2);
  backdrop-filter: blur(14px);
  font-size: 12px;
  font-weight: 850;
  animation: floatCard 6s ease-in-out infinite;
}

.card-a { left: 6%; top: 16%; }
.card-b { right: 4%; bottom: 18%; animation-delay: -2s; background: linear-gradient(135deg, var(--primary), var(--ai)); }

@keyframes floatHero {
  50% { transform: rotateX(3deg) rotateY(-3deg) translateY(-12px); }
}

@keyframes floatCard {
  50% { transform: translateY(-12px); }
}

.logo-strip {
  width: min(1180px, calc(100% - 32px));
  margin: -14px auto 0;
  padding: 16px;
  display: flex;
  gap: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.78);
  box-shadow: var(--shadow-sm);
}

.logo-strip span {
  flex: 1 0 auto;
  min-width: max-content;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.section-head {
  max-width: 780px;
  margin-bottom: 38px;
}

.section-head p:not(.eyebrow) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-head.compact { max-width: 700px; }

.workflow-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-card,
.feature-grid article {
  min-height: 238px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow-sm);
}

.workflow .step-card {
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.82)),
    var(--surface);
}

.step-card span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border-radius: 11px;
  color: var(--primary);
  background: #eef2ff;
  font-weight: 900;
}

.step-card p,
.feature-grid p,
.control-copy p,
.final-cta p {
  margin: 12px 0 0;
  color: var(--muted);
}

.story {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.story-copy {
  display: grid;
  gap: 16px;
}

.story-copy > p:not(.eyebrow) {
  margin: 16px 0 0;
  max-width: 620px;
}

.story-tabs {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.story-panel {
  width: 100%;
  padding: 18px;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 6px 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  color: white;
  background: rgba(255,255,255,.055);
  font: inherit;
  text-align: left;
  cursor: pointer;
  opacity: .72;
  transform: none;
  transition: opacity .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.story-panel span {
  grid-row: span 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #c4b5fd;
  background: rgba(99,102,241,.16);
  font-size: 12px;
  font-weight: 900;
}

.story-panel strong {
  align-self: end;
  color: white;
  font-size: 16px;
  line-height: 1.2;
}

.story-panel small {
  color: #a8b3c7;
  font-size: 12px;
  line-height: 1.5;
}

.story-panel.active {
  opacity: 1;
  border-color: rgba(196,181,253,.42);
  background: linear-gradient(135deg, rgba(99,102,241,.22), rgba(168,85,247,.12));
  box-shadow: 0 20px 70px rgba(0,0,0,.28);
}

.story-visual {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 30px 90px rgba(7, 17, 31, .22);
}

.story-image {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transform: scale(1.035);
  transition: opacity .55s ease, transform .75s ease;
}

.story-image.visible {
  opacity: 1;
  transform: scale(1);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100% - 1180px) / 2));
  padding-right: max(16px, calc((100% - 1180px) / 2));
  background: linear-gradient(180deg, rgba(255,255,255,.24), rgba(255,255,255,.72));
}

.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.feature-grid article {
  min-height: 290px;
  overflow: hidden;
  position: relative;
  border-radius: 18px;
  background:
    radial-gradient(circle at 88% 12%, rgba(99,102,241,.13), transparent 34%),
    rgba(255,255,255,.9);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-grid article:hover {
  transform: translateY(-4px);
  border-color: #c7d2fe;
  box-shadow: var(--shadow);
}

.feature-kicker {
  display: inline-flex;
  margin-bottom: 28px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--primary);
  background: #eef2ff;
  font-size: 11px;
  font-weight: 900;
}

.feature-proof,
.mini-calendar,
.pipeline-mini,
.feature-metric,
.swatches {
  margin-top: 26px;
}

.feature-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.feature-proof span {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--text-2);
  background: var(--surface-soft);
  font-size: 11px;
  font-weight: 850;
}

.mini-calendar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.mini-calendar i {
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #eef2ff, #e0f2fe);
}

.pipeline-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.pipeline-mini span {
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(180deg, #eef2ff, #fff);
  border: 1px solid #dbeafe;
}

.feature-metric strong {
  display: block;
  color: var(--primary);
  font-size: 42px;
  line-height: 1;
}

.feature-metric small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 800;
}

.swatches {
  display: flex;
  gap: 8px;
}

.swatches i {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.6);
}

.swatches i:nth-child(1) { background: #07111f; }
.swatches i:nth-child(2) { background: #6366f1; }
.swatches i:nth-child(3) { background: #a855f7; }
.swatches i:nth-child(4) { background: #10b981; }

.channels-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.channels-layout p:not(.eyebrow) {
  margin-top: 18px;
  max-width: 620px;
  font-size: 18px;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.channel-grid article {
  min-height: 138px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
}

.channel-grid strong {
  display: block;
  font-size: 18px;
  color: white;
}

.channel-grid span {
  display: block;
  margin-top: 10px;
  color: #a8b3c7;
  font-size: 13px;
}

.control {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.control-visual {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
  box-shadow: 0 34px 110px rgba(0,0,0,.32);
}

.check-list {
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 13px 14px 13px 44px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  color: white;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 17px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(16, 185, 129, .12);
}

.pricing .section-head { margin-bottom: 30px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.price-card {
  position: relative;
  min-height: 600px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  box-shadow: var(--shadow-sm);
}

.price-card.popular {
  border-color: #c7d2fe;
  background:
    radial-gradient(circle at 90% 0%, rgba(168,85,247,.13), transparent 36%),
    white;
  box-shadow: var(--shadow);
  transform: translateY(-10px);
}

.popular-label {
  align-self: flex-start;
  margin: -6px 0 16px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #6d28d9;
  background: #f3e8ff;
  font-size: 11px;
  font-weight: 850;
}

.price-card h3 {
  font-size: 28px;
}

.tagline {
  min-height: 52px;
  margin: 10px 0 0;
  color: var(--muted);
}

.price {
  margin-top: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price strong {
  display: block;
  color: var(--sidebar);
  font-size: 38px;
  line-height: 1;
}

.price span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.plan-limits {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.plan-limits div {
  min-height: 70px;
  padding: 12px;
  border-radius: 12px;
  background: var(--surface-soft);
}

.plan-limits strong {
  display: block;
  color: var(--primary);
  font-size: 22px;
  line-height: 1;
}

.plan-limits span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.plan-features {
  margin: 20px 0 24px;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.plan-features li {
  position: relative;
  padding-left: 24px;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 650;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, .12);
}

.price-card .button {
  width: 100%;
  margin-top: auto;
}

.pricing-note {
  margin: 18px 0 0;
  color: var(--muted);
  text-align: center;
  font-weight: 650;
}

.final-cta {
  width: min(1180px, calc(100% - 32px));
  margin-bottom: 30px;
  padding: clamp(58px, 8vw, 96px);
  overflow: hidden;
  border-radius: 28px;
  color: white;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px),
    radial-gradient(circle at 82% 18%, rgba(168, 85, 247, .38), transparent 32%),
    linear-gradient(145deg, #07111f, #111936 58%, #171342);
  background-size: 42px 42px, 42px 42px, auto, auto;
  box-shadow: 0 30px 110px rgba(7, 17, 31, .28);
}

.final-cta h2 { max-width: 880px; color: white; }
.final-cta p { max-width: 660px; color: #cbd5e1; font-size: 18px; }
.final-cta .eyebrow { color: #c4b5fd; }

.site-footer {
  width: min(1180px, calc(100% - 32px));
  min-height: 84px;
  margin: 0 auto;
  padding: 18px 0 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 13px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .brand-slot { width: 128px; }
  .nav-links { display: none; }
  .hero,
  .story,
  .control,
  .problems-layout,
  .channels-layout {
    grid-template-columns: 1fr;
  }
  .hero { min-height: auto; }
  .hero-visual { min-height: auto; }
  .hero-visual picture { transform: none; }
  .workflow-grid,
  .feature-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .story-copy,
  .story-visual {
    position: relative;
    top: auto;
  }
  .story-visual { min-height: 460px; }
  .channel-grid,
  .problem-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body { font-size: 14px; background-size: 36px 36px; }
  .site-header {
    width: calc(100% - 20px);
    min-height: 60px;
    margin-top: 10px;
    border-radius: 14px;
  }
  .brand-slot { width: 38px; height: 38px; }
  .brand-slot .brand-wordmark { display: none; }
  .brand-slot .brand-icon { display: block; }
  .header-actions { gap: 6px; }
  .lang-switch { min-height: 34px; }
  .lang-switch button { min-width: 30px; font-size: 10px; }
  .header-cta { min-height: 38px; padding: 0 14px; font-size: 13px; }
  .section-pad { width: calc(100% - 24px); padding: 66px 0; }
  .section-band { padding: 66px 0; }
  .band-inner { width: calc(100% - 24px); }
  .hero { padding-top: 48px; gap: 30px; }
  h1 { font-size: clamp(40px, 13vw, 56px); line-height: .98; }
  h2 { font-size: clamp(28px, 10vw, 42px); }
  .hero-text { font-size: 16px; }
  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }
  .button { width: 100%; }
  .hero-stats,
  .workflow-grid,
  .feature-grid,
  .pricing-grid,
  .problem-list,
  .channel-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats div,
  .step-card,
  .feature-grid article,
  .price-card {
    min-height: auto;
  }
  .price-card.popular { transform: none; }
  .tagline { min-height: auto; }
  .orbital-card { display: none; }
  .story-panel { padding: 18px; }
  .story-visual { min-height: 330px; border-radius: 18px; }
  .band-visual,
  .control-visual { border-radius: 18px; }
  .problem-list article,
  .channel-grid article {
    min-height: auto;
  }
  .final-cta {
    width: calc(100% - 24px);
    padding: 42px 22px;
    border-radius: 20px;
  }
}

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