:root {
  --bg: #050505;
  --bg-soft: #111111;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4f1ea;
  --muted: #a9a49b;
  --accent: #d8d0c0;
  --accent-strong: #ffffff;
  --beam: linear-gradient(135deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0));
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --pointer-x: 50%;
  --pointer-y: 50%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 32%),
    radial-gradient(circle at 85% 10%, rgba(255, 255, 255, 0.05), transparent 24%),
    linear-gradient(180deg, #0b0b0b 0%, #050505 35%, #090909 100%);
  font-family: "Syne", sans-serif;
  width: 100%;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 88%);
  pointer-events: none;
  z-index: -1;
}

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

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

.page-shell {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding-bottom: 80px;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.68);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.brand-mark {
  width: 148px;
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  gap: 22px;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 4px;
}

.site-nav a:hover,
.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  min-height: 52px;
  padding: 0 24px;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.header-cta,
.button-primary {
  color: #0a0a0a;
  background: linear-gradient(135deg, #ffffff, #d8d0c0);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
}

.button-wide {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 110px);
  padding: 56px 0 40px;
}

.hero-copy,
.hero-visual,
.showcase-copy,
.showcase-card {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.94;
}

h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 7vw, 6.1rem);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.3rem);
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

h3 {
  font-size: 1.55rem;
  text-transform: uppercase;
}

.hero-text,
.positioning p,
.system-step p,
.showcase-copy p,
.pricing-copy,
.faq p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-text {
  max-width: 58ch;
  margin: 20px 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero-stats li,
.info-panel,
.system-step,
.showcase-card,
.pricing-card,
.faq-list details {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.hero-stats li {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.hero-stats li::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0.8;
}

.hero-stats strong,
.price {
  display: block;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero-stats span,
.price-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  place-items: center;
  overflow: hidden;
  perspective: 1400px;
}

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

.energy-beam {
  position: absolute;
  inset: 10% -6%;
  background: var(--beam);
  transform: rotate(-34deg);
  filter: blur(1px);
  opacity: 0.96;
  animation: beamShift 8s ease-in-out infinite alternate;
}

.energy-beam::before,
.energy-beam::after {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
}

.energy-beam::before {
  transform: translate(-22px, -24px) scale(0.88);
  opacity: 0.42;
}

.energy-beam::after {
  transform: translate(22px, 24px) scale(0.82);
  opacity: 0.26;
}

.product-card {
  position: relative;
  width: min(100%, 510px);
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(14, 14, 14, 0.92), rgba(7, 7, 7, 0.92)),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateZ(0);
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
  transform-style: preserve-3d;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: auto -12% 12% -12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
  transform: rotate(-24deg);
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.18), transparent 28%);
  opacity: 0.8;
  pointer-events: none;
}

.product-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  color: var(--accent);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-brand {
  width: min(100%, 440px);
  margin: 10px auto 18px;
}

.product-card p {
  max-width: 38ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.product-shot {
  margin: 24px 0 0;
  padding: 14px 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
}

.hero-orbit,
.hero-flare,
.hero-chip {
  position: absolute;
  pointer-events: none;
}

.hero-orbit {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  mix-blend-mode: screen;
}

.orbit-one {
  width: 540px;
  height: 540px;
  animation: orbitSpin 22s linear infinite;
}

.orbit-two {
  width: 420px;
  height: 420px;
  opacity: 0.7;
  animation: orbitSpinReverse 18s linear infinite;
}

.orbit-three {
  width: 300px;
  height: 300px;
  opacity: 0.5;
  animation: orbitPulse 7s ease-in-out infinite;
}

.hero-flare {
  border-radius: 50%;
  filter: blur(16px);
}

.flare-one {
  top: 14%;
  left: 10%;
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, 0.16);
  animation: floatDrift 9s ease-in-out infinite;
}

.flare-two {
  right: 8%;
  bottom: 16%;
  width: 150px;
  height: 150px;
  background: rgba(216, 208, 192, 0.14);
  animation: floatDrift 12s ease-in-out infinite reverse;
}

.hero-chip {
  min-width: 180px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.hero-chip span {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-chip strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.chip-left {
  top: 18%;
  left: 0;
}

.chip-right {
  right: 0;
  bottom: 14%;
}

.product-shot img {
  display: block;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.3);
}

.product-shot figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  padding: 22px 0;
  border-block: 1px solid var(--line);
}

