:root {
  --black: #000000;
  --ink: #03050a;
  --navy: #132040;
  --navy-2: #0b142b;
  --orange: #fca313;
  --orange-soft: rgba(252, 163, 19, 0.12);
  --gray: #e5e5e5;
  --white: #ffffff;
  --muted: rgba(229, 229, 229, 0.66);
  --faint: rgba(229, 229, 229, 0.42);
  --line: rgba(229, 229, 229, 0.14);
  --line-warm: rgba(252, 163, 19, 0.22);
  --surface: rgba(19, 32, 64, 0.42);
  --max: 1240px;
  --header-height: 76px;
  --radius: 18px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(19, 32, 64, 0.24), transparent 30%),
    var(--black);
  color: var(--gray);
  font-family: Inter, Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", system-ui, -apple-system, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3,
h4 {
  margin-bottom: 0;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

strong {
  color: var(--orange);
  font-weight: 760;
}

::selection {
  background: var(--orange);
  color: var(--black);
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--black);
  font-size: 13px;
  font-weight: 850;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  padding: 18px 26px;
  transition: padding 260ms ease;
}

.site-header.is-scrolled {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  width: min(100%, 1180px);
  min-height: 58px;
  margin: 0 auto;
  padding: 8px 10px 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(3, 5, 10, 0.66);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px) saturate(130%);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

.is-scrolled .nav-shell {
  border-color: rgba(252, 163, 19, 0.16);
  background: rgba(3, 5, 10, 0.9);
  box-shadow: 0 14px 52px rgba(0, 0, 0, 0.42);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-symbol {
  display: inline-flex;
  gap: 3px;
  align-items: end;
  width: 26px;
  height: 26px;
  padding: 5px;
  border-radius: 7px;
  background: var(--orange);
}

.brand-symbol i {
  display: block;
  width: 4px;
  border-radius: 99px;
  background: var(--navy);
}

.brand-symbol i:nth-child(1) {
  height: 8px;
}

.brand-symbol i:nth-child(2) {
  height: 15px;
}

.brand-symbol i:nth-child(3) {
  height: 11px;
}

.brand-word {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.brand-word b {
  color: var(--white);
  font-weight: 900;
}

.main-nav {
  display: flex;
  gap: clamp(18px, 2.6vw, 36px);
  align-items: center;
  justify-content: center;
}

.main-nav a {
  position: relative;
  padding: 9px 0;
  color: rgba(255, 255, 255, 0.61);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 180ms ease;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 850;
  transition: background 180ms ease, transform 180ms ease;
}

.header-cta:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 1.5px;
  margin: 5px auto;
  background: var(--black);
  transition: transform 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: max(780px, 100svh);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(252, 163, 19, 0.17), transparent 34%),
    radial-gradient(circle at 72% 14%, rgba(19, 32, 64, 0.72), transparent 30%),
    linear-gradient(180deg, #020308 0%, #050816 62%, #000000 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 72%, transparent);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 14%, transparent 86%, rgba(0, 0, 0, 0.22));
  content: "";
}

.hero-stars,
.closing-stars {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.66;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.86) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(252, 163, 19, 0.75) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(255, 255, 255, 0.5) 0 1px, transparent 1.2px);
  background-position: 0 0, 40px 70px, 120px 20px;
  background-size: 137px 163px, 211px 197px, 173px 229px;
  mask-image: linear-gradient(to bottom, black, transparent 83%);
}

.hero-stars-b {
  opacity: 0.26;
  background-position: 50px 40px, 10px 0, 70px 120px;
  background-size: 293px 257px, 347px 301px, 317px 283px;
  animation: star-drift 28s linear infinite;
}

.hero-grid {
  position: absolute;
  right: -12%;
  bottom: -34%;
  left: -12%;
  z-index: -1;
  height: 68%;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(252, 163, 19, 0.19) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 163, 19, 0.19) 1px, transparent 1px);
  background-size: 66px 42px;
  transform: perspective(400px) rotateX(58deg);
  transform-origin: center top;
  mask-image: linear-gradient(to bottom, transparent 2%, black 38%, transparent 92%);
}

