/* ============================================================
   THE DROP LEAGUE — shared design system
   Background #0B0D1A · Card #20263B · Brand Blue #235EE5
   Headers: Barlow Condensed · Body: DM Sans
   Accent: points-green #2FD08A (wins / weekly drops / deltas)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  --bg:        #0B0D1A;
  --bg-2:      #0E1326;
  --card:      #20263B;
  --card-2:    #161B2C;
  --card-3:    #1A2032;
  --brand:     #235EE5;
  --brand-2:   #4B7BF2;
  --brand-ink: #9DB8FB;
  --green:     #2FD08A;
  --green-ink: #7FE9BE;
  --text:      #EDEFF7;
  --muted:     #9AA1BA;
  --muted-2:   #646B85;
  --line:      rgba(255,255,255,0.08);
  --line-2:    rgba(255,255,255,0.05);
  --radius:    18px;
  --radius-lg: 26px;
  --maxw:      1200px;
  --grad-blue: linear-gradient(135deg, #2E6BF0 0%, #2350D6 100%);
  --shadow-blue: 0 18px 40px -14px rgba(35,94,229,0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, .head {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: 0.012em;
  text-transform: uppercase;
}

/* ---- layout ---- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; position: relative; }
.section.tight { padding: 80px 0; }
.band { background: var(--bg-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brand-ink);
  padding: 8px 15px;
  border: 1px solid rgba(35,94,229,0.35);
  background: rgba(35,94,229,0.10);
  border-radius: 100px;
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 4px rgba(47,208,138,0.18);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.45} }

.kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-2);
}

.h-xl { font-size: clamp(48px, 7vw, 92px); }
.h-lg { font-size: clamp(40px, 5.4vw, 68px); }
.h-md { font-size: clamp(32px, 4vw, 48px); }
.h-sm { font-size: clamp(24px, 3vw, 32px); }

.lead { color: var(--muted); font-size: 19px; max-width: 56ch; text-wrap: pretty; }
.muted { color: var(--muted); }

/* ---- buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 400; font-size: 16px;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap; line-height: 1;
}
.btn svg { display: none; }
.btn-primary { background: #2A63E8; color: #fff; box-shadow: 0 16px 34px -14px rgba(42,99,232,0.7); }
.btn-primary:hover { background: #3A73F5; transform: translateY(-2px); box-shadow: 0 22px 44px -14px rgba(42,99,232,0.8); }
.btn-ghost { background: rgba(255,255,255,0.05); color: var(--text); border-color: var(--line); }
.btn-ghost:hover { background: rgba(255,255,255,0.09); transform: translateY(-2px); }
.btn-lg { padding: 19px 40px; font-size: 16px; border-radius: 14px; }
.btn-block { width: 100%; }

/* ---- nav ---- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: transparent;
  padding: 16px 0;
  transition: padding .3s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; height: 68px;
  padding: 0 14px 0 22px;
  background: linear-gradient(180deg, rgba(34,40,62,0.72), rgba(22,27,44,0.72));
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  box-shadow: 0 18px 50px -22px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: border-color .3s ease, box-shadow .3s ease;
}
.nav.scrolled { padding-top: 10px; padding-bottom: 10px; }
.nav.scrolled .nav-inner {
  border-color: rgba(255,255,255,0.18);
  box-shadow: 0 22px 60px -22px rgba(0,0,0,0.82), inset 0 1px 0 rgba(255,255,255,0.08);
}
.brand { display: flex; align-items: center; gap: 11px; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 23px; letter-spacing: 0.01em; }
.brand-logo { height: 50px; width: auto; display: block; }
.footer-brand .brand-logo { height: 62px; }
.brand .drop {
  width: 26px; height: 32px; display: block; flex: none;
}
.brand .drop path { fill: url(#dropgrad); }
.brand span { white-space: nowrap; }
.brand b { font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 500; letter-spacing: 0.03em; text-transform: uppercase; color: var(--muted); transition: color .18s ease; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--brand-2); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 10px 20px; font-size: 16px; letter-spacing: 0.05em; }
.burger { display: none; background: none; border: 1px solid var(--line); border-radius: 11px; width: 44px; height: 44px; cursor: pointer; color: var(--text); align-items: center; justify-content: center; }
.burger svg { width: 22px; height: 22px; }

/* ---- mobile menu (modal) ---- */
.mobile-menu { display: none; }
.mm-card { display: none; }

