:root {
  color-scheme: dark;
  --bg: #030807;
  --bg-deep: #010302;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --line: rgba(255, 255, 255, 0.16);
  --text: #f4fbf8;
  --muted: #a8bab3;
  --green: #72f0b8;
  --blue: #7cc7ff;
  --violet: #d9a8ff;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(180deg, rgba(1, 3, 2, 0), rgba(1, 3, 2, 0.92) 78%),
    radial-gradient(circle at 12% 4%, rgba(114, 240, 184, 0.22), transparent 31rem),
    radial-gradient(circle at 86% 10%, rgba(124, 199, 255, 0.18), transparent 34rem),
    radial-gradient(circle at 50% -20%, rgba(217, 168, 255, 0.18), transparent 36rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 72%);
  pointer-events: none;
}

.film-grain,
.scanline,
.aurora {
  position: fixed;
  pointer-events: none;
}

.film-grain {
  inset: -20%;
  z-index: 5;
  opacity: 0.14;
  mix-blend-mode: soft-light;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 40%, rgba(255, 255, 255, 0.45) 0 1px, transparent 1px),
    radial-gradient(circle at 42% 80%, rgba(255, 255, 255, 0.55) 0 1px, transparent 1px);
  background-size: 31px 29px, 43px 37px, 53px 47px;
  animation: grain 900ms steps(2) infinite;
}

.scanline {
  inset: 0;
  z-index: 4;
  opacity: 0.25;
  background: linear-gradient(180deg, transparent 0 49%, rgba(255, 255, 255, 0.04) 50%, transparent 51% 100%);
  background-size: 100% 8px;
  mask-image: linear-gradient(180deg, transparent, black 8%, black 90%, transparent);
}

.aurora {
  z-index: 0;
  width: 44rem;
  height: 44rem;
  border-radius: 999px;
  filter: blur(48px);
  opacity: 0.28;
  mix-blend-mode: screen;
}

.aurora-one {
  top: -18rem;
  left: 4vw;
  background: conic-gradient(from 180deg, var(--green), transparent, var(--blue), transparent, var(--green));
  animation: auroraMove 18s ease-in-out infinite;
}

.aurora-two {
  right: -12rem;
  bottom: 12vh;
  background: conic-gradient(from 20deg, var(--violet), transparent, var(--blue), transparent, var(--green));
  animation: auroraMove 22s ease-in-out infinite reverse;
}

.cursor-glow {
  position: fixed;
  z-index: 0;
  width: 32rem;
  height: 32rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(114, 240, 184, 0.16), transparent 62%);
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 180ms ease;
  opacity: 0;
}

.orb {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.45;
  pointer-events: none;
}

.orb-one {
  top: 18rem;
  right: -8rem;
  width: 18rem;
  height: 18rem;
  background: rgba(217, 168, 255, 0.24);
  animation: float 12s ease-in-out infinite;
}

.orb-two {
  bottom: 18rem;
  left: -7rem;
  width: 16rem;
  height: 16rem;
  background: rgba(124, 199, 255, 0.22);
  animation: float 15s ease-in-out infinite reverse;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-symbol {
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: linear-gradient(135deg, rgba(114, 240, 184, 0.22), rgba(124, 199, 255, 0.14));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-nav a,
.header-cta {
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--text);
}

.header-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.72rem 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.header-cta:hover,
.header-cta:focus-visible {
  border-color: rgba(114, 240, 184, 0.54);
  transform: translateY(-2px);
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section,
.hero {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.subpage-hero {
  max-width: 1050px;
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(2rem, 6vw, 5rem);
}

.subpage-hero h1 {
  max-width: 13ch;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.78fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: calc(100vh - 92px);
}

.cinema-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  color: rgba(244, 251, 248, 0.84);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16), 0 20px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.cinema-tag span {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: #ff6f8f;
  box-shadow: 0 0 22px rgba(255, 111, 143, 0.86);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 12ch;
  margin-bottom: 1.35rem;
  font-size: clamp(3.5rem, 9vw, 7.4rem);
  line-height: 0.88;
  letter-spacing: -0.09em;
  text-wrap: balance;
}

h1 span {
  display: block;
  background: linear-gradient(105deg, #ffffff 0%, #d9fff1 32%, #9fd6ff 68%, #ffffff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: titleSheen 7s ease-in-out infinite;
}

h2 {
  max-width: 800px;
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 5vw, 4.4rem);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.hero-lede,
.section-heading p,
.platform-copy > p,
.cta-section p,
.journey-card p {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.14rem);
}

.hero-lede {
  max-width: 690px;
  margin-bottom: 2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 0.56rem 0.74rem;
  color: rgba(244, 251, 248, 0.76);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-actions,
.cta-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.44), transparent 80%);
  transform: translateX(-140%);
  transition: transform 700ms ease;
}

