/* ================================================================
   COLLEGE WRECKS YOUR SLEEP — Site Stylesheet
   Design system adapted from collegesleepscore.org (Fraunces + Manrope,
   warm off-white / slate / terracotta).
   ================================================================ */

:root {
  /* Color palette */
  --bg: #F0F0F0;
  --bg-card: #FFFFFF;
  --text: #24313A;
  --text-muted: #56666D;
  --text-soft: #8B9AA0;
  --accent: #2F3E46;
  --accent-hover: #1F2C33;
  --accent-soft: #E7ECEC;
  --accent-warm: #C97B5F;
  --accent-warm-soft: #FBF1ED;
  --border: rgba(36, 49, 58, 0.08);
  --border-strong: rgba(36, 49, 58, 0.18);

  /* Wordmark colors */
  --brand-crimson: #A6192E;
  --brand-powder-blue: #5B93B0;

  /* Typography */
  --font-display: 'Fraunces', 'Times New Roman', Georgia, serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Spacing & radius */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --radius: 10px;
  --radius-lg: 18px;
  --max-content: 680px;
  --max-wide: 1080px;
}

/* ----------------------------------------------------------------
   Reset & base
   ---------------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11";
  min-height: 100vh;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--accent); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; transition: color 0.15s ease; }
a:hover { color: var(--accent-warm); }

::selection { background: var(--accent-warm); color: var(--bg); }

/* ----------------------------------------------------------------
   Typography
   ---------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: 0;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-variation-settings: "opsz" 96;
  letter-spacing: -0.025em;
  margin-bottom: var(--space-5);
}

h2 {
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-variation-settings: "opsz" 36;
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
  letter-spacing: -0.018em;
}

h3 {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  font-variation-settings: "opsz" 14;
  font-weight: 500;
  margin-top: var(--space-6);
  margin-bottom: var(--space-3);
  letter-spacing: -0.01em;
}

p { margin-top: 0; margin-bottom: var(--space-4); }
strong { font-weight: 600; color: var(--text); }
em { font-style: italic; }

/* ----------------------------------------------------------------
   Site header
   ---------------------------------------------------------------- */

.header {
  position: sticky;
  top: 0;
  background: rgba(240, 240, 240, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
  padding: 14px 24px 12px;
}

.header-row {
  max-width: var(--max-wide);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.015em;
  text-decoration: none;
}
.brand:hover { opacity: 0.85; }

/* Wordmark: "CollegeWrecksYourSleep" rendered as one string — "College" +
   italic "Wrecks" in crimson, "YourSleep" in powder blue. */
.brand-name { font-style: normal; white-space: nowrap; }
.brand-name__red { color: var(--brand-crimson); }
.brand-name__red em { font-style: italic; }
.brand-name__blue { color: var(--brand-powder-blue); }

.brand-mark {
  height: 24px;
  width: 24px;
  border-radius: 6px;
  background: var(--accent);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 13px;
  font-weight: 500;
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   Hamburger button + drawer
   ---------------------------------------------------------------- */

.hamburger {
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  width: 38px;
  height: 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  transition: border-color 160ms, background-color 160ms;
  flex-shrink: 0;
}
.hamburger:hover { border-color: var(--accent); background: var(--accent-soft); }
.hamburger:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.hamburger__line {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--text);
  transition: transform 240ms ease, opacity 200ms ease;
}
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] .hamburger__line:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(36, 49, 58, 0.4);
  z-index: 100;
  opacity: 0; visibility: hidden;
  transition: opacity 240ms ease, visibility 240ms ease;
}
.nav-overlay[aria-hidden="false"] { opacity: 1; visibility: visible; }

.nav-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 86vw);
  background: var(--bg);
  z-index: 110;
  transform: translateX(100%);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex; flex-direction: column;
  box-shadow: -8px 0 32px rgba(36, 49, 58, 0.16);
}
.nav-drawer[aria-hidden="false"] { transform: translateX(0); }

