/* ============================================================
   securitytutorials.com - staging front end
   Visual system: IM-009 B1 Prestige Style Spec
   Tokens: golds #C8A24B / #A8842F / #FBF5E6, Fraunces + Inter
   ============================================================ */

:root {
  /* Gold family */
  --gold-500: #C8A24B;
  --gold-700: #A8842F;
  --gold-800: #8A6E27;
  --gold-300: #E3CD93;
  --gold-100: #FBF5E6;
  --gold-50:  #FDFAF2;
  /* Neutrals */
  --text-900: #1C1813;
  --text-700: #3A342B;
  --text-500: #6E6659;
  --text-400: #9A9184;
  --surface:  #FFFFFF;
  --paper:    #FAF7F1;
  --border:   #E7DFCF;
  --border-strong: #D6C9AE;
  --ink-900:  #16130E;
  --ink-text: #EDE4D2;
  --ink-muted:#CFC5B0;
  /* Semantic */
  --success: #2F7D4E;
  --success-tint: #EDF6F0;
  --warning: #9A6B1F;
  --warning-tint: #FBF3E2;
  --error: #B3261E;
  --error-tint: #FBEFED;
  /* Layout */
  --container: 1200px;
  --reading: 760px;
  --gutter: 24px;
  --radius-card: 12px;
  --radius-btn: 8px;
  --radius-wait: 14px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--text-700);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  font-optical-sizing: auto;
}

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

/* Skip link */
.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 200;
  background: var(--ink-900);
  color: var(--ink-text);
  padding: 10px 18px;
  border-radius: var(--radius-btn);
  text-decoration: none;
  transition: top 180ms ease;
}
.skip-link:focus { top: 12px; }

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4,
.display, .price-display {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 600;
  color: var(--text-900);
  margin: 0;
  font-optical-sizing: auto;
}

.hero-title {
  font-size: 4.6rem;
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-variation-settings: "opsz" 144;
  max-width: 16ch;
}

h1, .h1 {
  font-size: 3rem;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 100;
}

h2, .h2 {
  font-size: 2.25rem;
  line-height: 1.12;
  font-variation-settings: "opsz" 72;
}

h3, .h3 { font-size: 1.5rem; line-height: 1.25; }
h4, .h4 { font-size: 1.25rem; line-height: 1.3; }

.lead {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--text-700);
  max-width: 60ch;
}

.small { font-size: 0.9375rem; line-height: 1.6; }
.caption {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-500);
}

.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-700);
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* ============================================================
   Links
   ============================================================ */
a {
  color: var(--gold-700);
  text-underline-offset: 3px;
}
a:hover { color: var(--gold-800); }
a:focus-visible {
  outline: 2px solid var(--gold-700);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   Layout primitives
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.reading {
  max-width: var(--reading);
  margin-left: auto;
  margin-right: auto;
}
.section { padding: 96px 0; }
.section.tint { background: var(--gold-50); }
.section.paper { background: var(--paper); }

.center { text-align: center; }
.center .lead, .center .caption { margin-left: auto; margin-right: auto; }

/* ============================================================
   Nav
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 72px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.site-nav .container {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--text-900);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand:hover { color: var(--text-900); }
.brand-mark {
  width: 14px;
  height: 14px;
  background: var(--gold-500);
  border-radius: 3px;
  flex: none;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-700);
  text-decoration: none;
}
.nav-links a:hover { color: var(--gold-700); }
.nav-links a[aria-current="page"] {
  color: var(--text-900);
  text-decoration: underline;
  text-decoration-color: var(--gold-800);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-btn);
  padding: 10px 14px;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-700);
  cursor: pointer;
}
.nav-toggle:focus-visible {
  outline: 2px solid var(--gold-700);
  outline-offset: 3px;
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 128px 0 96px;
}
.hero.center .hero-inner { text-align: center; }
.hero .eyebrow-wrap { margin-bottom: 0; }
.eyebrow-rule {
  width: 64px;
  height: 1px;
  background: var(--gold-500);
  border: 0;
  margin: 0 auto 20px;
}
.hero.align-left .eyebrow-rule { margin-left: 0; margin-right: 0; }
.hero .eyebrow + .eyebrow-secondary {
  margin-top: 8px;
}
.hero-title { margin-top: 24px; }
.hero .lead { margin-top: 24px; }
.hero-cta-row {
  margin-top: 40px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero.center .hero-cta-row { justify-content: center; }
.hero-helper {
  margin-top: 16px;
  font-size: 0.9375rem;
  color: var(--text-500);
}

/* ============================================================
   Review banner
   ============================================================ */
.review-banner {
  background: var(--surface);
  border-top: 1px solid var(--gold-300);
  border-bottom: 1px solid var(--gold-300);
  padding: 20px 24px;
  text-align: center;
}
.review-banner p {
  margin: 0 auto;
  max-width: 90ch;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-700);
  line-height: 1.7;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.01em;
  border-radius: var(--radius-btn);
  cursor: pointer;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease,
              border-color 180ms ease, box-shadow 180ms ease,
              transform 240ms ease;
}
.btn-lg { padding: 16px 32px; }
.btn-md { padding: 13px 26px; }
.btn-sm { padding: 10px 18px; font-size: 0.9375rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: var(--gold-500);
  color: var(--text-900);
  border: 1px solid transparent;
}
.btn-primary:hover { background: var(--gold-700); color: var(--text-900); }
.btn-primary:active {
  transform: translateY(1px);
  background: var(--gold-800);
  color: #FFFFFF;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--gold-700);
  color: var(--gold-700);
}
.btn-secondary:hover {
  background: var(--gold-100);
  border-color: var(--gold-800);
  color: var(--gold-800);
}
.btn-secondary:active { transform: translateY(1px); }

