:root {
  --navy-950: #031020;
  --navy-900: #071B33;
  --navy-800: #0B2A4A;
  --navy-700: #123A63;
  --orange-500: #FF8A1F;
  --orange-400: #FFA340;
  --text: #F4F8FF;
  --muted: #AFC1D9;
  --panel: rgba(7, 27, 51, 0.72);
  --panel-border: rgba(255, 138, 31, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--navy-950);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.animated-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 138, 31, 0.22), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(31, 119, 190, 0.30), transparent 32%),
    linear-gradient(135deg, var(--navy-950), var(--navy-900) 42%, #06182d);
  overflow: hidden;
}

.grid {
  position: absolute;
  inset: -80px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  transform: perspective(600px) rotateX(58deg) translateY(-160px);
  transform-origin: top;
  animation: grid-drift 12s linear infinite;
}

.orb {
  position: absolute;
  width: 34vmax;
  height: 34vmax;
  border-radius: 999px;
  filter: blur(26px);
  opacity: 0.28;
  mix-blend-mode: screen;
}

.orb-one {
  left: -10vmax;
  bottom: -8vmax;
  background: var(--orange-500);
  animation: float-one 11s ease-in-out infinite alternate;
}

.orb-two {
  right: -12vmax;
  top: 20vmax;
  background: #1E7CC4;
  animation: float-two 14s ease-in-out infinite alternate;
}

.scanline {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(255, 138, 31, 0.08), transparent);
  height: 22%;
  animation: scan 7s ease-in-out infinite;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 138, 31, 0.22), rgba(7, 27, 51, 0.82));
  box-shadow: 0 0 28px rgba(255, 138, 31, 0.14);
  color: var(--orange-400);
}

.brand-text {
  font-size: 1.02rem;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

nav a {
  color: var(--muted);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
  border: 1px solid rgba(255, 138, 31, 0.35);
  color: var(--orange-400);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 54px auto 0;
  min-height: 68vh;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
  align-items: center;
  gap: 42px;
}

.eyebrow {
  color: var(--orange-400);
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  font-weight: 800;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: -0.075em;
  max-width: 860px;
}

.page h1 {
  font-size: clamp(2.5rem, 6vw, 5.6rem);
}

h2 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  max-width: 700px;
  margin: 26px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.primary {
  color: #17110b;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-500));
  box-shadow: 0 16px 40px rgba(255, 138, 31, 0.23);
}

.secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.055);
}

.product-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 560px;
  isolation: isolate;
}

.product-card img {
  display: block;
  width: min(440px, 86vw);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow), 0 0 62px rgba(255, 138, 31, 0.16);
  transform: rotate(1.5deg);
  animation: product-float 5.5s ease-in-out infinite alternate;
}

.product-glow {
  position: absolute;
  width: 520px;
  max-width: 96vw;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 138, 31, 0.20), transparent 64%);
  filter: blur(6px);
  animation: pulse 3.6s ease-in-out infinite;
  z-index: -1;
}

.product-caption {
  position: absolute;
  left: 50%;
  bottom: 46px;
  transform: translateX(-50%);
  width: min(360px, 76vw);
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 138, 31, 0.30);
  background: rgba(3, 16, 32, 0.74);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(14px);
}

.product-caption span,
.product-caption small {
  display: block;
}

.product-caption span {
  color: var(--text);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.product-caption small {
  color: var(--muted);
  margin-top: 2px;
}

.cards {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.page-panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.info-card {
  padding: 24px;
}

.info-card p,
.page-panel p,
.page-panel li {
  color: var(--muted);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 32px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 138, 31, 0.12);
  color: var(--orange-400);
  font-weight: 900;
  font-size: 0.82rem;
}

.page {
  width: min(980px, calc(100% - 32px));
  margin: 54px auto 80px;
}

.page-panel {
  padding: clamp(24px, 5vw, 56px);
}

.support-grid {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.support-grid article {
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
  background: rgba(255,255,255,0.045);
}

.legal h2 {
  margin-top: 34px;
}

.legal p {
  max-width: 76ch;
}

.page-panel a,
.site-footer a {
  color: var(--orange-400);
}

.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 36px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  text-decoration: none;
}

@keyframes grid-drift {
  from { background-position: 0 0; }
  to { background-position: 0 44px; }
}

@keyframes float-one {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(6vmax, -3vmax) scale(1.08); }
}

@keyframes float-two {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-4vmax, 4vmax) scale(0.92); }
}

@keyframes scan {
  0%, 100% { transform: translateY(-120%); opacity: 0; }
  18%, 70% { opacity: 1; }
  50% { transform: translateY(420%); }
}

@keyframes product-float {
  from { transform: translateY(0) rotate(1.5deg); }
  to { transform: translateY(-18px) rotate(-1deg); }
}

@keyframes compare-sweep {
  0%, 18% { transform: translateX(-115%); }
  56%, 100% { transform: translateX(115%); }
}

@keyframes pulse {
  0%, 100% { transform: scale(0.92); opacity: 0.18; }
  50% { transform: scale(1.08); opacity: 0.42; }
}

@media (max-width: 860px) {
  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .product-card {
    min-height: 470px;
  }

  .product-caption {
    bottom: 32px;
  }

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

  h1 {
    letter-spacing: -0.055em;
  }
}

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