.nav-drawer__header {
  padding: 18px 22px;
  display: flex; justify-content: space-between; align-items: center;
  border-bottom: 1px solid var(--border);
}
.nav-drawer__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
}
.nav-drawer__close {
  background: none; border: none; cursor: pointer;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: var(--text);
  border-radius: 6px;
  transition: background-color 160ms;
}
.nav-drawer__close:hover { background: var(--accent-soft); }

.nav-drawer__list { list-style: none; margin: 0; padding: 12px 0; flex: 1; overflow-y: auto; }
.nav-drawer__item { margin: 0; }
.nav-drawer__link {
  display: block;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.012em;
  color: var(--text);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background-color 160ms, border-color 160ms, color 160ms, padding-left 200ms;
}
.nav-drawer__link:hover {
  background: var(--accent-soft);
  border-left-color: var(--accent-warm);
  color: var(--accent);
  padding-left: 26px;
}
.nav-drawer__link[aria-current="page"] {
  border-left-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}
.nav-drawer__footer { padding: 18px 22px; border-top: 1px solid var(--border); }
.nav-drawer__cta {
  display: block; text-align: center;
  background: var(--accent);
  color: var(--bg);
  padding: 12px 16px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  transition: background-color 160ms;
}
.nav-drawer__cta:hover { background: var(--accent-hover); color: var(--bg); }
body.drawer-open { overflow: hidden; }

/* ----------------------------------------------------------------
   Buttons (shared)
   ---------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  padding: 13px 24px;
  border-radius: var(--radius);
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease;
}
.btn-primary { background: var(--accent-warm); color: var(--bg) !important; }
.btn-primary:hover { background: #B66C50; color: var(--bg) !important; transform: translateY(-1px); }
.btn-secondary { background: var(--accent); color: var(--bg) !important; }
.btn-secondary:hover { background: var(--accent-hover); color: var(--bg) !important; }
.btn-ghost { background: transparent; color: var(--accent) !important; border: 1px solid var(--border-strong); }
.btn-ghost:hover { background: var(--accent-soft); }
.btn-large { padding: 16px 30px; font-size: 17px; }
.btn:disabled, .btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  transform: none !important;
}

/* ----------------------------------------------------------------
   Home / marketing sections
   ---------------------------------------------------------------- */

.hero {
  max-width: var(--max-wide);
  margin: 0 auto;
  padding: 64px 24px 32px;
  text-align: center;
}
.hero__eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-warm);
  font-weight: 700;
  margin-bottom: var(--space-4);
}
.hero__tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto var(--space-6);
}
.hero h1 {
  max-width: 760px;
  margin: 0 auto var(--space-3);
}
.hero__sub {
  max-width: 560px;
  margin: 0 auto var(--space-6);
  color: var(--text-muted);
  font-size: 1.05rem;
}
.hero__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-3);
}
.hero__note {
  font-size: 13px;
  color: var(--text-soft);
}

/* Boxed "sales pitch" panel — visually separated from the surrounding page
   so it reads as a distinct module, not the page's opening statement. */
.pitch-panel {
  max-width: 640px;
  margin: 0 auto;
  padding: var(--space-7) var(--space-6);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 18px 48px rgba(36, 49, 58, 0.08);
}
.pitch-panel .hero__eyebrow { margin-bottom: var(--space-3); }
.pitch-panel h2 { margin-top: 0; }

.section {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: var(--space-8) 24px;
}
.section--wide { max-width: var(--max-wide); }
.section--card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.section__eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.section__lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: var(--space-5);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-5);
  margin-top: var(--space-6);
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}
.feature-card h3 { margin-top: 0; }
.feature-card p { color: var(--text-muted); margin-bottom: 0; font-size: 15px; }
.feature-card__icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: var(--space-3);
}

.divider-band {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.4);
}

/* ----------------------------------------------------------------
   Pricing card
   ---------------------------------------------------------------- */

.pricing-card {
  max-width: 460px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-7) var(--space-6);
  text-align: center;
  box-shadow: 0 18px 48px rgba(36, 49, 58, 0.08);
}
.pricing-card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--text);
  line-height: 1;
  margin-bottom: var(--space-2);
}
.pricing-card__price sup { font-size: 0.4em; vertical-align: super; }
.pricing-card__terms {
  color: var(--text-muted);
  font-size: 14.5px;
  margin-bottom: var(--space-6);
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-6);
  text-align: left;
}
.pricing-card li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 15.5px;
  display: flex;
  gap: 10px;
}
.pricing-card li:last-child { border-bottom: none; }
.pricing-card li::before {
  content: "\2713";
  color: var(--accent-warm);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; }