.btn-ghost {
  background: none;
  border: 0;
  color: var(--text-700);
  padding: 12px 8px;
}
.btn-ghost:hover {
  color: var(--text-900);
  text-decoration: underline;
  text-decoration-color: var(--gold-500);
  text-underline-offset: 4px;
}
.btn-ghost:active { color: var(--gold-800); }

.btn:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold-700);
  outline-offset: 3px;
}

.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: 0 1px 2px rgba(28, 24, 19, 0.05),
              0 10px 30px rgba(28, 24, 19, 0.06);
}
.card.clickable { transition: transform 240ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.card.clickable:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: 0 2px 4px rgba(28, 24, 19, 0.05),
              0 18px 44px rgba(28, 24, 19, 0.09);
}
.card.clickable:focus-within {
  outline: 2px solid var(--gold-700);
  outline-offset: 3px;
}

/* Pills and badges */
.pill {
  display: inline-block;
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.pill-gold {
  background: var(--gold-100);
  color: var(--gold-700);
  border: 1px solid var(--gold-300);
}
.pill-ink {
  background: var(--text-900);
  color: #F5EEDF;
}
.pill-outline {
  border: 1px solid var(--border-strong);
  color: var(--text-500);
}

/* Course card (homepage) */
.course-card { max-width: 640px; margin: 48px auto 0; }
.course-card .card-title { margin-top: 20px; }
.course-card .card-desc { margin-top: 12px; font-size: 1rem; }
.course-card .card-link { margin-top: 20px; display: inline-block; }

/* ============================================================
   Method strip (Teach / Model / Drill)
   ============================================================ */
.method-grid {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.method-item .method-label {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold-700);
}
.method-item p {
  margin-top: 12px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-700);
}

/* ============================================================
   Pricing tiers
   ============================================================ */
.tier-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: 0 1px 2px rgba(28, 24, 19, 0.05),
              0 10px 30px rgba(28, 24, 19, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 180ms ease, transform 240ms ease, box-shadow 180ms ease;
}
.tier:active { border-color: var(--border-strong); }
.tier-name {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-500);
}
.tier .price-display {
  margin-top: 16px;
  font-size: 2.75rem;
  line-height: 1;
}
.price-display .currency {
  font-size: 0.45em;
  vertical-align: super;
}
.tier .term-note {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--text-500);
}
.tier-divider {
  border: 0;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}
.tier-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-700);
  flex: 1;
}
.tier-features li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.check-icon { flex: none; margin-top: 4px; }
.tier .btn { margin-top: auto; }

.tier.featured {
  border: 2px solid var(--gold-500);
  padding: 35px 31px; /* keeps outer dimensions identical to 1px-border siblings */
  z-index: 1;
  box-shadow: 0 2px 4px rgba(28, 24, 19, 0.05),
              0 18px 44px rgba(28, 24, 19, 0.09);
}
.tier-best {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

/* PBQ add-on row */
.addon-row {
  margin-top: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px;
  box-shadow: 0 1px 2px rgba(28, 24, 19, 0.05),
              0 10px 30px rgba(28, 24, 19, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.addon-info .addon-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-900);
}
.addon-info .addon-desc { font-size: 0.9375rem; color: var(--text-700); margin-top: 4px; }
.addon-action {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: none;
}
.addon-price {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--text-900);
  white-space: nowrap;
}
.addon-price .currency { font-size: 0.45em; vertical-align: super; }

