:root {
  --bg: #25262a;
  --bg-deep: #1e1f22;
  --panel: #2c2d31;
  --panel-soft: #34353a;
  --card: #494a4f;
  --card-deep: #3e3f44;
  --yellow: #ffe14d;
  --yellow-soft: #f0d856;
  --gold: #927a00;
  --cream: #f5f1e8;
  --text: #d7d4cc;
  --muted: #a9a69e;
  --ink: #242321;
  --line: rgba(255, 255, 255, 0.11);
  --line-bright: rgba(255, 225, 77, 0.28);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shell: 1160px;
  --ease: cubic-bezier(0.2, 0.75, 0.25, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 225, 77, 0.055), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: "Raleway", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.72;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0.7;
  pointer-events: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-color: rgba(255, 225, 77, 0.55);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--yellow);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
}

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

h1,
h2,
h3 {
  font-family: "Comfortaa", ui-rounded, "Arial Rounded MT Bold", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
}

h1,
h2 {
  color: var(--yellow);
}

h1 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  font-size: clamp(2.35rem, 4.8vw, 3.35rem);
  line-height: 1.08;
}

h2 {
  margin-bottom: 1.2rem;
  font-size: clamp(2.05rem, 4.5vw, 2.85rem);
  line-height: 1.16;
}

h3 {
  margin-bottom: 0.65rem;
  color: var(--cream);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.28;
}

p:last-child {
  margin-bottom: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 0.65rem 1rem;
  transform: translateY(-160%);
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 700;
}

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

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.section-heading {
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}

.section-heading p,
.section-lede {
  color: var(--text);
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  line-height: 1.8;
}

.eyebrow,
.signal-label,
.offer-kicker,
.flagship-kicker {
  margin-bottom: 1.05rem;
  color: var(--yellow);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(620px, 100svh);
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(30, 31, 34, 0.88), rgba(37, 38, 42, 0.42)),
    radial-gradient(circle at 84% 22%, rgba(255, 225, 77, 0.13), transparent 27rem),
    var(--bg-deep);
}

.hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.72fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: center;
  padding-block: 4.5rem;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.signal-label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.signal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255, 225, 77, 0.45);
  animation: signal-pulse 2.4s ease-out infinite;
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 2rem;
  color: var(--cream);
  font-size: clamp(1.06rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.button-row.centered {
  justify-content: center;
  margin-top: 2.4rem;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms var(--ease),
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button::after {
  position: absolute;
  top: -25%;
  bottom: -25%;
  left: -35%;
  width: 18%;
  content: "";
  transform: skewX(-18deg);
  background: rgba(255, 255, 255, 0.42);
  filter: blur(4px);
  transition: left 550ms var(--ease);
}

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

.button:hover::after {
  left: 125%;
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
  box-shadow: 0 12px 38px rgba(255, 225, 77, 0.14);
}

.button-primary:hover {
  background: #ffea79;
  color: var(--ink);
}

.button-secondary {
  border-color: rgba(255, 225, 77, 0.48);
  background: rgba(255, 255, 255, 0.025);
  color: var(--yellow);
}

.button-secondary:hover {
  border-color: var(--yellow);
  background: rgba(255, 225, 77, 0.08);
}

.button-dark {
  margin-top: 0.5rem;
  background: var(--ink);
  color: var(--yellow);
}

.button-dark:hover {
  background: #0f1012;
  color: var(--yellow);
}

.hero-visual {
  width: min(100%, 360px);
  justify-self: end;
}

.image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 225, 77, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-image-frame {
  aspect-ratio: 0.83;
  background: #191a1d;
}

.hero-image-frame > img {
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}

.system-preview {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 0.9rem 1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 15px;
  background: rgba(26, 27, 30, 0.82);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(16px);
}

.preview-heading,
.preview-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.preview-heading {
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--yellow);
}

.live-mark i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
}

.preview-line {
  margin-top: 0.5rem;
  color: var(--cream);
  font-size: 0.72rem;
  line-height: 1.2;
}

.preview-line b {
  position: relative;
  width: 42%;
  height: 4px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.12);
}

.preview-line b i {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--level);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: inherit;
  background: var(--yellow);
  animation: trace-wake 1.25s 0.6s var(--ease) forwards;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 1.1rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: center;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue i {
  width: 1px;
  height: 24px;
  background: linear-gradient(var(--yellow), transparent);
  animation: scroll-cue 2s ease-in-out infinite;
}

.ambient {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.ambient-one {
  top: 9%;
  right: -8rem;
  width: 25rem;
  height: 25rem;
  border: 1px solid rgba(255, 225, 77, 0.09);
  animation: ambient-drift 15s ease-in-out infinite alternate;
}

.ambient-two {
  bottom: -10rem;
  left: 15%;
  width: 24rem;
  height: 24rem;
  background: rgba(255, 225, 77, 0.024);
  animation: ambient-drift 19s ease-in-out -3s infinite alternate-reverse;
}

.problem {
  background: var(--panel);
  text-align: center;
}

.problem .section-lede {
  max-width: 800px;
  margin-inline: auto;
}

.callout {
  max-width: 820px;
  margin: 3rem auto 0;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  border: 1px solid rgba(255, 225, 77, 0.34);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 225, 77, 0.14), transparent 72%),
    var(--gold);
  color: #fff9dd;
  font-size: clamp(1.08rem, 2.1vw, 1.28rem);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
  animation: callout-breathe 6s ease-in-out infinite;
}