.model-note {
  max-width: var(--max-content);
  margin: var(--space-6) auto 0;
  padding: var(--space-5);
  background: var(--accent-soft);
  border-radius: var(--radius);
  font-size: 15px;
  color: var(--text);
  text-align: center;
}
.model-note strong { color: var(--text); }

/* ----------------------------------------------------------------
   Coming soon
   ---------------------------------------------------------------- */

.coming-soon {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 88px 24px 96px;
  text-align: center;
}
.coming-soon__badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: var(--space-5);
}
.coming-soon p { color: var(--text-muted); font-size: 1.05rem; }

/* ----------------------------------------------------------------
   Blog index
   ---------------------------------------------------------------- */

.blog-index {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 56px 24px 96px;
}
.post-card {
  display: block;
  padding: var(--space-6) 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
}
.post-card:first-of-type { padding-top: 0; }
.post-card__kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-warm);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.post-card h2 {
  margin-top: 0;
  margin-bottom: var(--space-2);
  color: var(--text);
}
.post-card:hover h2 { color: var(--accent); }
.post-card p {
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}
.post-card__date {
  font-size: 13px;
  color: var(--text-soft);
}

/* ----------------------------------------------------------------
   Article layout
   ---------------------------------------------------------------- */

.article {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.article__kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-warm);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.article__meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-soft);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.article__meta::before {
  content: "—";
  margin-right: var(--space-2);
  color: var(--accent-warm);
}

.article__lede {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--text);
  margin-bottom: var(--space-6);
  font-family: var(--font-display);
  font-variation-settings: "opsz" 14, "wght" 350;
  letter-spacing: -0.005em;
}

.article p { margin-bottom: var(--space-4); }
.article ul, .article ol { margin-bottom: var(--space-5); padding-left: var(--space-5); }
.article li { margin-bottom: var(--space-2); }

/* ----------------------------------------------------------------
   Did You Know callout
   ---------------------------------------------------------------- */

.article blockquote {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  padding: var(--space-5);
  margin: var(--space-6) 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article blockquote > p:first-child {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.article blockquote > p { margin-bottom: var(--space-3); color: var(--text); }
.article blockquote > p:last-child { margin-bottom: 0; }

.article blockquote em {
  font-size: 13.5px;
  color: var(--text-muted);
  display: block;
  margin-top: var(--space-3);
  font-style: italic;
}

/* ----------------------------------------------------------------
   Tables
   ---------------------------------------------------------------- */

.article table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--space-5) 0 var(--space-6);
  font-size: 14.5px;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.article thead th {
  background: var(--accent-soft);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-strong);
  font-size: 13.5px;
  letter-spacing: 0.01em;
}

.article tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.article tbody tr:nth-child(even) td { background: rgba(240, 240, 240, 0.5); }
.article tbody tr:last-child td { border-bottom: none; }

/* ----------------------------------------------------------------
   CTA blocks
   ---------------------------------------------------------------- */

.article .cta-block, .cta-block {
  background: var(--text);
  color: var(--bg);
  padding: var(--space-7);
  margin: var(--space-7) 0;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.article .cta-block::before, .cta-block::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--accent-warm) 0%, transparent 70%);
  opacity: 0.2;
  transform: translate(70px, -70px);
  pointer-events: none;
}

.article .cta-block h2, .cta-block h2 {
  color: var(--bg);
  margin-top: 0;
  font-size: clamp(1.5rem, 2.5vw, 1.75rem);
}

.article .cta-block p, .cta-block p { color: rgba(240, 240, 240, 0.88); }
.article .cta-block ul, .cta-block ul { color: rgba(240, 240, 240, 0.88); }
.article .cta-block strong, .cta-block strong { color: var(--bg); }
.article .cta-block a, .cta-block a { color: var(--bg); }

