/* ============ Promo bar + Nav ============ */
.ampd-promo {
  background: var(--ampd-black);
  display: flex; align-items: center; justify-content: center; gap: 7px;
  padding: 10px 12px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.13em; text-transform: uppercase;
  white-space: nowrap; overflow-x: auto;
}
.ampd-promo__accent { color: var(--accent-primary); }
.ampd-promo__text { color: rgba(255,255,255,0.93); }
.ampd-promo__sep { color: rgba(255,255,255,0.38); }

.ampd-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; height: 52px; border-bottom: 1px solid var(--ampd-line-softer);
}
.ampd-nav__icon-btn { display: flex; padding: 4px; }
.ampd-nav__logo { height: 17px; }

/* ============ Hero ============ */
.ampd-hero { position: relative; }
.ampd-hero__media {
  position: relative; width: 100%; aspect-ratio: 375 / 257; background: var(--bg-section-dark); overflow: hidden;
}
.ampd-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Full-bleed, edge-to-edge crop. Source is a portrait 9:16 clip; object-position biases the
   crop toward the upper frame so Ross's face stays the focal point at every viewport width
   (product/lower body may crop out — acceptable per brief). */
.ampd-hero__video {
  position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center 22%; display: block;
}

/* Subtle scrim so the white control icons stay legible regardless of what's behind them —
   anchored to the bottom since that's where the controls live (adapted from the brief's
   left-to-right example, which was framed around overlaid headline text; this build keeps
   the headline below the video rather than on top of it, so the scrim only needs to protect
   the corner controls). */
.ampd-hero__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.12) 22%, rgba(0,0,0,0) 45%);
}

.ampd-hero__play-overlay { z-index: 2; pointer-events: none; }
.ampd-hero__play-overlay .ampd-play__circle { pointer-events: auto; }
.ampd-hero__play-overlay .icon-pause { margin-left: 0; }

.ampd-hero__curve { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 34px; display: block; z-index: 2; }