.callout strong {
  color: #fff;
}

.attention {
  background: var(--bg);
}

.card-grid {
  display: grid;
  gap: 1rem;
}

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

.state-card {
  min-height: 250px;
  padding: 1.65rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  transition:
    transform 250ms var(--ease),
    border-color 250ms ease,
    background-color 250ms ease;
}

.state-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-bright);
}

.state-card.featured {
  border-color: rgba(255, 225, 77, 0.32);
  background:
    linear-gradient(160deg, rgba(255, 225, 77, 0.085), transparent 62%),
    var(--card-deep);
}

.card-index {
  display: block;
  margin-bottom: 3rem;
  color: var(--yellow);
  font-family: "Comfortaa", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
}

.state-card p {
  color: var(--text);
}

.centered-action {
  margin-top: 2.4rem;
  text-align: center;
}

.text-link {
  color: var(--yellow);
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 0.2rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.credentials {
  background: var(--panel);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.12fr);
  gap: clamp(3rem, 7vw, 6.5rem);
  align-items: center;
}

.portrait-frame {
  aspect-ratio: 0.75;
}

.portrait-frame img {
  height: 100%;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  left: 0.9rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(30, 31, 34, 0.82);
  color: var(--cream);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.credential-list {
  margin-top: 2.3rem;
}

.credential {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 1rem;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
}

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

.credential > span {
  color: var(--yellow);
  font-family: "Comfortaa", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.credential h3 {
  margin-bottom: 0.3rem;
  font-size: 1.02rem;
}

.credential p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

.method {
  overflow: hidden;
  background: var(--bg-deep);
}

.method-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.method-track::before {
  position: absolute;
  top: 30px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--line-bright), transparent);
}

.method-step {
  position: relative;
  z-index: 1;
  padding: 0 0.6rem;
  text-align: center;
}

.method-step > span {
  display: grid;
  width: 60px;
  height: 60px;
  margin: 0 auto 1.35rem;
  place-items: center;
  border: 1px solid rgba(255, 225, 77, 0.35);
  border-radius: 50%;
  background: var(--bg-deep);
  color: var(--yellow);
  font-family: "Comfortaa", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  transition:
    transform 350ms var(--ease),
    background-color 350ms ease,
    color 350ms ease;
}

.method-step.is-awake > span {
  transform: scale(1.07);
  background: var(--yellow);
  color: var(--ink);
}

.method-step h3 {
  font-size: 1rem;
}

.method-step p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.6;
}

.method-close {
  margin-top: 3.3rem;
  color: var(--muted);
  text-align: center;
}

.method-close strong {
  color: var(--cream);
}

.build-list {
  background: var(--panel);
}

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

.capability {
  min-height: 240px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
  transition: background-color 220ms ease;
}

.capability:hover {
  background: rgba(255, 225, 77, 0.035);
}

.capability > span {
  display: block;
  margin-bottom: 2.5rem;
  color: var(--yellow);
  font-family: "Comfortaa", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
}

.capability p {
  max-width: 480px;
  color: var(--muted);
}

.entry-points {
  background:
    radial-gradient(circle at 50% 100%, rgba(255, 225, 77, 0.055), transparent 30rem),
    var(--bg);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.offer-card {
  position: relative;
  min-height: 240px;
  overflow: hidden;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--panel);
  transition:
    transform 250ms var(--ease),
    border-color 250ms ease;
}

.offer-card::after {
  position: absolute;
  right: -55px;
  bottom: -55px;
  width: 120px;
  height: 120px;
  content: "";
  border: 1px solid rgba(255, 225, 77, 0.08);
  border-radius: 50%;
}

.offer-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-bright);
}

.offer-kicker {
  display: block;
  min-height: 2.6rem;
}

.offer-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.flagship {
  background: var(--panel);
}

.flagship-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 1rem;
}

.flagship-offer,
.ownership-card {
  padding: clamp(1.7rem, 5vw, 3.2rem);
  border-radius: var(--radius-lg);
}

.flagship-offer {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.36), transparent 21rem),
    var(--yellow);
  color: var(--ink);
  box-shadow: 0 24px 80px rgba(255, 225, 77, 0.1);
}

.flagship-offer .flagship-kicker {
  color: rgba(36, 35, 33, 0.7);
}

.flagship-offer h3 {
  color: var(--ink);
  font-size: clamp(1.55rem, 3.2vw, 2.2rem);
}

.flagship-offer p {
  max-width: 670px;
}

.flagship-offer .offer-detail {
  padding-top: 1rem;
  border-top: 1px solid rgba(36, 35, 33, 0.18);
  font-size: 0.92rem;
  font-weight: 600;
}

.ownership-card {
  border: 1px solid var(--line);
  background: var(--card-deep);
}

