@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap");

:root {
  --bg: #07090c;
  --bg-soft: #0f141b;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f7fa;
  --text-muted: #97a3b3;
  --accent: #ffb347;
  --accent-strong: #ff8f1c;
  --teal: #64d7c4;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --max: 1320px;
  --headline: "Manrope", "Inter", sans-serif;
  --body: "Inter", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
main[id] {
  scroll-margin-top: 7rem;
}

section[id],
main[id] {
  scroll-margin-top: 7rem;
}

section[id],
main[id] {
  scroll-margin-top: 7rem;
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 179, 71, 0.09), transparent 28%),
    radial-gradient(circle at top right, rgba(100, 215, 196, 0.08), transparent 24%),
    linear-gradient(180deg, #05070a 0%, #07090c 22%, #0a0f14 100%);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(
      32rem 32rem at var(--mx, 50%) var(--my, 18%),
      rgba(255, 179, 71, 0.08),
      transparent 65%
    );
  opacity: 0.9;
  transition: opacity 220ms ease;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 40;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #120d05;
  border-radius: 999px;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(100, 215, 196, 0.8);
  outline-offset: 3px;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 25;
  padding-top: 1rem;
}

.masthead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 9, 12, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.16);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

body.is-scrolled .masthead {
  background: rgba(8, 11, 15, 0.84);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.brand-mark {
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent-strong), #ffd08b);
  box-shadow: 0 0 24px rgba(255, 143, 28, 0.42);
}