/* ---- chips / checks ---- */
.checks { display: flex; flex-wrap: wrap; gap: 12px 22px; }
.check { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text); font-weight: 500; }
.check .tick {
  width: 24px; height: 24px; border-radius: 7px; flex: none;
  background: rgba(47,208,138,0.14); border: 1px solid rgba(47,208,138,0.32);
  display: grid; place-items: center;
}
.check .tick svg { width: 13px; height: 13px; stroke: var(--green); }

/* ---- cards ---- */
.card {
  background: var(--card-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

/* ---- footer ---- */
.footer { background: var(--bg-2); border-top: 1px solid var(--line); padding: 80px 0 40px; position: relative; overflow: hidden; }
.footer::before { content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, rgba(75,123,242,0.55), transparent); }
.footer-top { display: grid; grid-template-columns: 1.3fr 0.7fr 2fr; gap: 56px; padding-bottom: 52px; }
.footer-col h5 { font-family: 'DM Sans', sans-serif; font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 22px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.footer-col a { color: var(--muted); font-size: 16px; transition: color .18s; }
.footer-col a:hover { color: var(--text); }

/* brand + tagline */
.footer-brand .brand { display: inline-block; }
.footer-tagline { margin-top: 32px; color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 34ch; }
.footer-brand .socials { margin-top: 32px; }

.socials { display: flex; gap: 12px; }
.socials a { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,0.03); display: grid; place-items: center; color: var(--muted); transition: all .18s; }
.socials a:hover { color: #fff; border-color: rgba(75,123,242,0.6); background: rgba(35,94,229,0.12); transform: translateY(-2px); }
.socials svg { width: 18px; height: 18px; }

/* footer signup (inline in a wide column) */
.footer-updates .f-signup .form-grid { display: flex; flex-direction: row; align-items: stretch; gap: 12px; }
.f-signup input[type="email"] { flex: 1; min-width: 0; background: rgba(255,255,255,0.04); border: 1px solid var(--line); border-radius: 12px; padding: 15px 18px; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 14px; letter-spacing: 0.02em; transition: border-color .2s, background .2s; }
.f-signup input[type="email"]::placeholder { color: var(--muted-2); }
.f-signup input[type="email"]:focus { outline: none; border-color: rgba(75,123,242,0.6); background: rgba(35,94,229,0.06); }
.f-signup button { flex: none; border: none; cursor: pointer; border-radius: 12px; padding: 14px 32px; background: var(--brand); color: #fff; font-family: 'Barlow Condensed', sans-serif; font-weight: 400; font-size: 16px; letter-spacing: 0.05em; text-transform: uppercase; line-height: 1; box-shadow: 0 14px 30px -16px rgba(35,94,229,0.7); transition: background .2s, transform .18s; }
.f-signup button:hover { background: #2A63E8; transform: translateY(-1px); }
.f-signup button:disabled { opacity: .7; cursor: progress; }
.f-signup .form-done { display: none; align-items: center; gap: 10px; padding: 8px 4px; }
.f-signup .form-done .ok { width: 26px; height: 26px; border-radius: 50%; flex: none; background: rgba(47,208,138,0.16); border: 1px solid rgba(47,208,138,0.4); display: grid; place-items: center; }
.f-signup .form-done .ok svg { width: 15px; height: 15px; stroke: var(--green); }
.f-signup .form-done b { font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 600; color: var(--text); }
.f-signup .form-error { display: none; color: #ff7a7a; font-size: 13px; margin-top: 10px; padding-left: 4px; }

/* footer bottom bar */
.footer-bottom { padding-top: 26px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 14px; }
.footer-legal-links { display: flex; flex-wrap: wrap; align-items: center; row-gap: 6px; }
.footer-legal-links a { position: relative; color: var(--muted-2); font-size: 12px; line-height: 1.4; padding: 0 13px; transition: color .18s; }
.footer-legal-links a:first-child { padding-left: 0; }
.footer-legal-links a:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 11px; background: var(--line); }
.footer-legal-links a:hover { color: var(--text); }
.footer-company { color: var(--muted-2); font-size: 11.5px; line-height: 1.6; max-width: 100ch; opacity: 0.82; }
.footer-copyright { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 6px 40px; }
.footer-copyright small { color: var(--muted-2); font-size: 11.5px; line-height: 1.55; opacity: 0.82; }
.footer-copyright .footer-disclaimer { max-width: 72ch; text-align: right; }
.whatsapp-note { margin: 16px auto 0; max-width: 460px; text-align: center; font-size: 12.5px; line-height: 1.55; color: var(--muted-2); }

/* ---- scroll reveal ---- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---- glows ---- */
.glow { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 0; }
.glow-blue { background: radial-gradient(circle, rgba(35,94,229,0.45), transparent 68%); }
.glow-green { background: radial-gradient(circle, rgba(47,208,138,0.22), transparent 68%); }

/* ---- section heading block ---- */
.sec-head { max-width: 720px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head .kicker { display: block; margin-bottom: 16px; }
.sec-head p { margin-top: 18px; }
@media (max-width: 980px) {
  .sec-head.center { text-align: left; margin-left: 0; margin-right: 0; }
  .sec-head.center .lead { margin-left: 0; margin-right: 0; }
}

/* ---- placeholder image slot ---- */
.shot {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.022) 0 12px, transparent 12px 24px),
    var(--card-2);
  display: grid; place-items: center; min-height: 240px;
}
.shot .shot-label {
  font-family: 'DM Sans', monospace; font-size: 12.5px; letter-spacing: 0.08em;
  color: var(--muted-2); text-transform: uppercase; text-align: center; padding: 16px;
}

/* ---- accordion (shared) ---- */
.acc-item { background: var(--card-2); border: 1px solid var(--line); border-radius: 15px; margin-bottom: 14px; overflow: hidden; transition: border-color .2s, background .2s; }
.acc-item:hover { border-color: rgba(255,255,255,0.14); }
.acc-item.open { background: var(--card-3); border-color: rgba(75,123,242,0.35); }
.acc-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 26px; cursor: pointer; }
.acc-head h4 { font-size: 21px; font-weight: 600; }
.acc-ic { width: 36px; height: 36px; border-radius: 10px; flex: none; display: grid; place-items: center; background: rgba(255,255,255,0.05); border: 1px solid var(--line); transition: all .25s; position: relative; }
.acc-ic::before, .acc-ic::after { content: ''; position: absolute; background: var(--text); border-radius: 2px; transition: all .25s; }
.acc-ic::before { width: 13px; height: 2px; }
.acc-ic::after { width: 2px; height: 13px; }
.acc-item.open .acc-ic { background: var(--grad-blue); border-color: transparent; box-shadow: var(--shadow-blue); }
.acc-item.open .acc-ic::after { transform: scaleY(0); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.2,.7,.2,1); }
.acc-item.open .acc-body { max-height: 360px; }
.acc-body p { padding: 0 26px 26px; color: var(--muted); font-size: 16px; max-width: 70ch; }

/* ---- form fields (shared) ---- */
.field { text-align: left; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; letter-spacing: 0.02em; }
.field input, .field textarea, .field select {
  width: 100%; background: rgba(0,0,0,0.3); border: 1px solid var(--line); border-radius: 12px;
  padding: 16px 17px; color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 15.5px; transition: border-color .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--brand-2); background: rgba(35,94,229,0.08); }
