:root {
  --bg: #05070b;
  --bg-soft: #0b1220;
  --surface: rgba(15, 23, 42, 0.64);
  --surface-strong: rgba(8, 15, 28, 0.88);
  --surface-light: rgba(255, 255, 255, 0.06);
  --text: #f5f7fb;
  --muted: #9db0ce;
  --line: rgba(160, 186, 255, 0.16);
  --primary: #ff8a00;
  --primary-strong: #ffb000;
  --primary-soft: #ffc94a;
  --accent: #7dd3fc;
  --glow: rgba(255, 176, 0, 0.34);
  --shadow: 0 30px 80px rgba(1, 6, 20, 0.45);
  --shadow-amber: 0 24px 70px rgba(255, 153, 0, 0.28);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1180px;
  --header-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(26, 80, 150, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(76, 126, 255, 0.16), transparent 26%),
    linear-gradient(180deg, #03050a 0%, #07111e 42%, #03050a 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

button,
a,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.aurora {
  position: absolute;
  border-radius: 999px;
  filter: blur(30px);
  opacity: 0.7;
}

.aurora-one {
  width: 28rem;
  height: 28rem;
  top: 8%;
  left: -8%;
  background: rgba(50, 115, 255, 0.16);
  animation: drift 14s ease-in-out infinite alternate;
}

.aurora-two {
  width: 32rem;
  height: 32rem;
  top: 30%;
  right: -10%;
  background: rgba(34, 211, 238, 0.12);
  animation: drift 18s ease-in-out infinite alternate-reverse;
}

.grid-overlay {
  position: absolute;
  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: 80px 80px;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.6), transparent);
}

.particle-field span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(125, 211, 252, 0.3);
  box-shadow: 0 0 18px rgba(125, 211, 252, 0.22);
  animation: floatParticle 10s linear infinite;
}

.particle-field span:nth-child(1) { top: 20%; left: 18%; animation-delay: 0s; }
.particle-field span:nth-child(2) { top: 35%; left: 70%; animation-delay: 2s; }
.particle-field span:nth-child(3) { top: 55%; left: 12%; animation-delay: 4s; }
.particle-field span:nth-child(4) { top: 68%; left: 80%; animation-delay: 1s; }
.particle-field span:nth-child(5) { top: 82%; left: 48%; animation-delay: 3s; }
.particle-field span:nth-child(6) { top: 10%; left: 82%; animation-delay: 5s; }

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.6rem 0;
  position: relative;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 3rem;
}

.section-heading h2 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-heading p,
.hero-subtitle,
.benefit-card p,
.product-card p,
.timeline-step p,
.authority-copy p,
.faq-answer p,
.site-footer p,
.site-footer a,
.hero-trust li {
  color: var(--muted);
  line-height: 1.7;
}

.section-tag,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  color: #d8e8ff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.75rem;
}

.eyebrow-line {
  width: 2.25rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 211, 252, 0.95));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 8, 18, 0.66), rgba(3, 8, 18, 0.18));
  opacity: 0.7;
  pointer-events: none;
}

.site-header.scrolled {
  background: rgba(3, 8, 18, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(160, 186, 255, 0.08);
  box-shadow: 0 12px 40px rgba(3, 8, 18, 0.22);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(125, 211, 252, 0.22), rgba(77, 163, 255, 0.48)),
    rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(125, 211, 252, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 0 40px rgba(77, 163, 255, 0.16);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.brand-mark-image {
  width: 258px;
  height: 86px;
  padding: 0.5rem 1.1rem;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 176, 0, 0.2), rgba(125, 211, 252, 0.14)),
    rgba(4, 8, 15, 0.9);
  border-color: rgba(255, 176, 0, 0.24);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.4), 0 0 34px rgba(255, 176, 0, 0.14);
}

.brand-mark-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  filter: saturate(1.03) brightness(1.05);
}

.footer-brand .brand-mark-image {
  width: 188px;
  height: 62px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.brand-copy strong {
  letter-spacing: 0.12em;
  font-size: 1rem;
}

.brand-copy small {
  color: #d7e5fb;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.site-nav a:not(.button) {
  color: #d8e5fb;
  font-size: 0.96rem;
}

.site-nav a:not(.button):hover {
  color: white;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 56px;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease, filter 0.25s ease;
  will-change: transform;
  position: relative;
  overflow: hidden;
}

.button:hover {
  transform: translateY(-3px) scale(1.01);
}

.button::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 45%, rgba(255, 255, 255, 0.06));
  opacity: 0.72;
  pointer-events: none;
}