.button:hover::after,
.button:focus-visible::after {
  transform: translateX(140%);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: #06110e;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 18px 48px rgba(114, 240, 184, 0.24);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  perspective: 1000px;
}

.cinematic-stage {
  position: absolute;
  inset: 3% -4% 8% 1%;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 2.7rem;
  background:
    radial-gradient(circle at 50% 42%, rgba(114, 240, 184, 0.26), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
  box-shadow: 0 44px 110px rgba(0, 0, 0, 0.48);
  transform: rotateX(9deg) rotateY(-14deg) rotateZ(2deg);
  transform-style: preserve-3d;
  animation: stageBreathe 9s ease-in-out infinite;
}

.cinematic-stage::before,
.cinematic-stage::after {
  position: absolute;
  content: "";
  border-radius: inherit;
  pointer-events: none;
}

.cinematic-stage::before {
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.08), transparent),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 38px);
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 68%);
  transform: translateZ(44px);
}

.cinematic-stage::after {
  inset: auto 12% 10% 12%;
  height: 0.45rem;
  background: linear-gradient(90deg, transparent, rgba(114, 240, 184, 0.9), rgba(124, 199, 255, 0.9), transparent);
  filter: blur(8px);
  transform: translateZ(80px);
}

.stage-glass {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.stage-glass-one {
  top: 16%;
  left: 12%;
  width: 9rem;
  height: 6rem;
  transform: translateZ(90px) rotate(-8deg);
}

.stage-glass-two {
  right: 10%;
  bottom: 20%;
  width: 12rem;
  height: 7rem;
  transform: translateZ(70px) rotate(9deg);
}

.brand-orbit {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform: translateZ(120px);
}

.brand-orbit span {
  position: absolute;
  display: grid;
  min-width: 4.6rem;
  min-height: 4.6rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #06110e;
  font-weight: 900;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 20px 60px rgba(114, 240, 184, 0.24);
  animation: orbitFloat 7s ease-in-out infinite;
}

.brand-orbit span:nth-child(1) {
  transform: translate(-8rem, -7rem);
}

.brand-orbit span:nth-child(2) {
  color: #16091f;
  background: linear-gradient(135deg, #f3d5ff, var(--violet));
  transform: translate(7.6rem, -2.2rem);
  animation-delay: 800ms;
}

.brand-orbit span:nth-child(3) {
  transform: translate(0, 8.2rem);
  animation-delay: 1.6s;
}

.signal-card,
.brand-card,
.platform-panel,
.journey-card,
.cta-section {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.signal-card {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border-radius: 2.2rem;
  padding: 1.4rem;
  width: min(88%, 430px);
  margin-left: auto;
  transform: rotateX(3deg) rotateY(-7deg);
  animation: cardDrift 8s ease-in-out infinite;
}

.signal-card::before {
  position: absolute;
  inset: -40%;
  content: "";
  background: conic-gradient(from 120deg, transparent, rgba(114, 240, 184, 0.28), transparent, rgba(217, 168, 255, 0.2), transparent);
  animation: rotate 12s linear infinite;
}

.signal-card > * {
  position: relative;
  z-index: 1;
}

.signal-header {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 0.85rem;
  color: var(--muted);
  background: rgba(7, 17, 15, 0.55);
}

.pulse-dot {
  width: 0.62rem;
  height: 0.62rem;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 rgba(114, 240, 184, 0.5);
  animation: pulse 1.8s infinite;
}

.signal-rings {
  display: grid;
  min-height: 320px;
  place-items: center;
}

.signal-rings span {
  position: absolute;
  width: 8rem;
  height: 8rem;
  border: 1px solid rgba(114, 240, 184, 0.42);
  border-radius: 999px;
  animation: ripple 4s ease-out infinite;
}

.signal-rings span:nth-child(2) {
  animation-delay: 1.2s;
}

.signal-rings span:nth-child(3) {
  animation-delay: 2.4s;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.metric-grid div {
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  padding: 1rem;
  background: rgba(7, 17, 15, 0.5);
}

.metric-grid strong {
  display: block;
  font-size: 1.7rem;
  letter-spacing: -0.05em;
}

.metric-grid span {
  color: var(--muted);
  font-size: 0.86rem;
}

.brand-strip {
  display: flex;
  overflow: hidden;
  justify-content: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 1rem;
  color: rgba(244, 251, 248, 0.82);
  background: rgba(255, 255, 255, 0.05);
}

.marquee-track {
  display: flex;
  min-width: max-content;
  gap: 3rem;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  position: relative;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.marquee-track span::after {
  position: absolute;
  right: -1.7rem;
  color: var(--green);
  content: "/";
}

.section-heading {
  max-width: 850px;
  margin-bottom: 2rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.brand-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.7rem;
  padding: 1.25rem;
  min-height: 380px;
  transform-style: preserve-3d;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.brand-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: radial-gradient(circle at 30% 0%, color-mix(in srgb, var(--accent), transparent 68%), transparent 18rem);
  opacity: 0.9;
  pointer-events: none;
}

.brand-card > * {
  position: relative;
  transform: translateZ(24px);
}

.brand-card:hover {
  border-color: color-mix(in srgb, var(--accent), white 24%);
  transform: translateY(-10px) rotateX(2deg) rotateY(-2deg);
}

.card-topline,
.brand-toggle,
.progress-item > span,
.progress-item > strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.card-topline {
  margin-bottom: 3rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.card-topline a {
  color: rgba(244, 251, 248, 0.78);
}

.brand-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.65rem;
  background: rgba(7, 17, 15, 0.36);
}

.brand-card p {
  color: var(--muted);
}

.cinematic-manifesto {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2.4rem;
  margin: 2rem 0;
  padding: clamp(1.5rem, 5vw, 4rem);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 18% 10%, rgba(114, 240, 184, 0.18), transparent 24rem),
    radial-gradient(circle at 88% 70%, rgba(217, 168, 255, 0.18), transparent 20rem);
  box-shadow: var(--shadow);
}

.cinematic-manifesto::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  transform: translateX(-100%);
  animation: projectorSweep 8s ease-in-out infinite;
}

.cinematic-manifesto > * {
  position: relative;
}

.cinematic-manifesto h2 {
  max-width: 980px;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 930px;
}

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

.brand-toggle {
  width: 100%;
  margin-top: 1.2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  color: var(--text);
  background: rgba(7, 17, 15, 0.38);
  cursor: pointer;
}

.brand-toggle span {
  transition: transform 180ms ease;
}

.brand-card.is-open .brand-toggle span {
  transform: rotate(45deg);
}

.brand-details {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}

.brand-card.is-open .brand-details {
  grid-template-rows: 1fr;
}

.brand-details ul {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  padding-left: 1.15rem;
  color: var(--muted);
}

.brand-details li {
  margin-top: 0.65rem;
}

.platform-panel {
  border-radius: 2rem;
  padding: clamp(1.3rem, 4vw, 3rem);
}

.content-panel,
.split-panel,
.product-index,
.product-brand,
.compliance-panel {
  border: 1px solid var(--line);
  border-radius: 2rem;
  padding: clamp(1.4rem, 4vw, 3rem);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 12% 0%, rgba(114, 240, 184, 0.1), transparent 20rem);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.detail-grid,
.compliance-grid,
.required-list,
.product-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.detail-grid article,
.compliance-grid div,
.required-list article,
.product-detail-grid article,
.product-nav a {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.35rem;
  padding: 1.1rem;
  background: rgba(7, 17, 15, 0.4);
}

.detail-grid span {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--green);
  font-weight: 900;
}

.detail-grid p,
.compliance-grid p,
.required-list p,
.product-detail-grid p,
.product-detail-grid li,
.brand-profile p,
.brand-profile li,
.rich-copy p {
  color: var(--muted);
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.rich-copy p:last-child {
  margin-bottom: 0;
}

.brand-deep-dive {
  padding-top: clamp(4rem, 8vw, 7rem);
}

.brand-profile {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 2rem;
  margin-bottom: 1rem;
  border: 1px solid color-mix(in srgb, var(--accent), transparent 62%);
  border-radius: 2rem;
  padding: clamp(1.3rem, 4vw, 2rem);
  background:
    radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--accent), transparent 78%), transparent 24rem),
    rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
}

