 :root {
  --bg: #000000;
  --bg-soft: #050605;
  --panel: rgba(10, 12, 10, 0.86);
  --panel-2: rgba(18, 22, 16, 0.72);
  --line: rgba(231, 231, 231, 0.18);
  --line-strong: rgba(231, 231, 231, 0.38);
  --text: #f4f4ee;
  --muted: #c1c1b5;
  --dim: #8f9288;
  --accent: #e7e7e7;
  --olive: #788366;
  --olive-dark: #1b2116;
  --warning: #b7aa7c;
  --container: 1170px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #000;
  color: var(--text);
  font-family: Poppins, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  background: url('https://storage.googleapis.com/msgsndr/SiNMbwLOs66tZhHK2Noj/media/687e53f02c48dda9c0ff9a65.svg') center top / cover no-repeat fixed, #000;
  opacity: .88;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(120,131,102,.22), transparent 34rem),
    linear-gradient(180deg, rgba(0,0,0,.35), #000 88%);
  background-size: 64px 64px, 64px 64px, auto, auto;
}
.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .12;
  background-image: repeating-linear-gradient(0deg, rgba(255,255,255,.18) 0, rgba(255,255,255,.18) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: overlay;
}
img, video, iframe { max-width: 100%; display: block; }
a { color: inherit; }
strong { color: #fff; }
.container { width: min(var(--container), calc(100% - 38px)); margin: 0 auto; }
.narrow { max-width: 900px; }
.center { text-align: center; margin-left: auto; margin-right: auto; }
.section { padding: 90px 0; position: relative; }
.section-tight { padding: 52px 0 36px; }
h1, h2, h3, .hero-kicker, .step-label, .section-code, .button {
  font-family: "Barlow Condensed", Poppins, sans-serif;
  text-transform: uppercase;
  letter-spacing: .035em;
}
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(32px, 4.5vw, 56px); line-height: .88; max-width: 940px; margin: 0 auto 18px; font-weight: 800; }
h2 { font-size: clamp(34px, 5.3vw, 62px); line-height: .96; margin-bottom: 22px; font-weight: 800; }
h3 { font-size: 28px; line-height: 1; margin-bottom: 10px; }
p { color: var(--muted); line-height: 1.72; font-size: 17px; }
.hero { min-height: 100vh; display: grid; align-items: center; padding-top: 28px; }
.hero-inner { text-align: center; }
.brand-logo { width: 170px; margin: 0 auto 30px; filter: drop-shadow(0 16px 36px rgba(0,0,0,.72)); }
.hero-kicker { color: #fff; font-weight: 700; font-size: 22px; line-height: 2; text-shadow: 0 0 17px rgba(231,231,231,.72); }
.hero-copy { max-width: 900px; margin: 0 auto 20px; font-size: 17px; color: #fff; }
.availability { display: inline-flex; align-items: center; gap: 10px; margin: 10px auto 30px; padding: 10px 15px; border: 1px solid var(--line); background: rgba(0,0,0,.54); color: var(--accent); font-size: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.availability::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 0 rgba(231,231,231,.7); animation: pulse 2s infinite; }
@keyframes pulse { 70% { box-shadow: 0 0 0 7px rgba(231,231,231,0); } }
.step-label { color: var(--text); font-size: 24px; margin-bottom: 14px; }
.video-frame { position: relative; padding: 10px; border: 1px solid var(--line); background: rgba(0,0,0,.74); box-shadow: 0 24px 80px rgba(0,0,0,.68); }
.video-frame::before { content: ""; position: absolute; inset: -1px; pointer-events: none; border: 1px solid rgba(255,255,255,.08); clip-path: polygon(0 0, 86px 0, 86px 1px, 1px 1px, 1px 86px, 0 86px, 0 0, 100% 0, 100% 86px, calc(100% - 1px) 86px, calc(100% - 1px) 1px, calc(100% - 86px) 1px, calc(100% - 86px) 0); }
.hero-video { width: min(880px, 100%); margin: 0 auto 30px; }
.secondary-video { width: min(820px, 100%); margin: 34px auto 30px; }
.video-frame video,
.video-frame iframe { width: 100%; background: #000; }

.hero-video iframe,
.secondary-video iframe {
  aspect-ratio: 16 / 9;
  border: 0;
}
.button { display: inline-flex; justify-content: center; align-items: center; min-height: 58px; padding: 17px 30px; border-radius: 3px; border: 1px solid var(--accent); text-decoration: none; font-size: 18px; font-weight: 800; letter-spacing: .11em; transition: transform .18s ease, background .18s ease, color .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #000; box-shadow: 0 14px 32px rgba(231,231,231,.08); }
.button-primary:hover { background: #fff; }
.mission-strip { text-align: center; }
.mission-strip .container { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 36px 20px; background: rgba(0,0,0,.5); }
.mission-strip h2 { font-size: clamp(28px, 4vw, 42px); margin-bottom: 8px; }
.mission-strip h2 span { color: #fff; }
.mission-strip p { margin-bottom: 10px; }
.underlined { color: #fff; font-style: italic; text-decoration: underline; font-weight: 700; }
.result-marquee { overflow: hidden; padding: 40px 0; position: relative; }
.result-marquee::before, .result-marquee::after { content: ""; position: absolute; top: 0; width: 95px; height: 100%; z-index: 2; pointer-events: none; }
.result-marquee::before { left: 0; background: linear-gradient(to right, #000, transparent); }
.result-marquee::after { right: 0; background: linear-gradient(to left, #000, transparent); }
.marquee-track { display: inline-flex; gap: 20px; width: max-content; animation: slide 55s linear infinite; }
@keyframes slide { to { transform: translateX(-50%); } }
.result-card { width: 250px; height: 360px; flex: 0 0 auto; background-size: cover; background-position: center; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; box-shadow: inset 0 -90px 80px rgba(0,0,0,.2); }
.proof-video { background: linear-gradient(180deg, transparent, rgba(22,27,18,.32), transparent); }
.proof-video p { max-width: 880px; margin-left: auto; margin-right: auto; }
.about { background: rgba(0,0,0,.26); }
.about-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: 58px; align-items: center; }
.image-card { padding: 9px; border: 1px solid var(--line); background: rgba(0,0,0,.62); box-shadow: 0 28px 80px rgba(0,0,0,.54); }
.image-card img { width: 100%; border-radius: 8px; }
.section-code { color: var(--warning); font-size: 19px; letter-spacing: .18em; margin-bottom: 12px; }
.section-heading { margin-bottom: 36px; }
.testimonial-grid { columns: 3 300px; column-gap: 22px; margin-bottom: 38px; }
.testimonial-card { display: inline-block; width: 100%; break-inside: avoid; margin: 0 0 22px; padding: 25px; border: 1px solid var(--line); background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.025)); border-radius: 14px; position: relative; overflow: hidden; }
.testimonial-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 0 0, rgba(120,131,102,.16), transparent 55%); pointer-events: none; }
.testimonial-head { position: relative; display: flex; align-items: center; gap: 14px; margin-bottom: 18px; z-index: 1; }
.avatar { width: 52px; height: 52px; border-radius: 50%; background-size: 230%; background-repeat: no-repeat; border: 2px solid rgba(255,255,255,.18); flex: 0 0 auto; }
.avatar-initial { display: grid; place-items: center; background: var(--olive-dark); color: #fff; font-family: "Barlow Condensed"; font-size: 28px; font-weight: 800; }
.testimonial-head strong { font-family: "Barlow Condensed"; text-transform: uppercase; letter-spacing: .07em; font-size: 24px; }
.testimonial-card p { position: relative; z-index: 1; font-size: 15.8px; margin-bottom: 0; }
.vertical-video { position: relative; width: 100%; padding-bottom: 177.77%; border-radius: 10px; overflow: hidden; background: #050505; border: 1px solid rgba(255,255,255,.12); }
.vertical-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.inside-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 34px; align-items: start; }
.kit-list { display: grid; gap: 12px; }
.kit-item, .faq-item { border: 1px solid var(--line-strong); background: rgba(0,0,0,.62); border-radius: 10px; overflow: hidden; }
.kit-item summary, .faq-item summary { cursor: pointer; list-style: none; padding: 18px 20px; color: #fff; font-weight: 700; display: flex; gap: 14px; align-items: center; }
.kit-item summary::-webkit-details-marker, .faq-item summary::-webkit-details-marker { display: none; }
.kit-item summary span { color: var(--warning); font-family: "Barlow Condensed"; font-size: 22px; }
.kit-item div, .faq-item p { padding: 0 20px 22px; }
.kit-item ul, .battle-list { margin: 16px 0 0; padding: 0; list-style: none; }
.kit-item li, .battle-list li { color: var(--muted); margin: 12px 0; padding-left: 26px; position: relative; line-height: 1.62; }
.kit-item li::before, .battle-list li::before { content: "›"; position: absolute; left: 0; color: var(--warning); font-weight: 800; }
.tactical-panel { background: linear-gradient(rgba(0,0,0,.62), rgba(0,0,0,.78)), url('https://storage.googleapis.com/msgsndr/SiNMbwLOs66tZhHK2Noj/media/68279ce575852d1a3534002e.jpeg') center / cover fixed; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.battle-list { border: 1px solid var(--line); padding: 18px 26px; background: rgba(0,0,0,.7); }
.battle-plan { background: linear-gradient(180deg, rgba(120,131,102,.1), transparent); }
.battle-booking { display: grid; grid-template-columns: minmax(0, .82fr) minmax(480px, 1.18fr); margin-bottom: 36px; border: 1px solid rgba(231,231,231,.38); background: linear-gradient(135deg, rgba(18,28,42,.98), rgba(5,8,12,.98)); box-shadow: 0 30px 90px rgba(0,0,0,.56); overflow: hidden; }
.battle-copy { padding: 40px 36px; }
.calendar-panel { min-width: 0; padding: 34px; border-left: 1px solid rgba(231,231,231,.16); background: rgba(0,0,0,.18); }
.calendar-heading { margin-bottom: 20px; }
.calendar-heading h3 { margin-bottom: 6px; }
.calendar-heading p { margin-bottom: 0; }
.calendar-frame { height: 650px; overflow: hidden; border: 1px solid rgba(231,231,231,.18); border-radius: 8px; background: #fff; }
.calendar-frame iframe { display: block; width: 100%; height: 100%; border: 0; background: #fff; }
label { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; display: grid; gap: 8px; }
input, textarea { width: 100%; border-radius: 2px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.06); color: #fff; padding: 13px 12px; outline: none; }
input:focus, textarea:focus { border-color: var(--accent); }
.form-status { margin: 0; font-size: 12px; color: var(--dim); }
.ops-card { margin-top: 26px; padding: 22px; border: 1px solid rgba(183,170,124,.48); background: rgba(183,170,124,.08); }
.ops-card p { margin-bottom: 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feature-grid article { border: 1px solid var(--line); background: rgba(0,0,0,.56); padding: 22px; }
.feature-grid h3 { font-size: 24px; }
.feature-grid p { font-size: 14.5px; margin: 0; }
.faq-list { display: grid; gap: 12px; }
.faq-item summary { justify-content: space-between; font-size: 18px; }
.faq-item summary::after { content: "+"; color: var(--warning); font-family: "Barlow Condensed"; font-size: 26px; }
.faq-item[open] summary::after { content: "–"; }
.final-cta { background: linear-gradient(180deg, transparent, rgba(120,131,102,.13)); }
footer { border-top: 1px solid var(--line); text-align: center; padding: 24px 20px; color: var(--dim); font-size: 13px; }
footer a { color: #fff; text-decoration: none; }
.mobile-sticky { display: none; }
[data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
[data-reveal].is-visible { opacity: 1; transform: none; }
@media (max-width: 920px) {
  .about-grid, .inside-grid { grid-template-columns: 1fr; }
  .battle-booking { grid-template-columns: 1fr; }
  .calendar-panel { border-top: 1px solid rgba(231,231,231,.16); border-left: 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero { padding-top: 20px; }
  .brand-logo { width: 142px; }
  .hero-copy { font-size: 16px; }
  .result-marquee { overflow-x: auto; padding: 20px 20px 30px; scroll-snap-type: x mandatory; }
  .result-marquee::before, .result-marquee::after { display: none; }
  .marquee-track { animation: none; gap: 12px; }
  .result-card { width: 230px; height: 336px; scroll-snap-align: start; }
  .testimonial-grid { columns: 1; }
  .feature-grid { grid-template-columns: 1fr; }
  .button { width: 100%; }
  .battle-booking { margin-bottom: 26px; }
  .battle-copy, .calendar-panel { padding: 22px; }
  .calendar-frame { height: 620px; }
  .proof-video .secondary-video { margin: 24px auto 20px; }
  .final-cta { padding-bottom: 84px; }
  .mobile-sticky { display: flex; position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 50; min-height: 54px; justify-content: center; align-items: center; border-radius: 3px; background: var(--accent); color: #000; font-family: "Barlow Condensed"; text-transform: uppercase; letter-spacing: .12em; font-weight: 800; text-decoration: none; box-shadow: 0 14px 42px rgba(0,0,0,.5); }
  footer { padding-bottom: 88px; }
}