.ampd-hero__video-controls { position: absolute; left: 14px; right: 14px; bottom: 46px; display: flex; justify-content: space-between; z-index: 2; }
.ampd-hero__video-controls[hidden] { display: none; }
.ampd-hero__video-btn {
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: rgba(11,11,14,0.5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: var(--ampd-white); border: 1px solid rgba(255,255,255,0.25);
}
.ampd-hero__video-btn svg { display: block; }
.is-icon-hidden { display: none !important; }

.ampd-hero__body { background: var(--bg-hero-curve); }

.ampd-hero__rating {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin: 0 12px; padding-top: 6px; font-size: 11.5px; font-weight: 500; color: var(--ampd-label);
  white-space: nowrap; flex-wrap: wrap;
}
.ampd-hero__stars {
  color: var(--accent-primary); font-size: 16px; line-height: 1; letter-spacing: 2.5px; margin-right: -2.5px;
  text-shadow: 0 1px 2px rgba(11,11,14,0.18); display: inline-flex; align-items: center; transform: translateY(-1px);
}
.ampd-hero__rating-num { font-weight: 700; color: var(--ampd-ink); font-size: 12.5px; }
.ampd-hero__rating-sep { color: var(--dot-off); }
.ampd-hero__rating-tested { display: inline-flex; align-items: center; gap: 4px; }

.ampd-hero__title {
  margin: 10px 16px 0; text-align: center; font-family: var(--font-display);
  font-size: 24px; line-height: 1.25; font-weight: 800; letter-spacing: -0.03em; color: var(--ampd-ink);
}
.ampd-hero__subtitle {
  margin: 6px 26px 0; text-align: center; font-size: 13px; line-height: 1.5; color: var(--ampd-body);
}

.ampd-btn-group { margin: 10px 24px 0; display: flex; flex-direction: column; gap: 10px; }
.ampd-btn-primary {
  background: var(--accent-gradient); color: var(--text-inverse); height: 54px; border-radius: 27px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-size: 16.5px; font-weight: 700; letter-spacing: 0.01em;
  box-shadow: 0 10px 22px -10px var(--accent-shadow), 0 2px 5px rgba(11,11,14,0.06);
}
.ampd-btn-secondary {
  background: var(--ampd-white); color: var(--ampd-ink); height: 50px; border: 1.5px solid var(--ampd-line);
  border-radius: 27px; display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-size: 15.5px; font-weight: 700;
}
.ampd-btn-secondary__arrow { font-weight: 700; color: var(--accent-primary); }

.ampd-perks { display: grid; grid-template-columns: 1fr 1fr 1fr; margin: 10px 16px 0; padding-bottom: 6px; }
.ampd-perk { display: flex; flex-direction: column; align-items: center; gap: 7px; padding: 2px 6px; text-align: center; }
.ampd-perk--divided { border-left: 1px solid var(--ampd-line-softer); border-right: 1px solid var(--ampd-line-softer); }
.ampd-perk__icon { color: var(--accent-primary); }
.ampd-perk__title { font-size: 13px; font-weight: 700; color: var(--ampd-ink); }
.ampd-perk__sub { font-size: 11.5px; color: var(--ampd-muted); margin-top: 2px; }

.ampd-scrolldown {
  padding: 40px 0 36px; display: flex; justify-content: center; align-items: center; gap: 12px;
  font-family: var(--font-display); font-weight: 500; white-space: nowrap;
  background: var(--accent-gradient); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: ampd-bob 2.8s ease-in-out infinite;
}
.ampd-scrolldown__label { font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; }
/* The ⌄ (U+2304) glyph's ink sits low in its line box, so flex centring alone
   leaves the arrows below the label's optical centre — nudge them up. */
.ampd-scrolldown > span[aria-hidden="true"] { line-height: 1; transform: translateY(-2px); }
@keyframes ampd-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

.ampd-curve-wrap { background: var(--bg-hero-curve); } /* matches hero's own ending tone, not white — keeps the curve seam continuous */
.ampd-curve-wrap svg { display: block; width: 100%; height: 34px; }

/* ============ Why We Made AMPD ============ */
.ampd-founder { background: var(--bg-founder); padding: 20px 24px 64px; }
.ampd-founder__quote {
  margin: 0; font-family: var(--font-display); font-size: 23px; line-height: 1.3; font-weight: 800;
  letter-spacing: -0.02em; color: var(--ampd-ink);
}
.ampd-founder__p { margin: 24px 0 0; font-size: 14px; line-height: 1.6; color: var(--ampd-body); }
.ampd-founder__p + .ampd-founder__p { margin-top: 10px; }
.ampd-founder__media {
  position: relative; margin-top: 20px; aspect-ratio: 4 / 3; border-radius: 22px; overflow: hidden; background: #E9EAEF;
}
.ampd-founder__media img { width: 100%; height: 100%; object-fit: cover; }
/* Founder video variant — resting state is the section's normal rectangular
   4:3 card showing the original thumbnail; on play (is-playing, set by the
   founder hook in main.js) it expands to the footage's true 9:16 portrait
   proportions. aspect-ratio interpolates where supported and snaps where
   not — both acceptable. The control row's 46px bottom offset exists to
   clear the hero's curve; there's no curve here, so pull it back. */
.ampd-founder__media--video {
  transition: aspect-ratio 280ms var(--ease-out);
}
.ampd-founder__media--video.is-playing { aspect-ratio: 9 / 16; }
.ampd-founder__media--video .ampd-hero__video { object-position: center; }
.ampd-founder__thumb {
  position: absolute; inset: 0; z-index: 2;
  width: 100%; height: 100%; object-fit: cover;
}
.ampd-founder__thumb[hidden] { display: none; }
@media (prefers-reduced-motion: reduce) {
  .ampd-founder__media--video { transition: none; }
}
.ampd-founder__media--video .ampd-hero__video-controls { bottom: 14px; }
.ampd-play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.ampd-play[hidden] { display: none; }
.ampd-play__circle {
  width: 62px; height: 62px; border-radius: 50%; background: var(--accent-primary);
  border: 3px solid rgba(255,255,255,0.9); box-shadow: 0 8px 24px rgba(11,11,14,0.25);
  display: flex; align-items: center; justify-content: center;
}
.ampd-play__circle--sm { width: 56px; height: 56px; }
.ampd-link-accent {
  display: inline-flex; align-items: center; gap: 7px; margin-top: 24px; font-size: 14.5px; font-weight: 500;
  color: var(--accent-primary);
}

/* ============ Why It's Different ============ */
.ampd-different {
  /* ends on a warm orange tint (not white) so it flows straight into the solid-orange Why Powder section below */
  background: linear-gradient(180deg, var(--bg-founder) 0%, var(--tint-10) 45%, var(--tint-30) 100%);
  padding: 64px 24px 28px;
}
.ampd-eyebrow {
  font-family: var(--font-display); font-size: 11.5px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent-primary);
}
.ampd-h2 {
  margin: 14px 0 0; font-family: var(--font-display); font-size: 23px; line-height: 1.3; font-weight: 800;
  letter-spacing: -0.02em; color: var(--ampd-ink);
}
.ampd-different__intro { margin: 14px 0 0; font-size: 14px; line-height: 1.6; color: var(--ampd-body); }
.ampd-benefits { display: flex; flex-direction: column; margin-top: 10px; }
.ampd-benefit {
  display: flex; gap: 16px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid rgba(11,11,14,0.07);
}
.ampd-benefit:last-child { border-bottom: 0; }
.ampd-benefit__icon { flex-shrink: 0; margin-top: 1px; color: var(--accent-primary); }
.ampd-benefit__title { font-size: 14.5px; font-weight: 700; color: var(--ampd-ink); }
.ampd-benefit__desc { margin: 5px 0 0; font-size: 13px; line-height: 1.55; color: var(--ampd-body); }

