/* FC Meilen Fussball Camp — White background + black cards/header/footer
   Theme: Black / White / Yellow (#f2b823)
*/

:root{
  --yellow:#f2b823;

  /* Light page */
  --page:#ffffff;
  --page2:#f6f7fb;
  --text:#0a0a0a;
  --muted:rgba(10,10,10,.70);
  --muted2:rgba(10,10,10,.55);

  /* Dark surfaces */
  --black:#050505;
  --black2:#0b0b0b;
  --card:#0b0b0b;            /* cards are black */
  --card2:#0f0f0f;
  --stroke:rgba(255,255,255,.14);   /* borders on dark cards */
  --strokeLight:rgba(10,10,10,.12); /* borders on light surfaces */

  --shadow: 0 18px 60px rgba(0,0,0,.18);
  --shadowDark: 0 22px 70px rgba(0,0,0,.55);

  --radius:22px;
  --radius2:30px;
  --container:1180px;

  --glow: 0 0 0.75rem rgba(242,184,35,.35), 0 0 2.5rem rgba(242,184,35,.18);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 720px at 85% 0%, rgba(242,184,35,.12), transparent 55%),
    radial-gradient(900px 520px at 10% 22%, rgba(10,10,10,.06), transparent 60%),
    linear-gradient(180deg, var(--page), var(--page2));
  color:var(--text);
  overflow-x:hidden;
}

body{
  margin:0;
  font-family:Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  background:
    /* glow overlays */
    radial-gradient(1200px 720px at 85% 0%, rgba(242,184,35,.12), transparent 55%),
    radial-gradient(900px 520px at 10% 22%, rgba(10,10,10,.06), transparent 60%),

    /* background image */
    url("/assets/ball.jpg"),

    /* fallback base */
    linear-gradient(180deg, var(--page), var(--page2));

  background-size:
    auto,
    auto,
    cover,
    auto;

  background-position:
    center,
    center,
    center,
    center;

  background-repeat:
    no-repeat,
    no-repeat,
    no-repeat,
    no-repeat;

  background-attachment:
    scroll,
    scroll,
    fixed,
    scroll;

  color:var(--text);
  overflow-x:hidden;
}