/* Voucher note */
.voucher-note {
  margin-top: 24px;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-500);
  max-width: 68ch;
  margin-left: auto;
  margin-right: auto;
}
.guarantee-micro {
  margin-top: 16px;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-500);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ============================================================
   Guarantee strip
   ============================================================ */
.guarantee-strip {
  background: var(--gold-100);
  border-top: 1px solid var(--gold-300);
  border-bottom: 1px solid var(--gold-300);
  padding: 32px 24px;
}
.guarantee-strip .guarantee-statement {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-700);
  max-width: 68ch;
  margin-top: 12px;
}
.guarantee-strip .secure-note {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--text-500);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Guarantee terms card */
.terms-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: 0 1px 2px rgba(28, 24, 19, 0.05),
              0 10px 30px rgba(28, 24, 19, 0.06);
  max-width: var(--reading);
  margin: 0 auto;
}
.terms-card .terms-body {
  margin-top: 16px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-700);
  max-width: 68ch;
}
.seal {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold-300);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

/* Trust signals band */
.trust-band {
  background: var(--gold-50);
  padding: 64px 24px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.trust-item { display: flex; gap: 12px; align-items: flex-start; }
.trust-item .trust-label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-900);
}
.trust-item .trust-sub { font-size: 0.8125rem; color: var(--text-500); margin-top: 4px; }

/* Abuse line block */
.abuse-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  max-width: var(--reading);
  margin: 0 auto;
  box-shadow: 0 1px 2px rgba(28, 24, 19, 0.05),
              0 10px 30px rgba(28, 24, 19, 0.06);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-700);
}

/* ============================================================
   Accordions
   ============================================================ */
.accordion { max-width: var(--reading); margin: 48px auto 0; }
.accordion-item { border-top: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: 1px solid var(--border); }
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: 0;
  padding: 22px 8px;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-900);
  text-align: left;
  cursor: pointer;
}
.accordion-trigger:focus-visible {
  outline: 2px solid var(--gold-700);
  outline-offset: 3px;
  border-radius: 4px;
}
.accordion-trigger .chevron {
  flex: none;
  transition: transform 240ms ease;
}
.accordion-trigger[aria-expanded="true"] .chevron { transform: rotate(180deg); }
.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 240ms ease;
}
.accordion-panel > .accordion-panel-inner {
  overflow: hidden;
}
.accordion-trigger[aria-expanded="true"] + .accordion-panel { grid-template-rows: 1fr; }
.accordion-answer {
  padding: 0 8px 26px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-700);
  max-width: 68ch;
}

/* ============================================================
   Wait box (lead capture)
   ============================================================ */
.wait-box {
  background: var(--gold-100);
  border: 1px solid var(--gold-300);
  border-radius: var(--radius-wait);
  padding: 40px;
  max-width: 640px;
  margin: 0 auto;
}
.wait-box .wait-title { margin-bottom: 8px; }
.wait-box .wait-copy { font-size: 1rem; color: var(--text-700); margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-700);
  margin-bottom: 8px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  height: 52px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  padding: 0 16px;
  font: inherit;
  font-size: 1rem;
  color: var(--text-900);
}
.field textarea { height: auto; min-height: 120px; padding: 12px 16px; }
.field input::placeholder,
.field textarea::placeholder { color: var(--text-400); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold-700);
  box-shadow: 0 0 0 3px rgba(200, 162, 75, 0.25);
}
.wait-micro { margin-top: 16px; font-size: 0.75rem; color: var(--text-500); }
.wait-success {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-700);
}

/* ============================================================
   Order summary (checkout)
   ============================================================ */
.order-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px;
  box-shadow: 0 1px 2px rgba(28, 24, 19, 0.05),
              0 10px 30px rgba(28, 24, 19, 0.06);
  max-width: 480px;
}
.order-card .h4 { margin-bottom: 16px; }
.order-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #EFE8D8;
}
.order-row .row-term { font-size: 0.875rem; font-weight: 700; color: var(--text-900); }
.order-row .row-value { font-size: 0.9375rem; color: var(--text-700); text-align: right; }
.order-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0 0;
  border-top: 2px solid var(--gold-500);
  margin-top: 4px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-900);
}

/* Checkout trust strip (compact) */
.checkout-trust {
  background: var(--gold-100);
  border: 1px solid var(--gold-300);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  max-width: 480px;
}
.checkout-trust .trust-line {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-900);
}
.checkout-trust .caption { margin-top: 8px; }

/* Placeholder notice (front-end only) */
.placeholder-notice {
  background: var(--warning-tint);
  border: 1px solid var(--gold-300);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  color: var(--warning);
  font-size: 0.9375rem;
  line-height: 1.6;
}
.placeholder-notice strong { color: var(--warning); }

