/* BratTamer.AI marketing site — brand palette matches the app. */
:root {
  --bg: #0d0d12;
  --bg2: #14141b;
  --ink: #ece9f1;
  --muted: #8a8594;
  --gold: #C9A84C;
  --gold-hi: #d8ba61;
  --line: rgba(255,255,255,.08);
  color-scheme: dark;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: 'Cinzel', Georgia, serif; font-weight: 700; line-height: 1.15; }
a { color: inherit; text-decoration: none; }
em { color: var(--gold); font-style: normal; }

/* Nav */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; max-width: 1040px; margin: 0 auto;
}
.brand { font-family: 'Cinzel', serif; font-weight: 700; font-size: 20px; letter-spacing: .02em; }
.brand span { color: var(--gold); }
.nav nav a { margin-left: 26px; font-size: 14px; color: var(--muted); }
.nav nav a:hover { color: var(--ink); }
.nav .cta-sm { color: var(--gold); }

/* Hero */
.hero { text-align: center; padding: 80px 24px 90px; max-width: 820px; margin: 0 auto; }
.eyebrow { text-transform: uppercase; letter-spacing: .26em; font-size: 12px; color: var(--gold); margin: 0 0 22px; }
.hero h1 { font-size: 52px; margin: 0 0 24px; }
.hero .sub { font-size: 19px; color: #c4c0cd; max-width: 640px; margin: 0 auto 36px; }
.cta-row { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.cta {
  display: inline-block; background: var(--gold); color: #0b0b10;
  font-weight: 600; font-size: 16px; padding: 14px 30px; border-radius: 11px;
}
.cta:hover { background: var(--gold-hi); }
.cta.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.cta.ghost:hover { border-color: var(--gold); color: var(--gold); }
.cta-note { font-size: 13px; color: var(--muted); }

/* Sections */
section { padding: 70px 0; }
section h2 { font-size: 34px; text-align: center; margin: 0 0 40px; }
.problem { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.problem .wrap { max-width: 720px; text-align: center; }
.problem h2 { margin-bottom: 18px; }
.problem p { font-size: 18px; color: #c4c0cd; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.step { background: var(--bg2); border: 1px solid var(--line); border-radius: 16px; padding: 28px 24px; }
.step .num {
  width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(201,168,76,.14); color: var(--gold); font-weight: 700; margin-bottom: 16px;
}
.step h3 { font-size: 19px; margin: 0 0 8px; }
.step p { color: var(--muted); font-size: 15px; margin: 0; }

/* Tamer */
.tamer .wrap { max-width: 960px; }
.tamer .lead { text-align: center; max-width: 660px; margin: -20px auto 40px; color: #c4c0cd; font-size: 17px; }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { border: 1px solid var(--line); border-radius: 16px; padding: 26px 24px; }
.card h3 { font-size: 17px; color: var(--gold); margin: 0 0 10px; }
.card p { color: var(--muted); font-size: 15px; margin: 0; }

/* Pricing */
.pricing { background: var(--bg2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.tier { background: var(--bg); border: 1px solid var(--line); border-radius: 18px; padding: 30px 26px; position: relative; }
.tier.featured { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }
.tier .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #0b0b10; font-size: 11px; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 20px;
}
.tier h3 { font-size: 22px; margin: 0 0 6px; }
.tier .price { font-size: 38px; font-family: 'Cinzel', serif; font-weight: 700; margin-bottom: 18px; }
.tier .price span { font-size: 16px; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 400; }
.tier ul { list-style: none; padding: 0; margin: 0 0 24px; }
.tier li { padding: 7px 0 7px 24px; position: relative; color: #c4c0cd; font-size: 15px; }
.tier li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.tier-cta { display: block; text-align: center; background: var(--gold); color: #0b0b10; font-weight: 600; padding: 12px; border-radius: 10px; }
.tier-cta:hover { background: var(--gold-hi); }
.tier-cta.ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }

/* Get */
.get .wrap { max-width: 720px; text-align: center; }
.get p { color: #c4c0cd; font-size: 17px; }
.get-actions { display: flex; gap: 14px; justify-content: center; margin: 28px 0 18px; flex-wrap: wrap; }
.fineprint { font-size: 13px; color: var(--muted); }

/* Footer */
.foot { border-top: 1px solid var(--line); padding: 40px 0; }
.foot-grid { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.foot nav a { color: var(--muted); margin-right: 22px; font-size: 14px; }
.foot nav a:hover { color: var(--ink); }
.foot .copy { color: var(--muted); font-size: 12px; width: 100%; margin: 8px 0 0; }

/* Responsive */
@media (max-width: 820px) {
  .hero h1 { font-size: 38px; }
  .steps, .cards, .tiers { grid-template-columns: 1fr; }
  .nav nav a { margin-left: 16px; }
}