.ownership-card h3 {
  margin-bottom: 1.4rem;
}

.ownership-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ownership-card li {
  position: relative;
  padding: 0.72rem 0 0.72rem 1.55rem;
  border-top: 1px solid var(--line);
  color: var(--text);
}

.ownership-card li::before {
  position: absolute;
  top: 1.18rem;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 4px rgba(255, 225, 77, 0.08);
}

.payment-note {
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.fit {
  background: var(--bg);
}

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

.quote-card {
  position: relative;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 2.3rem);
  border: 1px solid var(--line);
  border-radius: 28px 28px 28px 6px;
  background: var(--panel);
}

.quote-card::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 28px;
  height: 20px;
  content: "";
  clip-path: polygon(0 0, 100% 0, 0 100%);
  background: var(--panel);
}

.quote-card p {
  margin-bottom: 0.8rem;
  color: var(--cream);
  font-family: "Comfortaa", sans-serif;
  font-size: clamp(1.02rem, 2vw, 1.22rem);
  font-weight: 700;
  line-height: 1.5;
}

.quote-card cite {
  color: var(--yellow);
  font-size: 0.88rem;
  font-style: normal;
}

.wide-callout {
  max-width: 100%;
  margin-top: 4rem;
  text-align: center;
}

.door {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 50%, rgba(255, 225, 77, 0.08), transparent 28rem),
    var(--bg-deep);
}

.door-layout {
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.66fr);
}

.door-image img {
  object-position: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 2.4rem 0;
}

.stat {
  min-height: 120px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.025);
}

.stat strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--yellow);
  font-family: "Comfortaa", sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.1;
}

.stat > span,
.stat > a {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.4;
}

.footer {
  padding: 2.8rem 0;
  background: #17181a;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: start;
}

.footer-brand > a {
  color: var(--yellow);
  font-family: "Comfortaa", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.footer-brand p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.8rem;
  text-decoration: none;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(4px);
  transition:
    opacity 720ms var(--ease),
    transform 720ms var(--ease),
    filter 720ms var(--ease);
}

.js .reveal[data-delay="1"] {
  transition-delay: 90ms;
}

.js .reveal[data-delay="2"] {
  transition-delay: 180ms;
}

.js .reveal[data-delay="3"] {
  transition-delay: 270ms;
}

.js .reveal[data-delay="4"] {
  transition-delay: 360ms;
}

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

@keyframes signal-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 225, 77, 0.4);
  }
  60%,
  100% {
    box-shadow: 0 0 0 11px rgba(255, 225, 77, 0);
  }
}

@keyframes trace-wake {
  to {
    transform: scaleX(1);
  }
}

@keyframes ambient-drift {
  from {
    transform: translate3d(-10px, -8px, 0) scale(0.98);
  }
  to {
    transform: translate3d(20px, 16px, 0) scale(1.05);
  }
}

@keyframes scroll-cue {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleY(0.65);
    transform-origin: top;
  }
  50% {
    opacity: 1;
    transform: scaleY(1);
  }
}

@keyframes callout-breathe {
  0%,
  100% {
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.16);
  }
  50% {
    box-shadow: 0 20px 64px rgba(255, 225, 77, 0.08);
  }
}

@keyframes image-breathe {
  0%,
  100% {
    transform: scale(1.01);
  }
  50% {
    transform: scale(1.045);
  }
}

.breathing-image {
  animation: image-breathe 13s ease-in-out infinite;
}

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

  .hero-grid,
  .split-layout,
  .flagship-grid,
  .door-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 3rem;
    padding-block: 6.5rem 5.5rem;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-visual {
    width: min(100%, 520px);
    justify-self: start;
  }

  .hero-image-frame {
    aspect-ratio: 1.1;
  }

  .hero-image-frame > img {
    object-position: center 24%;
  }

  .scroll-cue {
    display: none;
  }

  .three-column {
    grid-template-columns: 1fr;
  }

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

  .card-index {
    margin-bottom: 1.3rem;
  }

  .split-layout {
    max-width: 780px;
  }

  .portrait-frame {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .method-track {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .method-track::before {
    top: 24px;
    right: auto;
    bottom: 24px;
    left: 27px;
    width: 1px;
    height: auto;
    background: linear-gradient(transparent, var(--line-bright), transparent);
  }

  .method-step {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 1.1rem;
    padding: 0.7rem 0;
    text-align: left;
  }

  .method-step > span {
    width: 56px;
    height: 56px;
    margin: 0;
  }

  .method-step p {
    margin-bottom: 0;
  }

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

  .offer-card {
    min-height: 210px;
  }

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

  .door-image {
    grid-row: 1;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 0.96rem;
  }

  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section {
    padding-block: 4.8rem;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.25rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.4rem);
  }

  .hero-grid {
    padding-block: 5.5rem 4.5rem;
  }

  .hero-image-frame {
    aspect-ratio: 0.84;
  }

  .system-preview {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .button {
    min-height: 52px;
  }

  .capability-grid,
  .offer-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .capability {
    min-height: auto;
  }

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

  .offer-kicker {
    min-height: 0;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

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

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

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