/* ============ Why Powder — continues the gradient down from Why It's Different, fades to grey into Choose Your AMPD ============ */
.ampd-powder {
  background: linear-gradient(180deg, var(--tint-30) 0%, var(--tint-10) 55%, var(--bg-panel) 100%);
  padding: 28px 24px 56px;
}
.ampd-powder .ampd-eyebrow { color: var(--ampd-ink); }
.ampd-powder__media {
  position: relative; margin-top: 20px; aspect-ratio: 16 / 9; border-radius: 22px; overflow: hidden; background: #232326;
}
.ampd-powder__media-caption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 28px 16px 12px;
  background: linear-gradient(180deg, rgba(10,10,12,0) 0%, rgba(10,10,12,0.55) 100%); pointer-events: none;
}
.ampd-powder__media-caption span {
  font-family: var(--font-display); font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.95);
}
.ampd-powder__tested {
  margin-top: 26px; padding-top: 20px; border-top: 1px solid var(--ampd-divider);
  display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center;
}
.ampd-tested-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--ampd-ink); }

/* ============ Choose Your AMPD ============ */
.ampd-choose { background: var(--bg-panel); padding: 20px 20px 64px; }
.ampd-choose__head { text-align: center; padding: 0 4px; }
.ampd-choose__head .ampd-h2 { margin-top: 14px; }
.ampd-choose__head p { margin: 10px 0 0; font-size: 14px; line-height: 1.6; color: var(--ampd-body); }

.ampd-gallery {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  margin-top: 18px; border-radius: 20px;
}
.ampd-gallery::-webkit-scrollbar { display: none; }
.ampd-gallery__slide { flex: 0 0 100%; scroll-snap-align: center; height: 300px; background: var(--bg-white); }
.ampd-gallery__slide img { width: 100%; height: 100%; object-fit: cover; }

.ampd-dots { display: flex; justify-content: center; gap: 7px; margin-top: 12px; }
.ampd-dot {
  width: 7px; height: 7px; border-radius: 4px; background: var(--ampd-dot-off);
  transition: all var(--duration-base) var(--ease-out); cursor: pointer; padding: 0; border: 0;
}
.ampd-dot[aria-current="true"] { width: 20px; background: var(--ampd-ink); }

.ampd-purchase-card { margin-top: 20px; border: 2px solid var(--ampd-ink); border-radius: 24px; background: var(--bg-white); overflow: hidden; }
.ampd-purchase-card__flag {
  background: var(--ampd-ink); padding: 7px 16px; text-align: center; font-family: var(--font-display);
  font-size: 11px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--ampd-white);
}
.ampd-purchase-card__body { padding: 20px 18px 22px; }

.ampd-toggle { display: flex; background: var(--ampd-line-softest); border-radius: 12px; padding: 4px; gap: 4px; }
.ampd-toggle__opt {
  position: relative; flex: 1; height: 40px; border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 600; color: var(--ampd-body); cursor: pointer;
  transition: background-color var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out), color var(--duration-base) var(--ease-out);
}
.ampd-toggle__opt[aria-selected="true"] {
  font-weight: 700; color: var(--ampd-ink); background: var(--ampd-white);
  box-shadow: 0 3px 10px rgba(11,11,14,0.12), 0 1px 2px rgba(11,11,14,0.06);
}
.ampd-toggle__badge {
  position: absolute; top: -9px; right: -2px; background: var(--accent-primary); color: var(--ampd-white);
  font-family: var(--font-display); font-size: 8.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 7px; border-radius: 20px; box-shadow: 0 2px 6px var(--accent-shadow);
  opacity: 0; transform: scale(0.85); transition: all var(--duration-base) var(--ease-out); pointer-events: none;
}
.ampd-toggle__opt[aria-selected="true"] .ampd-toggle__badge { opacity: 1; transform: scale(1); }
.ampd-toggle__microcopy { margin: 10px 2px 0; font-size: 12px; color: var(--ampd-muted); text-align: center; }