/* subtle noise, works on light background */
.bg-noise:before{
  content:"";
  position:fixed;
  inset:-20%;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='190' height='190'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='190' height='190' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  pointer-events:none;
  mix-blend-mode:multiply;
  opacity:.12;
  transform:rotate(4deg);
  z-index:-1;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
.container{ width:min(var(--container), calc(100% - 32px)); margin:0 auto; }

.muted{ color:var(--muted); }
.tiny-muted{ color:var(--muted2); font-size:.92rem; margin-top:18px; }
.mono{ font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace; }

/* Header (black) */
.site-header{
  position:sticky; top:0; z-index:50;
  background: linear-gradient(180deg, rgba(5,5,5,.96), rgba(5,5,5,.88));
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}
.nav-wrap{ display:flex; align-items:center; justify-content:space-between; gap:14px; padding:14px 0; }

.brand{ display:flex; align-items:center; gap:12px; }
.brand-mark{
  width:44px; height:44px; border-radius:14px;
  display:grid; place-items:center;
  background: radial-gradient(circle at 30% 30%, rgba(242,184,35,.55), rgba(242,184,35,.10));
  border:1px solid rgba(242,184,35,.35);
  box-shadow: var(--glow);
  font-weight:800;
  letter-spacing:.5px;
  color:#111;
}
.brand-text strong{ display:block; font-weight:800; line-height:1; color:#fff; }
.brand-text em{ display:block; font-style:normal; font-size:.86rem; color:rgba(255,255,255,.62); }

.nav{ display:flex; align-items:center; gap:10px; }
.nav-link{
  padding:10px 10px;
  border-radius:12px;
  color:rgba(255,255,255,.78);
  position:relative;
  transition:transform .2s ease, color .2s ease, background .2s ease;
}
.nav-link:after{
  content:"";
  position:absolute;
  left:10px; right:10px; bottom:6px;
  height:2px;
  background:linear-gradient(90deg, transparent, var(--yellow), transparent);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .25s ease;
  opacity:.95;
}
.nav-link:hover{
  color:#fff;
  transform:translateY(-1px);
  background: rgba(255,255,255,.05);
}
.nav-link:hover:after{ transform:scaleX(1); }

.nav-cta{
  padding:11px 14px;
  border-radius:14px;
  background: linear-gradient(180deg, rgba(242,184,35,.96), rgba(242,184,35,.78));
  color:#111;
  font-weight:900;
  box-shadow: var(--glow);
  border:1px solid rgba(242,184,35,.35);
  transition:transform .2s ease, filter .2s ease;
}
.nav-cta:hover{ transform:translateY(-2px); filter:saturate(1.10); }

.nav-toggle{
  display:none;
  width:46px; height:46px; border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#fff; cursor:pointer;
}
.nav-toggle span{ display:block; width:18px; height:2px; background:#fff; margin:4px auto; border-radius:99px; opacity:.92; }

.scroll-progress{
  height:3px; width:0%;
  background: linear-gradient(90deg, var(--yellow), rgba(242,184,35,.25));
  box-shadow: var(--glow);
}


.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--strokeLight);
  background: rgba(255,255,255,.78);
  color:rgba(10,10,10,.80);
  width:fit-content;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}
.pulse{ width:10px; height:10px; border-radius:99px; background:var(--yellow); box-shadow: var(--glow); position:relative; }
.pulse:after{
  content:""; position:absolute; inset:-10px;
  border:1px solid rgba(242,184,35,.35);
  border-radius:999px;
  animation:pulse 1.8s ease-out infinite;
}
@keyframes pulse{ 0%{ transform:scale(.2); opacity:.9 } 100%{ transform:scale(1.3); opacity:0 } }

.hero-title{
  font-size: clamp(2.1rem, 3.6vw, 3.6rem);
  line-height:1.06;
  margin:16px 0 12px;
  letter-spacing:-.02em;
  color:#0a0a0a;
}
.hl{
  display:inline-block;
  color:#0a0a0a;
  position:relative;
}
.hl:after{
  content:"";
  position:absolute; left:-6px; right:-6px; bottom:.12em;
  height:.22em;
  background: rgba(242,184,35,.65);
  border-radius:999px;
  z-index:-1;
  transform:skewX(-12deg);
  box-shadow: 0 12px 36px rgba(242,184,35,.20);
}
.hero-lead{ font-size:1.06rem; color:rgba(10,10,10,.72); max-width:58ch; }
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-top:18px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid var(--strokeLight);
  cursor:pointer;
  transition: transform .18s ease, filter .18s ease, background .18s ease, box-shadow .18s ease;
  user-select:none;
  font-weight:800;
}
.btn .arrow{ display:inline-block; transition:transform .18s ease; }
.btn:hover .arrow{ transform:translateX(3px); }

.btn-primary{
  background: linear-gradient(180deg, rgba(242,184,35,.98), rgba(242,184,35,.78));
  color:#111;
  border-color: rgba(242,184,35,.35);
  box-shadow: var(--glow);
}
.btn-primary:hover{ transform:translateY(-2px); filter:saturate(1.06); }

.btn-ghost{
  background: rgba(255,255,255,.82);
  color:#111;
  border-color: rgba(10,10,10,.14);
}
.btn-ghost:hover{
  transform:translateY(-2px);
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
}
.btn.small{ padding:10px 12px; border-radius:14px; font-weight:900; font-size:.92rem; }

.stats{ display:flex; gap:14px; margin-top:18px; flex-wrap:wrap; }
.stat{
  padding:14px 14px;
  border-radius:18px;
  border:1px solid var(--strokeLight);
  background: rgba(255,255,255,.84);
  min-width: 140px;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
}
.stat-num{ font-size:1.7rem; font-weight:900; letter-spacing:-.02em; }
.stat-label{ color:rgba(10,10,10,.60); font-size:.92rem; }

