:root {
  color-scheme: dark;
  --bg: #040404;
  --panel: rgba(16, 20, 34, 0.82);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.24);
  --text: rgba(247, 248, 254, 0.96);
  --muted: rgba(220, 226, 242, 0.73);
  --faint: rgba(192, 202, 224, 0.58);
  --accent: #d97706;
  --accent-soft: #f3b574;
  --sky: #5c7cff;
  --cyan: #3acbff;
  --max: 1120px;
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 62% 24%, rgba(173, 93, 26, 0.32), transparent 38rem),
    radial-gradient(circle at 78% 36%, rgba(111, 61, 22, 0.24), transparent 42rem),
    radial-gradient(circle at 86% 25%, rgba(217, 119, 6, 0.24), transparent 34rem),
    linear-gradient(180deg, #0b0b0b 0%, var(--bg) 44%, #020202 100%);
  color: var(--text);
  font-family: "Geist Variable", Geist, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "liga" 1, "kern" 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 86%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 68% 30%, rgba(211, 123, 45, 0.2), transparent 34rem),
    radial-gradient(circle at 86% 42%, rgba(118, 67, 27, 0.2), transparent 40rem),
    linear-gradient(180deg, transparent 56%, rgba(132, 75, 30, 0.12) 73%, transparent 92%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.46), transparent 22%, transparent 78%, rgba(0, 0, 0, 0.46));
  pointer-events: none;
  z-index: -1;
}

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

ul {
  margin: 0;
  padding-left: 1.1rem;
}

li {
  margin: 0.52rem 0;
  color: var(--muted);
}

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

strong, b, h1, h2, h3, h4, h5, h6, .brand, .btn, .nav-cta {
  font-weight: 500;
}

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

.ambient {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(54px);
  opacity: 0.7;
  z-index: -1;
}

.ambient-one {
  width: 38rem;
  height: 38rem;
  top: 4rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(217, 119, 6, 0.28), rgba(142, 79, 31, 0.12) 58%, transparent 74%);
  animation: ambientDrift 15s ease-in-out infinite alternate;
}

.ambient-two {
  width: 34rem;
  height: 34rem;
  top: 26rem;
  left: -11rem;
  background: radial-gradient(circle, rgba(142, 79, 31, 0.22), rgba(84, 47, 19, 0.1) 56%, transparent 76%);
  animation: ambientDrift 17s ease-in-out infinite alternate-reverse;
}

.container {
  width: min(var(--max), calc(100vw - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: linear-gradient(180deg, rgba(8, 10, 17, 0.92), rgba(8, 10, 17, 0.78));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(20px) saturate(135%);
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  background: linear-gradient(180deg, rgba(8, 10, 17, 0.95), rgba(8, 10, 17, 0.88));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.46);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  color: var(--text);
  font-size: 1rem;
  letter-spacing: -0.025em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #ffe9c9;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(217, 119, 6, 0.48), rgba(217, 119, 6, 0.14) 44%, rgba(92, 124, 255, 0.08) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 8px 22px rgba(217, 119, 6, 0.24);
}

.nav-toggle {
  display: none;
  min-height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 0.95rem;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  color: var(--muted);
  opacity: 0.82;
  font-weight: 400;
  transition: opacity 0.2s, color 0.2s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.32rem;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--cyan));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
  opacity: 1;
}

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

.nav-links .nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.28), rgba(217, 119, 6, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22), 0 10px 22px rgba(0, 0, 0, 0.34);
  transition: opacity 0.2s, color 0.2s, border-color 0.2s, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-links .nav-cta:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 12px 28px rgba(217, 119, 6, 0.26);
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: #f6bb6d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 400;
}

h1 {
  max-width: 640px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.5rem, 4.8vw, 3.95rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 600;
}

h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 4.2vw, 4rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-wrap: balance;
}

h3 {
  font-size: 1.06rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 30%, rgba(217, 119, 6, 0.18), transparent 36%),
    radial-gradient(circle at 74% 36%, rgba(142, 79, 31, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(4, 4, 4, 0.12), rgba(4, 4, 4, 0.9));
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 445px);
  gap: 3.2rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-sub {
  max-width: 560px;
  margin: 1.35rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.75rem;
}

.hero-note,
.cta-note {
  margin: 1.1rem 0 0;
  color: var(--faint);
  font-size: 0.95rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 500;
  letter-spacing: -0.01em;
  isolation: isolate;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s, color 0.2s;
}

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

.btn-primary {
  color: #1a1208;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24), 0 10px 24px rgba(217, 119, 6, 0.28);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0.06) 38%, transparent 43%),
    linear-gradient(140deg, #f2b165, #d97706 72%);
  z-index: -1;
}

.btn-primary:hover {
  color: #1a1208;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3), 0 14px 30px rgba(217, 119, 6, 0.32);
}

.btn-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.hero-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  perspective: 1200px;
}