.ampd-plan { animation: ampd-fade 0.3s var(--ease-out); }
.ampd-plan--out { opacity: 0; transform: translateY(-4px); transition: opacity 0.15s var(--ease-out), transform 0.15s var(--ease-out); }
@keyframes ampd-fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }


.ampd-plan__price-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; margin-top: 18px; }
.ampd-plan__price-main { display: flex; align-items: baseline; gap: 9px; }
.ampd-plan__price-now { font-family: var(--font-display); font-size: 30px; font-weight: 800; letter-spacing: -0.02em; color: var(--ampd-ink); line-height: 1; }
.ampd-plan__price-was { font-size: 14px; font-weight: 500; color: var(--ampd-strike); text-decoration: line-through; }

.ampd-savings-badge {
  flex-shrink: 0; background: var(--accent-primary); color: var(--ampd-white); border-radius: 14px;
  padding: 7px 12px; display: flex; flex-direction: column; align-items: center; gap: 1px; text-align: center;
  box-shadow: 0 4px 10px var(--accent-shadow-soft);
}
.ampd-savings-badge__pct { font-family: var(--font-display); font-size: 12.5px; font-weight: 800; letter-spacing: 0.02em; line-height: 1.2; }
.ampd-savings-badge__amt { font-size: 9.5px; font-weight: 600; letter-spacing: 0.04em; opacity: 0.92; line-height: 1.2; }

.ampd-benefit-group { margin-top: 22px; }
.ampd-benefit-group__label {
  font-family: var(--font-display); font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent-primary); margin-bottom: 10px;
}
.ampd-benefit-group__label--quiet { color: var(--ampd-muted); }

.ampd-checklist { display: flex; flex-direction: column; gap: 9px; }
.ampd-checklist li { display: flex; align-items: center; gap: 9px; font-size: 13px; color: var(--ampd-body-strong); }
.ampd-checklist li strong { color: var(--accent-primary); font-weight: 700; }
.ampd-checklist svg { flex-shrink: 0; color: var(--accent-primary); }
.ampd-checklist svg.is-muted { color: var(--ampd-body-strong); opacity: 0.55; }

.ampd-gift {
  display: flex; align-items: center; gap: 12px; margin-top: 22px; background: linear-gradient(135deg, var(--tint-10) 0%, var(--bg-hero-curve) 100%);
  border: 1px solid color-mix(in srgb, var(--accent-primary) 18%, transparent); border-radius: 16px; padding: 13px 14px;
}
.ampd-gift__thumb {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; background: radial-gradient(circle at 35% 30%, var(--tint-20), var(--accent-primary) 78%); box-shadow: 0 4px 10px var(--accent-shadow-soft);
}
.ampd-gift__title { font-family: var(--font-display); font-size: 12.5px; font-weight: 800; letter-spacing: 0.03em; text-transform: uppercase; color: var(--accent-primary); }
.ampd-gift__desc { font-size: 12px; line-height: 1.5; color: var(--ampd-body); margin-top: 3px; }

.ampd-reassurance-row {
  display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 14px;
  font-size: 11.5px; color: var(--ampd-muted);
}

.ampd-btn-block {
  margin-top: 14px; height: 52px; border-radius: 26px; display: flex; align-items: center; justify-content: center;
  gap: 8px; font-family: var(--font-display); font-size: 15.5px; font-weight: 700; width: 100%;
}
.ampd-btn-block--cta { margin-top: 22px; height: 56px; border-radius: 30px; font-size: 15px; }
.ampd-btn-block--gradient { background: var(--accent-gradient); color: var(--ampd-white); box-shadow: 0 10px 22px -10px var(--accent-shadow); }
.ampd-btn-block--dark { background: var(--ampd-ink); color: var(--ampd-white); }