.hero-orbit {
  position: absolute;
  top: 43%;
  left: 50%;
  z-index: -2;
  width: min(1050px, 84vw);
  aspect-ratio: 1;
  border: 1px solid rgba(252, 163, 19, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(70deg);
}

.orbit-two {
  width: min(760px, 64vw);
  border-color: rgba(255, 255, 255, 0.08);
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(100%, 1080px);
  margin: 0 auto;
  padding: 162px 28px 265px;
  text-align: center;
}

.hero-kicker,
.eyebrow {
  color: var(--orange);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 15px;
  border: 1px solid rgba(252, 163, 19, 0.24);
  border-radius: 99px;
  background: rgba(252, 163, 19, 0.07);
}

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(252, 163, 19, 0.1), 0 0 14px var(--orange);
  animation: dot-pulse 2.2s ease-in-out infinite;
}

.hero h1 {
  max-width: 1020px;
  margin: 28px auto 0;
  font-size: clamp(58px, 7.4vw, 106px);
  font-weight: 710;
  line-height: 0.98;
  text-wrap: balance;
}

.hero h1 strong {
  display: block;
  margin-top: 10px;
  background: linear-gradient(90deg, #ffffff 5%, #fca313 43%, #ffd37f 66%, #ffffff 96%);
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 680px;
  margin: 32px auto 0;
  color: rgba(229, 229, 229, 0.7);
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.85;
  letter-spacing: -0.015em;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-light {
  background: var(--white);
  color: var(--black);
}

.button-light:hover {
  background: var(--orange);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.19);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: rgba(252, 163, 19, 0.46);
  background: rgba(252, 163, 19, 0.08);
}

.hero-note {
  margin: 16px 0 0;
  color: rgba(229, 229, 229, 0.38);
  font-size: 10px;
  letter-spacing: 0.04em;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(100%, 800px);
  margin: 56px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-facts div {
  padding: 17px 12px 18px;
}

.hero-facts div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-facts dt {
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.hero-facts dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.73);
  font-size: 11px;
  font-weight: 680;
}

.signal-rail {
  position: relative;
  z-index: 8;
  overflow: hidden;
  border-top: 1px solid rgba(252, 163, 19, 0.22);
  border-bottom: 1px solid rgba(252, 163, 19, 0.16);
  background: var(--orange);
  color: var(--navy);
}

.signal-track {
  display: flex;
  gap: 28px;
  align-items: center;
  width: max-content;
  min-height: 54px;
  padding: 0 20px;
  animation: rail 32s linear infinite;
}

.signal-track span {
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.15em;
}

.signal-track i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--navy);
}

.section {
  width: min(100%, calc(var(--max) + 56px));
  margin: 0 auto;
  padding: 148px 28px;
  scroll-margin-top: var(--header-height);
}

.section-heading {
  margin-bottom: 66px;
}

.section-heading h2,
.faq-intro h2,
.closing-content h2 {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 650;
  text-wrap: balance;
}

.section-heading h2 strong,
.faq-intro h2 strong,
.closing-content h2 strong {
  display: block;
  margin-top: 6px;
}

.section-heading > p:not(.eyebrow),
.faq-intro > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.86;
}

.centered {
  text-align: center;
}

.centered > p:not(.eyebrow) {
  margin: 25px auto 0;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: 76px;
  align-items: end;
}

.split-heading > p {
  margin-bottom: 5px !important;
}

.shift-section {
  padding-top: 164px;
}

.shift-stage {
  display: grid;
  grid-template-columns: 1fr 190px 1fr;
  align-items: center;
}

.shift-card {
  position: relative;
  min-height: 385px;
  padding: 38px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 62%),
    rgba(19, 32, 64, 0.2);
}

.shift-card::after {
  position: absolute;
  right: -110px;
  bottom: -110px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  content: "";
}

.shift-card-active {
  border-color: rgba(252, 163, 19, 0.3);
  background:
    radial-gradient(circle at 80% 86%, rgba(252, 163, 19, 0.17), transparent 35%),
    linear-gradient(145deg, rgba(19, 32, 64, 0.88), rgba(9, 15, 31, 0.8));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.26);
}

.card-index {
  color: var(--faint);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.shift-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-top: 70px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--faint);
  font-size: 28px;
}

.shift-card-active .shift-icon {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--navy);
  box-shadow: 0 0 42px rgba(252, 163, 19, 0.22);
}

