/* BJJ Lab — marketing + legal site. Tatami theme: championship gold on espresso. */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #14110C;
  --surface: #221D16;
  --surface-2: #2A241B;
  --border: rgba(240, 233, 216, 0.12);
  --text: #FAF6EC;
  --text-2: #CFC5AE;
  --muted: #A1957B;
  --gold: #E9BC3F;
  --gold-ink: #1A1306;
  --green: #3FB97A;
  --max: 1080px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Archivo', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.display { font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: 0.5px; font-weight: 400; }

/* nav */
nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(20, 17, 12, 0.85); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: 1px; font-size: 18px; color: var(--text); }
.brand:hover { text-decoration: none; }
.logo { width: 30px; height: 30px; border-radius: 9px; background: var(--gold); display: flex; align-items: center; justify-content: center; color: var(--gold-ink); font-family: 'Anton'; font-size: 18px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--text-2); font-weight: 600; font-size: 15px; }
@media (max-width: 640px) { .nav-links { display: none; } }

/* hero */
.hero { padding: 72px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
@media (max-width: 820px) { .hero-grid { grid-template-columns: 1fr; text-align: center; } }
.kicker { color: var(--gold); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 13px; }
h1.display { font-size: clamp(44px, 8vw, 76px); line-height: 0.98; margin: 14px 0; }
.lead { font-size: 19px; color: var(--text-2); max-width: 520px; }
@media (max-width: 820px) { .lead { margin: 0 auto; } }
.cta-row { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
@media (max-width: 820px) { .cta-row { justify-content: center; } }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 22px; border-radius: 12px; font-weight: 700; font-size: 15px; }
.btn-gold { background: var(--gold); color: var(--gold-ink); }
.btn-gold:hover { text-decoration: none; filter: brightness(1.06); }
.btn-ghost { border: 1px solid var(--border); color: var(--text); }
.btn-ghost:hover { text-decoration: none; background: var(--surface); }
.phone { display: flex; justify-content: center; }
.phone img { width: 300px; max-width: 80vw; border-radius: 34px; border: 1px solid var(--border); box-shadow: 0 30px 80px rgba(0,0,0,0.5); }

/* sections */
section { padding: 56px 0; }
.section-head { text-align: center; margin-bottom: 40px; }
.section-head h2 { font-size: clamp(28px, 5vw, 40px); }
.section-head p { color: var(--muted); margin-top: 8px; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .features { grid-template-columns: 1fr; } }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 24px; }
.card .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(233,188,63,0.15); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 14px; }
.card h3 { font-size: 18px; margin-bottom: 6px; }
.card p { color: var(--muted); font-size: 15px; }

.shots { display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; }
.shots img { width: 240px; max-width: 70vw; border-radius: 26px; border: 1px solid var(--border); }

/* pricing */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; max-width: 720px; margin: 0 auto; }
@media (max-width: 640px) { .price-grid { grid-template-columns: 1fr; } }
.plan { background: var(--surface); border: 1.5px solid var(--border); border-radius: 18px; padding: 28px; text-align: center; position: relative; }
.plan.best { border-color: var(--gold); }
.badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--gold-ink); font-weight: 800; font-size: 11px; letter-spacing: 0.6px; padding: 4px 12px; border-radius: 999px; }
.plan .price { font-family: 'Anton'; font-size: 44px; color: var(--text); margin: 6px 0; }
.plan .per { color: var(--muted); font-size: 14px; }
.plan .save { color: var(--green); font-weight: 700; margin-top: 8px; font-size: 14px; }
.trial-note { text-align: center; color: var(--muted); margin-top: 20px; font-size: 15px; }

/* legal pages */
.legal { padding: 56px 0 80px; }
.legal h1 { font-size: clamp(30px, 6vw, 46px); }
.legal .updated { color: var(--muted); margin-top: 6px; margin-bottom: 32px; }
.legal h2 { font-size: 22px; margin: 32px 0 10px; color: var(--gold); }
.legal p, .legal li { color: var(--text-2); margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { font-weight: 600; }
.callout { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: 12px; padding: 16px 18px; margin: 20px 0; color: var(--text-2); }

/* footer */
footer { border-top: 1px solid var(--border); padding: 40px 0; margin-top: 40px; }
footer .wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.foot-links { display: flex; gap: 24px; flex-wrap: wrap; }
.foot-links a { color: var(--text-2); font-size: 14px; font-weight: 600; }
.copyright { color: var(--muted); font-size: 13px; }