.ampd-bundle-card { margin-top: 16px; border: 1.5px solid var(--ampd-line); border-radius: 24px; background: var(--bg-white); padding: 18px 16px; }
.ampd-bundle-card__flag { font-family: var(--font-display); font-size: 11.5px; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: var(--accent-primary); }
.ampd-bundle-card__price { display: flex; align-items: baseline; gap: 9px; margin-top: 14px; }
.ampd-bundle-card__price-now { font-family: var(--font-display); font-size: 28px; font-weight: 800; letter-spacing: -0.02em; color: var(--ampd-ink); }
.ampd-bundle-card__price-was { font-size: 14px; font-weight: 500; color: var(--ampd-strike); text-decoration: line-through; }

.ampd-plain-link { text-align: center; margin-top: 18px; }
.ampd-plain-link a { font-size: 13.5px; font-weight: 500; color: var(--ampd-body); }
.ampd-plain-link a:hover { color: var(--ampd-ink); }

.ampd-guarantee-line {
  display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 18px;
  font-size: 13px; font-weight: 600; color: var(--ampd-ink);
}
.ampd-guarantee-line svg { color: var(--success); }

/* ============ Real Results ============ */
.ampd-results { background: var(--bg-results); padding: 52px 24px 56px; }
.ampd-results__head { text-align: center; }
.ampd-results__rating {
  display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px;
  font-size: 12.5px; font-weight: 500; color: var(--ampd-label);
}
.ampd-results__rating strong { color: var(--ampd-ink); }
.ampd-results__stars { color: var(--accent-primary); font-size: 14px; line-height: 1; letter-spacing: 2px; }

/* Review theme chips (section head) + trust row (below the rail) — added
   for the client presentation brief; pages without the markup are
   unaffected. */
.ampd-review-themes {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px;
  margin: 16px 0 0; padding: 0; list-style: none;
}
.ampd-review-themes li {
  padding: 6px 12px; border-radius: 999px;
  background: var(--bg-white); border: 1px solid var(--line-soft);
  font-size: 12px; font-weight: 600; color: var(--text-body-strong);
}
.ampd-review-trust {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 6px 8px; margin-top: 20px; text-align: center;
  font-size: 12.5px; font-weight: 600; color: var(--text-body-strong);
}
.ampd-review-trust__sep { color: var(--dot-off); }

.ampd-review-rail {
  display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  margin: 24px -24px 0; padding: 2px 24px 6px;
}
.ampd-review-rail::-webkit-scrollbar { display: none; }
.ampd-review-card {
  flex: 0 0 86%; scroll-snap-align: center; background: var(--bg-white); border-radius: 26px;
  box-shadow: 0 6px 20px rgba(11,11,14,0.06); overflow: hidden; display: flex; flex-direction: column;
}
.ampd-review-card__img { height: 250px; flex-shrink: 0; }
.ampd-review-card__img img { width: 100%; height: 100%; object-fit: cover; }
.ampd-review-card__body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.ampd-review-card__stars { color: var(--accent-primary); font-size: 13px; line-height: 1; letter-spacing: 2px; }
.ampd-review-card__name { margin-top: 9px; font-size: 12.5px; font-weight: 600; color: var(--ampd-body); }
.ampd-review-card__title {
  margin-top: 5px; font-family: var(--font-display); font-size: 15px; font-weight: 800;
  letter-spacing: 0.03em; text-transform: uppercase; color: var(--ampd-ink);
}
.ampd-review-card__quote { margin: 8px 0 0; font-size: 13px; line-height: 1.6; color: var(--ampd-body); }
.ampd-review-card__foot { margin-top: auto; padding-top: 14px; }
.ampd-review-card__purchased {
  border-top: 1px solid var(--ampd-line-softest); padding-top: 11px; font-size: 11.5px; color: var(--ampd-muted);
}
.ampd-review-card__purchased b { color: var(--ampd-ink); font-weight: 600; }

/* ============ Final CTA ============ */
.ampd-final {
  /* starts from Real Results' own ending tone (not white) so the two sections flow together */
  background: linear-gradient(180deg, var(--bg-results) 0%, var(--tint-10) 58%, var(--tint-20) 100%);
  padding: 64px 24px 72px;
}
.ampd-final__head { text-align: center; }
.ampd-final__checklist {
  display: flex; flex-direction: column; gap: 11px; margin: 22px auto 0; max-width: 290px;
}
.ampd-final__checklist li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ampd-body-strong); }
.ampd-final__checklist svg { flex-shrink: 0; color: var(--accent-primary); }
.ampd-final .ampd-btn-primary { margin-top: 24px; }
.ampd-final__note { margin-top: 12px; text-align: center; font-size: 12px; color: var(--ampd-muted); }