/* Hero card: BLACK card on white background */
.hero-card{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, var(--card), #060606);
  box-shadow: var(--shadowDark);
  position:relative;
  color:#fff;
}
.hero-photo{ position:relative; height: 290px; overflow:hidden; }
.hero-photo img{ width:100%; height:100%; object-fit:cover; transform:scale(1.03); transition: transform .6s ease; filter:contrast(1.08) saturate(1.08); }
.hero-card:hover .hero-photo img{ transform:scale(1.09); }
.shine{
  position:absolute; inset:-60%;
  background: linear-gradient(120deg, transparent 35%, rgba(242,184,35,.30), transparent 65%);
  transform:translateX(-30%) rotate(10deg);
  transition: transform .9s ease;
  pointer-events:none;
  mix-blend-mode:screen;
}
.hero-card:hover .shine{ transform:translateX(30%) rotate(10deg); }

.hero-card-body{ padding:16px 16px 18px; }
.hero-card-title{ font-weight:900; margin-bottom:10px; letter-spacing:-.01em; }

.checklist{ margin:0; padding:0; list-style:none; display:grid; gap:8px; color:rgba(255,255,255,.78); }
.checklist li{ position:relative; padding-left:24px; }
.checklist li:before{
  content:"*";
  position:absolute; left:0; top:0;
  color:var(--yellow);
  font-weight:900;
  text-shadow: var(--glow);
}

.mini-cta{
  margin-top:14px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:rgba(242,184,35,.95);
  font-weight:900;
  transition: transform .18s ease;
}
.mini-cta:hover{ transform:translateX(2px); }

.hero-bottom{ padding:14px 0 10px; }
.hero-bottom-inner{ display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; }
.ticker{
  border:1px solid var(--strokeLight);
  background: rgba(255,255,255,.86);
  border-radius: 18px;
  padding:12px 14px;
  color:rgba(10,10,10,.74);
  display:flex; gap:10px; align-items:center;
  box-shadow: 0 14px 40px rgba(0,0,0,.10);
}
.ticker strong{ color:#0a0a0a; }

/* Sections */
.section{ padding:68px 0; }
.section-alt{
  background: linear-gradient(180deg, rgba(10,10,10,.02), rgba(10,10,10,.00));
  border-top: 1px solid rgba(10,10,10,.06);
  border-bottom: 1px solid rgba(10,10,10,.06);
}
.section-head{ max-width: 78ch; }
.section-head h2{
  margin:0 0 8px;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing:-.02em;
  color:#0a0a0a;
}
.section-head p{ margin:0; }

.grid-3{ display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:18px; }
.grid-2{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; margin-top:16px; }

/* BLACK cards */
.card{
  padding:18px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card), #060606);
  border:1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadowDark);
  position:relative;
  overflow:hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  color:#fff;
}
.card:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(520px 220px at 20% 0%, rgba(242,184,35,.22), transparent 55%);
  opacity:0;
  transition: opacity .25s ease;
  pointer-events:none;
}
.card:hover{
  transform: translateY(-4px);
  border-color: rgba(242,184,35,.28);
  box-shadow: 0 26px 90px rgba(0,0,0,.65);
}
.card:hover:before{ opacity:1; }
.card-icon{ font-size:1.7rem; margin-bottom:10px; }

.split{ display:grid; grid-template-columns: 1.1fr .9fr; gap:16px; margin-top:18px; }
.pill-row{ display:flex; gap:10px; flex-wrap:wrap; margin:12px 0 12px; }
.pill{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(10,10,10,.12);
  background: rgba(255,255,255,.85);
  color:rgba(10,10,10,.72);
  font-size:.92rem;
  box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

/* Light map box */
.map-box{
  margin-top:14px;
  border-radius: var(--radius2);
  border:1px solid rgba(10,10,10,.10);
  background: rgba(255,255,255,.92);
  overflow:hidden;
  position:relative;
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
}
.map-glow{
  position:absolute; inset:-60%;
  background: radial-gradient(circle at 30% 30%, rgba(242,184,35,.20), transparent 55%);
  opacity:.85;
  pointer-events:none;
}
.map-inner{ padding:18px; position:relative; }
.map-title{ font-weight:900; margin-bottom:4px; color:#0a0a0a; }

/* Quote & requirements as BLACK surfaces */
.quote-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, var(--card2), #070707);
  padding:18px;
  position:relative;
  overflow:hidden;
  box-shadow: var(--shadowDark);
  color:#fff;
}
.quote-mark{
  position:absolute; top:-10px; left:10px;
  font-size:5rem; opacity:.14;
  color:var(--yellow);
  text-shadow: var(--glow);
}
.quote-by{ color:rgba(255,255,255,.62); font-size:.92rem; margin-top:10px; }
.quote-card p{ color:rgba(255,255,255,.82); }

.requirements{
  margin-top:14px;
  padding:16px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, var(--card2), #070707);
  box-shadow: var(--shadowDark);
  color:#fff;
}

/* Timeline */
.timeline{ margin-top:18px; display:grid; gap:14px; }
.timeline-item{ display:grid; grid-template-columns: 20px 1fr; gap:12px; align-items:start; }
.timeline-dot{
  width:12px; height:12px; border-radius:999px;
  background: var(--yellow);
  box-shadow: var(--glow);
  margin-top:18px;
}
.timeline-card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--card), #060606);
  border:1px solid rgba(255,255,255,.10);
  padding:16px;
  position:relative;
  overflow:hidden;
  box-shadow: var(--shadowDark);
  color:#fff;
}
.timeline-card .muted{ color:rgba(255,255,255,.72); }