.card-label {
  margin: 30px 0 10px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.shift-card h3 {
  font-size: 30px;
}

.shift-card > p:last-child {
  max-width: 360px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.76;
}

.shift-bridge {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  color: var(--orange);
  font-size: 9px;
  letter-spacing: 0.12em;
}

.shift-bridge span {
  width: 1px;
  height: 54px;
  background: linear-gradient(transparent, var(--orange), transparent);
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.decision-card {
  min-height: 205px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.decision-card > span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.decision-card h3 {
  margin-top: 46px;
  font-size: 18px;
}

.decision-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.diagnostic-section {
  position: relative;
  overflow: hidden;
  scroll-margin-top: var(--header-height);
  border-top: 1px solid var(--line-warm);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 34%, rgba(252, 163, 19, 0.12), transparent 26%),
    linear-gradient(180deg, #071026, #02050d 60%, var(--black));
}

.diagnostic-section::before {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(252, 163, 19, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(252, 163, 19, 0.1) 1px, transparent 1px);
  background-size: 74px 74px;
  content: "";
  mask-image: radial-gradient(circle at center, black, transparent 62%);
}

.diagnostic-atmosphere {
  position: absolute;
  top: 132px;
  left: 50%;
  width: 680px;
  height: 680px;
  opacity: 0.5;
  transform: translateX(-50%);
}

.scan-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(252, 163, 19, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.ring-a {
  width: 100%;
  height: 100%;
  animation: rotate 34s linear infinite;
}

.ring-b {
  width: 72%;
  height: 72%;
  border-style: dashed;
  animation: rotate-reverse 24s linear infinite;
}

.ring-c {
  width: 40%;
  height: 40%;
}

.scan-core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(252, 163, 19, 0.22);
  box-shadow: 0 0 100px rgba(252, 163, 19, 0.5);
  transform: translate(-50%, -50%);
  filter: blur(10px);
}

.diagnostic-inner {
  position: relative;
  z-index: 2;
}

.diagnostic-heading {
  margin-bottom: 42px;
}

.diagnostic-form {
  width: min(100%, 890px);
  margin: 0 auto;
}

.diagnostic-form > label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.diagnostic-input-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 15px;
  align-items: center;
  min-height: 74px;
  padding: 8px 9px 8px 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  box-shadow: 0 20px 72px rgba(0, 0, 0, 0.42), inset 0 0 0 1px rgba(252, 163, 19, 0.03);
  backdrop-filter: blur(16px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.diagnostic-input-row:focus-within {
  border-color: rgba(252, 163, 19, 0.75);
  box-shadow: 0 20px 72px rgba(0, 0, 0, 0.42), 0 0 0 4px rgba(252, 163, 19, 0.08);
}

.input-icon {
  color: var(--orange);
  font-size: 22px;
}

.diagnostic-input-row input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 16px;
}

.diagnostic-input-row input::placeholder {
  color: rgba(229, 229, 229, 0.34);
}

.diagnostic-input-row button {
  min-height: 56px;
  padding: 0 23px;
  border: 0;
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.diagnostic-input-row button:hover {
  background: var(--orange);
  transform: translateY(-1px);
}

.form-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 22px 0;
}

.form-meta p,
.form-status {
  margin: 0;
  color: var(--faint);
  font-size: 10px;
}

.preview-badge {
  padding: 5px 9px;
  border: 1px solid rgba(252, 163, 19, 0.22);
  border-radius: 99px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
}

.form-status {
  min-height: 18px;
  padding: 8px 22px 0;
  color: var(--orange);
}

.form-status.is-error {
  color: #ff9a8e;
}

.diagnostic-preview {
  width: min(100%, 1080px);
  margin: 60px auto 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(5, 9, 20, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  color: var(--faint);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.preview-topbar > div {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
}

.preview-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  min-height: 420px;
}

.preview-summary {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.preview-summary > p:first-child,
.preview-cards article span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.radar {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 28px 0;
  border: 1px solid rgba(252, 163, 19, 0.35);
  border-radius: 50%;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(252, 163, 19, 0.14) 50%, transparent 50.5%),
    linear-gradient(transparent 49.5%, rgba(252, 163, 19, 0.14) 50%, transparent 50.5%),
    radial-gradient(circle, transparent 0 20%, rgba(252, 163, 19, 0.18) 20.5% 21%, transparent 21.5% 40%, rgba(252, 163, 19, 0.18) 40.5% 41%, transparent 41.5% 60%, rgba(252, 163, 19, 0.18) 60.5% 61%, transparent 61.5%),
    rgba(252, 163, 19, 0.025);
  box-shadow: inset 0 0 24px rgba(252, 163, 19, 0.04), 0 0 28px rgba(252, 163, 19, 0.06);
}

.radar::before {
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: conic-gradient(from -48deg, transparent 0 76%, rgba(252, 163, 19, 0.02) 80%, rgba(252, 163, 19, 0.36) 98%, transparent 100%);
  content: "";
  animation: radar-sweep 3.2s linear infinite;
  will-change: transform;
}

.radar::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 7px;
  height: 7px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  background: #091022;
  box-shadow: 0 0 10px rgba(252, 163, 19, 0.5);
  content: "";
  transform: translate(-50%, -50%);
}

.radar span {
  position: absolute;
  z-index: 4;
  width: 6px;
  height: 6px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 6px var(--orange), 0 0 18px rgba(252, 163, 19, 0.72);
  opacity: 0;
  animation: radar-blip 3.2s ease-out infinite;
}

.radar span:nth-child(1) {
  top: 27%;
  left: 31%;
  animation-delay: -0.2s;
}

.radar span:nth-child(2) {
  top: 46%;
  right: 18%;
  animation-delay: -1.25s;
}

.radar span:nth-child(3) {
  bottom: 20%;
  left: 44%;
  animation-delay: -2.25s;
}

.preview-summary h3 {
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: -0.03em;
}

.preview-caption {
  margin: 13px 0 0;
  color: var(--faint);
  font-size: 10px;
}

.preview-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.preview-cards article {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), transparent);
}

.preview-cards article:nth-child(2n) {
  border-right: 0;
}

.preview-cards article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.preview-cards h4 {
  margin-top: 38px;
  font-size: 16px;
}

.preview-cards p {
  margin: 10px 0 0;
  color: var(--faint);
  font-size: 11px;
}

.problem-section {
  padding-bottom: 168px;
}

.problem-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.problem-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
  transition: background 240ms ease, transform 240ms ease;
}