.brand-profile h3 {
  font-size: clamp(1.8rem, 4vw, 3.1rem);
}

.profile-list {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 1.4rem;
  padding: 1.1rem;
  background: rgba(7, 17, 15, 0.38);
}

.profile-list h4 {
  margin: 0 0 0.8rem;
  font-size: 1rem;
}

.profile-list ul,
.product-detail-grid ul,
.product-detail-grid ol {
  margin: 0;
  padding-left: 1.2rem;
}

.profile-list li,
.product-detail-grid li {
  margin-bottom: 0.6rem;
}

.compliance-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    radial-gradient(circle at 90% 10%, rgba(255, 111, 143, 0.12), transparent 20rem);
}

.product-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.product-nav a {
  color: var(--text);
  font-weight: 800;
  transition: border-color 180ms ease, transform 180ms ease, color 180ms ease;
}

.product-nav a:hover,
.product-nav a:focus-visible {
  border-color: rgba(114, 240, 184, 0.5);
  color: var(--green);
  transform: translateY(-4px);
}

.product-brand {
  margin-top: 1.5rem;
  background:
    radial-gradient(circle at 6% 0%, color-mix(in srgb, var(--accent), transparent 72%), transparent 28rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
}

.product-hero-card {
  max-width: 900px;
  margin-bottom: 1.5rem;
}

.product-hero-card h2 {
  max-width: 980px;
}

.product-hero-card a {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--green);
  font-weight: 800;
}