/* ============ FAQ ============ */
/* bridges Final CTA's ending pink tone into the footer's grey — no plain-white band in between */
.ampd-faq { background: linear-gradient(180deg, var(--tint-20) 0%, var(--bg-footer) 100%); padding: 48px 24px 60px; }
.ampd-faq__item { border-bottom: 1px solid rgba(11,11,14,0.07); }
.ampd-faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 2px;
  width: 100%; text-align: left; cursor: pointer;
}
.ampd-faq__q span { font-size: 14px; font-weight: 600; color: var(--ampd-ink); }
.ampd-faq__chev { flex-shrink: 0; color: var(--accent-primary); transition: transform var(--duration-base) var(--ease-out); }
.ampd-faq__q[aria-expanded="true"] .ampd-faq__chev { transform: rotate(180deg); }
.ampd-faq__a { overflow: hidden; max-height: 0; transition: max-height var(--duration-base) var(--ease-out); }
.ampd-faq__a p { margin: 0; padding: 0 2px 16px; font-size: 13px; line-height: 1.6; color: var(--ampd-body); }

/* ============ Footer ============ */
.ampd-footer { background: var(--bg-footer); padding: 48px 24px 36px; }
.ampd-footer__logo { height: 18px; }
.ampd-footer__tag { margin-top: 16px; font-family: var(--font-display); font-size: 15px; font-weight: 800; letter-spacing: -0.01em; color: var(--ampd-ink); }
.ampd-footer__desc { margin: 8px 0 0; font-size: 13px; line-height: 1.55; color: var(--ampd-body); }

.ampd-accordion-group { margin-top: 28px; border-top: 1px solid var(--ampd-line-soft); }
.ampd-accordion-group__toggle {
  display: flex; align-items: center; justify-content: space-between; padding: 16px 2px; width: 100%;
  cursor: pointer; border-bottom: 1px solid var(--ampd-line-soft);
}
.ampd-accordion-group__toggle span {
  font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--ampd-ink);
}
.ampd-accordion-group__toggle svg { flex-shrink: 0; color: var(--accent-primary); transition: transform var(--duration-base) var(--ease-out); }
.ampd-accordion-group__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.ampd-accordion-group__body { overflow: hidden; max-height: 0; transition: max-height var(--duration-base) var(--ease-out); }
.ampd-accordion-group__body a {
  display: flex; align-items: center; justify-content: space-between; padding: 13px 2px;
  border-bottom: 1px solid var(--ampd-line-softer); font-size: 14px; font-weight: 500; color: var(--ampd-body-strong);
}
.ampd-accordion-group__body a span { color: var(--accent-primary); font-size: 13px; }

.ampd-trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 10px; margin-top: 26px; }
.ampd-trust-grid li { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--ampd-body-strong); }
.ampd-trust-grid svg { flex-shrink: 0; color: var(--accent-primary); }

.ampd-newsletter { margin-top: 30px; background: var(--bg-white); border-radius: 20px; padding: 20px 18px; }
.ampd-newsletter__title { font-family: var(--font-display); font-size: 15px; font-weight: 800; color: var(--ampd-ink); }
.ampd-newsletter__desc { margin: 8px 0 0; font-size: 13px; line-height: 1.55; color: var(--ampd-body); }
.ampd-newsletter__input {
  margin-top: 14px; width: 100%; height: 50px; border: 1.5px solid var(--ampd-line); border-radius: 25px;
  padding: 0 18px; font-family: var(--font-body); font-size: 14px; color: var(--ampd-ink); background: var(--bg-white);
}
.ampd-newsletter__input:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }
.ampd-newsletter .ampd-btn-block { margin-top: 10px; height: 50px; border-radius: 25px; }

.ampd-social-row { display: flex; justify-content: center; gap: 26px; margin-top: 30px; }
.ampd-social-row a { display: flex; color: var(--ampd-body-strong); }

.ampd-legal { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--ampd-line-soft); text-align: center; }
.ampd-legal__copyright { font-size: 11.5px; color: var(--ampd-muted); }
.ampd-legal__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 14px; margin-top: 10px; }
.ampd-legal__links a { font-size: 11.5px; color: var(--ampd-muted); }
.ampd-legal__strap {
  margin-top: 24px; font-family: var(--font-display); font-size: 10.5px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent-primary);
}