/* [COPY NEEDED] staging markers */
.copy-needed {
  border: 1px dashed var(--gold-700);
  border-radius: var(--radius-btn);
  background: var(--gold-50);
  padding: 10px 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-800);
  text-transform: uppercase;
}
.copy-needed.inline { display: inline-block; }

/* Support block */
.support-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 24px;
  max-width: var(--reading);
  margin: 0 auto;
  box-shadow: 0 1px 2px rgba(28, 24, 19, 0.05),
              0 10px 30px rgba(28, 24, 19, 0.06);
}
.support-card .h4 { margin-bottom: 8px; }
.support-card .support-body { font-size: 0.9375rem; line-height: 1.6; color: var(--text-700); }

/* P.S. blocks */
.ps-block {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-700);
  margin-bottom: 24px;
}
.ps-block .ps-lead { font-weight: 600; }

/* Two-column checkout layout */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1024px;
  margin: 0 auto;
}
.checkout-grid .stack > * + * { margin-top: 24px; }

/* FAQ footer link */
.faq-footer-link { margin-top: 32px; text-align: center; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink-900);
  border-top: 1px solid var(--gold-500);
  padding: 64px 0 32px;
  color: var(--ink-muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: Fraunces, Georgia, serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--ink-text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.footer-brand:hover { color: var(--ink-text); }
.footer-tagline { font-size: 0.9375rem; color: var(--ink-muted); margin-top: 12px; max-width: 34ch; }
.footer-col-heading {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-700);
  margin: 0 0 20px;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.footer-links a {
  color: var(--ink-muted);
  text-decoration: none;
  font-size: 0.875rem;
}
.footer-links a:hover {
  color: #FFFFFF;
  text-decoration: underline;
  text-decoration-color: var(--gold-500);
  text-underline-offset: 3px;
}
.footer-links a:focus-visible { outline: 2px solid var(--gold-700); outline-offset: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(200, 162, 75, 0.25);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-400);
}
.footer-policies { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.footer-policies a { color: var(--ink-muted); text-decoration: none; }
.footer-policies a:hover { color: #FFFFFF; text-decoration: underline; text-underline-offset: 3px; }
.footer-policies .sep { color: var(--text-400); }
.draft-banner {
  display: inline-block;
  border: 1px solid var(--gold-500);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-500);
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .tier-grid { grid-template-columns: 1fr; max-width: 640px; margin-left: auto; margin-right: auto; }
  .tier.featured { transform: none; }
  .trust-grid { grid-template-columns: 1fr; max-width: 640px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 48px 0; }
  .hero { padding: 72px 0 56px; }
  .hero-title { font-size: 2.9rem; line-height: 1.06; }
  h1, .h1 { font-size: 2.25rem; }
  h2, .h2 { font-size: 1.875rem; }
  .method-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: inline-block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 24px 16px;
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-top: 1px solid var(--border); }
  .nav-links a {
    display: block;
    padding: 14px 0;
    font-size: 1rem;
    letter-spacing: 0.16em;
  }
  .site-nav { position: sticky; }
  .card { padding: 24px; }
  .terms-card { padding: 28px; }
  .wait-box { padding: 28px; }
  .addon-row { flex-direction: column; align-items: stretch; }
  .addon-action { justify-content: space-between; }
  .btn-sm { min-height: 44px; }
  .guarantee-strip { padding: 24px 20px; }
  .trust-band { padding: 48px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-cta-row .btn { width: 100%; }
  .addon-action .btn { width: 100%; }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
  .card.clickable:hover { transform: none; }
  .btn:active { transform: none; }
}

/* ============================================================
   asecertification.com additions: sample audio player, license block
   ============================================================ */
.sample-player {
  max-width: 560px;
  margin: 28px auto 0;
  padding: 20px 24px;
  background: var(--ink-900);
  border-radius: var(--radius-card);
  border: 1px solid var(--gold-700);
}
.sample-player-label {
  margin: 0 0 12px;
  color: var(--ink-text);
  font-size: 0.95rem;
  font-weight: 600;
}
.sample-player audio {
  width: 100%;
  display: block;
}
.sample-player-caption {
  margin: 12px 0 0;
  color: var(--ink-muted);
  font-size: 0.85rem;
}
.license-block {
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-card);
  background: var(--gold-50);
  padding: 24px 28px;
  max-width: var(--reading);
  margin-left: auto;
  margin-right: auto;
}
.license-block h2 {
  font-size: 1.05rem;
  margin: 0 0 12px;
  color: var(--text-900);
}
.license-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.license-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.98rem;
  color: var(--text-700);
}
.license-list svg { flex: 0 0 auto; margin-top: 4px; }
