/* ==========================================================================
   MediaNV x AADOM 2026 landing page
   Pure CSS, no framework. Everything is scoped under .aadom-lp so it can be
   dropped into an existing WordPress theme without style collisions.
   Design reference: AADOM Landing Page_UI Design (1500 x 8000 px)
   ========================================================================== */

.aadom-lp {
  /* --- palette lifted from the design file --- */
  --aa-navy-top: #06162d;
  --aa-navy-mid: #0a1c34;
  --aa-navy-bot: #0f273f;
  --aa-navy: #0a1c38;          /* dark CTA band + navy button */
  --aa-ink: #061428;           /* headings on light backgrounds */
  --aa-header: #181a36;        /* nav bar + footer */
  --aa-teal: #04a9ad;          /* primary button */
  --aa-teal-txt: #0bb2b4;      /* teal type accents */
  --aa-teal-soft: #1f9bb5;     /* softer eyebrow teal */
  --aa-teal-bright: #18c2b8;   /* final CTA buttons */
  --aa-yellow: #eeeb29;
  --aa-green: #91c957;
  --aa-green-line: #a4dd88;
  --aa-body: #38495c;
  --aa-muted: #5d6b7a;
  --aa-muted-2: #7b8794;
  --aa-on-dark: #b9c6d4;
  --aa-on-dark-dim: #8b98a8;
  --aa-ice: #eef9fb;           /* "what's included" background */
  --aa-ice-2: #ecfbfe;         /* bonuses background */
  --aa-grey: #f5f7fa;          /* offer form background */
  --aa-grey-2: #f7f8fa;        /* video background */
  --aa-line: #e7ebf0;

  --aa-font: "Figtree", "Museo Sans Rounded", "Sofia Pro", "Segoe UI", system-ui,
             -apple-system, "Helvetica Neue", Arial, sans-serif;

  --aa-shadow-card: 0 18px 40px rgba(9, 30, 66, .08);
  --aa-shadow-soft: 0 10px 26px rgba(9, 30, 66, .07);

  font-family: var(--aa-font);
  color: var(--aa-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: #fff;
  overflow-x: clip;
}

/* --- local reset ------------------------------------------------------------
   Wrapped in :where() so it carries ZERO specificity: every component rule
   below wins without needing !important, and nothing leaks outside .aadom-lp.
   -------------------------------------------------------------------------- */
.aadom-lp,
.aadom-lp *,
.aadom-lp *::before,
.aadom-lp *::after { box-sizing: border-box; }

.aadom-lp :where(h1, h2, h3, p, ul, li, figure) { margin: 0; padding: 0; }
.aadom-lp :where(ul) { list-style: none; }
.aadom-lp :where(img) { max-width: 100%; height: auto; display: block; border: 0; }
.aadom-lp :where(a) { color: inherit; text-decoration: none; }
.aadom-lp :where(button) {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.aadom-lp :where(section) { position: relative; }

.aa-container {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 20px;
}
/* inner widths per block, taken from the design file */
.aa-included__grid { max-width: 1227px; margin-left: auto; margin-right: auto; }
.aa-included .aa-included__grid { margin-top: 46px; }
.aa-bonus__grid { max-width: 1407px; margin-left: auto; margin-right: auto; }
.aa-assess__grid { max-width: 1292px; margin-left: auto; margin-right: auto; }
.aa-penny__grid { max-width: 1420px; }
.aa-center { text-align: center; }
.aa-t-teal { color: var(--aa-teal-txt); }
.aa-t-teal-bright { color: var(--aa-teal-bright); }

/* --- shared type ------------------------------------------------------- */
.aa-h2 {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--aa-ink);
}
.aa-h2--md { font-size: 34px; }
.aa-h2--lg { font-size: 50px; }
.aa-h2--xl { font-size: 46px; line-height: 1.16; }

.aa-eyebrow {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--aa-teal);
}
.aa-eyebrow--lg { font-size: 19px; letter-spacing: .07em; color: var(--aa-teal-soft); }
.aa-eyebrow--soft { color: var(--aa-teal-soft); }

.aa-sub {
  font-size: 17px;
  color: var(--aa-muted);
}
.aa-sub--soft { font-size: 18px; color: var(--aa-muted-2); }