.marquee-track {
  display: flex;
  gap: 28px;
  width: max-content;
  color: var(--accent);
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: marquee 26s linear infinite;
}

.positioning,
.system-section,
.showcase,
.contact,
.pricing,
.faq {
  padding-top: 112px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
}

.section-heading.narrow {
  max-width: 720px;
}

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

.info-panel,
.system-step,
.contact-card,
.showcase-card,
.pricing-card,
.faq-list details {
  border-radius: var(--radius-lg);
}

.info-panel {
  padding: 26px;
}

.panel-index,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--accent);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.info-panel p,
.system-step p {
  margin-bottom: 0;
}

.system-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.system-step {
  padding: 30px 24px 26px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.contact-card {
  padding: 26px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.contact-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-card a,
.pricing-meta a,
.site-footer a {
  color: var(--accent-strong);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 22px;
  align-items: start;
}

.showcase-copy p:last-child {
  max-width: 60ch;
  margin-bottom: 0;
}

.athlete-shot {
  margin: 28px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
}

.athlete-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.showcase-card {
  padding: 26px;
  position: sticky;
  top: 120px;
}

.showcase-line + .showcase-line {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.showcase-line span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-line strong {
  font-size: 1.3rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.pricing {
  display: grid;
  place-items: center;
  width: 100%;
}

.pricing-card {
  width: 100%;
  max-width: 760px;
  min-width: 0;
  padding: 42px;
  text-align: center;
  overflow: hidden;
}

.price-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  margin: 28px 0 16px;
}

.pricing-copy {
  max-width: 54ch;
  margin: 0 auto;
}

.pricing-list {
  display: grid;
  gap: 12px;
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-meta {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.faq-list details {
  padding: 24px 26px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.faq-list p {
  margin: 14px 0 0;
  max-width: 70ch;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px 24px;
  margin-top: 96px;
  padding: 24px 0 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

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

@keyframes beamShift {
  0% {
    opacity: 0.68;
    transform: rotate(-34deg) scale(0.96);
  }
  100% {
    opacity: 1;
    transform: rotate(-28deg) scale(1.04);
  }
}

@keyframes orbitSpin {
  from {
    transform: rotate(0deg) scale(1);
  }
  to {
    transform: rotate(360deg) scale(1.06);
  }
}

@keyframes orbitSpinReverse {
  from {
    transform: rotate(360deg) scale(0.96);
  }
  to {
    transform: rotate(0deg) scale(1.04);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    transform: scale(0.94);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.62;
  }
}

@keyframes floatDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -18px, 0);
  }
}

@media (max-width: 1080px) {
  .hero,
  .showcase,
  .contact-grid,
  .positioning-grid,
  .system-rail {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

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

  .showcase-card {
    position: static;
  }
}

@media (max-width: 800px) {
  .page-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .site-header {
    flex-wrap: wrap;
    border-radius: 30px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.92rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .pricing-card,
  .product-card,
  .info-panel,
  .system-step,
  .contact-card,
  .showcase-card,
  .faq-list details {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-card {
    width: 100%;
    max-width: 100%;
  }

  .chip-left,
  .chip-right {
    display: none;
  }
}

@media (max-width: 560px) {
  body::before {
    background-size: 42px 42px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(1.9rem, 11vw, 2.85rem);
    line-height: 0.92;
  }

  h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .site-header {
    top: 10px;
    padding: 14px;
  }

  .brand-mark {
    width: 118px;
  }

  .header-cta,
  .button {
    width: 100%;
  }

  .hero {
    gap: 30px;
    padding-top: 40px;
  }

  .hero-text {
    font-size: 1rem;
  }

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

  .energy-beam {
    inset: 18% -20%;
  }

  .orbit-one {
    width: 380px;
    height: 380px;
  }

  .orbit-two {
    width: 280px;
    height: 280px;
  }

  .orbit-three {
    width: 200px;
    height: 200px;
  }

  .product-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-strip-grid span {
    height: 58px;
  }

  .positioning,
  .system-section,
  .showcase,
  .contact,
  .pricing,
  .faq {
    padding-top: 86px;
  }
}

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

  .marquee-track,
  .energy-beam,
  .orbit-one,
  .orbit-two,
  .orbit-three,
  .flare-one,
  .flare-two {
    animation: none;
  }

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

  .product-card {
    transform: none;
    transition: none;
  }
}