.problem-card:hover {
  z-index: 2;
  background: var(--navy);
  transform: translateY(-5px);
}

.problem-card > span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.problem-card h3 {
  margin-top: 126px;
  font-size: 19px;
}

.problem-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.system-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(252, 163, 19, 0.1), transparent 36%),
    var(--navy-2);
  background-size: 72px 72px, 72px 72px, auto, auto;
}

.system-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.system-step {
  min-height: 430px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.14);
}

.step-visual {
  position: relative;
  height: 168px;
  margin-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.step-number {
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.system-step h3 {
  margin-top: 18px;
  font-size: 18px;
}

.system-step > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.74;
}

.step-scan::before,
.step-loop::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(252, 163, 19, 0.42);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.step-scan span,
.step-loop span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  border: 1px dashed rgba(252, 163, 19, 0.38);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: rotate 9s linear infinite;
}

.step-scan i,
.step-loop i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 22px var(--orange);
  transform: translate(-50%, -50%);
}

.step-map span {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  background: var(--navy-2);
}

.step-map span:nth-child(1) {
  top: 30px;
  left: 22%;
}

.step-map span:nth-child(2) {
  top: 96px;
  left: 46%;
}

.step-map span:nth-child(3) {
  top: 49px;
  left: 73%;
}

.step-map::before,
.step-map::after {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  content: "";
  transform-origin: left;
}

.step-map::before {
  top: 50px;
  left: 27%;
  width: 39%;
  transform: rotate(28deg);
}

.step-map::after {
  top: 103px;
  left: 51%;
  width: 30%;
  transform: rotate(-27deg);
}

.step-build span {
  position: absolute;
  right: 15%;
  left: 15%;
  height: 28px;
  border: 1px solid rgba(252, 163, 19, 0.34);
  background: rgba(252, 163, 19, 0.05);
}

.step-build span:nth-child(1) {
  bottom: 29px;
}

.step-build span:nth-child(2) {
  right: 24%;
  bottom: 61px;
  left: 24%;
}

.step-build span:nth-child(3) {
  right: 34%;
  bottom: 93px;
  left: 34%;
  background: var(--orange);
}

.dashboard-section {
  padding-top: 168px;
  padding-bottom: 168px;
}

.dashboard-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: #070b15;
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.5), 0 0 0 12px rgba(255, 255, 255, 0.015);
}

.dashboard-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.dashboard-brand {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.11em;
}

.brand-symbol-small {
  width: 22px;
  height: 22px;
  padding: 4px;
}

.brand-symbol-small i {
  width: 3px;
}