.aa-rule {
  display: block;
  width: 72px;
  height: 3px;
  border-radius: 3px;
  background: var(--aa-teal-txt);
  margin: 14px 0 22px;
}

/* --- buttons ----------------------------------------------------------- */
.aa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  padding: 20px 34px;
  border-radius: 10px;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  cursor: pointer;
  text-align: center;
}
.aa-btn--block { display: flex; width: 100%; }
.aa-btn--sq { border-radius: 6px; padding: 18px 24px; font-size: 17px; }
.aa-btn--teal { background: var(--aa-teal); color: var(--aa-navy-top); }
.aa-btn--teal:hover { background: #05bcc0; transform: translateY(-1px); }
.aa-btn--navy { background: var(--aa-navy); color: #fff; padding: 22px 30px; border-radius: 8px; font-size: 19px; }
.aa-btn--navy:hover { background: #0e2749; transform: translateY(-1px); }
.aa-btn--bright { background: var(--aa-teal-bright); color: #052824; min-width: 382px; padding: 32px 40px; }
.aa-btn--bright:hover { background: #22d3c8; transform: translateY(-1px); }
.aa-btn--ghost { border: 2px solid var(--aa-teal-bright); color: var(--aa-teal-bright); min-width: 392px; padding: 30px 40px; }
.aa-btn--ghost:hover { background: rgba(24, 194, 184, .12); transform: translateY(-1px); }
.aa-arrow { font-size: 1.05em; line-height: 1; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.aa-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  padding-bottom: 34px;
}
.aa-header__inner {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 0 0 10px;
}
.aa-header__logos {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 4px 0 8px;
  position: relative;
  z-index: 2;
}
.aa-logo-medianv { width: 168px; }
.aa-logo-aadom { width: 158px; }

.aa-nav {
  flex: 1 1 auto;
  background: var(--aa-header);
  border-bottom-left-radius: 30px;
  padding: 0 clamp(20px, 13vw, 200px) 0 clamp(24px, 8vw, 115px);
  margin-left: auto;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 58px;
}
.aa-nav__list {
  display: flex;
  align-items: center;
  gap: 34px;
}
.aa-nav__item { position: relative; }
.aa-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  padding: 18px 0;
  white-space: nowrap;
}
.aa-nav__link:hover { color: var(--aa-teal-bright); }
.aa-caret { width: 12px; height: 8px; flex: none; transition: transform .2s ease; }

.aa-subnav {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 210px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 16px 34px rgba(6, 20, 40, .18);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.aa-has-sub:hover > .aa-subnav,
.aa-has-sub.is-open > .aa-subnav { opacity: 1; visibility: visible; transform: translateY(0); }
.aa-has-sub:hover .aa-caret,
.aa-has-sub.is-open .aa-caret { transform: rotate(180deg); }
.aa-subnav a {
  display: block;
  padding: 9px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--aa-ink);
}
.aa-subnav a:hover { background: var(--aa-ice); color: var(--aa-teal); }

.aa-burger { display: none; }

/* ==========================================================================
   HERO
   ========================================================================== */
.aa-hero {
  background: linear-gradient(180deg, var(--aa-navy-top) 0%, var(--aa-navy-mid) 55%, var(--aa-navy-bot) 100%);
  padding: 62px 0 34px;
  overflow: hidden;
}
.aa-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 720px) minmax(0, 625px);
  gap: 35px;
  align-items: start;
}
.aa-pill {
  display: inline-block;
  border: 1.5px solid #b9b641;
  border-radius: 999px;
  padding: 13px 30px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--aa-yellow);
  box-shadow: 0 0 22px rgba(238, 235, 41, .08) inset;
}
.aa-hero__title {
  margin-top: 30px;
  font-size: 52px;
  line-height: 1.19;
  font-weight: 800;
  letter-spacing: -.015em;
  color: #fff;
}
.aa-hero__lede {
  margin-top: 34px;
  max-width: 740px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--aa-on-dark);
}
.aa-hero__checks { margin-top: 44px; display: grid; gap: 16px; }
.aa-hero__checks li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
}
.aa-check { width: 20px; height: 20px; flex: none; color: var(--aa-teal-txt); }
.aa-hero__fine {
  margin-top: 30px;
  font-size: 13px;
  color: #7f8da0;
}