.product-detail-grid article {
  min-height: 220px;
}

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

.progress-stack {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.progress-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.65rem;
  color: var(--muted);
}

.progress-item strong {
  color: var(--text);
}

.progress-bar {
  grid-column: 1 / -1;
  height: 0.65rem;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.progress-bar span {
  display: block;
  width: var(--width);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--blue));
  transform-origin: left;
  animation: loadBar 1.1s ease both;
}

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

.capability-grid div {
  border: 1px solid var(--line);
  border-radius: 1.3rem;
  padding: 1rem;
  background: rgba(7, 17, 15, 0.36);
}

.capability-grid span {
  color: var(--green);
  font-weight: 800;
}

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

.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.journey-step {
  border: 1px solid var(--line);
  border-radius: 1.1rem;
  padding: 1rem;
  color: var(--muted);
  text-align: left;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.journey-step span {
  display: block;
  margin-bottom: 1.8rem;
  color: var(--green);
  font-weight: 800;
}

.journey-step.active,
.journey-step:hover,
.journey-step:focus-visible {
  border-color: rgba(114, 240, 184, 0.5);
  color: var(--text);
  transform: translateY(-4px);
}

.journey-card {
  min-height: 220px;
  border-radius: 1.7rem;
  padding: clamp(1.3rem, 4vw, 2rem);
}

.journey-card h3 {
  max-width: 720px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}

.journey-card p:last-child {
  max-width: 720px;
  margin-bottom: 0;
}

.cta-section {
  justify-content: space-between;
  margin: 2rem 0 4rem;
  border-radius: 2rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
}

.cta-section div {
  max-width: 700px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  filter: blur(12px);
  transform: translateY(34px) scale(0.98);
  transition: opacity 900ms ease, filter 900ms ease, transform 900ms ease;
  transition-delay: var(--delay, 0ms);
}

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

[data-tilt] {
  will-change: transform;
}

@keyframes grain {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-2%, 1%, 0);
  }

  100% {
    transform: translate3d(1%, -2%, 0);
  }
}

@keyframes auroraMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }

  50% {
    transform: translate3d(8vw, 5vh, 0) rotate(25deg) scale(1.14);
  }
}

@keyframes titleSheen {
  0%,
  100% {
    background-position: 0% center;
  }

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

@keyframes stageBreathe {
  0%,
  100% {
    transform: rotateX(9deg) rotateY(-14deg) rotateZ(2deg) translateY(0);
  }

  50% {
    transform: rotateX(6deg) rotateY(-8deg) rotateZ(-1deg) translateY(-12px);
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -18px;
  }
}

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

@keyframes projectorSweep {
  42%,
  100% {
    transform: translateX(100%);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(2rem, -2rem, 0);
  }
}

@keyframes cardDrift {
  0%,
  100% {
    transform: rotateX(3deg) rotateY(-7deg) translateY(0);
  }

  50% {
    transform: rotateX(1deg) rotateY(-3deg) translateY(-10px);
  }
}

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

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(114, 240, 184, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(114, 240, 184, 0);
  }
}

@keyframes ripple {
  0% {
    opacity: 0.9;
    transform: scale(0.25);
  }

  100% {
    opacity: 0;
    transform: scale(2.9);
  }
}

@keyframes loadBar {
  from {
    transform: scaleX(0);
  }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
  }

  .section-grid,
  .platform-grid,
  .split-panel,
  .brand-profile {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brand-grid,
  .journey,
  .detail-grid,
  .compliance-grid,
  .required-list,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

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

  .signal-card {
    min-height: 460px;
    width: 100%;
    transform: none;
  }

  .hero-visual {
    min-height: 540px;
  }

  .cinematic-stage {
    inset: 0;
    transform: none;
  }

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

  .brand-strip,
  .site-footer {
    align-items: flex-start;
    border-radius: 1.4rem;
    flex-direction: column;
  }
}

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

  .header-cta {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }

  .hero-actions .button,
  .cta-section .button {
    width: 100%;
  }

  .metric-grid,
  .capability-grid,
  .product-nav {
    grid-template-columns: 1fr;
  }

  .signal-rings {
    min-height: 250px;
  }

  .brand-orbit span {
    min-width: 3.8rem;
    min-height: 3.8rem;
    font-size: 0.82rem;
  }

  .stage-glass-one,
  .stage-glass-two {
    opacity: 0.62;
  }
}

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

  .cursor-glow {
    display: none;
  }
}