.brand-word {
  font-family: var(--headline);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav,
.masthead-actions,
.hero-actions,
.panel-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.site-nav {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.9rem 1.28rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
  font-weight: 600;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.button-primary {
  background: linear-gradient(135deg, #ffbf62, #ffd79c);
  color: #120d05;
  border-color: transparent;
  box-shadow: 0 18px 34px rgba(255, 179, 71, 0.14);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.045);
}

.button-quiet {
  background: transparent;
}

.hero-block,
.pricing-hero-block {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 6rem 0 4.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2.25rem;
  align-items: center;
}

.section {
  padding: 5.5rem 0;
}

.section-kicker {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
strong {
  font-family: var(--headline);
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 11.8ch;
  font-size: clamp(3.8rem, 7.5vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

h2 {
  max-width: 12.5ch;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

h3 {
  font-size: 1.4rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

p,
li,
dt,
dd,
label {
  line-height: 1.65;
}

.hero-lead,
.hero-body,
.section-body,
.hero-footnote,
.support-line,
.statement-label,
.mosaic-tag,
.download-panel p,
.contact-panel p,
.factor-panel p,
.tier-card p,
.trust-points p,
.capability-copy p,
.release-list dt,
.release-list dd,
.site-footer p {
  color: var(--text-muted);
}

.hero-lead {
  max-width: 42rem;
  margin-top: 1.5rem;
  font-size: 1.14rem;
}

.hero-actions {
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-trustband,
.hero-footnote {
  margin-top: 1.1rem;
  font-size: 0.95rem;
}

.hero-trustband {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-stage-frame,
.pricing-scale-frame,
.device-frame,
.release-panel,
.download-panel,
.contact-panel,
.mosaic-card,
.trust-shell,
.statement-band,
.capability-row,
.outcome-panel,
.tier-card,
.factor-panel,
.licensing-note {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015)),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.hero-stage-frame {
  position: relative;
  min-height: 44rem;
  overflow: hidden;
  border-radius: 44px;
  background:
    radial-gradient(circle at center, rgba(100, 215, 196, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    #0b1118;
  box-shadow: var(--shadow);
}

.hero-stage-frame::after,
.pricing-scale-frame::after {
  content: "";
  position: absolute;
  inset: auto 8% 0 8%;
  height: 22%;
  background: linear-gradient(180deg, transparent, rgba(7, 9, 12, 0.8));
  pointer-events: none;
}

.stage-grid,
.stage-glow,
.stage-orbit {
  position: absolute;
}

.stage-grid {
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 3rem 3rem;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 100%);
}

.stage-glow {
  inset: auto auto 5rem 50%;
  width: 22rem;
  height: 22rem;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 179, 71, 0.22), transparent 60%);
  filter: blur(24px);
  animation: stagePulse 8s ease-in-out infinite;
}

.stage-orbit {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.orbit-a {
  top: 3rem;
  left: -3rem;
  width: 32rem;
  height: 32rem;
  animation: slowSpin 28s linear infinite;
}

.orbit-b {
  right: 2rem;
  top: 2rem;
  width: 20rem;
  height: 20rem;
  border-color: rgba(100, 215, 196, 0.22);
  animation: slowSpinReverse 24s linear infinite;
}

.console-window {
  position: absolute;
  padding: 1.2rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 10, 15, 0.78);
  backdrop-filter: blur(20px);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.hero-stage-frame:hover .console-window {
  border-color: rgba(255, 255, 255, 0.18);
}

.console-primary {
  top: 2rem;
  right: 2rem;
  width: min(23rem, calc(100% - 3rem));
  animation: floatPanel 7s ease-in-out infinite;
}

.console-secondary {
  left: 2rem;
  bottom: 2rem;
  width: min(18rem, calc(100% - 3rem));
  animation: floatPanel 9s ease-in-out infinite;
}

.console-tertiary {
  right: 4rem;
  bottom: 5rem;
  width: min(16rem, calc(100% - 4rem));
  animation: floatPanel 8s ease-in-out infinite;
}

.console-header,
.download-topline,
.tier-head,
.device-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.console-header span:first-child,
.device-topline span:first-child {
  font-size: 0.9rem;
  font-weight: 600;
}

.console-status,
.status-chip,
.mosaic-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(100, 215, 196, 0.12);
  color: #b9fbf0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.console-status.amber,
.status-chip,
.status-pill {
  background: rgba(255, 179, 71, 0.14);
  color: #ffd7a4;
}

.console-lines {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.line {
  display: block;
  height: 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.line.accent {
  background: linear-gradient(90deg, rgba(255, 179, 71, 0.95), rgba(100, 215, 196, 0.95));
}

.w-70 { width: 70%; }
.w-92 { width: 92%; }
.w-56 { width: 56%; }

.console-metric-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.console-metric-row strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.console-metric-row span,
.console-list {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.console-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.console-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 18px rgba(100, 215, 196, 0.4);
}

.stage-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.55rem;
  min-height: 9rem;
  margin-top: 1rem;
}

.stage-chart span {
  flex: 1;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(255, 179, 71, 0.95), rgba(100, 215, 196, 0.6));
}

.statement-band {
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  transition: border-color 220ms ease, transform 220ms ease, background 220ms ease;
}

.statement-grid {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1rem 2rem;
}

.statement-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.section-heading,
.split-head {
  display: grid;
  gap: 1rem;
  margin-bottom: 2.3rem;
}

.capability-rows {
  display: grid;
}

.capability-row {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 1.4rem;
  padding: 1.55rem 1.6rem;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  transition: background 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.capability-row:hover {
  background:
    linear-gradient(90deg, rgba(255, 179, 71, 0.05), rgba(255, 255, 255, 0.015)),
    var(--surface);
  transform: translateX(6px);
}

.capability-row + .capability-row {
  border-top: 0;
}

.capability-row:first-child {
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
}

.capability-row:last-child {
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
}

.capability-meta {
  display: grid;
  gap: 0.6rem;
}

.capability-meta span,
.outcome-panel span {
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.outcome-strip,
.tier-grid,
.pricing-factors-grid,
.showcase-mosaic,
.conversion-panels,
.desktop-grid {
  display: grid;
  gap: 1rem;
}

.outcome-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.outcome-panel {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.outcome-panel:hover,
.release-panel:hover,
.download-panel:hover,
.contact-panel:hover,
.tier-card:hover,
.factor-panel:hover,
.licensing-note:hover,
.mosaic-card:hover,
.download-card:hover,
.demo-card:hover,
.statement-band:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.15);
}

.device-frame {
  padding: 1.3rem;
  border-radius: 34px;
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease;
}

.device-frame:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
}

.desktop-grid {
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
  align-items: start;
}

.device-image {
  margin-top: 1rem;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.release-panel,
.download-card,
.demo-card,
.download-panel,
.contact-panel {
  padding: 1.6rem;
  border-radius: 30px;
}

.release-list,
.release-list.compact {
  display: grid;
  gap: 1rem;
  margin: 1.3rem 0 0;
}

.download-meta {
  display: grid;
  gap: 1rem;
  margin: 1.3rem 0 0;
}

.release-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.download-meta div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

dd {
  margin: 0;
  text-align: right;
}

.showcase-mosaic {
  grid-template-columns: 1.3fr 1fr 1fr;
}

.mosaic-card {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border-radius: 30px;
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.mosaic-large {
  grid-row: span 2;
}

.mosaic-copy {
  display: grid;
  gap: 0.5rem;
}

.mosaic-card img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.18);
  transition: transform 320ms ease, filter 320ms ease;
}

.mosaic-card:hover img,
.device-frame:hover .device-image {
  transform: scale(1.015);
  filter: saturate(1.04);
}

.trust-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
  padding: 2rem;
  border-radius: 34px;
}

.trust-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.trust-points article {
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.usecase-marquee {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  position: relative;
}

.usecase-marquee span,
.addon-pill {
  display: inline-flex;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.usecase-marquee span:hover,
.addon-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
}

.conversion-shell,
.pricing-close-shell {
  display: grid;
  gap: 2rem;
}

.conversion-panels {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.install-list,
.tier-list,
.factor-list {
  margin: 1.1rem 0 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.demo-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.15rem;
}

.demo-form label {
  display: grid;
  gap: 0.45rem;
  color: var(--text-muted);
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.demo-form textarea {
  resize: vertical;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-scale-frame {
  position: relative;
  padding: 2rem;
  border-radius: 38px;
  min-height: 32rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: end;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.scale-line {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 6.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
}

.scale-step {
  position: relative;
  z-index: 1;
  padding: 1.4rem;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.scale-step.active {
  transform: translateY(-2rem);
  border-color: rgba(255, 179, 71, 0.22);
  background: linear-gradient(180deg, rgba(255, 179, 71, 0.09), rgba(255, 255, 255, 0.03));
}

.scale-step:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(255, 255, 255, 0.16);
}

.scale-step span {
  color: var(--text-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scale-step strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 2rem;
}

.scale-step p {
  margin-top: 0.5rem;
  color: var(--text-muted);
}

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

.tier-card {
  padding: 1.7rem;
  border-radius: 30px;
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.tier-card-featured {
  background:
    linear-gradient(180deg, rgba(255, 179, 71, 0.08), rgba(255, 255, 255, 0.015)),
    var(--surface);
  border-color: rgba(255, 179, 71, 0.18);
}

.tier-head strong {
  font-size: 0.98rem;
}

.pricing-factors-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.factor-panel,
.licensing-note {
  padding: 1.8rem;
  border-radius: 30px;
}

.pricing-table-wrap {
  margin-top: 1.25rem;
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 780px;
  background: rgba(255, 255, 255, 0.02);
}

.pricing-table th,
.pricing-table td {
  padding: 0.95rem 1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-table th:last-child,
.pricing-table td:last-child {
  text-align: right;
}

.pricing-table th {
  color: var(--text);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.03);
}

.pricing-table td {
  color: var(--text-muted);
}

.addon-kicker {
  margin-top: 1.7rem;
}

.pricing-close-shell {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: start;
}

.pricing-close-actions {
  padding: 1.8rem;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
  transition: transform 240ms ease, border-color 240ms ease;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 820ms cubic-bezier(0.2, 0.75, 0.16, 1), transform 820ms cubic-bezier(0.2, 0.75, 0.16, 1), filter 820ms cubic-bezier(0.2, 0.75, 0.16, 1);
  filter: blur(10px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes slowSpinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes floatPanel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes stagePulse {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.04); }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .button {
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .stage-glow,
  .orbit-a,
  .orbit-b,
  .console-primary,
  .console-secondary,
  .console-tertiary {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .hero-block,
  .pricing-hero-block,
  .desktop-grid,
  .showcase-mosaic,
  .conversion-panels,
  .pricing-factors-grid,
  .pricing-close-shell,
  .trust-shell,
  .trust-points,
  .outcome-strip,
  .tier-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    order: -1;
  }

  .showcase-mosaic .mosaic-large {
    grid-row: auto;
  }

  .capability-row:hover,
  .scale-step:hover {
    transform: none;
  }
}

@media (max-width: 860px) {
  .masthead,
  .footer-bar,
  .statement-grid,
  .capability-row {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .masthead {
    border-radius: 28px;
  }

  .site-nav,
  .masthead-actions,
  .footer-links {
    flex-wrap: wrap;
  }

  .hero-block,
  .pricing-hero-block {
    padding-top: 3.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  h1 {
    font-size: clamp(2.9rem, 12vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .hero-stage-frame {
    min-height: 34rem;
  }

  .console-window {
    position: relative;
    inset: auto;
    width: auto;
    margin: 1rem;
  }

  .scale-step.active {
    transform: none;
  }

  .release-list div,
  .download-topline,
  .tier-head {
    flex-direction: column;
    align-items: flex-start;
  }

  dd {
    text-align: left;
  }
}