.console-card {
  position: relative;
  width: min(445px, 100%);
  padding: 0.8rem;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(217, 119, 6, 0.45);
  background: linear-gradient(164deg, rgba(26, 20, 14, 0.92), rgba(10, 8, 7, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 14px 28px rgba(0, 0, 0, 0.48), 0 0 22px rgba(217, 119, 6, 0.14);
  transform: rotateX(1deg) rotateY(-2deg) translateY(2px);
  transform-style: preserve-3d;
  animation: floatPanel 7s ease-in-out infinite;
  transition: transform 0.2s ease, border-color 0.2s, box-shadow 0.2s ease;
}

.console-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 84% -8%, rgba(217, 119, 6, 0.22), transparent 42%);
  pointer-events: none;
}

.console-card:hover {
  transform: rotateX(0deg) rotateY(-1deg) translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 24px 48px rgba(3, 5, 12, 0.52), 0 0 32px rgba(92, 124, 255, 0.16);
}

.console-hero-metric {
  position: relative;
  margin: 0.68rem 0;
  padding: 0.95rem;
  border-radius: 14px;
  background: linear-gradient(150deg, rgba(64, 43, 29, 0.84), rgba(32, 22, 15, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.console-hero-metric small {
  display: block;
  color: var(--faint);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.console-hero-metric strong {
  display: block;
  margin: 0.3rem 0 0.2rem;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.console-hero-metric p {
  max-width: 390px;
  margin: 0;
  color: rgba(245, 224, 203, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.flow-rail {
  display: grid;
  gap: 0.46rem;
}

.flow-rail div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.7rem;
  padding: 0.66rem 0.72rem;
  border-radius: 12px;
  background: linear-gradient(170deg, rgba(12, 11, 10, 0.95), rgba(6, 6, 6, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border-color 0.2s, background 0.2s, box-shadow 0.2s ease;
}

.flow-rail span {
  grid-row: span 2;
  color: #f4bb73;
  font-weight: 500;
  font-size: 12px;
}

.flow-rail b,
.report-stack b {
  letter-spacing: -0.01em;
  font-weight: 500;
}

.flow-rail em,
.report-stack em {
  color: rgba(214, 201, 186, 0.74);
  font-style: normal;
  font-size: 12px;
  line-height: 1.35;
}

.report-stack {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.54rem;
}

.report-stack article {
  min-height: 92px;
  padding: 0.66rem;
  border-radius: 12px;
  background: linear-gradient(165deg, rgba(16, 13, 11, 0.94), rgba(10, 9, 8, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.09);
  transition: transform 0.2s ease, border-color 0.2s, background 0.2s, box-shadow 0.2s ease;
}

.report-stack article:last-child {
  background: linear-gradient(155deg, rgba(110, 71, 35, 0.82), rgba(61, 39, 21, 0.9));
  border-color: rgba(245, 185, 105, 0.45);
}

.report-stack small {
  display: block;
  color: #efb469;
  margin-bottom: 0.45rem;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.report-stack b,
.report-stack em {
  display: block;
}

.flow-rail div:hover,
.report-stack article:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 12px 24px rgba(3, 5, 12, 0.5);
}

.section {
  position: relative;
  padding: 6rem 0;
}

.section::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 8%;
  height: 62%;
  background: radial-gradient(70% 100% at 50% 42%, rgba(134, 75, 30, 0.14), transparent 74%);
  filter: blur(12px);
  pointer-events: none;
  z-index: 0;
}

.section-deep {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(20, 14, 9, 0.55);
}

.section-muted {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.section-intro {
  max-width: 720px;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.card-grid {
  display: grid;
  gap: 0.9rem;
  margin-top: 2rem;
}

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

.card,
.process-step,
.fit-panel,
.proof-note,
.stat-card,
.booking-card {
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(30, 35, 56, 0.8), rgba(16, 19, 32, 0.82));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.11), 0 18px 34px rgba(3, 5, 12, 0.42);
  transition: opacity 0.2s, color 0.2s, border-color 0.2s, background 0.2s, transform 0.2s ease, box-shadow 0.2s ease;
}

.card:nth-child(2n) {
  background:
    linear-gradient(152deg, rgba(29, 34, 58, 0.88), rgba(17, 19, 33, 0.86)),
    radial-gradient(circle at 8% 0%, rgba(92, 124, 255, 0.15), transparent 36%);
}

.card:nth-child(3n) {
  background:
    linear-gradient(152deg, rgba(31, 36, 58, 0.86), rgba(18, 20, 35, 0.86)),
    radial-gradient(circle at 84% 10%, rgba(251, 113, 133, 0.12), transparent 42%);
}

.card:hover,
.process-step:hover,
.fit-panel:hover,
.proof-note:hover {
  transform: translateY(-6px) scale(1.01);
  background: linear-gradient(166deg, rgba(40, 47, 72, 0.9), rgba(18, 23, 39, 0.88));
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 24px 40px rgba(3, 5, 12, 0.54), 0 0 24px rgba(58, 203, 255, 0.15);
}

.card {
  min-height: 220px;
  padding: 1.2rem;
}

.card-mark {
  display: block;
  margin-bottom: 2rem;
  color: #f6bb6d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
}

.card h3 {
  font-size: 15px;
  line-height: 1.35;
  font-weight: 500;
  margin-bottom: 0.7rem;
}

.card p,
.process-step p,
.fit-panel li,
.proof-note p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.card p {
  margin: 0;
}

.process-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 2rem;
}

.process-step {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  padding: 1.1rem;
}

.process-step span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(217, 119, 6, 0.4);
  border-radius: 50%;
  color: #f4bb73;
  background: linear-gradient(150deg, rgba(64, 43, 29, 0.84), rgba(32, 22, 15, 0.88));
  font-weight: 500;
}

.process-step h3 {
  font-size: 15px;
  font-weight: 500;
}

.process-step p {
  margin: 0.45rem 0 0;
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 1.5rem;
  align-items: stretch;
}

.stat-card {
  padding: 1.25rem;
  border-color: rgba(217, 119, 6, 0.45);
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 119, 6, 0.2), transparent 42%),
    linear-gradient(164deg, rgba(26, 20, 14, 0.92), rgba(10, 8, 7, 0.96));
}

.stat-card p {
  margin: 0;
  color: #efb469;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.stat-card strong {
  display: block;
  margin: 1.6rem 0 0.7rem;
  color: var(--text);
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.proof-note {
  margin-top: 1rem;
  padding: 1.2rem;
}

.proof-note h3 {
  font-size: 15px;
  font-weight: 500;
}

.proof-note p {
  margin: 0.45rem 0 0;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}

.fit-panel {
  padding: 1.25rem;
}

.fit-panel h3 {
  font-size: 15px;
  font-weight: 500;
}

.fit-panel ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.fit-panel li + li {
  margin-top: 0.72rem;
}

.fit-panel li::marker {
  color: var(--accent-soft);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 2rem;
  align-items: center;
}

.cta-copy p:not(.section-kicker):not(.cta-note) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-copy .btn {
  margin-top: 0.5rem;
}

.booking-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(1.3rem, 3vw, 2rem);
  border-color: rgba(217, 119, 6, 0.45);
  background:
    radial-gradient(circle at 84% -8%, rgba(217, 119, 6, 0.22), transparent 42%),
    linear-gradient(164deg, rgba(26, 20, 14, 0.92), rgba(10, 8, 7, 0.96));
}

.booking-card span {
  color: #f6bb6d;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.booking-card strong {
  margin-top: 0.7rem;
  font-size: 1.7rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.booking-card p {
  margin: 0.75rem 0 1.4rem;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 2, 2, 0.7);
}

.footer-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--faint);
  font-size: 0.92rem;
}

.footer-inner a {
  color: var(--muted);
}

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

.reveal {
  opacity: 1;
  transform: translateY(0);
}

html.js-enabled .reveal {
  opacity: 0.72;
  transform: translateY(12px);
  transition: opacity 0.62s ease, transform 0.62s ease;
}

html.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatPanel {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}

@keyframes ambientDrift {
  from { transform: translate3d(0, 0, 0) scale(0.98); }
  to { transform: translate3d(-16px, 14px, 0) scale(1.03); }
}

@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;
  }

  html.js-enabled .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    padding: 4.5rem 0;
  }

  .hero-panel {
    min-height: auto;
  }

  .console-card {
    transform: none;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 0.75rem;
    background: rgba(8, 10, 17, 0.97);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-links .nav-cta {
    min-height: 42px;
    display: flex;
    align-items: center;
  }

  .nav-links a::after {
    display: none;
  }

  .section {
    padding: 4.5rem 0;
  }

  .card-grid.three,
  .proof-layout,
  .fit-grid,
  .cta-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .hero-actions,
  .btn {
    width: 100%;
  }

  .btn {
    text-align: center;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 3.4rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .process-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0.75rem;
  }

  .process-step span {
    width: 36px;
    height: 36px;
  }

  .report-stack {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 1.2rem 0;
  }
}