.dashboard-meta {
  display: flex;
  gap: 20px;
  color: var(--faint);
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.status-online {
  color: var(--orange);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 600px;
}

.dashboard-sidebar {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 28px 16px;
  border-right: 1px solid var(--line);
  background: rgba(19, 32, 64, 0.22);
}

.dashboard-sidebar b {
  margin: 0 11px 13px;
  color: var(--faint);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.dashboard-sidebar span {
  padding: 11px 12px;
  border-radius: 7px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
  font-weight: 650;
}

.dashboard-sidebar .active {
  background: rgba(252, 163, 19, 0.1);
  color: var(--orange);
}

.dashboard-main {
  min-width: 0;
  padding: 30px;
}

.dashboard-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.dashboard-title span,
.chart-head > div span,
.question-panel > span {
  color: var(--orange);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.dashboard-title h3 {
  margin-top: 8px;
  font-size: 24px;
}

.dashboard-title button {
  min-height: 36px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: transparent;
  color: var(--faint);
  font-size: 8px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.metric-grid article,
.trend-chart,
.question-panel {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.018);
}

.metric-grid article {
  display: grid;
  min-height: 135px;
  align-content: space-between;
  padding: 18px;
}

.metric-grid span {
  color: var(--faint);
  font-size: 9px;
}

.metric-grid strong {
  font-size: 18px;
}

.metric-grid small {
  color: rgba(229, 229, 229, 0.3);
  font-size: 8px;
}

.chart-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 12px;
  margin-top: 12px;
}

.trend-chart,
.question-panel {
  min-height: 300px;
  padding: 20px;
}

.chart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
}

.chart-head h4,
.question-panel h4 {
  margin-top: 8px;
  font-size: 14px;
}

.chart-head > span {
  color: var(--faint);
  font-size: 8px;
}

.chart-area {
  position: relative;
  height: 172px;
  margin-top: 28px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 100% 42px;
}

.chart-line {
  position: absolute;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange) 20%, #ffd27d 48%, var(--orange) 72%, transparent);
  filter: drop-shadow(0 0 6px rgba(252, 163, 19, 0.55));
  clip-path: polygon(0 82%, 17% 66%, 30% 72%, 48% 36%, 62% 52%, 80% 20%, 100% 7%, 100% 20%, 80% 33%, 62% 65%, 48% 49%, 30% 85%, 17% 79%, 0 95%);
}

.line-one {
  top: 10px;
  height: 150px;
  background: linear-gradient(90deg, transparent, var(--orange), #ffd27d);
}

.line-two {
  top: 40px;
  height: 112px;
  opacity: 0.3;
  background: linear-gradient(90deg, transparent, #8aa5e9, transparent);
  transform: scaleY(-1);
}

.chart-dot {
  position: absolute;
  z-index: 2;
  width: 7px;
  height: 7px;
  border: 2px solid var(--black);
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 2px var(--orange), 0 0 12px var(--orange);
}

.dot-one { top: 107px; left: 28%; }
.dot-two { top: 64px; left: 61%; }
.dot-three { top: 29px; left: 82%; }

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: rgba(229, 229, 229, 0.28);
  font-size: 7px;
}

.question-panel ul {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.question-panel li {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  gap: 9px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
  line-height: 1.45;
}

.question-panel li i {
  color: var(--orange);
  font-size: 8px;
  font-style: normal;
}

.question-panel li b {
  color: var(--faint);
  font-size: 7px;
}

.sample-disclaimer {
  margin: 24px 0 0;
  color: var(--faint);
  font-size: 10px;
  text-align: center;
}

.capabilities-section {
  border-top: 1px solid var(--line);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.bento-card {
  position: relative;
  min-height: 330px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 58%),
    rgba(19, 32, 64, 0.18);
  transition: border-color 220ms ease, transform 220ms ease;
}

.bento-card:hover {
  border-color: rgba(252, 163, 19, 0.32);
  transform: translateY(-4px);
}

.bento-wide {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
}

.bento-card > span,
.bento-copy > span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.bento-card h3 {
  margin-top: 80px;
  font-size: 24px;
}

.bento-copy h3 {
  margin-top: 80px;
}

.bento-card p {
  max-width: 440px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.question-orbit {
  position: relative;
  min-height: 270px;
}

.question-orbit::before,
.question-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(252, 163, 19, 0.2);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.question-orbit::before {
  width: 245px;
  height: 245px;
}

.question-orbit::after {
  width: 150px;
  height: 150px;
}

.question-orbit span {
  position: absolute;
  z-index: 1;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: #0b1120;
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
}

.question-orbit span:nth-child(1) { top: 10%; left: 45%; }
.question-orbit span:nth-child(2) { top: 42%; right: 3%; }
.question-orbit span:nth-child(3) { bottom: 8%; left: 40%; }
.question-orbit span:nth-child(4) { top: 46%; left: 1%; }

.question-orbit i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 44px rgba(252, 163, 19, 0.55);
  transform: translate(-50%, -50%);
}

.content-lines {
  display: grid;
  gap: 10px;
  margin-top: 52px;
}

.content-lines i {
  height: 5px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--orange), rgba(252, 163, 19, 0.07));
}

