:root {
  --bg: #080b0f;
  --panel: #101820;
  --panel-soft: #131d27;
  --text: #eef4f2;
  --muted: #9caaa7;
  --line: rgba(255, 255, 255, 0.12);
  --teal: #39d1b4;
  --teal-dark: #0f7b72;
  --blue: #7aa7ff;
  --amber: #f2b85b;
  --danger: #e76f6f;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.card-icon,
.tiny-icon,
.mini-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.card-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--teal);
}

.tiny-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 14px;
  color: var(--teal);
}

.mini-icon {
  float: right;
  width: 22px;
  height: 22px;
  color: var(--teal);
  opacity: 0.86;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(8, 11, 15, 0.78);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(57, 209, 180, 0.4);
  border-radius: var(--radius);
  background: rgba(57, 209, 180, 0.12);
  color: var(--teal);
  font-size: 13px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.brand:hover .brand-mark {
  border-color: rgba(57, 209, 180, 0.78);
  transform: translateY(-1px);
}

.site-nav {
  display: flex;
  gap: 28px;
  color: rgba(238, 244, 242, 0.78);
  font-size: 14px;
  font-weight: 600;
}

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

.site-nav a {
  position: relative;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
  content: "";
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px clamp(20px, 6vw, 72px) 58px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
  object-position: center right;
  filter: saturate(0.9) contrast(1.08);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(8, 11, 15, 0.98) 0%, rgba(8, 11, 15, 0.72) 46%, rgba(8, 11, 15, 0.2) 100%),
    linear-gradient(0deg, #080b0f 0%, rgba(8, 11, 15, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.55fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: end;
  width: min(1180px, 100%);
}

.hero-copy-block {
  max-width: 780px;
}

.eyebrow,
.section-kicker,
.card-topline {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(46px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.1;
}

.hero-copy {
  max-width: 690px;
  color: rgba(238, 244, 242, 0.8);
  font-size: clamp(18px, 2vw, 22px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 14px;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  border-color: var(--teal);
  background: var(--teal);
  color: #03100d;
  box-shadow: 0 12px 32px rgba(57, 209, 180, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.button.secondary:hover {
  border-color: rgba(57, 209, 180, 0.45);
  background: rgba(57, 209, 180, 0.08);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 18px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.hero-metrics div {
  padding: 18px;
  background: rgba(8, 11, 15, 0.66);
}

.hero-metrics dt {
  font-size: 30px;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.platform-console {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(57, 209, 180, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(57, 209, 180, 0.13), rgba(8, 11, 15, 0.76)),
    rgba(8, 11, 15, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: consoleFloat 7s ease-in-out infinite;
}

.platform-console::before {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(57, 209, 180, 0.08);
  background:
    linear-gradient(90deg, transparent, rgba(57, 209, 180, 0.12), transparent) 0 0 / 240% 100%;
  animation: consoleScan 5.5s linear infinite;
  content: "";
  pointer-events: none;
}

.console-header,
.console-route,
.console-modules div {
  position: relative;
  z-index: 1;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(255, 255, 255, 0.055);
}

.console-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
}

.console-header span,
.console-route span,
.console-modules span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.console-header strong,
.console-route strong,
.console-modules strong {
  display: block;
  color: var(--text);
  font-size: 14px;
}

.console-modules {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.console-modules div {
  padding: 14px;
  transform: translateX(0);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.console-modules div:hover {
  border-color: rgba(57, 209, 180, 0.38);
  background: rgba(57, 209, 180, 0.08);
  transform: translateX(4px);
}

.console-route {
  margin-top: 10px;
  padding: 14px;
  border-color: rgba(242, 184, 91, 0.34);
}

.console-signal {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 10px 0;
}

.console-signal span {
  height: 3px;
  background: linear-gradient(90deg, rgba(57, 209, 180, 0.1), rgba(57, 209, 180, 0.85), rgba(122, 167, 255, 0.15));
  transform-origin: left;
  animation: signalPulse 2.6s ease-in-out infinite;
}

.console-signal span:nth-child(2) {
  animation-delay: 240ms;
}

.console-signal span:nth-child(3) {
  animation-delay: 480ms;
}

.section {
  padding: clamp(76px, 11vw, 132px) clamp(20px, 6vw, 72px);
}

.split,
.privacy-layout,
.timeline,
.pilot-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

.intro-copy p,
.timeline-copy p,
.privacy p,
.pilot p {
  color: var(--muted);
  font-size: 18px;
}

.platform-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(42px, 7vw, 72px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.platform-proof div {
  min-height: 150px;
  padding: 22px;
  background: #0b1117;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.platform-proof div:hover,
.stack-grid article:hover,
.product-card:hover,
.usecase-strip div:hover,
.control-grid div:hover,
.offer-list div:hover {
  transform: translateY(-6px);
}

.platform-proof div:hover,
.usecase-strip div:hover {
  background: #0f1820;
}

.platform-proof span,
.platform-proof small {
  display: block;
}

.platform-proof span {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.platform-proof strong {
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.platform-proof small {
  color: var(--muted);
  font-size: 13px;
}

.product-section,
.compare {
  background: #0b1117;
}

.section-heading {
  max-width: 980px;
  margin-bottom: 42px;
}

.section-heading p {
  max-width: 820px;
  color: var(--muted);
  font-size: 18px;
}

.stack-section,
.offer-section {
  background:
    linear-gradient(135deg, rgba(122, 167, 255, 0.1), transparent 44%),
    #080b0f;
}

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

.stack-grid article {
  min-height: 300px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease;
}

.stack-grid article:hover,
.product-card:hover,
.control-grid div:hover,
.offer-list div:hover {
  border-color: rgba(57, 209, 180, 0.34);
  background: rgba(57, 209, 180, 0.06);
}

.stack-grid span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(57, 209, 180, 0.34);
  border-radius: calc(var(--radius) - 2px);
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
}

.stack-grid p {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  min-height: 520px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.product-card .card-icon {
  margin-bottom: 18px;
}

.product-card.featured {
  border-color: rgba(57, 209, 180, 0.5);
  background: linear-gradient(180deg, rgba(57, 209, 180, 0.16), rgba(122, 167, 255, 0.06));
}

.product-card p,
.product-card li {
  color: var(--muted);
}

.product-card ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.product-card li {
  position: relative;
  padding-left: 22px;
}

.product-card li::before {
  position: absolute;
  left: 0;
  color: var(--amber);
  content: "*";
}

.usecase-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.usecase-strip div {
  min-height: 150px;
  padding: 22px;
  background: #0b1117;
  transition: transform 220ms ease, background 220ms ease;
}

.usecase-strip strong,
.usecase-strip span {
  display: block;
}

.usecase-strip strong {
  margin-bottom: 10px;
}

.usecase-strip span {
  color: var(--muted);
  font-size: 14px;
}

.workflow {
  background:
    linear-gradient(120deg, rgba(15, 123, 114, 0.16), transparent 48%),
    #080b0f;
}

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

.steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  min-height: 70px;
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  font-weight: 700;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.steps li:hover {
  border-color: rgba(242, 184, 91, 0.38);
  background: rgba(242, 184, 91, 0.07);
  transform: translateX(6px);
}

.steps span {
  color: var(--teal);
  font-size: 13px;
}

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

.control-grid div {
  min-height: 132px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.control-grid strong,
.control-grid span {
  display: block;
}

.control-grid strong {
  margin-bottom: 10px;
}

.control-grid span {
  color: var(--muted);
}

.comparison {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}

.compare-row + .compare-row {
  border-top: 1px solid var(--line);
}

.compare-row span {
  padding: 18px;
  background: #0b1117;
  color: var(--muted);
  transition: background 180ms ease, color 180ms ease;
}

.compare-row:hover span {
  background: #101820;
  color: var(--text);
}

.compare-row.head span {
  color: var(--text);
  font-weight: 800;
  background: #111b24;
}

.compare-row.strong span {
  color: var(--text);
  background: rgba(57, 209, 180, 0.08);
}

.offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

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

.offer-list div {
  display: grid;
  grid-template-columns: 34px 150px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.offer-list .tiny-icon {
  margin: 0;
}

.offer-list strong {
  color: var(--text);
}

.offer-list span {
  color: var(--muted);
}

.pilot {
  padding-bottom: 96px;
}

.pilot-panel {
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(57, 209, 180, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(57, 209, 180, 0.16), rgba(242, 184, 91, 0.08)),
    var(--panel-soft);
  background-size: 160% 160%;
  animation: panelShift 9s ease-in-out infinite alternate;
}

.pilot-actions {
  justify-content: flex-end;
  align-self: center;
  margin-top: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer div,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

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

.cookie-modal {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 6, 10, 0.72);
  backdrop-filter: blur(10px);
}

.cookie-modal[hidden] {
  display: none;
}

.cookie-dialog {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  width: min(620px, 100%);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(57, 209, 180, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(57, 209, 180, 0.12), rgba(122, 167, 255, 0.07)),
    #101820;
  box-shadow: var(--shadow);
}

.cookie-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(57, 209, 180, 0.36);
  border-radius: calc(var(--radius) - 2px);
  background: rgba(57, 209, 180, 0.12);
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
}

.cookie-dialog h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 4vw, 38px);
}

.cookie-dialog p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cookie-actions a {
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
}

.cookie-actions button {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  background: var(--teal);
  color: #03100d;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.cookie-actions button:hover {
  box-shadow: 0 10px 26px rgba(57, 209, 180, 0.2);
  transform: translateY(-1px);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.reveal-ready .hero[data-reveal] {
  transform: none;
}

.reveal-ready .hero[data-reveal] .hero-copy-block,
.reveal-ready .hero[data-reveal] .platform-console {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal-ready .hero[data-reveal].is-visible .hero-copy-block,
.reveal-ready .hero[data-reveal].is-visible .platform-console {
  opacity: 1;
  transform: translateY(0);
}

.reveal-ready .hero[data-reveal].is-visible .platform-console {
  transition-delay: 140ms;
}

.platform-proof div,
.stack-grid article,
.product-card,
.usecase-strip div,
.steps li,
.control-grid div,
.offer-list div {
  will-change: transform;
}

.legal-page {
  min-height: 100vh;
  padding: 92px clamp(20px, 6vw, 72px);
  background:
    linear-gradient(135deg, rgba(57, 209, 180, 0.08), transparent 34%),
    #080b0f;
}

.legal-content {
  max-width: 980px;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--line);
  background: rgba(16, 24, 32, 0.86);
  box-shadow: var(--shadow);
}

.legal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 44px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.legal-links a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.legal-links a[aria-current="page"] {
  border-color: rgba(57, 209, 180, 0.45);
  color: var(--teal);
  background: rgba(57, 209, 180, 0.08);
}

.legal-content h1 {
  margin-top: 0;
  font-size: clamp(42px, 6vw, 72px);
}

.legal-content h2 {
  margin-top: 42px;
  font-size: clamp(24px, 3vw, 36px);
}

.legal-content h3 {
  margin-top: 28px;
  font-size: 22px;
}

.legal-content p,
.legal-content li,
.legal-content td,
.legal-content th {
  color: var(--muted);
}

.legal-content a {
  color: var(--teal);
}

.legal-content ul {
  padding-left: 22px;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
}

.legal-content th,
.legal-content td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

@media (max-width: 980px) {
  .product-grid,
  .split,
  .privacy-layout,
  .timeline,
  .pilot-panel,
  .hero-content,
  .platform-proof,
  .stack-grid,
  .usecase-strip,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: auto;
  }

  .pilot-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 20px;
  }

  .nav-toggle {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
  }

  .nav-toggle span {
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(8, 11, 15, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px;
  }

  .hero {
    min-height: 92vh;
    padding-top: 116px;
  }

  .hero-media {
    object-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(8, 11, 15, 0.96) 0%, rgba(8, 11, 15, 0.78) 70%, rgba(8, 11, 15, 0.5) 100%),
      linear-gradient(0deg, #080b0f 0%, rgba(8, 11, 15, 0) 42%);
  }

  .hero-metrics,
  .control-grid,
  .compare-row,
  .offer-list div {
    grid-template-columns: 1fr;
  }

  .compare-row.head {
    display: none;
  }

  .compare-row span {
    padding: 14px 16px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-dialog {
    grid-template-columns: 1fr;
  }

  .legal-top {
    align-items: flex-start;
    flex-direction: column;
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.045) translateX(-10px);
  }
}

@keyframes consoleFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes consoleScan {
  from {
    background-position: 120% 0;
  }

  to {
    background-position: -120% 0;
  }
}

@keyframes signalPulse {
  0%,
  100% {
    opacity: 0.45;
    transform: scaleX(0.55);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes panelShift {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: 100% 50%;
  }
}

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

  .reveal-ready [data-reveal],
  .reveal-ready .hero[data-reveal] .hero-copy-block,
  .reveal-ready .hero[data-reveal] .platform-console {
    opacity: 1;
    transform: none;
  }
}