.button-primary {
  color: #221100;
  font-weight: 700;
  background: linear-gradient(135deg, #ff9f1f, #ffbc2a, #ffd86b);
  border-color: rgba(255, 228, 173, 0.26);
  box-shadow: var(--shadow-amber), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.button-primary:hover {
  color: #180d00;
  background: linear-gradient(135deg, #ffb037, #ffc43d, #ffe07b);
  box-shadow: 0 28px 82px rgba(255, 176, 0, 0.42), 0 0 32px rgba(255, 176, 0, 0.16);
  filter: saturate(1.04);
}

.button-secondary {
  background: rgba(5, 10, 18, 0.48);
  border-color: rgba(160, 186, 255, 0.24);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(160, 186, 255, 0.32);
}

.button-small {
  min-height: 46px;
  padding: 0 1.1rem;
  font-size: 0.92rem;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(160, 186, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: white;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  padding-top: 2.4rem;
  min-height: calc(100vh - var(--header-height) - 2rem);
  display: flex;
  align-items: center;
}

.hero-grid,
.authority-grid,
.footer-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: clamp(500px, 66vh, 620px);
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 2rem;
  padding: clamp(1rem, 2.2vw, 1.5rem);
}

.hero-media {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(160, 186, 255, 0.14);
  background:
    radial-gradient(circle at 78% 48%, rgba(255, 176, 0, 0.14), transparent 18%),
    linear-gradient(90deg, rgba(3, 8, 18, 0.98) 0%, rgba(3, 8, 18, 0.96) 48%, rgba(3, 8, 18, 0.78) 62%, rgba(3, 8, 18, 0.36) 100%);
  box-shadow: var(--shadow), 0 0 42px rgba(255, 176, 0, 0.08);
  isolation: isolate;
  animation: heroMediaEnter 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-media::before,
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media::before {
  background:
    linear-gradient(90deg, rgba(3, 8, 18, 0.96) 0%, rgba(3, 8, 18, 0.94) 40%, rgba(3, 8, 18, 0.58) 54%, rgba(3, 8, 18, 0.12) 68%, rgba(3, 8, 18, 0.22) 82%, rgba(3, 8, 18, 0.72) 100%),
    linear-gradient(180deg, rgba(3, 8, 18, 0.9) 0%, rgba(3, 8, 18, 0.24) 18%, rgba(3, 8, 18, 0.12) 48%, rgba(3, 8, 18, 0.8) 100%);
}

.hero-media::after {
  background:
    radial-gradient(circle at 72% 54%, rgba(255, 215, 150, 0.22), transparent 20%),
    radial-gradient(circle at 68% 52%, rgba(255, 176, 0, 0.12), transparent 28%),
    radial-gradient(circle at 60% 18%, rgba(77, 163, 255, 0.1), transparent 16%);
  mix-blend-mode: screen;
  opacity: 0.86;
}

.hero-background-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(78%, 1040px);
  height: 100%;
  object-fit: cover;
  object-position: 62% 52%;
  z-index: -1;
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.08) brightness(0.92);
  animation: heroImageZoom 1.6s ease-out both;
}

.hero-copy {
  max-width: min(100%, 560px);
  padding: clamp(1.15rem, 2vw, 1.6rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(4, 8, 15, 0.74), rgba(4, 8, 15, 0.52));
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 60px rgba(1, 6, 20, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: heroCopyEnter 1s 0.12s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-copy h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
  margin: 1rem 0 1.1rem;
  max-width: 9ch;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.9vw, 1.18rem);
  max-width: 46ch;
  color: #edf4ff;
}

.hero-support {
  margin: -0.2rem 0 0;
  color: #ffe8b5;
  font-size: 0.98rem;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.55rem 0 0.65rem;
}

.hero-offer {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.8rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 201, 74, 0.22);
  background: rgba(255, 201, 74, 0.1);
  color: #ffe4ae;
  max-width: 38rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 24px rgba(255, 176, 0, 0.06);
}

.hero-offer strong {
  color: white;
}

.cta-note {
  margin: 0;
  color: #ffe7b8;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.cta-note-center {
  text-align: center;
  margin-top: 0.9rem;
}

.hero-shipping-note {
  padding: 0 0 1.2rem;
}

.hero-shipping-note p {
  margin: 0;
  text-align: center;
  color: #f6d48a;
  letter-spacing: 0.04em;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.proof-pill,
.bundle-box,
.proof-card {
  border: 1px solid rgba(160, 186, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
}

.proof-pill {
  padding: 0.95rem 1rem;
  border-radius: 18px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.proof-pill strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.proof-pill span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.urgency-pill {
  border-color: rgba(125, 211, 252, 0.24);
  box-shadow: 0 0 30px rgba(77, 163, 255, 0.08);
}

.proof-pill:hover,
.proof-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 201, 74, 0.24);
  box-shadow: 0 24px 64px rgba(1, 6, 20, 0.34), 0 0 28px rgba(255, 176, 0, 0.08);
}

.hero-trust li::before,
.product-card li::before,
.authority-points li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb000, #ffc94a);
  box-shadow: 0 0 16px rgba(255, 176, 0, 0.36);
  display: inline-block;
  margin-right: 0.75rem;
}

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

.hero-device {
  position: relative;
  width: min(100%, 560px);
  margin-left: auto;
  padding: 1.2rem;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.02)),
    rgba(10, 17, 29, 0.68);
  border: 1px solid rgba(160, 186, 255, 0.14);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-device::after {
  content: "";
  position: absolute;
  inset: auto 0 -20% 15%;
  width: 70%;
  height: 55%;
  background: radial-gradient(circle, rgba(77, 163, 255, 0.25), transparent 68%);
  filter: blur(26px);
}