.content-lines i:nth-child(2) { width: 76%; }
.content-lines i:nth-child(3) { width: 92%; }
.content-lines i:nth-child(4) { width: 55%; }

.source-nodes {
  position: relative;
  height: 104px;
  margin-top: 36px;
}

.source-nodes i {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: var(--navy-2);
}

.source-nodes i:nth-child(1) { top: 12%; left: 8%; }
.source-nodes i:nth-child(2) { top: 68%; left: 21%; }
.source-nodes i:nth-child(3) { top: 16%; right: 18%; }
.source-nodes i:nth-child(4) { right: 4%; bottom: 4%; }

.source-nodes::before,
.source-nodes::after {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(252, 163, 19, 0.6), transparent);
  content: "";
}

.source-nodes::after {
  transform: rotate(-22deg);
}

.source-nodes b {
  position: absolute;
  top: 42%;
  left: 49%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 28px rgba(252, 163, 19, 0.5);
}

.bento-accent {
  background: var(--orange);
  color: var(--navy);
}

.bento-accent > span,
.bento-accent h3,
.bento-accent p {
  color: var(--navy);
}

.action-list {
  display: grid;
  gap: 8px;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.action-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-top: 1px solid rgba(19, 32, 64, 0.28);
  font-size: 10px;
}

.action-list b {
  font-size: 8px;
  letter-spacing: 0.1em;
}

.question-intent-section {
  padding-top: 168px;
  border-top: 1px solid var(--line);
}

.question-intent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.question-intent-card {
  position: relative;
  min-height: 230px;
  padding: 30px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 92% 88%, rgba(252, 163, 19, 0.07), transparent 28%),
    rgba(19, 32, 64, 0.12);
  transition: background 220ms ease, transform 220ms ease;
}

.question-intent-card:hover {
  z-index: 1;
  background:
    radial-gradient(circle at 92% 88%, rgba(252, 163, 19, 0.15), transparent 32%),
    rgba(19, 32, 64, 0.38);
  transform: translateY(-3px);
}

.question-intent-card > span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.question-intent-card h3 {
  margin-top: 58px;
  font-size: 21px;
  line-height: 1.3;
}

.question-intent-card p {
  max-width: 480px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.78;
}

.coverage-section {
  border-top: 1px solid rgba(252, 163, 19, 0.2);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 10%, rgba(252, 163, 19, 0.12), transparent 30%),
    linear-gradient(160deg, #142143, #080d1c 45%, #020409 100%);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.coverage-card {
  min-height: 290px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.1);
  transition: background 220ms ease, transform 220ms ease;
}

.coverage-card:hover {
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
  transform: translateY(-4px);
}

.coverage-card > span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.coverage-card > small {
  display: block;
  margin-top: 20px;
  color: rgba(229, 229, 229, 0.34);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.6;
}

.coverage-card h3 {
  margin-top: 46px;
  font-size: 19px;
}

.coverage-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.82;
}

.industry-section {
  padding-top: 168px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.industry-card {
  position: relative;
  min-height: 330px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 90% 90%, rgba(252, 163, 19, 0.1), transparent 26%),
    rgba(19, 32, 64, 0.18);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.industry-card::after {
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(252, 163, 19, 0.12);
  border-radius: 50%;
  content: "";
}

.industry-card:hover {
  border-color: rgba(252, 163, 19, 0.38);
  background: var(--navy);
  transform: translateY(-4px);
}

.industry-card > span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.industry-card > p:first-of-type {
  margin: 88px 0 12px;
  color: var(--orange);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

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

.industry-card > p:last-of-type {
  max-width: 460px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.industry-card > i {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--orange);
  font-style: normal;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) 1.28fr;
  gap: 110px;
  padding-top: 168px;
  padding-bottom: 168px;
}

.faq-intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.faq-intro > p:not(.eyebrow) {
  margin-top: 25px;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 40px 1fr 28px;
  gap: 12px;
  align-items: center;
  min-height: 92px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
  font-weight: 760;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--faint);
  font-size: 9px;
}