.cta-link {
  display: inline-block;
  background: var(--accent-warm);
  color: var(--bg) !important;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  margin-top: var(--space-3);
  transition: transform 160ms ease, background-color 160ms ease;
  font-size: 15px;
  font-family: var(--font-body);
}

.cta-link:hover {
  background: #B66C50;
  color: var(--bg) !important;
  transform: translateY(-1px);
}

/* ----------------------------------------------------------------
   Sources & related reading
   ---------------------------------------------------------------- */

.article hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-7) 0;
}

.article hr + p,
.article hr ~ p {
  font-size: 14.5px;
  color: var(--text-muted);
}

.article hr + p em,
.article hr ~ p em {
  font-style: normal;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text);
  font-weight: 600;
  display: block;
  margin-bottom: var(--space-2);
}

/* ----------------------------------------------------------------
   Legal pages (privacy / sms-terms / terms)
   ---------------------------------------------------------------- */

.legal-page {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 56px 24px 96px;
}
.legal-page .effective {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: var(--space-6);
}
.legal-page .callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-5);
  margin: var(--space-5) 0;
  font-size: 15px;
}
.legal-page h2 {
  color: var(--accent);
  font-size: 1.4rem;
}

/* ----------------------------------------------------------------
   Footer
   ---------------------------------------------------------------- */

.site-footer {
  text-align: center;
  padding: 16px 24px 32px;
  color: var(--text-soft);
  font-size: 13px;
  letter-spacing: 0.02em;
  background: var(--bg);
}

.site-footer__nav { margin-bottom: 14px; }
.site-footer__nav a { color: var(--text-muted); text-decoration: none; margin: 0 6px; white-space: nowrap; }
.site-footer__nav a:hover { color: var(--accent); }
.site-footer__divider { color: var(--text-soft); margin: 0 4px; }
.site-footer__copy { font-size: 12px; }

/* ----------------------------------------------------------------
   Age gate (ported from College Sleep Score; not yet wired to a
   live flow — see register.html)
   ---------------------------------------------------------------- */

.age-gate-screen {
  max-width: var(--max-content);
  margin: 0 auto;
  padding: 64px 24px 96px;
}
.age-gate-screen .eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-warm);
  font-weight: 700;
  margin-bottom: var(--space-3);
}
.age-gate-screen .lede { color: var(--text-muted); font-size: 1.05rem; }
.age-gate-screen .demo-grid { margin: var(--space-6) 0; max-width: 240px; }
.age-gate-screen .field-label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
  font-weight: 700;
  margin-bottom: var(--space-2);
}
.age-gate-screen select {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
}
.age-gate-screen .btn-row { display: flex; }
.age-gate-screen .btn-primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ----------------------------------------------------------------
   Register form (full spec, currently unused while /register ships
   as "coming soon" — kept ready for cohort two)
   ---------------------------------------------------------------- */

.register-form { max-width: 480px; margin: 0 auto; }
.register-form .field { margin-bottom: var(--space-5); }
.register-form label { display: block; font-weight: 600; margin-bottom: var(--space-2); font-size: 14.5px; }
.register-form input[type="tel"] {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--bg-card);
  color: var(--text);
}
.register-form .opt-in-copy {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-top: var(--space-2);
  line-height: 1.55;
}
.register-form .consent-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--text);
}
.register-form .consent-row input { margin-top: 4px; }

/* ----------------------------------------------------------------
   Responsive
   ---------------------------------------------------------------- */

@media (max-width: 640px) {
  body { font-size: 16px; }
  .article, .blog-index, .legal-page, .coming-soon, .age-gate-screen { padding-left: 20px; padding-right: 20px; }
  .article .cta-block, .cta-block { padding: var(--space-5); }
  .article table { font-size: 13.5px; }
  .article thead th, .article tbody td { padding: 10px 12px; }
  .hero { padding: 48px 20px 24px; }
  .pricing-card { padding: var(--space-6) var(--space-5); }
}

@media print {
  .header, .nav-drawer, .nav-overlay, .site-footer { display: none; }
  body { background: white; color: black; }
  .article { max-width: 100%; padding: 0; }
  a { color: black; text-decoration: underline; }
}