.aa-hero__right { display: flex; flex-direction: column; align-items: center; padding-top: 37px; }
.aa-price {
  width: 100%;
  background: #07182c;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 20px;
  padding: 60px 40px 55px;
  text-align: center;
  box-shadow: 0 24px 50px rgba(0, 0, 0, .28);
}
.aa-price__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #93a1b3;
}
.aa-price__label--teal { color: var(--aa-teal-txt); margin-top: 20px; }
.aa-price__was {
  font-size: 36px;
  font-weight: 700;
  color: #8f9fb1;
  line-height: 1.2;
  margin-top: 6px;
}
.aa-price__now {
  font-size: 62px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--aa-teal-txt);
  margin-top: 4px;
}
.aa-price__note { font-size: 16px; color: var(--aa-on-dark); margin-top: 4px; }
.aa-price .aa-btn { margin-top: 26px; }
.aa-price__small {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--aa-on-dark-dim);
}
.aa-hero__badge {
  width: 297px;
  margin-top: 9px;
  border-radius: 8px;
}

/* ==========================================================================
   WHAT'S INCLUDED
   ========================================================================== */
.aa-included {
  background: var(--aa-ice);
  padding: 80px 0 80px;
}
.aa-included__grid {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.aa-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--aa-shadow-card);
}
.aa-card__img { width: 100%; aspect-ratio: 600 / 212; object-fit: cover; }
.aa-card__body { padding: 28px 30px 34px; }
.aa-value {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--aa-teal);
}
.aa-value__icon { width: 19px; height: 19px; flex: none; }
.aa-card__title {
  margin-top: 14px;
  font-size: 25px;
  line-height: 1.35;
  max-width: 460px;
  font-weight: 800;
  color: var(--aa-ink);
}
.aa-list { margin-top: 20px; display: grid; gap: 12px; }
.aa-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  line-height: 1.45;
  color: #4a5a6a;
}
.aa-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 13px;
  height: 8px;
  border-left: 2px solid var(--aa-teal-txt);
  border-bottom: 2px solid var(--aa-teal-txt);
  transform: rotate(-45deg);
  border-radius: 1px;
}

/* ==========================================================================
   OFFER FORM
   ========================================================================== */
.aa-offer {
  background: var(--aa-grey);
  padding: 86px 0 90px;
}
.aa-offer__card {
  width: 100%;
  max-width: 664px;
  margin: 0 auto;
  background: linear-gradient(180deg, #3a3a54 0%, #33334c 100%);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 18px;
  padding: 40px 44px 42px;
  box-shadow: 0 26px 60px rgba(9, 20, 44, .18);
}
.aa-offer__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  text-align: center;
}
.aa-offer__logo { width: 155px; border-radius: 4px; }
.aa-offer__sub {
  margin-top: 16px;
  text-align: center;
  font-size: 16px;
  color: #b9bccd;
}