.faq-list summary i {
  color: var(--orange);
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  text-align: right;
  transition: transform 180ms ease;
}

.faq-list details[open] summary i {
  transform: rotate(45deg);
}

.faq-list details > p {
  margin: -5px 30px 32px 52px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.closing-section {
  position: relative;
  display: grid;
  min-height: 800px;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 110%, rgba(252, 163, 19, 0.28), transparent 38%),
    linear-gradient(180deg, #03050a, #0c1731 72%, #000000);
}

.closing-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(920px, 76vw);
  aspect-ratio: 1;
  border: 1px solid rgba(252, 163, 19, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(68deg);
}

.closing-content {
  position: relative;
  z-index: 2;
  width: min(100%, 920px);
  padding: 100px 28px 210px;
  text-align: center;
}

.closing-content > p:not(.eyebrow) {
  max-width: 600px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.82;
}

.closing-content .button {
  margin-top: 36px;
}

.site-footer {
  padding: 66px max(28px, calc((100vw - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: var(--black);
}

.footer-main {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
}

.footer-brand {
  font-size: 16px;
}

.footer-main > div:first-child > p {
  margin: 13px 0 0;
  color: var(--faint);
  font-size: 11px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 720;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: rgba(229, 229, 229, 0.3);
  font-size: 9px;
}

.footer-bottom p {
  margin: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes star-drift {
  to { transform: translate3d(-70px, 42px, 0); }
}

@keyframes dot-pulse {
  0%, 100% { opacity: 0.5; transform: scale(0.86); }
  50% { opacity: 1; transform: scale(1); }
}

@keyframes rail {
  to { transform: translateX(-50%); }
}

@keyframes rotate {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes rotate-reverse {
  to { transform: translate(-50%, -50%) rotate(-360deg); }
}

@keyframes radar-sweep {
  to { transform: rotate(360deg); }
}

@keyframes radar-blip {
  0%, 13%, 100% {
    opacity: 0;
    transform: scale(0.5);
  }
  18% {
    opacity: 1;
    transform: scale(1);
  }
  31% {
    opacity: 0.78;
    transform: scale(1.1);
  }
  48% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .shift-stage {
    grid-template-columns: 1fr 100px 1fr;
  }

  .problem-map,
  .system-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-card h3,
  .bento-copy h3 {
    margin-top: 58px;
  }

  .coverage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-section {
    gap: 70px;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav-shell {
    grid-template-columns: auto 1fr auto;
    padding-right: 8px;
  }

  .main-nav {
    position: fixed;
    top: 86px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: rgba(3, 5, 10, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(20px);
  }

  .nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    min-height: 50px;
    padding: 15px 12px;
    border-bottom: 1px solid var(--line);
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

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

  .header-cta {
    justify-self: end;
    margin-right: 50px;
  }

  .nav-toggle {
    position: absolute;
    right: 8px;
    display: block;
  }

  .hero-content {
    padding-bottom: 240px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .shift-stage {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .shift-bridge {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .shift-bridge span {
    width: auto;
    height: 1px;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar {
    display: none;
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-wide {
    grid-column: span 2;
  }

  .bento-accent {
    grid-column: span 1;
  }

  .faq-section {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .faq-intro {
    position: static;
    max-width: 620px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 68px;
  }

  body {
    word-break: keep-all;
  }

  .site-header,
  .site-header.is-scrolled {
    padding: 9px 10px;
  }

  .nav-shell {
    min-height: 52px;
    padding-left: 14px;
  }

  .brand-symbol {
    width: 24px;
    height: 24px;
  }

  .brand-word {
    font-size: 10px;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .main-nav {
    top: 72px;
    right: 10px;
    left: 10px;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    padding: 126px 20px 220px;
  }

  .hero h1 {
    margin-top: 24px;
    font-size: clamp(48px, 15vw, 69px);
    line-height: 1.02;
  }

  .hero h1 strong {
    margin-top: 7px;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 14px;
    line-height: 1.75;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 38px;
  }

  .hero-facts div:nth-child(3) {
    border-left: 0;
  }

  .hero-facts div:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .section {
    padding: 104px 20px;
  }

  .section-heading {
    margin-bottom: 43px;
  }

  .section-heading h2,
  .faq-intro h2,
  .closing-content h2 {
    font-size: clamp(38px, 11.2vw, 52px);
  }

  .section-heading > p:not(.eyebrow),
  .faq-intro > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.75;
  }

  .shift-card {
    min-height: 330px;
    padding: 28px;
  }

  .shift-icon {
    margin-top: 54px;
  }

  .decision-grid {
    grid-template-columns: 1fr;
  }

  .decision-card {
    min-height: 185px;
  }

  .decision-card h3 {
    margin-top: 38px;
  }

  .diagnostic-atmosphere {
    width: 440px;
    height: 440px;
  }

  .diagnostic-input-row {
    grid-template-columns: auto 1fr;
    min-height: 64px;
    padding: 7px 16px;
    border-radius: 18px;
  }

  .diagnostic-input-row button {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 2px;
  }

  .form-meta {
    align-items: start;
    padding-right: 4px;
    padding-left: 4px;
  }

  .form-status {
    padding-right: 4px;
    padding-left: 4px;
  }

  .diagnostic-preview {
    margin-top: 48px;
    border-radius: 14px;
  }

  .preview-topbar > span {
    display: none;
  }

  .preview-layout {
    grid-template-columns: 1fr;
  }

  .preview-summary {
    min-height: 330px;
    padding: 32px 22px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .preview-cards {
    grid-template-columns: 1fr;
  }

  .preview-cards article {
    min-height: 150px;
    border-right: 0;
    border-bottom: 1px solid var(--line) !important;
  }

  .preview-cards article:last-child {
    border-bottom: 0 !important;
  }

  .preview-cards h4 {
    margin-top: 28px;
  }

  .problem-map,
  .system-flow {
    grid-template-columns: 1fr;
  }

  .problem-card {
    min-height: 245px;
  }

  .problem-card h3 {
    margin-top: 80px;
  }

  .system-step {
    min-height: 390px;
  }

  .dashboard-section {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .dashboard-toolbar {
    padding: 0 14px;
  }

  .dashboard-meta span:first-child {
    display: none;
  }

  .dashboard-main {
    padding: 18px;
  }

  .dashboard-title {
    align-items: start;
  }

  .dashboard-title button {
    max-width: 105px;
  }

  .metric-grid,
  .chart-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid article {
    min-height: 118px;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-wide,
  .bento-accent {
    grid-column: span 1;
  }

  .bento-wide {
    grid-template-columns: 1fr;
  }

  .bento-card {
    min-height: 300px;
  }

  .bento-card h3,
  .bento-copy h3 {
    margin-top: 54px;
  }

  .question-orbit {
    min-height: 250px;
  }

  .coverage-grid,
  .question-intent-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .question-intent-card {
    min-height: 220px;
    padding: 28px;
  }

  .question-intent-card h3 {
    margin-top: 48px;
    font-size: 19px;
  }

  .coverage-card {
    min-height: 250px;
  }

  .coverage-card h3 {
    margin-top: 38px;
  }

  .industry-card {
    min-height: 300px;
    padding: 28px;
  }

  .industry-card > p:first-of-type {
    margin-top: 68px;
  }

  .faq-section {
    padding-top: 112px;
    padding-bottom: 112px;
  }

  .faq-list summary {
    grid-template-columns: 28px 1fr 20px;
    min-height: 82px;
    font-size: 13px;
  }

  .faq-list details > p {
    margin-right: 20px;
    margin-left: 40px;
    font-size: 12px;
  }

  .closing-section {
    min-height: 690px;
  }

  .closing-content {
    padding: 90px 20px 175px;
  }

  .closing-content > p:not(.eyebrow) {
    font-size: 14px;
  }

  .site-footer {
    padding: 52px 20px;
  }

  .footer-main,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    gap: 16px 22px;
  }

  .footer-bottom {
    gap: 10px;
  }
}

@media (max-width: 380px) {
  .hero-kicker {
    padding: 0 11px;
    font-size: 8px;
  }

  .hero h1 {
    font-size: 45px;
  }

  .hero-lead br {
    display: none;
  }

  .section,
  .hero-content,
  .closing-content {
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-heading h2,
  .faq-intro h2,
  .closing-content h2 {
    font-size: 37px;
  }

  .dashboard-title button {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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