/* ============================================================
   BRUSTICK — mobile-first stylesheet
   Brand: sarcastic, irreverent. Dark, punchy, a bit clinical
   (it's a syringe) with an acid-yellow accent.
   ============================================================ */

:root {
  --bg:        #0e0e10;
  --bg-2:      #16161a;
  --ink:       #f4f4f2;
  --muted:     #a0a0a8;
  --accent:      #5b74ff;   /* brand blue, brightened for dark-mode legibility */
  --accent-deep: #031265;   /* true product navy — for light surfaces only */
  --accent-2:    #ff4d4d;   /* warning red */
  --line:      #2a2a30;
  --radius:    14px;
  --maxw:      720px;
  --font:      system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

section { padding: 56px 20px; max-width: var(--maxw); margin: 0 auto; }

h1, h2, h3 { line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: 1.9rem; margin-bottom: 18px; }
p { margin-bottom: 14px; }
a { color: var(--accent); }

/* -------- Buttons -------- */
.btn {
  display: inline-block;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  font-size: 1rem;
  transition: transform .08s ease, opacity .15s ease;
  font-family: inherit;
}
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--accent); color: #fff; }
.btn--ghost   { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--sm  { padding: 8px 16px; font-size: .9rem; }
.btn--lg  { padding: 15px 30px; font-size: 1.1rem; }
.btn--block { display: block; width: 100%; }

/* -------- Age gate -------- */
.age-gate {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(8,8,10,.96);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.age-gate[hidden] { display: none; }   /* attribute selector beats .age-gate so hiding actually works */
.age-gate__card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  max-width: 440px; text-align: center;
}
.age-gate__logo { height: 46px; width: auto; display: block; margin: 0 auto 18px; }
.age-gate__card h2 { font-size: 1.5rem; margin-bottom: 12px; }
.age-gate__card p { color: var(--muted); }
.age-gate__buttons { display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }

/* -------- Header -------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: rgba(14,14,16,.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.logo { display: inline-flex; align-items: center; text-decoration: none; }
.logo img { height: 26px; display: block; }

/* -------- Hero -------- */
.hero { padding-top: 36px; }
.hero__media { margin-bottom: 26px; }
.hero__placeholder {
  aspect-ratio: 4 / 3;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .85rem; letter-spacing: .1em; text-align: center;
  background: var(--bg-2);
}
.hero__media img, .hero__media video { width: 100%; border-radius: var(--radius); display: block; }
.hero h1 { font-size: 3rem; margin-bottom: 14px; }
.hero__sub { font-size: 1.15rem; color: var(--muted); }
.hero__joke { font-size: .95rem; opacity: .8; }
.hero__fineprint { color: var(--muted); font-size: .85rem; margin-top: 14px; }
.hero .btn--lg { margin-top: 8px; }

/* -------- Product -------- */
.product__warn { color: var(--accent); font-weight: 600; }

/* -------- How it works -------- */
.how { background: var(--bg-2); max-width: none; }
.how > * { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.steps { display: grid; gap: 16px; margin-bottom: 18px; }
.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--accent); color: #fff; font-weight: 800; margin-bottom: 10px;
}
.step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.step__badge {
  display: inline-block; font-size: .68rem; font-weight: 800;
  background: var(--accent-2); color: #fff; padding: 3px 8px; border-radius: 999px;
  vertical-align: middle; letter-spacing: .05em; margin-left: 6px;
}
.how__note {
  border-left: 3px solid var(--accent-2);
  padding: 12px 14px; background: rgba(255,77,77,.08);
  border-radius: 0 8px 8px 0; color: var(--ink); font-weight: 600;
}

/* -------- Social proof -------- */
.proof__grid { display: grid; gap: 14px; }
.proof__card {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px; font-style: italic;
}
.proof__card cite { display: block; margin-top: 10px; color: var(--muted); font-style: normal; font-size: .85rem; }

/* -------- Gogo banner -------- */
.gran { text-align: center; }
.gran img { width: 100%; max-width: 560px; border-radius: var(--radius); display: block; margin: 0 auto; }
.gran__cap { margin-top: 18px; font-size: 1.2rem; font-weight: 700; }
.gran__cap span { display: block; color: var(--muted); font-weight: 400; font-size: .95rem; margin-top: 6px; }

/* -------- Order -------- */
.order__lead { color: var(--muted); }
.order-form { display: grid; gap: 16px; margin-top: 8px; }
.field { display: grid; gap: 6px; }
.field label { font-size: .9rem; font-weight: 600; }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px;
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: 10px; color: var(--ink); font-size: 1rem; font-family: inherit;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--accent);
}
.field--check { grid-template-columns: auto 1fr; align-items: start; gap: 10px; }
.field--check input { width: auto; margin-top: 4px; }
.field--check label { font-weight: 400; color: var(--muted); font-size: .85rem; }

.order__summary {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 16px 18px; display: grid; gap: 8px;
}
.order__line { display: flex; justify-content: space-between; color: var(--muted); }
.order__line--total { color: var(--ink); font-weight: 800; font-size: 1.2rem; border-top: 1px solid var(--line); padding-top: 8px; }
.order__secure { text-align: center; color: var(--muted); font-size: .8rem; margin-top: 8px; }

/* -------- FAQ -------- */
.faq details {
  border-bottom: 1px solid var(--line); padding: 14px 0;
}
.faq summary { cursor: pointer; font-weight: 600; font-size: 1.05rem; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: "+ "; color: var(--accent); font-weight: 800; }
.faq details[open] summary::before { content: "− "; }
.faq details p { margin-top: 10px; color: var(--muted); }

/* -------- Footer -------- */
.site-footer { text-align: center; padding: 40px 20px; border-top: 1px solid var(--line); }
.footer__brand { height: 26px; width: auto; display: inline-block; }
.footer__links { margin: 10px 0; font-size: .9rem; }
.footer__links a { color: var(--ink); }
.footer__legal { color: var(--muted); font-size: .78rem; max-width: 520px; margin: 12px auto; }
.footer__copy { color: var(--muted); font-size: .78rem; }

/* -------- Desktop -------- */
@media (min-width: 760px) {
  .hero { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: center; padding-top: 56px; }
  .hero__media { margin-bottom: 0; }
  .hero h1 { font-size: 3.6rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .proof__grid { grid-template-columns: repeat(3, 1fr); }
  h2 { font-size: 2.2rem; }
}

/* Thanks / returns page simple layout */
.simple-page { max-width: 600px; margin: 0 auto; padding: 80px 20px; }
.simple-page h1 { font-size: 2.4rem; color: var(--accent); margin-bottom: 16px; }
.simple-page p { color: var(--muted); }
.simple-page .btn { margin-top: 20px; }
.page-logo { height: 36px; width: auto; margin-bottom: 12px; }