/* --- forms ------------------------------------------------------------- */
.aa-form { margin-top: 30px; display: grid; gap: 21px; }
.aa-grid2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 26px;
}
.aa-field { display: grid; gap: 7px; }
.aa-field label {
  font-size: 15px;
  color: #b9bccd;
}
.aa-field input {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  font: inherit;
  font-size: 16px;
  color: #fff;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  transition: border-color .18s ease, background-color .18s ease;
}
.aa-field input::placeholder { color: #8d8fa6; }
.aa-field input:focus {
  outline: none;
  border-color: var(--aa-teal);
  background: rgba(255, 255, 255, .12);
}
.aa-field input.aa-invalid { border-color: #ff8080; }

.aa-form--dark .aa-btn { margin-top: 8px; }
.aa-form__note {
  text-align: center;
  font-size: 13px;
  color: #a9abbd;
}
.aa-form__note--dark { font-size: 15px; color: var(--aa-muted); }
.aa-form__status {
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--aa-teal-bright);
  display: none;
}
.aa-form__status.is-visible { display: block; }
.aa-form__status.is-error { color: #ff8f8f; }
.aa-assess__right .aa-form__status.is-error { color: #c0392b; }

/* light form variant (assessment) */
.aa-field--light label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #4a5a6a;
}
.aa-field--light input {
  height: 52px;
  color: var(--aa-ink);
  background: #fff;
  border: 1px solid #dfe6ec;
  border-radius: 8px;
}
.aa-field--light input::placeholder { color: #9aa7b4; }
.aa-field--light input:focus { background: #fff; border-color: var(--aa-teal); }

/* ==========================================================================
   MEET PENNY
   ========================================================================== */
.aa-penny { background: #fff; padding: 55px 0 105px; }
.aa-penny__grid {
  display: grid;
  grid-template-columns: 405px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}
.aa-penny__media img { width: 100%; border-radius: 14px; }
.aa-penny__name {
  margin-top: 20px;
  text-align: center;
  font-size: 25px;
  font-weight: 800;
  color: var(--aa-ink);
}
.aa-penny__role { text-align: center; font-size: 19px; color: var(--aa-muted); }
.aa-penny__body { padding-top: 6px; }
.aa-penny__lede {
  font-size: 19px;
  line-height: 1.62;
  color: var(--aa-body);
  max-width: 830px;
}
.aa-checklist { margin-top: 30px; display: grid; gap: 16px; }
.aa-checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 19px;
  color: var(--aa-ink);
}
.aa-checkdot {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ddf1e0;
  color: #35a853;
  display: grid;
  place-items: center;
}
.aa-checkdot svg { width: 18px; height: 18px; }

/* ==========================================================================
   BONUSES
   ========================================================================== */
.aa-bonus { background: var(--aa-ice-2); padding: 70px 0 81px; }
.aa-bonus .aa-h2--md { margin-top: 22px; }
.aa-bonus .aa-sub { margin-top: 12px; }
.aa-bonus__grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.aa-bonus__card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-left: 5px solid var(--aa-green-line);
  border-radius: 10px;
  padding: 26px 26px 28px 18px;
  box-shadow: var(--aa-shadow-soft);
}
.aa-bonus__card img { width: 132px; flex: none; margin-top: -4px; }
.aa-bonus__card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--aa-ink);
}
.aa-bonus__card p {
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--aa-muted);
}

/* ==========================================================================
   TESTIMONIAL VIDEO
   ========================================================================== */
.aa-video { background: var(--aa-grey-2); padding: 48px 0 65px; }
.aa-video .aa-video__frame { margin-top: 98px; }
.aa-video__heart { width: 100px; margin: 0 auto 26px; }
.aa-video .aa-h2--lg { margin-top: 16px; font-size: 42px; }
.aa-video .aa-sub { margin-top: 14px; }
.aa-video__frame {
  position: relative;
  width: 100%;
  max-width: 1093px;
  margin: 44px auto 0;
  border-radius: 24px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 1093 / 642;
  box-shadow: 0 26px 60px rgba(9, 20, 44, .16);
}
.aa-video__btn { display: block; width: 100%; height: 100%; }
.aa-video__btn img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.aa-video__btn:hover img { transform: scale(1.02); }
.aa-video__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ==========================================================================
   FREE ASSESSMENT
   ========================================================================== */
