/* FootySweep landing — matched to the app (Tailwind default look: system font, teal/navy, gray neutrals) */
:root {
  --teal-600: #0d9488;
  --teal-500: #14b8a6;
  --teal-700: #0f766e;
  --blue-600: #2563eb;
  --navy: #001440;
  --ink: #111827;     /* gray-900 */
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --max: 1120px;
  --sans: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, "Courier New", monospace;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { margin: 0; background: #fff; color: var(--gray-700);
  font-family: var(--sans); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Buttons (mirror the app's HomePage buttons) */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--sans);
  font-weight: 600; font-size: 14px; border-radius: 6px; cursor: pointer; border: 1px solid transparent;
  padding: 12px 24px; transition: background-color .15s ease, border-color .15s ease, color .15s ease; }
.btn-teal { background: var(--teal-600); color: #fff; }
.btn-teal:hover { background: var(--teal-500); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }
.btn-outline { background: #fff; color: var(--ink); border-color: var(--gray-200); }
.btn-outline:hover { background: var(--gray-50); }
.btn-sm { padding: 9px 16px; font-size: 13px; }

/* Top bar — transparent over the hero, like the app's clean chrome */
.topbar { position: absolute; top: 0; left: 0; right: 0; z-index: 20; }
.topbar.solid { position: static; background: var(--navy); }
.topbar .wrap { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; color: #fff; }
.brand .ball { width: 23px; height: 23px; }
.nav-links { display: flex; align-items: center; gap: 22px; }
.nav-links a { font-size: 14px; color: rgba(255,255,255,.82); }
.nav-links a:hover { color: #fff; }

/* Hero — same dark photo + overlay + centred white content as the app home screen */
.hero { position: relative; min-height: 88vh; display: flex; align-items: center; justify-content: center;
  background-image: url('/assets/app-bg.jpg'); background-size: cover; background-position: center; text-align: center; }
.hero::before { content: ""; position: absolute; inset: 0; background: rgba(0,0,0,.62); }
.hero .wrap { position: relative; z-index: 1; padding: 110px 24px 80px; color: #fff; }
.eyebrow { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #5eead4; margin-bottom: 18px; }
h1 { font-size: clamp(38px, 7vw, 64px); line-height: 1.05; letter-spacing: -0.025em; font-weight: 800; margin: 0 0 20px; }
.sub { font-size: clamp(17px, 2.2vw, 20px); color: rgba(255,255,255,.86); max-width: 40ch; margin: 0 auto 32px; line-height: 1.6; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: center; }
.reassure { margin-top: 22px; font-size: 13.5px; color: rgba(255,255,255,.62); }
.reassure b { color: rgba(255,255,255,.9); font-weight: 600; }

/* Sections (app interior: light, gray neutrals) */
section { padding: 76px 0; border-top: 1px solid var(--gray-200); }
section.alt { background: var(--gray-50); }
.section-head { margin-bottom: 40px; }
.eyebrow-2 { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-600); }
h2 { font-size: clamp(26px, 3.6vw, 34px); line-height: 1.15; letter-spacing: -0.02em; font-weight: 800; color: var(--ink); margin: 10px 0 10px; }
.lead { color: var(--gray-600); font-size: 17px; max-width: 60ch; margin: 0; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.card { background: #fff; border: 1px solid var(--gray-200); border-radius: 10px; padding: 24px; }
.card .n { width: 34px; height: 34px; border-radius: 8px; background: #ccfbf1; color: var(--teal-700); font-weight: 700; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.card h3 { font-size: 18px; font-weight: 700; color: var(--ink); margin: 0 0 6px; }
.card p { margin: 0; color: var(--gray-600); font-size: 15px; }

/* Benefits */
.benefits { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 32px; }
.benefit { display: flex; gap: 12px; align-items: flex-start; }
.benefit .tick { flex: 0 0 auto; width: 24px; height: 24px; border-radius: 999px; background: #ccfbf1; color: var(--teal-700); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; margin-top: 2px; }
.benefit b { display: block; color: var(--ink); font-weight: 600; }
.benefit span { color: var(--gray-600); font-size: 15px; }

/* FAQ */
.faq details { border-bottom: 1px solid var(--gray-200); }
.faq details:first-of-type { border-top: 1px solid var(--gray-200); }
.faq summary { cursor: pointer; list-style: none; padding: 20px 0; font-weight: 600; font-size: 17px; color: var(--ink); position: relative; padding-right: 34px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 18px; color: var(--teal-600); font-size: 22px; font-weight: 400; }
.faq details[open] summary::after { content: "\2013"; }
.faq p { margin: 0 0 20px; color: var(--gray-600); max-width: 64ch; }

/* Final CTA — navy band, matching the app's structural navy */
.final { background: var(--navy); border: 0; text-align: center; }
.final h2 { color: #fff; margin-bottom: 8px; }
.final p { color: rgba(255,255,255,.8); margin: 0 auto 28px; max-width: 48ch; }

/* Footer — black, like the app footer */
footer.site { background: #000; color: var(--gray-400); }
footer.site .wrap { padding: 28px 24px; display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; }
footer.site .brand { font-size: 16px; }
.f-links a { color: var(--gray-400); font-size: 14px; margin-left: 22px; }
.f-links a:hover { color: #fff; }
.footnote { width: 100%; font-size: 12px; color: #6b7280; margin-top: 6px; }

/* Cookie banner */
#cookie { position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 60; max-width: 520px; margin: 0 auto;
  background: #fff; color: var(--gray-700); border: 1px solid var(--gray-200); border-radius: 10px; padding: 18px 20px; display: none;
  box-shadow: 0 12px 36px rgba(17,24,39,.16); }
#cookie.show { display: block; }
#cookie p { margin: 0 0 14px; font-size: 13.5px; color: var(--gray-600); }
#cookie a { color: var(--teal-700); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-btns button { font-family: var(--sans); border-radius: 6px; padding: 9px 18px; font-weight: 600; font-size: 13.5px; cursor: pointer; border: 1px solid var(--gray-200); }
#cookie-accept { background: var(--teal-600); color: #fff; border-color: var(--teal-600); }
#cookie-decline { background: #fff; color: var(--gray-600); }

@media (max-width: 800px) {
  .cards { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
}
