/* ============================================================
   ATLAS GUIDE  ·  ADVERTISE PAGE  ·  advertise.css
   Requires global.css and header-footer.css loaded first.
   Prefix: ad-
   Tickets, shell and CTA copy the live deals banner (deals-banner.js)
   so the mock on this page looks like the real thing.
   ============================================================ */

:root {
  --ad-hair: rgba(26, 58, 43, 0.10);
  --ad-border-warm: rgba(201, 168, 92, 0.30);
  --ad-radius: 16px;
  --ad-pill: 999px;
  --ad-ease: var(--ease-out, cubic-bezier(.16, 1, .3, 1));
  --ad-g900: var(--ag-green-900, #0d2118);
  --ad-g800: var(--ag-green-800, #1a3a2b);
  --ad-gold500: var(--ag-gold-500, #c9a85c);
  --ad-gold400: var(--ag-gold-400, #e3bd72);
  --ad-gold700: var(--ag-gold-700, #7a5f17);
  --ad-parch: var(--ag-parchment, #f5efe3);
  --ad-ink: var(--ag-ink, #1a2420);
  --ad-ink-mid: var(--ag-ink-mid, #46534c);
  --ad-ink-light: var(--ag-ink-light, #5f6d66);
  --ad-danger: #9b2c1f;
  --ad-ok: #25603f;
}

.ad-body { background: var(--ad-g900); }
.ad-main {
  background: var(--ad-parch);
  color: var(--ad-ink);
  font-family: var(--font-body, 'DM Sans', system-ui, -apple-system, sans-serif);
  font-size: 1rem;
  line-height: 1.6;
}
.ad-main *, .ad-main *::before, .ad-main *::after { box-sizing: border-box; }
:where(.ad-main) :is(h1, h2, h3, p) { margin: 0; }
.ad-main :is(h1, h2, h3) {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-weight: 700;
}
.ad-main :focus-visible { outline: 3px solid var(--ad-gold500); outline-offset: 2px; }

.ad-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.ad-sec { padding: clamp(72px, 11vh, 120px) 0; }

/* ---------- Buttons (same pill language as the home page) ---------- */
.ad-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: var(--ad-pill);
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background .3s var(--ad-ease), color .3s var(--ad-ease), transform .3s var(--ad-ease), box-shadow .3s, border-color .3s;
}
.ad-btn-gold { background: var(--ad-gold500); color: var(--ad-g900); box-shadow: 0 2px 10px rgba(26, 36, 32, 0.06); }
.ad-btn-gold:hover { background: var(--ad-gold400); transform: translateY(-2px); box-shadow: 0 6px 28px rgba(26, 36, 32, 0.10); }
.ad-btn-ghost { background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.88); border-color: rgba(255, 255, 255, 0.25); }
.ad-btn-ghost:hover { background: rgba(255, 255, 255, 0.14); border-color: var(--ad-gold500); color: #fff; transform: translateY(-2px); }
.ad-btn-dark { background: var(--ad-g800); color: #fff; }
.ad-btn-dark:hover { background: var(--ad-g900); transform: translateY(-2px); }
.ad-btn[disabled] { opacity: .6; cursor: wait; transform: none; }

/* ---------- Section heads (same pattern as the home page) ---------- */
.ad-sec-head {
  margin-bottom: 44px;
  padding-top: 22px;
  border-top: 2px solid var(--ad-g900);
}
.ad-sec-head-light { border-top-color: var(--ad-gold500); }
.ad-sec-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ad-gold700);
}
.ad-sec-label::before { content: '\25C6'; color: var(--ad-gold500); font-size: 0.62rem; }
.ad-sec-head-light .ad-sec-label { color: var(--ad-gold400); }
.ad-sec-title {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.04;
  color: var(--ad-ink);
}
.ad-sec-head-light .ad-sec-title { color: #fff; }
.ad-sec-lede { margin-top: 14px; max-width: 58ch; color: var(--ad-ink-mid); }
.ad-sec-head-light .ad-sec-lede { color: rgba(255, 255, 255, 0.62); }

/* ============================================================
   HERO
   ============================================================ */
.ad-hero {
  background:
    repeating-linear-gradient(0deg, transparent 0 63px, rgba(255, 255, 255, 0.018) 63px 64px),
    var(--ad-g900);
  color: #fff;
  padding: clamp(72px, 12vh, 132px) 0 clamp(64px, 10vh, 110px);
}
.ad-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ad-gold400);
}
.ad-hero-kicker::before { content: ''; width: 34px; height: 1px; background: var(--ad-gold500); }
.ad-hero h1 {
  font-size: clamp(2.6rem, 5.8vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.045em;
  color: #fff;
  max-width: 21ch;
  margin-bottom: 28px;
}
.ad-w {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.ad-w > span { display: inline-block; }
.ad-lede {
  max-width: 54ch;
  margin-bottom: 34px;
  font-size: clamp(0.98rem, 1.25vw, 1.12rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.66);
}
.ad-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }

@media (prefers-reduced-motion: no-preference) {
  .ad-w > span { transform: translateY(110%); animation: ad-word-rise .9s var(--ad-ease) forwards; animation-delay: calc(var(--i) * 70ms + 250ms); }
  .ad-hero-kicker { animation: ad-fade .9s .15s var(--ad-ease) both; }
  .ad-lede { animation: ad-fade .9s .7s var(--ad-ease) both; }
  .ad-hero-cta { animation: ad-fade .9s .85s var(--ad-ease) both; }
  .ad-screen .ad-tk { animation: ad-dock .7s var(--ad-ease) backwards; animation-delay: calc(var(--i) * 130ms + 1000ms); }
  @keyframes ad-word-rise { to { transform: translateY(0); } }
  @keyframes ad-fade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
  @keyframes ad-dock { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
}

/* ---------- Page mock with the banner docked at the bottom ---------- */
.ad-screen {
  margin: 56px 0 0;
  border: 1px solid rgba(201, 168, 92, 0.3);
  border-radius: 18px;
  background: #0b1f16;
  overflow: hidden;
}
.ad-screen-page { padding: 28px 28px 34px; display: grid; gap: 12px; }
.ad-screen-page i { display: block; height: 11px; border-radius: 6px; background: rgba(244, 234, 217, 0.08); }
.ad-screen-page i:first-child { height: 22px; background: rgba(244, 234, 217, 0.14); }
.ad-screen-dock { padding: 0 14px 14px; }
.ad-screen figcaption {
  padding: 13px 18px;
  font-size: 0.88rem;
  color: rgba(244, 234, 217, 0.66);
  border-top: 1px solid rgba(244, 234, 217, 0.08);
}

/* ---------- Banner shell, ticket and CTA (copied from the live banner) ---------- */
.ad-shell {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px;
  padding-inline-start: 20px;
  border-radius: 20px;
  color: #f4ead9;
  font-size: 14px;
  line-height: 1.3;
  background: linear-gradient(160deg, #1f4536 0%, #152d24 60%, #0f231c 100%);
  border: 1px solid rgba(227, 189, 114, 0.22);
  box-shadow: 0 24px 60px -18px rgba(0, 0, 0, 0.65), 0 6px 18px -8px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.ad-shell::before {
  content: '';
  position: absolute;
  top: -1px; left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e3bd72 50%, transparent);
  pointer-events: none;
}
.ad-shell-label {
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  max-width: 130px;
  padding-inline-end: 18px;
  border-inline-end: 1px solid rgba(244, 234, 217, 0.12);
  font-size: 13px;
  font-weight: 600;
  color: #e3bd72;
}
.ad-row {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(0, 1fr);
  gap: 10px;
}
.ad-tk {
  --ad-stub: 52px;
  --ad-notch: calc(var(--ad-stub) + 1px);
  container-type: inline-size;
  position: relative;
  display: flex;
  align-items: center;
  height: 52px;
  min-width: 0;
  padding-inline-end: 6px;
  border-radius: 12px;
  color: inherit;
  background: rgba(244, 234, 217, 0.05);
  border: 1px solid rgba(244, 234, 217, 0.08);
  -webkit-mask: radial-gradient(circle 6px at var(--ad-notch) 0, transparent 97%, #000) top/100% 51% no-repeat,
                radial-gradient(circle 6px at var(--ad-notch) 100%, transparent 97%, #000) bottom/100% 51% no-repeat;
          mask: radial-gradient(circle 6px at var(--ad-notch) 0, transparent 97%, #000) top/100% 51% no-repeat,
                radial-gradient(circle 6px at var(--ad-notch) 100%, transparent 97%, #000) bottom/100% 51% no-repeat;
}
.ad-tk-stub {
  flex-shrink: 0;
  align-self: stretch;
  width: var(--ad-stub);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline-end: 12px;
  font-size: 20px;
  line-height: 1;
  background: linear-gradient(to bottom, rgba(227, 189, 114, 0.5) 55%, transparent 0) right center/1px 6px repeat-y;
}
.ad-tk-copy { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; gap: 2px; line-height: 1.25; }
.ad-tk-brand { display: flex; align-items: center; gap: 7px; min-width: 0; }
.ad-tk-name { font-size: 13.5px; font-weight: 700; color: #fff8ec; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ad-tk-offer { font-size: 12.5px; color: rgba(244, 234, 217, 0.7); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ad-hl { font-weight: 700; color: #e3bd72; }
.ad-tk-chip {
  flex-shrink: 0;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1;
  padding: 3px 7px;
  border-radius: 999px;
  color: rgba(244, 234, 217, 0.78);
  background: rgba(244, 234, 217, 0.1);
  box-shadow: inset 0 0 0 1px rgba(244, 234, 217, 0.22);
}
.ad-chip-short { display: none; }
@container (max-width: 300px) {
  .ad-chip-full { display: none; }
  .ad-chip-short { display: inline; }
}
.ad-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  margin-inline-start: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3d596, #c9a24b);
  color: #132a20;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45), 0 4px 12px -6px rgba(201, 162, 75, 0.8);
}
.ad-cta svg { display: none; width: 15px; height: 15px; }
@container (max-width: 250px) {
  .ad-cta { width: 36px; padding: 0; }
  .ad-cta-text { display: none; }
  .ad-cta svg { display: block; }
}
/* the open slot */
.ad-tk.is-open {
  -webkit-mask: none;
          mask: none;
  background: transparent;
  border: 1.5px dashed rgba(227, 189, 114, 0.6);
}
.ad-tk.is-open .ad-tk-stub { color: #e3bd72; font-size: 24px; background: linear-gradient(to bottom, rgba(227, 189, 114, 0.35) 55%, transparent 0) right center/1px 6px repeat-y; }
.ad-tk.is-open .ad-tk-name { color: #e3bd72; }

@media (max-width: 1180px) { .ad-shell-label { display: none; } .ad-shell { padding-inline-start: 8px; } }
@media (max-width: 760px) { .ad-row { grid-auto-flow: row; grid-template-columns: 1fr; } }

/* ============================================================
   AUDIENCE STRIP
   ============================================================ */
.ad-stats { background: var(--ad-parch); border-bottom: 1px solid var(--ad-hair); padding: clamp(40px, 7vh, 72px) 0; }
.ad-stats dl { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; border-left: 1px solid var(--ad-hair); }
.ad-stats dl > div { display: flex; flex-direction: column-reverse; gap: 8px; padding: 8px 30px; border-right: 1px solid var(--ad-hair); }
.ad-stats dd { margin: 0; font-family: var(--font-display, 'Playfair Display', Georgia, serif); font-size: clamp(2.2rem, 4.4vw, 3.6rem); font-weight: 700; line-height: 1; letter-spacing: -0.03em; color: var(--ad-g900); }
.ad-stats dt { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ad-gold700); }

/* ============================================================
   WHAT YOU GET
   ============================================================ */
.ad-rows { border-top: 1px solid var(--ad-hair); }
.ad-row-item { display: grid; grid-template-columns: 300px 1fr; gap: 28px; padding: 26px 0; border-bottom: 1px solid var(--ad-hair); }
.ad-row-item h3 { font-size: 1.3rem; letter-spacing: -0.01em; }
.ad-row-item p { color: var(--ad-ink-mid); max-width: 62ch; }

/* ============================================================
   PRICING
   ============================================================ */
.ad-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ad-plan { display: flex; flex-direction: column; gap: 20px; padding: 34px 30px; border-radius: var(--ad-radius); }
.ad-plan-std { background: #fff; border: 1px solid var(--ad-hair); }
.ad-plan-feat {
  color: #f4ead9;
  background: linear-gradient(160deg, #1f4536 0%, #152d24 60%, #0f231c 100%);
  border: 1px solid rgba(227, 189, 114, 0.45);
  box-shadow: 0 26px 60px -24px rgba(13, 33, 24, 0.55);
}
.ad-plan h3 { font-size: 1.7rem; letter-spacing: -0.02em; }
.ad-plan-feat h3 { color: #fff; }
.ad-plan-sub { margin-top: 6px; font-size: 0.92rem; color: var(--ad-ink-light); }
.ad-plan-feat .ad-plan-sub { color: rgba(244, 234, 217, 0.72); }
.ad-price { font-family: var(--font-display, 'Playfair Display', Georgia, serif); font-size: 3rem; font-weight: 700; line-height: 1; letter-spacing: -0.03em; color: var(--ad-g900); }
.ad-plan-feat .ad-price { color: #e3bd72; }
.ad-price small { font-family: var(--font-body, 'DM Sans', system-ui, sans-serif); font-size: 0.92rem; font-weight: 400; letter-spacing: 0; color: var(--ad-ink-light); }
.ad-plan-feat .ad-price small { color: rgba(244, 234, 217, 0.66); }
.ad-plan ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.ad-plan li { position: relative; padding-inline-start: 26px; font-size: 0.95rem; }
.ad-plan li::before {
  content: '';
  position: absolute;
  inset-inline-start: 2px;
  top: 0.5em;
  width: 10px; height: 6px;
  border-left: 2px solid var(--ad-gold700);
  border-bottom: 2px solid var(--ad-gold700);
  transform: rotate(-45deg);
}
.ad-plan-feat li::before { border-color: #e3bd72; }
.ad-plan .ad-btn { margin-top: auto; }
.ad-plan-note { margin-top: 18px; font-size: 0.92rem; color: var(--ad-ink-mid); }


/* ============================================================
   HOW IT WORKS (dark band)
   ============================================================ */
.ad-process {
  background:
    repeating-linear-gradient(0deg, transparent 0 47px, rgba(255, 255, 255, 0.015) 47px 48px),
    var(--ad-g900);
}
.ad-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; counter-reset: ad-s; }
.ad-steps li {
  counter-increment: ad-s;
  padding: 30px 26px;
  border-radius: var(--ad-radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.ad-steps li::before {
  content: counter(ad-s, decimal-leading-zero);
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(201, 168, 92, 0.4);
}
.ad-steps h3 { margin-bottom: 8px; font-size: 1.25rem; color: #fff; }
.ad-steps p { font-size: 0.9rem; line-height: 1.7; color: rgba(255, 255, 255, 0.62); }

/* ============================================================
   STANDARDS
   ============================================================ */
.ad-rules-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ad-rules-card { padding: 30px 28px; border-radius: var(--ad-radius); background: #fff; border: 1px solid var(--ad-hair); }
.ad-rules-card h3 { margin-bottom: 14px; font-size: 1.4rem; }
.ad-rules-card ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 12px; }
.ad-rules-card li { position: relative; padding-inline-start: 28px; color: var(--ad-ink-mid); }
.ad-rules-card.yes li::before {
  content: '';
  position: absolute;
  inset-inline-start: 3px;
  top: 0.5em;
  width: 10px; height: 6px;
  border-left: 2px solid var(--ad-ok);
  border-bottom: 2px solid var(--ad-ok);
  transform: rotate(-45deg);
}
.ad-rules-card.no li::before { content: '\00D7'; position: absolute; inset-inline-start: 2px; top: -0.15em; font-size: 1.4rem; line-height: 1.4; color: var(--ad-danger); }
.ad-rules-foot { margin-top: 26px; max-width: 68ch; color: var(--ad-ink-mid); }

/* ============================================================
   FORM
   ============================================================ */
.ad-form { padding: clamp(22px, 3.4vw, 40px); border-radius: var(--ad-radius); background: #fff; border: 1px solid var(--ad-hair); box-shadow: 0 6px 28px rgba(26, 36, 32, 0.06); }
.ad-form fieldset { border: 0; padding: 0; margin: 0 0 34px; min-width: 0; }
.ad-form legend { padding: 0; margin-bottom: 18px; font-family: var(--font-display, 'Playfair Display', Georgia, serif); font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; }
.ad-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.ad-field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.ad-field.full { grid-column: 1 / -1; }
.ad-field label, .ad-label { font-size: 0.9rem; font-weight: 700; }
.ad-hint { font-size: 0.85rem; color: var(--ad-ink-light); }
.ad-form input[type=text], .ad-form input[type=email], .ad-form input[type=url], .ad-form input[type=date], .ad-form select, .ad-form textarea {
  width: 100%;
  padding: 12px 14px;
  font: inherit;
  color: var(--ad-ink);
  background: #fff;
  border: 1px solid rgba(26, 58, 43, 0.25);
  border-radius: 10px;
  transition: border-color .2s, box-shadow .2s;
}
.ad-form input:focus, .ad-form select:focus, .ad-form textarea:focus { outline: none; border-color: var(--ad-g800); box-shadow: 0 0 0 3px rgba(201, 168, 92, 0.45); }
.ad-form textarea { min-height: 100px; resize: vertical; }
.ad-form .ad-touched:invalid:not(:focus) { border-color: var(--ad-danger); }
.ad-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 18px; }
.ad-opt { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border-radius: 12px; cursor: pointer; background: #fff; border: 1px solid rgba(26, 58, 43, 0.25); }
.ad-opt:has(input:checked) { border-color: var(--ad-g800); box-shadow: 0 0 0 2px var(--ad-g800); }
.ad-opt input { margin-top: 5px; accent-color: var(--ad-g800); }
.ad-opt b { display: block; }
.ad-opt small { color: var(--ad-ink-light); }
.ad-preview-label { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; }
.ad-preview { padding: 10px; border-radius: 16px; background: linear-gradient(160deg, #1f4536 0%, #152d24 60%, #0f231c 100%); border: 1px solid rgba(227, 189, 114, 0.22); }
.ad-estimate { margin-bottom: 20px; padding: 14px 16px; border-radius: 12px; background: var(--ad-parch); font-weight: 700; }
.ad-check { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 22px; cursor: pointer; }
.ad-check input { margin-top: 6px; accent-color: var(--ad-g800); }
.ad-status { margin-top: 16px; font-weight: 700; }
.ad-status.ok { color: var(--ad-ok); }
.ad-status.err { color: var(--ad-danger); }
.ad-privacy { margin-top: 12px; max-width: 62ch; font-size: 0.85rem; color: var(--ad-ink-light); }
.ad-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ============================================================
   FAQ
   ============================================================ */
.ad-faq details { border-bottom: 1px solid var(--ad-hair); padding: 22px 0; }
.ad-faq details:first-of-type { border-top: 1px solid var(--ad-hair); }
.ad-faq summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: 1.2rem;
  font-weight: 700;
}
.ad-faq summary::-webkit-details-marker { display: none; }
.ad-faq summary::after { content: '+'; font: 400 1.6rem/1 var(--font-body, 'DM Sans', system-ui, sans-serif); color: var(--ad-gold700); }
.ad-faq details[open] summary::after { content: '\2212'; }
.ad-faq details p { margin-top: 12px; max-width: 68ch; color: var(--ad-ink-mid); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .ad-steps { grid-template-columns: 1fr 1fr; }
  .ad-stats dl { grid-template-columns: 1fr 1fr; }
  .ad-stats dl > div { padding: 18px 26px; }
}
@media (max-width: 820px) {
  .ad-row-item { grid-template-columns: 1fr; gap: 8px; }
  .ad-plans, .ad-rules-grid, .ad-grid2, .ad-opts { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ad-steps { grid-template-columns: 1fr; }
  .ad-stats dl > div { padding: 16px 18px; }
  .ad-btn { width: 100%; }
  .ad-hero-cta { flex-direction: column; }
  .ad-screen-page { padding: 20px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .ad-w > span, .ad-hero-kicker, .ad-lede, .ad-hero-cta, .ad-screen .ad-tk { animation: none; transform: none; opacity: 1; }
  .ad-btn { transition: none; }
}