.floating-card,
.benefit-card,
.product-card,
.timeline-step,
.stat-card,
.faq-item,
.cta-panel {
  border: 1px solid rgba(160, 186, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(9, 15, 26, 0.74);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  min-width: 220px;
  padding: 1.2rem 1.25rem;
  border-radius: 22px;
  animation: floatCard 7s ease-in-out infinite;
}

.top-card {
  top: 6%;
  left: -3%;
}

.bottom-card {
  right: -2%;
  bottom: 18%;
  animation-delay: 1.4s;
}

.floating-kicker {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.floating-card strong {
  display: block;
  font-size: 1.05rem;
  margin: 0.45rem 0 0.35rem;
}

.floating-card small {
  color: var(--muted);
}

.status-badges {
  position: absolute;
  left: 8%;
  bottom: 2%;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.status-badges span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 201, 74, 0.2);
  font-size: 0.88rem;
  color: #ffe7b8;
}

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

.social-proof-section {
  padding-top: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.social-proof-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.2rem;
  align-items: stretch;
}

.social-proof-copy,
.social-proof-grid {
  min-width: 0;
}

.social-proof-copy {
  padding: 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(160, 186, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(9, 15, 26, 0.74);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.social-proof-copy h2 {
  margin: 1rem 0 0.8rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

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

.proof-card {
  padding: 1.4rem;
  border-radius: 20px;
}

.proof-card strong {
  display: block;
  margin-bottom: 0.7rem;
  line-height: 1.4;
}

.proof-card span {
  color: var(--muted);
  line-height: 1.6;
}

.benefit-card,
.product-card,
.timeline-step,
.stat-card,
.faq-item {
  border-radius: var(--radius-md);
}

.benefit-card {
  padding: 1.5rem;
  min-height: 226px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.benefit-card:hover,
.timeline-step:hover,
.faq-item:hover {
  transform: translateY(-6px);
  border-color: rgba(125, 211, 252, 0.26);
  box-shadow: 0 35px 90px rgba(4, 11, 24, 0.56), 0 0 40px rgba(77, 163, 255, 0.08);
}

.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.28), rgba(255, 201, 74, 0.16));
  color: white;
  font-weight: 700;
}

.benefit-card h3,
.product-card h3,
.timeline-step h3,
.faq-question {
  font-size: 1.2rem;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.product-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
}

.product-card {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(125, 211, 252, 0.26);
  box-shadow: 0 35px 90px rgba(4, 11, 24, 0.56), 0 0 40px rgba(77, 163, 255, 0.08);
}

.product-card.featured {
  transform: translateY(-10px);
  border-color: rgba(255, 201, 74, 0.34);
  box-shadow: 0 40px 100px rgba(4, 11, 24, 0.56), 0 0 48px rgba(255, 176, 0, 0.12);
  z-index: 2;
}

.product-card.featured:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 201, 74, 0.38);
  box-shadow: 0 42px 110px rgba(4, 11, 24, 0.58), 0 0 54px rgba(255, 176, 0, 0.16);
}

