/* FootySweep landing pages — shared styles */
:root {
  --navy: #001440;
  --navy-2: #0a1f52;
  --pitch: #0b8a3c;
  --pitch-2: #15a34a;
  --ink: #0f172a;
  --muted: #5b6b86;
  --line: #e5e7eb;
  --bg: #f6f8fc;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(2, 12, 40, 0.10);
  --max: 1080px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }

/* Top bar */
.topbar { padding: 18px 0; }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -0.01em; color: var(--white); }
.brand .ball { width: 26px; height: 26px; }
.topbar.on-dark .brand { color: #fff; }
.nav-cta {
  display: inline-block; background: #fff; color: var(--navy);
  font-weight: 700; font-size: 14px; padding: 9px 16px; border-radius: 999px; text-decoration: none;
}

/* Hero */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(21,163,74,0.35), transparent 60%),
    linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(transparent 49.5%, rgba(255,255,255,0.05) 50%, transparent 50.5%);
  background-size: 100% 70px; opacity: 0.5; pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; padding: 48px 20px 64px; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #8fe3ad; background: rgba(21,163,74,0.16); padding: 6px 12px; border-radius: 999px; margin-bottom: 18px;
}
h1 { font-size: clamp(30px, 6vw, 52px); line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 16px; font-weight: 850; }
.sub { font-size: clamp(16px, 2.4vw, 20px); color: #cdd8ee; max-width: 620px; margin: 0 0 28px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 800; border-radius: 999px; cursor: pointer; border: 0;
  transition: transform .06s ease, box-shadow .2s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: linear-gradient(180deg, var(--pitch-2), var(--pitch));
  color: #fff; padding: 16px 30px; font-size: 17px; box-shadow: 0 8px 22px rgba(11,138,60,0.45);
}
.btn-primary:hover { box-shadow: 0 10px 28px rgba(11,138,60,0.6); }
.btn-ghost { color: #fff; padding: 16px 8px; font-size: 15px; opacity: .9; }
.reassure { margin-top: 14px; font-size: 14px; color: #9fb2d6; }
.reassure strong { color: #d6f5e1; }

/* Sections */
section.block { padding: 56px 0; }
section.block.alt { background: var(--white); }
h2 { font-size: clamp(24px, 4vw, 34px); line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 8px; }
.lead { color: var(--muted); font-size: 17px; max-width: 640px; margin: 0 0 32px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.step { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; }
.step .n { width: 34px; height: 34px; border-radius: 999px; background: var(--navy); color: #fff; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.step h3 { margin: 0 0 6px; font-size: 18px; }
.step p { margin: 0; color: var(--muted); font-size: 15px; }

.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 28px; }
.benefit { display: flex; gap: 12px; align-items: flex-start; }
.benefit .tick { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 999px; background: rgba(21,163,74,0.14); color: var(--pitch); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; margin-top: 2px; }
.benefit b { display: block; }
.benefit span { color: var(--muted); font-size: 15px; }

/* FAQ */
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 4px 18px; margin-bottom: 12px; }
.faq summary { cursor: pointer; font-weight: 700; padding: 14px 0; list-style: none; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; top: 12px; font-size: 22px; color: var(--muted); }
.faq details[open] summary::after { content: "\2013"; }
.faq p { margin: 0 0 16px; color: var(--muted); }

/* Final CTA */
.final {
  background: linear-gradient(160deg, var(--navy), var(--navy-2)); color: #fff; text-align: center;
}
.final .wrap { padding: 60px 20px; }
.final h2 { color: #fff; }
.final p { color: #cdd8ee; margin: 0 0 26px; }

/* Footer */
footer.site { background: #06112e; color: #9fb2d6; font-size: 14px; }
footer.site .wrap { padding: 28px 20px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; }
footer.site a { color: #cdd8ee; text-decoration: none; margin-left: 18px; }
footer.site a:first-child { margin-left: 0; }
.footnote { font-size: 12px; color: #6b7ba0; }

/* Cookie banner */
#cookie {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 60;
  background: #0b1736; color: #e6edfb; border: 1px solid #1c2c57; border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,.4); padding: 16px 18px; display: none;
  max-width: 560px; margin: 0 auto;
}
#cookie.show { display: block; }
#cookie p { margin: 0 0 12px; font-size: 14px; }
#cookie a { color: #8fe3ad; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-btns button { border: 0; border-radius: 999px; padding: 9px 18px; font-weight: 700; cursor: pointer; font-size: 14px; }
#cookie-accept { background: var(--pitch-2); color: #fff; }
#cookie-decline { background: transparent; color: #aebbd8; border: 1px solid #2a3c6e; }

@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
}