/* Media cards (black) */
.media-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, var(--card), #060606);
  padding:18px;
  overflow:hidden;
  position:relative;
  box-shadow: var(--shadowDark);
  color:#fff;
}
.media-card-top{ display:flex; align-items:center; justify-content:space-between; gap:10px; margin-bottom:10px; }
.tag{
  font-size:.82rem;
  font-weight:900;
  padding:7px 10px;
  border-radius:999px;
  color:#111;
  background: rgba(242,184,35,.98);
  border:1px solid rgba(242,184,35,.35);
  box-shadow: var(--glow);
  white-space:nowrap;
}

/* Pricing cards (black) */
.price-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap:14px; margin-top:18px; }
.price-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, var(--card), #060606);
  padding:18px;
  position:relative;
  overflow:hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
  box-shadow: var(--shadowDark);
  color:#fff;
}
.price-card:hover{ transform: translateY(-4px); border-color: rgba(242,184,35,.26); box-shadow: 0 26px 90px rgba(0,0,0,.65); }
.price-card.featured{
  background:
    radial-gradient(520px 240px at 10% 0%, rgba(242,184,35,.18), transparent 65%),
    linear-gradient(180deg, var(--card), #060606);
  border-color: rgba(242,184,35,.22);
}
.price-top{ display:flex; align-items:baseline; justify-content:space-between; gap:10px; }
.price-title{ font-weight:900; }
.price-amount{
  font-size:1.6rem;
  font-weight:900;
  letter-spacing:-.02em;
  color:var(--yellow);
  text-shadow:0 0 0.7rem rgba(242,184,35,.22);
}

.pay-note{ margin-top:18px; }
.pay-note-inner{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  padding:16px;
  border-radius: var(--radius2);
  border:1px solid rgba(10,10,10,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
  color:#0a0a0a;
}
.pay-note-inner .btn-ghost{ background:#fff; }

/* Gallery (light shell + images) */
.splide{
  margin-top:16px;
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(10,10,10,.10);
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
}
.splide__slide img{
  width:100%;
  height:420px;
  object-fit:cover;
  transition: transform .6s ease;
  filter:contrast(1.06) saturate(1.06);
}
.splide__slide:hover img{ transform: scale(1.06); }

.video-grid{ display:grid; grid-template-columns: 1fr 1fr; gap:14px; margin-top:16px; }
.video-card{
  border-radius: var(--radius2);
  border:1px solid rgba(10,10,10,.10);
  background: rgba(255,255,255,.92);
  padding:16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
}
.video-title{ font-weight:900; margin-bottom:10px; color:#0a0a0a; }
.video-wrap{
  position:relative;
  padding-top:56.25%;
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(10,10,10,.10);
  background: rgba(10,10,10,.04);
}
.video-wrap iframe{ position:absolute; inset:0; width:100%; height:100%; }

/* FAQ (black accordions) */
.faq{ margin-top:16px; display:grid; gap:10px; }
.faq-item{
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, var(--card), #060606);
  padding:14px 14px;
  box-shadow: var(--shadowDark);
  color:#fff;
}
.faq-item summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item[open]{ border-color: rgba(242,184,35,.22); }
.faq-item div{ margin-top:10px; color:rgba(255,255,255,.75); }

.cta-band{
  margin-top:20px;
  border-radius: var(--radius2);
  border:1px solid rgba(10,10,10,.10);
  background:
    radial-gradient(600px 220px at 20% 0%, rgba(242,184,35,.22), transparent 60%),
    rgba(255,255,255,.92);
  padding:16px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
  color:#0a0a0a;
}
.cta-title{ font-weight:900; letter-spacing:-.02em; }

/* Footer (black) */
.site-footer{
  padding:44px 0 28px;
  border-top:1px solid rgba(255,255,255,.08);
  background: linear-gradient(180deg, rgba(5,5,5,.98), rgba(5,5,5,.92));
  color:#fff;
}
.footer-grid{ display:grid; grid-template-columns: 1.3fr 1fr 1fr; gap:14px; }
.footer-title{ font-weight:900; margin-bottom:8px; }
.site-footer .muted{ color:rgba(255,255,255,.68); }

.chip-row{ display:flex; gap:8px; flex-wrap:wrap; margin-top:12px; }
.chip{
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:rgba(255,255,255,.75);
  font-size:.86rem;
}
.chip-yellow{
  border-color: rgba(242,184,35,.35);
  background: rgba(242,184,35,.12);
  box-shadow: 0 0 1.2rem rgba(242,184,35,.12);
  color:#fff;
}
.footer-bottom{
  margin-top:16px;
  padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:space-between; gap:10px;
}
.link{ color:rgba(242,184,35,.95); }
.link:hover{ text-decoration:underline; }

/* To top */
.to-top{
  position:fixed;
  right:16px;
  bottom:16px;
  width:46px;
  height:46px;
  border-radius:16px;
  border:1px solid rgba(10,10,10,.12);
  background: rgba(255,255,255,.92);
  color:#0a0a0a;
  cursor:pointer;
  display:none;
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}
.to-top.show{ display:block; }

/* Form (white shell, black kid cards) */
.form-hero{ padding-top:36px; }
.form-hero-inner{
  border-radius: var(--radius2);
  border:1px solid rgba(10,10,10,.10);
  background:
    radial-gradient(720px 260px at 10% 0%, rgba(242,184,35,.20), transparent 65%),
    rgba(255,255,255,.92);
  padding:18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
  margin-bottom:14px;
}
.price-live{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-top:12px; }
.price-live-num{
  font-size:1.6rem;
  font-weight:900;
  color:#0a0a0a;
}
.alert{
  border-radius: var(--radius);
  border:1px solid rgba(220,38,38,.25);
  background: rgba(220,38,38,.08);
  padding:14px;
  margin:10px 0 14px;
}
.alert ul{ margin:8px 0 0; color:rgba(10,10,10,.80); }

.form{
  border-radius: var(--radius2);
  border:1px solid rgba(10,10,10,.10);
  background: rgba(255,255,255,.92);
  padding:16px;
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
}
.form-section{ padding:14px 0; border-bottom:1px dashed rgba(10,10,10,.14); }
.form-section:last-child{ border-bottom:none; }
.form-section-title{ font-weight:900; margin-bottom:10px; letter-spacing:-.01em; }

.field{ display:grid; gap:8px; margin-bottom:12px; }
.field span{ color:rgba(10,10,10,.72); font-size:.92rem; }

input, select, textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 16px;
  border:1px solid rgba(10,10,10,.14);
  background: #ffffff;
  color:#0a0a0a;
  outline:none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(242,184,35,.55);
  box-shadow: 0 0 0 4px rgba(242,184,35,.18);
}

.check{ display:flex; gap:10px; align-items:flex-start; color:rgba(10,10,10,.72); }
.check input{ width:18px; height:18px; margin-top:3px; }
.hp{ position:absolute; left:-9999px; opacity:0; }

/* Kid card stays BLACK */
.kid-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, var(--card), #060606);
  padding:14px;
  margin:10px 0;
  position:relative;
  overflow:hidden;
  box-shadow: var(--shadowDark);
  color:#fff;
}
.kid-card .field span{ color:rgba(255,255,255,.70); }
.kid-card input, .kid-card select, .kid-card textarea{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
}
.kid-card input::placeholder{ color:rgba(255,255,255,.55); }
.kid-card input:focus, .kid-card select:focus, .kid-card textarea:focus{
  border-color: rgba(242,184,35,.40);
  box-shadow: 0 0 0 4px rgba(242,184,35,.14);
}

.kid-top{ display:flex; align-items:center; justify-content:space-between; gap:12px; margin-bottom:6px; }
.kid-title{ font-weight:900; }
.kid-remove{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  color:#fff;
  padding:10px 12px;
  border-radius: 14px;
  cursor:pointer;
  font-weight:900;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.kid-remove:hover{
  transform:translateY(-1px);
  border-color: rgba(242,184,35,.30);
  background: rgba(242,184,35,.10);
}

.form-actions{ margin-top:10px; }

.bank-box{
  margin-top:12px;
  padding:12px;
  border-radius: 18px;
  border:1px solid rgba(10,10,10,.10);
  background: rgba(255,255,255,.92);
}
.bank-title{ font-weight:900; margin-bottom:6px; color:#0a0a0a; }

/* Thanks */
.thanks{
  border-radius: var(--radius2);
  border:1px solid rgba(10,10,10,.10);
  background: rgba(255,255,255,.92);
  padding:20px;
  box-shadow: 0 18px 60px rgba(0,0,0,.10);
  max-width: 760px;
  margin:0 auto;
  text-align:center;
  position:relative;
  overflow:hidden;
}
.thanks:before{
  content:"";
  position:absolute; inset:-2px;
  background: radial-gradient(600px 240px at 50% 0%, rgba(242,184,35,.22), transparent 55%);
  opacity:.95;
  pointer-events:none;
}
.thanks-badge{
  display:inline-flex;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(242,184,35,.45);
  background: rgba(242,184,35,.18);
  box-shadow: var(--glow);
  font-weight:900;
  color:#0a0a0a;
  margin-bottom:10px;
  position:relative;
  z-index:1;
}
.confetti{ position:absolute; inset:0; width:100%; height:100%; pointer-events:none; opacity:.9; }

/* Prose */
.prose{ max-width: 78ch; }
.prose h1{ margin-top:0; color:#0a0a0a; }
.prose h2{ margin-top:26px; color:#0a0a0a; }
.prose ul{ color:rgba(10,10,10,.72); }

/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .hero-bottom-inner{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .price-grid{ grid-template-columns: 1fr; }
  .video-grid{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }

  .nav-toggle{ display:inline-grid; place-items:center; }
  .nav{
    position:fixed; top:72px; left:16px; right:16px;
    flex-direction:column; gap:8px; padding:12px;
    border-radius: 22px;
    border:1px solid rgba(255,255,255,.12);
    background: rgba(5,5,5,.92);
    transform: translateY(-20px);
    opacity:0;
    pointer-events:none;
    transition: opacity .2s ease, transform .2s ease;
    box-shadow: 0 18px 60px rgba(0,0,0,.45);
  }
  .nav.open{ transform: translateY(0); opacity:1; pointer-events:auto; }
  .nav-link, .nav-cta{ width:100%; text-align:center; }
}

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


/* HERO */
.hero{
  position:relative;
  padding:34px 0 0;
  min-height: 70vh;            /* IMPORTANT: gives the video height */
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  z-index:0;
  overflow:hidden;
  background:url("/images/hero-placeholder.jpg") center/cover no-repeat;
}

/* Force video to fill */
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  z-index:1;
  opacity:1;                   /* TEMP: set to 1 while testing */
  filter:none;                 /* TEMP: remove filters while testing */
}

/* Overlay is above video but below content */
.hero-overlay{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;         /* so it can’t “block” anything */
  background: linear-gradient(
    180deg,
    rgba(255,255,255,.65),
    rgba(255,255,255,.92) 55%,
    rgba(246,247,251,1)
  );
}

/* Content above all */
.hero-grid{
  position:relative;
  z-index:5;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:center;
  padding:22px 0 28px;
}


/* Mobile layout */
@media (max-width: 980px){
  .hero{
    min-height: 640px;
    padding-top: 18px;
  }
  .hero-grid{
    grid-template-columns: 1fr;
  }
  .hero-video{
    opacity:.18;
    filter:saturate(1.10) contrast(1.08) brightness(.98);
  }
}