.product-card.featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 176, 0, 0.12), transparent 34%),
    radial-gradient(circle at 50% 0%, rgba(255, 221, 159, 0.18), transparent 26%);
  pointer-events: none;
}

.product-topline,
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(255, 176, 0, 0.14);
  color: #fff0c9;
  border: 1px solid rgba(255, 176, 0, 0.28);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.badge-outline {
  background: rgba(255, 255, 255, 0.03);
  color: #dbe7fb;
  border-color: rgba(160, 186, 255, 0.18);
}

.price {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 201, 74, 0.2);
  background: rgba(255, 176, 0, 0.08);
  color: #ffd97b;
  font-weight: 700;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(255, 176, 0, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 0 24px rgba(255, 176, 0, 0.06);
}

.product-media {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(160, 186, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  height: 240px;
  padding: 0.6rem;
}

.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.product-card ul,
.authority-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.bundle-box {
  padding: 1rem 1.05rem;
  border-radius: 18px;
}

.bundle-box strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.94rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.bundle-box span {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}


.product-footer {
  margin-top: auto;
  align-items: end;
}

.product-footer span {
  color: #d9e7fb;
  font-size: 0.95rem;
}

.urgency-note {
  margin: 1.4rem 0 0;
  color: #f3ddb0;
  text-align: center;
}

.trust-seals {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0 0 1.5rem;
}

.trust-seals span {
  display: grid;
  gap: 0.28rem;
  padding: 1rem 1rem 0.95rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 201, 74, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(8, 12, 20, 0.78);
  color: #ffebbc;
  text-align: left;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 44px rgba(1, 6, 20, 0.24);
}

.trust-seals strong {
  color: #fff2cf;
  font-size: 0.95rem;
}

.trust-seals small {
  color: #d6e3f8;
  font-size: 0.84rem;
  line-height: 1.45;
}

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

.timeline::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 54px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 176, 0, 0.65), transparent);
}

.timeline-step {
  padding: 1.5rem;
  position: relative;
}

.step-number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 138, 0, 0.28), rgba(255, 201, 74, 0.14));
  color: white;
  font-weight: 700;
  margin-bottom: 1rem;
}

.authority-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: center;
}

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

.stat-card {
  padding: 2rem;
}

.stat-card strong {
  display: block;
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.05em;
  margin-bottom: 0.7rem;
}

.stat-card span {
  color: var(--muted);
}

.final-cta {
  padding-top: 3rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.04));
}

.cta-panel {
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-panel::before,
.cta-panel::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(20px);
}

.cta-panel::before {
  width: 20rem;
  height: 20rem;
  right: -4rem;
  top: -6rem;
  background: rgba(255, 138, 0, 0.18);
}

.cta-panel::after {
  width: 18rem;
  height: 18rem;
  left: -4rem;
  bottom: -8rem;
  background: rgba(255, 201, 74, 0.14);
}

.cta-panel h2 {
  margin: 0.75rem auto 1rem;
  max-width: 12ch;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.cta-panel p {
  max-width: 48ch;
  margin: 0 auto 1.7rem;
  color: #d5e3fb;
}

.cta-support {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin: 0 0 1.35rem;
}

.cta-support span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 201, 74, 0.16);
  background: rgba(255, 255, 255, 0.05);
  color: #ffe8bb;
}

.cta-giant {
  min-height: 64px;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
  min-width: min(100%, 420px);
  font-size: 1.04rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: transparent;
  color: white;
  border: 0;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  width: 16px;
  height: 16px;
  position: relative;
  flex: 0 0 16px;
}

.faq-question span::before,
.faq-question span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: white;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.faq-question span::before {
  width: 16px;
  height: 2px;
}

.faq-question span::after {
  width: 2px;
  height: 16px;
}

.faq-question[aria-expanded="true"] span::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 1.5rem 0;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer p {
  padding-bottom: 1.4rem;
}

.site-footer {
  padding: 2rem 0 3rem;
  border-top: 1px solid rgba(160, 186, 255, 0.08);
  background: linear-gradient(180deg, rgba(4, 7, 14, 0), rgba(4, 7, 14, 0.8));
}

