:root {
  --bg: #050506;
  --panel: #101113;
  --panel-soft: #15171b;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f5f2;
  --muted: #a7a8ad;
  --muted-strong: #c7c8cc;
  --orange: #ff6b00;
  --orange-hot: #ff9a2f;
  --orange-deep: #a94000;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 70% 6%, rgba(255, 107, 0, 0.18), transparent 34rem),
    radial-gradient(circle at 20% 24%, rgba(255, 154, 47, 0.1), transparent 28rem),
    linear-gradient(180deg, #050506 0%, #090a0c 42%, #050506 100%);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 36px));
  margin: 18px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(8, 9, 11, 0.78);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-color: rgba(255, 154, 47, 0.18);
  background: rgba(8, 9, 11, 0.9);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 44px;
  height: 44px;
  padding: 4px;
  border-radius: 12px;
  background: #050506;
  object-fit: contain;
  box-shadow: 0 0 22px rgba(255, 107, 0, 0.45);
}

.brand span,
.footer-brand strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: var(--muted-strong);
  font-size: 0.94rem;
}

.nav-links a,
.footer-links a {
  transition: color 180ms ease;
}

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

.nav-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255, 107, 0, 0.38);
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.08);
  color: #ffd8ba;
  font-size: 0.92rem;
  font-weight: 700;
}

.section-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: 48px;
  min-height: calc(80vh - 78px);
  padding-top: 32px;
  padding-bottom: 28px;
}

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

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(3.2rem, 7.6vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  max-width: 780px;
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.hero-subheadline,
.section-heading p,
.boost-copy p,
.product-card p,
.price-card p,
.faq p,
.site-footer p {
  color: var(--muted);
}

.hero-subheadline {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: clamp(1.06rem, 2vw, 1.32rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

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

.button:hover,
.product-card:hover,
.price-card:hover {
  transform: translateY(-4px);
}

.button-primary {
  border: 1px solid rgba(255, 154, 47, 0.65);
  background: linear-gradient(135deg, var(--orange), var(--orange-hot));
  color: #170a00;
  box-shadow: 0 16px 46px rgba(255, 107, 0, 0.3);
}

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

.button-secondary:hover {
  border-color: rgba(255, 154, 47, 0.5);
  background: rgba(255, 107, 0, 0.09);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-stats span,
.trust-grid span,
.reason-grid div {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted-strong);
}

.hero-stats span {
  padding: 8px 12px;
  font-size: 0.9rem;
}

.hero-visual {
  display: grid;
  place-items: center;
  min-height: 410px;
}

.logo-orbit {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 470px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 44px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 50% 48%, rgba(255, 107, 0, 0.26), transparent 46%);
  box-shadow:
    inset 0 0 80px rgba(255, 107, 0, 0.08),
    0 0 90px rgba(255, 107, 0, 0.22),
    var(--shadow);
  overflow: hidden;
}

.logo-orbit::before,
.logo-orbit::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 154, 47, 0.22);
}

.logo-orbit::before {
  inset: 16%;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(7, 7, 9, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 48px rgba(0, 0, 0, 0.28);
}

.logo-orbit::after {
  inset: 8%;
  border-radius: 40px;
  border-color: rgba(255, 255, 255, 0.08);
}

.logo-orbit img {
  position: relative;
  z-index: 2;
  width: 56%;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(5, 5, 6, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 60px rgba(0, 0, 0, 0.36);
  filter:
    drop-shadow(0 0 22px rgba(255, 107, 0, 0.42))
    drop-shadow(0 0 64px rgba(255, 107, 0, 0.28));
}

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

.section-heading p {
  max-width: 720px;
  font-size: 1.04rem;
}

.pricing-grid {
  display: grid;
  gap: 18px;
}

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

.reason-grid div,
.trust-grid span {
  padding: 18px;
  font-weight: 700;
}

.boost-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 36px;
  padding: clamp(24px, 5vw, 54px);
  border: 1px solid rgba(255, 154, 47, 0.2);
  border-radius: 30px;
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 107, 0, 0.22), transparent 34rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    #0b0c0e;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.48);
}

.boost-copy {
  align-self: center;
}

.boost-copy .button {
  margin-top: 12px;
}

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

.feature-grid article {
  min-height: 96px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-strong);
  font-weight: 700;
}

.feature-grid article:last-child {
  grid-column: 1 / -1;
  min-height: 80px;
}

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

.price-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    var(--panel);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.price-card:hover {
  border-color: rgba(255, 154, 47, 0.38);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

.badge {
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 107, 0, 0.28);
  border-radius: 999px;
  background: rgba(255, 107, 0, 0.08);
  color: #ffc18b;
  font-size: 0.75rem;
  font-weight: 800;
}

.price-card strong {
  display: block;
  margin: 16px 0 26px;
  font-size: 2.5rem;
  line-height: 1;
}

.price-card.featured {
  border-color: rgba(255, 154, 47, 0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 107, 0, 0.22), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    var(--panel);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 180ms ease, background 180ms ease;
}

details[open] {
  border-color: rgba(255, 154, 47, 0.32);
  background: rgba(255, 107, 0, 0.07);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  color: var(--text);
  font-weight: 800;
}

details p {
  margin: -6px 22px 20px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 52px;
  height: 52px;
  padding: 4px;
  border-radius: 14px;
  background: #050506;
  object-fit: contain;
}

.footer-brand p {
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted-strong);
  font-size: 0.94rem;
}

@media (max-width: 980px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .boost-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .logo-orbit {
    max-width: 420px;
  }

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

@media (max-width: 720px) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    margin-top: 12px;
  }

  .nav-links {
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-cta {
    display: none;
  }

  .section-shell {
    padding: 64px 0;
  }

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

  h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
  }

  .hero-actions .button {
    flex: 1 1 180px;
  }

  .reason-grid,
  .trust-grid,
  .pricing-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid article:last-child {
    grid-column: auto;
  }

  .price-card {
    min-height: 240px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

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