.aa-assess { background: #fefefe; padding: 42px 0 60px; }
.aa-assess .aa-h2--lg { margin-top: 16px; }
.aa-assess .aa-sub { margin-top: 12px; font-size: 19px; }
.aa-assess__grid {
  margin-top: 65px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
  align-items: start;
}
.aa-assess__left,
.aa-assess__right {
  border: 1px solid var(--aa-line);
  border-radius: 14px;
  padding: 34px 42px 32px;
}
.aa-assess__grid > * { align-self: stretch; }
.aa-assess__left { background: #fff; }
.aa-assess__right { background: linear-gradient(180deg, #f4f9fb 0%, #eef4f8 100%); }
.aa-assess__left h3,
.aa-assess__right h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--aa-ink);
}
.aa-assess__list { margin-top: 34px; display: grid; gap: 42px; }
.aa-assess__list li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  font-size: 17px;
  line-height: 1.45;
  color: var(--aa-body);
}
.aa-assess__list svg { width: 22px; height: 22px; flex: none; color: var(--aa-teal-txt); margin-top: 1px; }
.aa-assess__foot {
  margin-top: 30px;
  font-size: 15px;
  color: #46586c;
}
.aa-assess__right .aa-form { margin-top: 26px; gap: 20px; }
.aa-assess__right .aa-btn { margin-top: 6px; }

/* ==========================================================================
   WORK SHOWCASE + PHOTO GRID
   ========================================================================== */
.aa-showcase { background: #1f1f1f; }
.aa-showcase img { width: 100%; }

.aa-grid { background: #fff; padding: 8px 0 40px; }
.aa-grid__inner {
  display: grid;
  grid-template-columns: 690fr 706fr;
  gap: 54px;
  align-items: start;
  max-width: 1450px;      /* 690 + 54 + 706, exactly as drawn */
  margin: 0 auto;
  padding: 0;
}
.aa-grid__inner img { width: 100%; }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.aa-cta { background: var(--aa-navy); padding: 74px 0 125px; }

.aa-cta__title {
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #fff;
}
.aa-cta__lede {
  margin: 45px auto 0;
  max-width: 880px;
  font-size: 19px;
  line-height: 1.6;
  color: #c3cede;
}
.aa-cta__btns {
  margin-top: 75px;
  display: flex;
  justify-content: center;
  gap: 23px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.aa-footer {
  position: relative;
  margin-top: 40px;              /* white band between the CTA and the footer */
  background: var(--aa-header);
  overflow: hidden;
  padding: 70px 0 40px;
}
.aa-footer::before {           /* faint oversized heart watermark, left */
  content: "";
  position: absolute;
  left: -110px;
  top: -30px;
  width: 520px;
  height: 520px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 88 16 56a19 19 0 0 1 27-27l7 7 7-7a19 19 0 0 1 27 27z' fill='none' stroke='%23ffffff' stroke-width='9' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: .028;
  transform: rotate(-14deg);
  pointer-events: none;
}
.aa-footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 485px;
  gap: 40px;
  align-items: end;
}
.aa-footer__left { padding: 10px 0 30px 60px; }
.aa-footer__logo { width: 240px; }
.aa-footer__contact {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  font-size: 16px;
  color: #e6e7f2;
  padding-left: 18px;
}
.aa-footer__contact a { display: inline-flex; align-items: center; gap: 9px; }
.aa-footer__contact a:hover { color: var(--aa-green); }
.aa-footer__contact svg { width: 17px; height: 17px; flex: none; }
.aa-social {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  padding-left: 96px;
}
.aa-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--aa-green);
  color: var(--aa-header);
  display: grid;
  place-items: center;
  transition: transform .18s ease, background-color .18s ease;
}
.aa-social a:hover { transform: translateY(-2px); background: #a4d96b; }
.aa-social svg { width: 15px; height: 15px; }
.aa-footer__right { justify-self: end; }
.aa-footer__right img { width: 510px; }
@media (min-width: 1101px) {
  /* the comp starts the illustration at the footer's top edge, 190px in from
     the right of the content column */
  .aa-footer__right {
    position: absolute;
    top: -70px;
    right: 221px;
    width: 510px;
  }
  .aa-footer__right img { width: 510px; max-width: none; }
  .aa-footer__inner { min-height: 250px; }
}

/* ==========================================================================
   MOTION
   ========================================================================== */
.aa-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
  will-change: opacity, transform;
}
.aa-reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .aadom-lp * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .aa-reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1360px) {
  .aa-hero__grid { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 36px; }
  .aa-penny__grid { gap: 48px; }
  .aa-grid__inner { gap: 30px; padding: 0 20px; }
  .aa-footer__inner { grid-template-columns: minmax(0, 1fr) 380px; }
  .aa-footer__right img { width: 400px; }
  .aa-footer__left { padding-left: 20px; }
  .aa-social { padding-left: 60px; }
}

@media (max-width: 1200px) {
  /* bonus icons move above the copy so the text keeps a readable measure */
  .aa-bonus__card { flex-direction: column; gap: 10px; padding: 24px 22px 26px 18px; }
  .aa-bonus__card img { width: 104px; margin-top: 0; }
  .aa-assess__grid { gap: 28px; }
  .aa-assess__list { gap: 26px; }
  .aa-assess__right .aa-form { gap: 16px; }
  .aa-assess__left, .aa-assess__right { padding: 30px 28px 32px; }
}

