/* ─────────────────────────────────────────────────────────────────────────
   GARRINCHA Connect — connect.garrincha.be
   Brand: dark #0D0D0D · mint #0AEE96 / #07B870 · white content on light.
   ───────────────────────────────────────────────────────────────────────── */
:root {
  --ink: #1a1a1a;
  --muted: #6a726d;
  --faint: #9aa39e;
  --line: #ececed;
  --green: #07b870;
  --mint: #0aee96;
  --dark: #0d0d0d;
  --bg: #f6f7f6;
  --radius: 18px;
  --wrap: 1080px;
  --read: 760px;
}

* { 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: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Top bar ── */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 22px;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav.light { background: rgba(255, 255, 255, 0.94); border-bottom: 1px solid var(--line); }
.nav .brand { height: 22px; width: auto; }
.nav .links { display: flex; gap: 22px; align-items: center; }
.nav .links a { color: rgba(255, 255, 255, 0.8); font-size: 14px; font-weight: 600; }
.nav.light .links a { color: var(--muted); }
.nav .links a:hover { color: #fff; text-decoration: none; }
.nav.light .links a:hover { color: var(--ink); }
.nav .cta {
  background: var(--green); color: #fff !important; padding: 9px 18px;
  border-radius: 999px; font-weight: 700; font-size: 13.5px;
}
.nav .cta:hover { text-decoration: none; filter: brightness(1.05); }
@media (max-width: 640px) { .nav .links a:not(.cta) { display: none; } }

/* ── Hero ── */
.hero {
  background: radial-gradient(120% 90% at 50% 0%, #16241d 0%, #0d0d0d 55%);
  color: #fff; text-align: center;
  padding: 78px 22px 90px;
}
.hero .lockup { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero .g { height: 44px; width: auto; }
.hero .c { height: 30px; width: auto; }
.hero h1 {
  font-size: clamp(30px, 6vw, 52px); line-height: 1.08; font-weight: 900;
  letter-spacing: -0.02em; margin: 30px auto 0; max-width: 720px;
}
.hero p.sub {
  color: rgba(255, 255, 255, 0.72); font-size: clamp(15px, 2.4vw, 19px);
  max-width: 560px; margin: 18px auto 0;
}
.badges { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.store {
  display: inline-flex; align-items: center; gap: 11px;
  background: #fff; color: #0d0d0d; padding: 13px 22px; border-radius: 14px;
  font-weight: 800; font-size: 15px;
}
.store:hover { text-decoration: none; transform: translateY(-1px); }
.store small { display: block; font-size: 10px; font-weight: 600; color: #6a726d; letter-spacing: 0.04em; }
.store.soon { background: rgba(255, 255, 255, 0.08); color: rgba(255, 255, 255, 0.85); cursor: default; }
.store.soon small { color: rgba(255, 255, 255, 0.5); }

/* ── Sections ── */
.section { padding: 72px 22px; }
.section.alt { background: var(--bg); }
.wrap { max-width: var(--wrap); margin: 0 auto; }
.eyebrow { color: var(--green); font-weight: 800; font-size: 12.5px; letter-spacing: 0.12em; text-transform: uppercase; }
.section h2 { font-size: clamp(24px, 3.6vw, 34px); font-weight: 900; letter-spacing: -0.02em; margin: 10px 0 0; }
.section .lead { color: var(--muted); font-size: 16px; max-width: 620px; margin: 14px 0 0; }

.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; margin-top: 40px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px; box-shadow: 0 4px 16px rgba(15, 30, 20, 0.04);
}
.card .ic {
  width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: #dffdf1; margin-bottom: 14px;
}
.card h3 { font-size: 16px; font-weight: 800; margin: 0 0 6px; }
.card p { color: var(--muted); font-size: 14px; margin: 0; }

.note {
  margin-top: 40px; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--mint);
  border-radius: 14px; padding: 20px 22px; color: var(--muted); font-size: 14.5px;
}
.note strong { color: var(--ink); }

/* ── Footer ── */
.footer { background: var(--dark); color: rgba(255, 255, 255, 0.7); padding: 54px 22px 40px; }
.footer .cols { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.footer .brand { height: 20px; margin-bottom: 14px; }
.footer h4 { color: #fff; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin: 0 0 12px; }
.footer a { color: rgba(255, 255, 255, 0.7); font-size: 14px; display: block; margin-bottom: 9px; }
.footer a:hover { color: #fff; text-decoration: none; }
.footer .legal { margin-top: 40px; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 22px; font-size: 12.5px; color: rgba(255, 255, 255, 0.45); }

/* ── Legal / content pages ── */
.doc { max-width: var(--read); margin: 0 auto; padding: 54px 22px 80px; }
.doc .back { font-size: 13.5px; font-weight: 600; }
.doc h1 { font-size: clamp(26px, 4vw, 36px); font-weight: 900; letter-spacing: -0.02em; margin: 22px 0 4px; }
.doc .updated { color: var(--faint); font-size: 13px; margin: 0 0 8px; }
.doc h2 { font-size: 19px; font-weight: 800; margin: 38px 0 10px; }
.doc h3 { font-size: 15px; font-weight: 800; margin: 22px 0 6px; }
.doc p { color: #34403a; font-size: 15px; }
.doc ul { padding-left: 20px; }
.doc li { color: #34403a; font-size: 15px; margin-bottom: 7px; }
.doc .hl {
  background: #f2fbf6; border: 1px solid #cdeede; border-radius: 12px;
  padding: 14px 16px; font-size: 14px; color: #1a4d38; margin: 14px 0;
}
.doc .hl strong { color: #0c3d29; }
.doc hr { border: none; border-top: 1px solid var(--line); margin: 42px 0; }

/* ── FAQ ── */
.faq { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: #fff; }
.faq summary { list-style: none; cursor: pointer; padding: 16px 18px; font-weight: 700; font-size: 15px; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--green); font-weight: 800; font-size: 20px; line-height: 1; }
.faq[open] summary::after { content: "\2013"; }
.faq .a { padding: 0 18px 16px; color: var(--muted); font-size: 14.5px; }
.faq-cat { font-size: 13px; font-weight: 800; color: var(--faint); letter-spacing: 0.08em; text-transform: uppercase; margin: 30px 0 12px; }

.btn {
  display: inline-block; background: var(--green); color: #fff !important; font-weight: 700;
  padding: 13px 28px; border-radius: 12px; font-size: 14.5px; margin-top: 8px;
}
.btn:hover { text-decoration: none; filter: brightness(1.05); }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; margin: 26px 0 8px; }
.contact-grid .card p { color: var(--ink); font-weight: 700; font-size: 14px; margin: 2px 0 0; }
.contact-grid .card span { color: var(--faint); font-size: 12px; }