.form-done { display: none; flex-direction: column; align-items: center; gap: 14px; padding: 24px; text-align: center; }
.form-done .ok { width: 60px; height: 60px; border-radius: 50%; background: rgba(47,208,138,0.16); border: 1px solid rgba(47,208,138,0.4); display: grid; place-items: center; }
.form-done .ok svg { width: 28px; height: 28px; stroke: var(--green); }
.form-done b { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; }
.form-done span { color: var(--muted); }
.shot .shot-label b { display: block; color: var(--muted); font-size: 13px; margin-bottom: 4px; letter-spacing: 0.04em; }

/* responsive */
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1.5fr; gap: 44px 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-copyright { flex-direction: column; align-items: flex-start; }
  .footer-copyright .footer-disclaimer { text-align: left; max-width: none; }
}
@media (max-width: 1024px) {
  .section { padding: 76px 0; }
  .nav { padding-left: 28px; padding-right: 28px; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  .nav-inner { position: relative; }
  .nav-inner .brand-logo { height: 44px; }

  .mobile-menu {
    display: flex; position: fixed; inset: 0; z-index: 80;
    align-items: flex-start; justify-content: stretch;
    padding: 16px 28px;
    background: rgba(8,10,20,0.62); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
    opacity: 0; pointer-events: none; transition: opacity .28s ease;
  }
  .mobile-menu.open { opacity: 1; pointer-events: auto; }
  .mm-card {
    display: block; width: 100%; max-width: none; margin-top: 0;
    background: linear-gradient(180deg, rgba(34,40,62,0.97), rgba(22,27,44,0.98));
    border: 1px solid rgba(255,255,255,0.14); border-radius: 20px;
    padding: 14px; box-shadow: 0 40px 90px -28px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.06);
    transform: translateY(-14px) scale(.98); opacity: 0;
    transition: transform .36s cubic-bezier(.2,.8,.2,1), opacity .3s ease;
  }
  .mobile-menu.open .mm-card { transform: none; opacity: 1; }
  .mm-head { display: flex; align-items: center; justify-content: space-between; padding: 6px 8px 14px; margin-bottom: 6px; border-bottom: 1px solid var(--line); }
  .mm-head .brand-logo { height: 40px; position: static; transform: none; }
  .mm-close { width: 42px; height: 42px; border-radius: 13px; border: 1px solid var(--line); background: rgba(255,255,255,0.04); color: var(--text); cursor: pointer; display: grid; place-items: center; transition: background .18s, border-color .18s; }
  .mm-close:hover { background: rgba(255,255,255,0.09); }
  .mm-close svg { width: 20px; height: 20px; }
  .mm-links { display: flex; flex-direction: column; }
  .mobile-menu a:not(.btn) {
    display: flex; align-items: center; justify-content: space-between;
    font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 500;
    letter-spacing: 0.03em; text-transform: uppercase;
    padding: 15px 8px; color: var(--text); border-radius: 12px;
    transition: color .16s, background .16s;
  }
  .mobile-menu a:not(.btn):hover { color: var(--brand-2); background: rgba(35,94,229,0.08); }
  .mm-links a::after { content: ''; width: 8px; height: 8px; border-right: 2px solid var(--muted-2); border-top: 2px solid var(--muted-2); transform: rotate(45deg); }
  .mm-card .btn { margin-top: 12px; }
  .footer-top { grid-template-columns: 1fr 1.5fr; gap: 44px 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-copyright { flex-direction: column; align-items: flex-start; }
  .footer-copyright .footer-disclaimer { text-align: left; max-width: none; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .nav { padding-left: 20px; padding-right: 20px; }
  .mobile-menu { padding: 16px 20px; }
  .footer { padding: 56px 0 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; text-align: left; }
  .footer-brand .brand-logo { height: 56px; }
  .footer-tagline { max-width: none; }
  .footer-updates .f-signup .form-grid { flex-direction: column; }
  .f-signup input[type="email"] { width: 100%; }
  .f-signup button { width: 100%; }
}