@media (max-width: 1100px) {
  .aa-assess__grid { grid-template-columns: minmax(0, 1fr); max-width: 720px; }

  .aa-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 0 0 18px 18px;
    padding: 8px 20px 20px;
    box-shadow: 0 22px 40px rgba(6, 20, 40, .22);
  }
  .aa-nav.is-open { display: flex; }
  .aa-nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .aa-nav__item { border-bottom: 1px solid rgba(255, 255, 255, .08); }
  .aa-nav__link { width: 100%; justify-content: space-between; padding: 15px 4px; }
  .aa-subnav {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 0 0 10px;
  }
  .aa-has-sub.is-open > .aa-subnav { display: block; }
  .aa-has-sub:hover > .aa-subnav { display: none; }
  .aa-has-sub.is-open:hover > .aa-subnav { display: block; }
  .aa-subnav a { color: #cfd3e6; padding: 8px 14px; }
  .aa-subnav a:hover { background: rgba(255, 255, 255, .06); color: #fff; }

  .aa-burger {
    display: grid;
    gap: 5px;
    padding: 18px 22px;
    margin-left: auto;
    background: var(--aa-header);
    border-bottom-left-radius: 30px;
    align-self: stretch;
  }
  .aa-burger span {
    display: block;
    width: 26px;
    height: 2.5px;
    border-radius: 2px;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
  }
  .aa-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .aa-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .aa-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

@media (max-width: 980px) {
  .aadom-lp { font-size: 16px; }
  .aa-container { padding: 0 22px; }
  .aa-hero { padding: 44px 0 60px; }
  .aa-hero__grid { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .aa-hero__title { font-size: 40px; }
  .aa-hero__lede { font-size: 17px; }
  .aa-hero__right { max-width: 560px; margin: 0 auto; }
  .aa-h2 { font-size: 32px; }
  .aa-h2--lg, .aa-h2--xl { font-size: 34px; }
  .aa-h2--md { font-size: 28px; }
  .aa-video .aa-h2--lg { font-size: 30px; }
  .aa-included, .aa-offer, .aa-penny, .aa-bonus, .aa-video, .aa-assess, .aa-cta { padding: 56px 0 62px; }
  .aa-included__grid, .aa-bonus__grid, .aa-assess__grid { grid-template-columns: minmax(0, 1fr); gap: 22px; }
  .aa-penny__grid { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .aa-penny__media { max-width: 360px; margin: 0 auto; }
  .aa-checklist li, .aa-penny__lede { font-size: 17px; }
  .aa-offer__card { padding: 30px 24px 34px; }
  .aa-offer__title { font-size: 24px; }
  .aa-assess__left, .aa-assess__right { padding: 28px 24px 32px; }
  .aa-cta__title { font-size: 32px; }
  .aa-cta__lede { font-size: 17px; }
  .aa-btn { font-size: 17px; padding: 18px 26px; }
  .aa-btn--bright, .aa-btn--ghost { min-width: 0; width: 100%; max-width: 420px; }
  .aa-cta__btns { flex-direction: column; align-items: center; gap: 16px; }
  .aa-grid__inner { grid-template-columns: minmax(0, 1fr); gap: 18px; padding: 0 16px; }
  .aa-footer { padding: 48px 0 30px; }
  .aa-footer__inner { grid-template-columns: minmax(0, 1fr); gap: 26px; text-align: center; }
  .aa-footer__left { padding: 0; }
  .aa-footer__logo { margin: 0 auto; }
  .aa-footer__contact { justify-content: center; padding: 0; }
  .aa-social { justify-content: center; padding: 0; }
  .aa-footer__right { justify-self: center; }
  .aa-footer__right img { width: 300px; }
}

@media (max-width: 560px) {
  .aa-header__logos { gap: 12px; }
  .aa-logo-medianv { width: 118px; }
  .aa-logo-aadom { width: 108px; }
  .aa-pill { font-size: 12px; padding: 11px 18px; letter-spacing: .08em; }
  .aa-hero__title { font-size: 32px; }
  .aa-price { padding: 28px 22px 26px; }
  .aa-price__now { font-size: 48px; }
  .aa-price__was { font-size: 30px; }
  .aa-hero__badge { width: 240px; }
  .aa-grid2 { grid-template-columns: minmax(0, 1fr); }
  .aa-card__body { padding: 22px 20px 26px; }
  .aa-card__title { font-size: 21px; }
  .aa-bonus__card { flex-direction: column; align-items: flex-start; }
  .aa-video__frame { border-radius: 14px; }
}