.footer-subtle-link {
  display: inline-flex;
  margin-top: 0.8rem;
  color: #cbd8ee;
  font-size: 0.92rem;
  border-bottom: 1px solid rgba(203, 216, 238, 0.28);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-subtle-link:hover {
  color: #ffffff;
  border-color: rgba(255, 201, 74, 0.52);
}

.footer-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
  align-items: start;
}

.footer-brand {
  margin-bottom: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.8rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal="left"] {
  transform: translateX(42px);
}

[data-reveal].revealed {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(4%, -3%, 0) scale(1.08); }
}

@keyframes floatParticle {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  20% { opacity: 1; }
  100% { transform: translateY(-40px) scale(1.2); opacity: 0; }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes heroMediaEnter {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImageZoom {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes heroCopyEnter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid,
  .timeline,
  .footer-grid,
  .authority-grid,
  .social-proof-strip {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: clamp(470px, 62vh, 560px);
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 840px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    left: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 22px;
    border: 1px solid rgba(160, 186, 255, 0.12);
    background: rgba(3, 8, 18, 0.9);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav.open {
    display: flex;
  }

  .hero {
    padding-top: 1.4rem;
  }

  .hero-grid {
    align-items: end;
    min-height: clamp(500px, 74vh, 580px);
    padding: 0.9rem;
  }

  .hero-media::before {
    background:
      linear-gradient(180deg, rgba(3, 8, 18, 0.88) 0%, rgba(3, 8, 18, 0.28) 22%, rgba(3, 8, 18, 0.22) 54%, rgba(3, 8, 18, 0.84) 100%),
      linear-gradient(90deg, rgba(3, 8, 18, 0.9) 0%, rgba(3, 8, 18, 0.62) 32%, rgba(3, 8, 18, 0.12) 60%, rgba(3, 8, 18, 0.3) 100%);
  }

  .hero-background-image {
    width: 88%;
    object-position: 64% 52%;
    transform: scale(1.03);
    filter: saturate(1.08) contrast(1.12) brightness(1);
  }

  .hero-copy {
    max-width: 100%;
    padding: 1.05rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(4, 8, 15, 0.8), rgba(4, 8, 15, 0.58));
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(2.6rem, 10vw, 4.2rem);
  }

  .hero-support {
    font-size: 0.92rem;
  }

  .hero-actions,
  .product-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .stats-panel,
  .benefits-grid,
  .social-proof-grid,
  .trust-seals {
    grid-template-columns: 1fr;
  }

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

  .hero-proof .proof-pill:last-child {
    grid-column: 1 / -1;
  }

  .product-card.featured {
    order: -1;
    transform: translateY(0) scale(1.02);
  }

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

@media (max-width: 560px) {
  .product-media {
    height: 228px;
  }

  .section {
    padding: 3.4rem 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: min(560px, calc(100vh - var(--header-height) - 0.7rem));
    padding: 0.8rem;
  }

  .hero-media {
    border-radius: 24px;
  }

  .hero-background-image {
    width: 100%;
    object-position: 68% 54%;
    transform: scale(1.12);
    filter: saturate(1.1) contrast(1.14) brightness(1.04);
  }

  .container {
    width: min(calc(100% - 1.2rem), var(--container));
  }

  .brand {
    gap: 0.65rem;
  }

  .brand-mark-image {
    width: 202px;
    height: 68px;
    padding: 0.4rem 0.85rem;
  }

  .brand-copy strong {
    font-size: 0.86rem;
  }

  .brand-copy small,
  .site-nav a:not(.button) {
    font-size: 0.8rem;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .hero-support {
    font-size: 0.88rem;
    margin-top: 0.1rem;
  }

  .proof-pill,
  .product-card,
  .benefit-card,
  .timeline-step,
  .cta-panel,
  .social-proof-copy,
  .proof-card {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-proof,
  .trust-seals {
    grid-template-columns: 1fr;
  }

  .hero-proof .proof-pill:last-child {
    grid-column: auto;
  }

  .hero-offer {
    padding: 0.72rem 0.9rem;
  }

  .hero-proof {
    margin-top: 0.95rem;
    gap: 0.7rem;
  }

  .proof-pill {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .proof-pill strong {
    margin-bottom: 0.18rem;
    font-size: 0.96rem;
  }

  .proof-pill span {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    padding-bottom: 2rem;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
