:root {
  --black: #050408;
  --deep: #120820;
  --panel: rgba(15, 12, 21, 0.92);
  --panel2: rgba(21, 17, 29, 0.86);
  --white: #f8f5ee;
  --muted: #c7becf;
  --soft: #90869a;
  --purple: #7c3aed;
  --green: #d8ff00;
  --gold: #b99a55;
  --gold-soft: rgba(185,154,85,.45);
  --cream: #f2efe7;
  --shadow: 0 28px 90px rgba(0,0,0,.42);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--white);
  background: var(--black);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.background-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 2%, rgba(124,58,237,.36), transparent 32rem),
    radial-gradient(circle at 88% 14%, rgba(185,154,85,.12), transparent 28rem),
    linear-gradient(135deg, #120722 0%, #06050a 46%, #030205 100%);
}
.background-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.8), transparent 75%);
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; }
.brand img {
  width: clamp(190px, 24vw, 315px);
  height: auto;
  display: block;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-actions a {
  border: 1px solid var(--gold-soft);
  color: var(--white);
  background: rgba(255,255,255,.035);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .01em;
}
.header-actions a:hover { border-color: var(--gold); background: rgba(185,154,85,.08); }

.page-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}
.hero-grid {
  min-height: calc(100svh - 110px);
  padding: 42px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}
.hero-copy { max-width: 620px; }
.local-line {
  color: rgba(248,245,238,.72);
  font-weight: 800;
  font-size: clamp(14px, 1.3vw, 17px);
  margin: 0 0 24px;
}
h1 {
  margin: 0;
  letter-spacing: -.065em;
  line-height: .96;
  font-weight: 950;
  font-size: clamp(56px, 7.3vw, 106px);
}
h1 span, h1 em { display: block; font-style: normal; }
h1 span { color: var(--white); }
h1 em { color: var(--green); text-shadow: 0 0 28px rgba(216,255,0,.12); }
.promise {
  max-width: 520px;
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.35;
  margin: 28px 0 0;
}

.question-panel {
  background: linear-gradient(180deg, rgba(24,20,31,.94), rgba(11,9,15,.96));
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius);
  padding: clamp(20px, 3vw, 34px);
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.04) inset;
  position: relative;
  overflow: hidden;
}
.question-panel::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 20% 0%, rgba(124,58,237,.22), transparent 30%), radial-gradient(circle at 100% 100%, rgba(216,255,0,.09), transparent 24%);
  pointer-events: none;
}
.question-panel > * { position: relative; }
.panel-topline {
  width: 64px;
  height: 3px;
  border-radius: 99px;
  background: var(--gold);
  margin: 0 0 20px;
}
.question-panel h2 {
  margin: 0 0 9px;
  font-size: clamp(27px, 3vw, 42px);
  letter-spacing: -.05em;
  line-height: 1;
}
.panel-intro {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.45;
  font-size: 16px;
}
.ask-form { display: grid; gap: 12px; }
.ask-form label { position: absolute; left: -9999px; }
.ask-form textarea,
.ask-form input {
  width: 100%;
  border: 1px solid rgba(255,255,255,.08);
  background: var(--cream);
  color: #17121c;
  border-radius: 18px;
  outline: none;
  padding: 18px 18px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}
.ask-form textarea { min-height: 155px; resize: vertical; }
.ask-form input { min-height: 58px; }
.ask-form textarea::placeholder,
.ask-form input::placeholder { color: rgba(23,18,28,.48); }
.ask-form textarea:focus,
.ask-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(185,154,85,.13); }
.ask-form button {
  min-height: 62px;
  border: 0;
  border-radius: 18px;
  background: var(--green);
  color: #09080c;
  font-weight: 950;
  letter-spacing: .03em;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(216,255,0,.16);
}
.ask-form button span { margin-left: 10px; font-size: 20px; }
.free-line {
  margin: 18px 0 0;
  color: rgba(248,245,238,.82);
  text-align: center;
  font-size: 14px;
  font-weight: 750;
}
.form-message {
  border-radius: 16px;
  padding: 14px 16px;
  margin: 0 0 16px;
  border: 1px solid rgba(255,255,255,.12);
}
.form-message strong { display: block; margin-bottom: 4px; }
.form-message p { margin: 0; color: var(--muted); }
.form-message.good { background: rgba(216,255,0,.08); border-color: rgba(216,255,0,.28); }
.form-message.bad { background: rgba(255,80,80,.08); border-color: rgba(255,80,80,.25); }

.messy-section,
.how-section {
  padding: 72px 0;
  border-top: 1px solid rgba(185,154,85,.22);
}
.section-heading {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.section-heading.compact { display: block; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: -.06em;
  line-height: 1;
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.35;
}
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.quote-card {
  min-height: 126px;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(185,154,85,.28);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
}
.quote-card span {
  color: var(--gold);
  font-weight: 950;
  font-size: 32px;
  line-height: .7;
}
.quote-card p {
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 820;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.step-card {
  min-height: 170px;
  border: 1px solid rgba(185,154,85,.24);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255,255,255,.035);
}
.step-card b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--purple);
  color: white;
  margin-bottom: 20px;
}
.step-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.1;
}
.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.35;
  font-size: 14px;
}
.site-footer {
  border-top: 1px solid rgba(185,154,85,.22);
  padding: 30px 0 44px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-weight: 750;
}
.site-footer p { margin: 0; }
.site-footer a { color: var(--white); }
.site-footer nav { display: flex; gap: 12px; flex-wrap: wrap; }
.site-footer span { color: var(--gold); }

@media (max-width: 920px) {
  .site-header { width: min(100% - 28px, 720px); padding-top: 18px; }
  .brand img { width: clamp(168px, 45vw, 245px); }
  .header-actions a { padding: 9px 12px; font-size: 12px; }
  .page-shell { width: min(100% - 28px, 720px); }
  .hero-grid { min-height: auto; padding: 32px 0 54px; grid-template-columns: 1fr; gap: 28px; }
  .hero-copy { max-width: 100%; text-align: left; }
  .local-line { margin-bottom: 14px; font-size: 14px; color: rgba(248,245,238,.62); }
  h1 { font-size: clamp(47px, 13.5vw, 78px); line-height: .98; letter-spacing: -.07em; }
  .promise { font-size: 18px; margin-top: 20px; max-width: 95%; }
  .question-panel { border-radius: 24px; padding: 18px; }
  .question-panel h2 { font-size: 29px; }
  .ask-form textarea { min-height: 132px; }
  .messy-section, .how-section { padding: 48px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 12px; margin-bottom: 20px; }
  .section-heading h2 { font-size: clamp(36px, 10vw, 52px); }
  .section-heading p { font-size: 17px; }
  .quote-grid { grid-template-columns: 1fr; }
  .quote-card { min-height: auto; padding: 18px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step-card { min-height: auto; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 420px) {
  .site-header { align-items: flex-start; }
  .brand img { width: 160px; }
  .header-actions { gap: 7px; }
  .header-actions a { padding: 8px 10px; }
  .page-shell { width: calc(100% - 22px); }
  .hero-grid { padding-top: 22px; }
  h1 { font-size: clamp(43px, 14vw, 58px); line-height: 1.02; letter-spacing: -.055em; }
  .promise { font-size: 16px; }
  .question-panel { padding: 15px; }
  .ask-form textarea { min-height: 118px; }
  .ask-form textarea, .ask-form input { border-radius: 15px; padding: 15px; }
  .ask-form button { border-radius: 15px; min-height: 58px; }
}

/* AAAG intake form patch */
.hero-copy .local-line { display: none; }
.panel-local {
  color: rgba(248,245,238,.72);
  font-weight: 850;
  font-size: 14px;
  letter-spacing: .01em;
  margin: 0 0 14px;
}
.question-panel .panel-topline { margin-bottom: 18px; }
.ask-form { gap: 14px; }
.details-title {
  margin: 4px 0 -2px;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.field { display: grid; gap: 7px; }
.ask-form .field label {
  position: static;
  left: auto;
  color: var(--gold);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.ask-form select {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255,255,255,.08);
  background: var(--cream);
  color: #17121c;
  border-radius: 18px;
  outline: none;
  padding: 0 18px;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}
.ask-form select:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(185,154,85,.13); }
.consent-row {
  position: static !important;
  left: auto !important;
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(185,154,85,.26);
  background: rgba(255,255,255,.035);
  border-radius: 16px;
  padding: 13px 14px;
  color: rgba(248,245,238,.86);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 760;
}
.consent-row input {
  width: 17px;
  height: 17px;
  min-height: auto;
  margin-top: 1px;
  accent-color: var(--green);
  flex: 0 0 auto;
}
.section-heading h2 { max-width: 620px; }

@media (max-width: 920px) {
  .details-grid { grid-template-columns: 1fr; }
  .panel-local { font-size: 13px; }
}

/* AAAG guidance + response timing patch */
.guidance-notes {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(185,154,85,.22);
  display: grid;
  gap: 9px;
  color: rgba(248,245,238,.66);
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}
.guidance-notes p { margin: 0; }
.guidance-notes p:first-child {
  color: rgba(248,245,238,.84);
  font-weight: 720;
}

.ask-form button {
  letter-spacing: .03em;
}
@media (max-width: 560px) {
  .ask-form button { font-size: 13px; }
}

/* AAAG final answer-note hierarchy */
.free-line,
.guidance-notes { display: none !important; }
.answer-notes {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(185,154,85,.24);
  display: grid;
  gap: 12px;
}
.answer-notes p {
  margin: 0;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(248,245,238,.78);
  font-size: 12.5px;
  line-height: 1.42;
}
.answer-notes p:first-child {
  color: rgba(248,245,238,.92);
  font-weight: 800;
}
.answer-notes span {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: rgba(185,154,85,.18);
  border: 1px solid rgba(185,154,85,.45);
  color: var(--gold);
  font-weight: 900;
  font-size: 11px;
  line-height: 1;
}
@media (max-width: 560px) {
  .answer-notes p {
    font-size: 12px;
    grid-template-columns: 22px 1fr;
  }
  .answer-notes span {
    width: 20px;
    height: 20px;
    font-size: 10px;
  }
}

/* AAAG Phase 2.1 instant answer result page */
.result-page {
  width: min(980px, calc(100% - 36px));
  margin: 48px auto 72px;
}
.result-card {
  border: 1px solid rgba(185,154,85,.28);
  background: linear-gradient(145deg, rgba(26,19,35,.94), rgba(8,7,12,.98));
  border-radius: 30px;
  padding: clamp(24px, 5vw, 52px);
  box-shadow: var(--shadow);
}
.result-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
}
.result-badge,
.result-back {
  border: 1px solid rgba(185,154,85,.38);
  border-radius: 999px;
  padding: 8px 13px;
  color: rgba(248,245,238,.86);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  background: rgba(255,255,255,.035);
}
.result-card h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -.06em;
}
.result-ref {
  margin: 0 0 28px;
  color: var(--muted);
  font-weight: 650;
}
.result-section {
  border: 1px solid rgba(185,154,85,.22);
  background: rgba(255,255,255,.035);
  border-radius: 22px;
  padding: clamp(18px, 3vw, 28px);
  margin-top: 18px;
}
.result-section h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: -.02em;
}
.result-section h3 {
  margin: 20px 0 10px;
  color: var(--white);
  font-size: 22px;
  letter-spacing: -.04em;
}
.result-section p,
.result-section li {
  color: rgba(248,245,238,.84);
  line-height: 1.62;
  font-weight: 600;
}
.result-section p { margin: 0 0 14px; }
.result-section ul { margin: 10px 0 16px; padding-left: 22px; }
.result-notes {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(185,154,85,.2);
  color: rgba(248,245,238,.7);
  line-height: 1.5;
  font-size: 14px;
  text-align: center;
}
.result-notes p { margin: 0; }
.result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}
.primary-action,
.secondary-action {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 950;
}
.primary-action {
  background: var(--green);
  color: #09070b;
  box-shadow: 0 18px 42px rgba(216,255,0,.12);
}
.secondary-action {
  border: 1px solid rgba(185,154,85,.3);
  color: var(--white);
  background: rgba(255,255,255,.035);
}
@media (max-width: 640px) {
  .result-page { width: min(100% - 24px, 980px); margin-top: 24px; }
  .result-card { border-radius: 24px; }
  .result-top, .result-actions { grid-template-columns: 1fr; display: grid; }
  .result-top { align-items: stretch; }
}


/* AAAG loading state for live answer generation */
.ask-form button.is-generating,
.ask-form button:disabled.is-generating {
  background: linear-gradient(135deg, var(--purple), #b99a55);
  color: var(--white);
  cursor: wait;
  box-shadow: 0 18px 44px rgba(124,58,237,.22), 0 0 0 1px rgba(185,154,85,.28) inset;
  opacity: 1;
}
.ask-form button.is-generating span {
  display: inline-block;
  animation: aaag-spin 1s linear infinite;
}
@keyframes aaag-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (max-width: 560px) {
  .ask-form button.is-generating { font-size: 12px; }
}


/* Phase 2.3 answer quality formatting */
.answer-output .answer-part {
  margin: 18px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(185,154,85,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}
.answer-output .answer-title {
  border-color: rgba(185,154,85,.34);
  background: rgba(185,154,85,.06);
}
.answer-output .answer-title h3,
.answer-output h2 {
  color: var(--gold);
}
.answer-output .answer-diagnosis h3,
.answer-output .answer-moves h3,
.answer-output .answer-next h3 {
  color: var(--purple);
}
.answer-output .answer-avoid h3 {
  color: var(--gold);
}
.answer-output .answer-part h3 {
  margin-top: 0;
  margin-bottom: 10px;
  letter-spacing: -.03em;
}
.answer-output ol {
  margin: 10px 0 0;
  padding-left: 22px;
}
.answer-output li {
  margin-bottom: 10px;
}
.answer-output li::marker {
  color: var(--green);
  font-weight: 900;
}
.answer-output .answer-avoid {
  border-color: rgba(216,255,0,.2);
}

/* Phase 2.4 presentation lock: screen result and email-aligned answer blocks */
.result-card {
  max-width: 980px;
  margin-inline: auto;
}
.result-card h1 {
  color: var(--white);
  max-width: 760px;
}
.result-ref {
  display: inline-block;
  border: 1px solid rgba(185,154,85,.46);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(185,154,85,.08);
}
.result-ref strong { color: var(--gold); }
.result-section {
  background: rgba(255,255,255,.04);
  border-color: rgba(185,154,85,.28);
}
.result-section > h2 {
  color: var(--gold);
  font-size: 20px;
  font-weight: 950;
}
.answer-output {
  display: grid;
  gap: 16px;
}
.answer-output .answer-part {
  margin: 0;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(185,154,85,.22);
  background: rgba(255,255,255,.035);
}
.answer-output .answer-diagnosis {
  border-color: rgba(124,58,237,.38);
  background: rgba(124,58,237,.065);
}
.answer-output .answer-moves {
  border-color: rgba(216,255,0,.20);
  background: rgba(216,255,0,.035);
}
.answer-output .answer-avoid {
  border-color: rgba(185,154,85,.44);
  background: rgba(185,154,85,.075);
}
.answer-output .answer-next {
  border-color: rgba(185,154,85,.30);
  background: rgba(255,255,255,.028);
}
.answer-output .answer-part h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 950;
}
.answer-output .answer-diagnosis h3 { color: var(--white); }
.answer-output .answer-moves h3 { color: var(--purple); }
.answer-output .answer-avoid h3 { color: var(--gold); }
.answer-output .answer-next h3 { color: var(--green); }
.answer-output p {
  margin: 0 0 12px;
  color: rgba(248,245,238,.84);
  line-height: 1.62;
  font-weight: 620;
}
.answer-output ol {
  margin: 8px 0 0;
  padding-left: 24px;
  color: rgba(248,245,238,.84);
}
.answer-output li {
  margin: 0 0 11px;
  padding-left: 4px;
  line-height: 1.55;
}
.answer-output li::marker {
  color: var(--green);
  font-weight: 950;
}
.result-notes {
  border-top-color: rgba(185,154,85,.28);
}
.result-notes p:first-child {
  color: rgba(248,245,238,.88);
  font-weight: 760;
}
@media (max-width: 640px) {
  .result-card h1 { font-size: clamp(34px, 11vw, 48px); }
  .answer-output .answer-part { padding: 16px; }
  .answer-output .answer-part h3 { font-size: 20px; }
}

/* AAAG Phase 2.4.2 presentation lock: screen result matches email */
.result-page-locked {
  width: min(760px, calc(100% - 28px));
  margin: 34px auto 76px;
}
.result-email-card {
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(215,200,154,.75);
  box-shadow: 0 28px 90px rgba(0,0,0,.38);
  background: #ffffff;
}
.result-brand-panel {
  background: #fffdf8;
  padding: clamp(18px, 4vw, 28px) clamp(18px, 4vw, 32px) 18px;
  border-bottom: 0;
}
.result-brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.result-logo {
  width: min(230px, 62vw);
  height: auto;
  display: block;
}
.result-ref-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 8px 13px;
  background: #f8f1dc;
  color: #111827;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .055em;
  white-space: nowrap;
}
.result-brand-line {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--green), var(--purple));
  margin-top: 15px;
}
.result-body-panel {
  background: #ffffff;
  color: #111827;
  padding: clamp(22px, 5vw, 34px) clamp(18px, 5vw, 32px) clamp(24px, 5vw, 36px);
}
.result-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 18px;
}
.result-body-panel .result-badge,
.result-body-panel .result-back {
  border: 1px solid #d7c89a;
  background: #fff9e8;
  color: #111827;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .035em;
}
.result-body-panel h1 {
  margin: 0 0 22px;
  color: #111827;
  font-size: clamp(31px, 5vw, 48px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.result-body-panel .result-section {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  margin: 0 0 22px;
}
.result-body-panel .result-section > h2,
.result-followup-card h2,
.result-advice-card h2 {
  margin: 0 0 11px;
  color: var(--gold);
  font-size: 20px;
  line-height: 1.25;
  font-weight: 950;
  letter-spacing: -.02em;
}
.result-question-block p {
  margin: 0;
  background: #f8f5ee;
  border: 1px solid #e2d8bf;
  border-radius: 16px;
  padding: 18px 20px;
  color: #111827;
  line-height: 1.6;
  font-weight: 650;
}
.result-answer-block > h2 {
  margin-bottom: 14px !important;
}
.result-body-panel .answer-output .answer-part {
  background: #ffffff;
  border: 1px solid #eadfca;
  border-radius: 16px;
  padding: 18px 20px;
  margin: 0 0 14px;
  color: #111827;
}
.result-body-panel .answer-output .answer-avoid {
  background: #fff9e8;
  border-color: #dccb9a;
}
.result-body-panel .answer-output .answer-moves h3 {
  color: var(--purple);
}
.result-body-panel .answer-output .answer-avoid h3 {
  color: var(--gold);
}
.result-body-panel .answer-output .answer-diagnosis h3,
.result-body-panel .answer-output .answer-next h3,
.result-body-panel .answer-output .answer-intro h3,
.result-body-panel .answer-output .answer-part h3 {
  margin: 0 0 10px;
  font-size: 20px;
  line-height: 1.25;
  color: #111827;
  font-weight: 950;
}
.result-body-panel .answer-output p,
.result-body-panel .answer-output li {
  color: #1f2937;
  line-height: 1.65;
  font-weight: 600;
  font-size: 16px;
}
.result-body-panel .answer-output p {
  margin: 0 0 13px;
}
.result-body-panel .answer-output ol {
  margin: 8px 0 16px 22px;
  padding: 0;
}
.result-body-panel .answer-output li {
  margin-bottom: 10px;
  padding-left: 4px;
}
.result-body-panel .answer-output li::marker {
  color: var(--purple);
  font-weight: 950;
}
.result-followup-card,
.result-advice-card {
  border-radius: 14px;
  padding: 18px 20px;
  margin-top: 18px;
  color: #374151;
  line-height: 1.6;
}
.result-followup-card {
  background: #f8f5ee;
  border: 1px solid #e2d8bf;
  border-left: 5px solid var(--purple);
}
.result-advice-card {
  background: #fff9e8;
  border: 1px solid #e2d8bf;
}
.result-followup-card p,
.result-advice-card p {
  margin: 0;
  color: #374151;
  font-weight: 600;
}
.result-body-panel .result-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}
.result-body-panel .primary-action,
.result-body-panel .secondary-action {
  min-height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 950;
}
.result-body-panel .primary-action {
  background: var(--green);
  color: #09070b;
}
.result-body-panel .secondary-action {
  border: 1px solid #d7c89a;
  color: #111827;
  background: #fff9e8;
}
@media (max-width: 640px) {
  .result-brand-row,
  .result-topline,
  .result-body-panel .result-actions {
    grid-template-columns: 1fr;
    display: grid;
    justify-items: start;
  }
  .result-ref-pill,
  .result-body-panel .primary-action,
  .result-body-panel .secondary-action {
    width: 100%;
  }
  .result-body-panel h1 {
    font-size: clamp(30px, 10vw, 42px);
  }
}


/* AAAG Phase 2.4.3 screen result polish */
.result-page-locked {
  width: min(760px, calc(100% - 28px));
  margin: 34px auto 76px;
}
body:has(.result-page-locked) {
  background:
    radial-gradient(circle at 15% 10%, rgba(124,58,237,.34), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(185,154,85,.16), transparent 28%),
    linear-gradient(180deg, #050408 0%, #0b0711 48%, #030205 100%);
}
.result-page-locked .result-email-card {
  box-shadow: 0 34px 110px rgba(0,0,0,.62), 0 0 0 1px rgba(255,255,255,.04);
}
.result-body-panel .answer-output .answer-part h3 {
  display: inline-block;
  margin: 0 0 13px;
  padding-bottom: 6px;
  border-bottom: 3px solid currentColor;
  text-decoration: none;
  font-size: 20px;
  line-height: 1.22;
  font-weight: 950;
  letter-spacing: -.015em;
}
.result-body-panel .answer-output .answer-diagnosis h3 {
  color: var(--gold) !important;
}
.result-body-panel .answer-output .answer-moves {
  border-left: 5px solid var(--green);
}
.result-body-panel .answer-output .answer-moves h3 {
  color: var(--green) !important;
}
.result-body-panel .answer-output .answer-moves li::marker {
  color: var(--purple);
}
.result-body-panel .answer-output .answer-avoid {
  background: #fff6df;
  border-color: #f2c879;
  border-left: 5px solid #d97706;
}
.result-body-panel .answer-output .answer-avoid h3 {
  color: #d97706 !important;
}
.result-followup-card h2 {
  color: var(--purple) !important;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 3px solid var(--purple);
}
.result-advice-card h2 {
  color: var(--gold) !important;
}
.result-followup-card {
  background: #f8f5ee;
  border: 1px solid #e2d8bf;
  border-left: 5px solid var(--purple);
}

/* AAAG Phase 2.4.4 mobile result rescue
   Purpose: keep the email-style report card, but make the screen result usable on narrow phones. */
.result-page-locked {
  width: min(820px, calc(100% - 24px));
}

.result-body-panel .answer-output .answer-part h3,
.result-followup-card h2,
.result-advice-card h2 {
  text-underline-offset: 3px;
}

@media (max-width: 700px) {
  body:has(.result-page-locked) .site-header {
    padding: 14px 16px 8px;
  }

  body:has(.result-page-locked) .brand img {
    max-width: 150px;
  }

  .result-page-locked {
    width: calc(100% - 18px);
    margin: 14px auto 42px;
  }

  .result-email-card {
    border-radius: 20px;
  }

  .result-brand-panel {
    padding: 14px 14px 12px;
  }

  .result-brand-row {
    gap: 10px;
  }

  .result-logo {
    width: min(138px, 54vw);
  }

  .result-ref-pill {
    width: auto;
    max-width: 100%;
    padding: 7px 10px;
    font-size: 9.5px;
    letter-spacing: .035em;
  }

  .result-brand-line {
    height: 2px;
    margin-top: 11px;
  }

  .result-body-panel {
    padding: 18px 13px 20px;
  }

  .result-topline {
    gap: 8px;
    margin-bottom: 14px;
  }

  .result-body-panel .result-badge,
  .result-body-panel .result-back {
    width: auto;
    padding: 7px 10px;
    font-size: 10px;
    letter-spacing: .015em;
  }

  .result-body-panel h1 {
    font-size: clamp(25px, 8vw, 34px);
    line-height: 1.05;
    letter-spacing: -.04em;
    margin-bottom: 16px;
  }

  .result-body-panel .result-section {
    margin-bottom: 17px;
  }

  .result-body-panel .result-section > h2,
  .result-followup-card h2,
  .result-advice-card h2 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .result-question-block p {
    border-radius: 13px;
    padding: 13px 14px;
    font-size: 13.5px;
    line-height: 1.5;
  }

  .result-body-panel .answer-output .answer-part {
    border-radius: 13px;
    padding: 13px 14px;
    margin-bottom: 12px;
  }

  .result-body-panel .answer-output .answer-moves,
  .result-body-panel .answer-output .answer-avoid {
    border-left-width: 4px;
  }

  .result-body-panel .answer-output .answer-part h3 {
    font-size: 16px;
    line-height: 1.18;
    margin-bottom: 9px;
    padding-bottom: 4px;
    border-bottom-width: 2px;
  }

  .result-body-panel .answer-output p,
  .result-body-panel .answer-output li {
    font-size: 13.5px;
    line-height: 1.5;
    font-weight: 650;
    overflow-wrap: anywhere;
  }

  .result-body-panel .answer-output p {
    margin-bottom: 10px;
  }

  .result-body-panel .answer-output ol {
    margin: 7px 0 8px 18px;
  }

  .result-body-panel .answer-output li {
    margin-bottom: 9px;
    padding-left: 2px;
  }

  .result-followup-card,
  .result-advice-card {
    border-radius: 13px;
    padding: 13px 14px;
    margin-top: 13px;
  }

  .result-followup-card p,
  .result-advice-card p {
    font-size: 13.5px;
    line-height: 1.5;
  }

  .result-body-panel .result-actions {
    gap: 10px;
    margin-top: 18px;
  }

  .result-body-panel .primary-action,
  .result-body-panel .secondary-action {
    min-height: 46px;
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .result-page-locked {
    width: calc(100% - 12px);
  }

  .result-body-panel {
    padding-left: 10px;
    padding-right: 10px;
  }

  .result-brand-panel {
    padding-left: 10px;
    padding-right: 10px;
  }

  .result-logo {
    width: 126px;
  }

  .result-ref-pill {
    font-size: 8.8px;
    padding: 6px 8px;
  }

  .result-body-panel .answer-output .answer-part,
  .result-question-block p,
  .result-followup-card,
  .result-advice-card {
    padding-left: 11px;
    padding-right: 11px;
  }
}

/* Phase 2.4.5 mobile business-area select usability fix */
.ask-form select {
  -webkit-appearance: none;
  appearance: none;
  min-height: 58px;
  line-height: 1.25;
  padding: 0 48px 0 18px;
  background-image:
    linear-gradient(45deg, transparent 50%, #17121c 50%),
    linear-gradient(135deg, #17121c 50%, transparent 50%);
  background-position:
    calc(100% - 24px) 50%,
    calc(100% - 17px) 50%;
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

@media (max-width: 720px) {
  .ask-form select {
    min-height: 72px;
    border-radius: 22px;
    padding: 0 58px 0 22px;
    font-size: 19px;
    font-weight: 900;
    background-position:
      calc(100% - 30px) 50%,
      calc(100% - 21px) 50%;
    background-size: 9px 9px, 9px 9px;
  }

  .ask-form .field label {
    margin-bottom: 6px;
    font-size: 14px;
    letter-spacing: .11em;
  }
}

@media (max-width: 420px) {
  .ask-form select {
    min-height: 76px;
    font-size: 18px;
    padding-left: 20px;
    padding-right: 56px;
  }
}


/* AAAG Phase 2.4.6 mobile conversion polish
   Mobile goal: question-first, less scrolling, faster form completion. Desktop remains rich. */
@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 22px);
    padding: 10px 0 4px;
    align-items: center;
  }

  .brand img {
    width: clamp(118px, 38vw, 160px);
  }

  .header-actions a {
    padding: 7px 9px;
    font-size: 10px;
  }

  .page-shell {
    width: calc(100% - 20px);
  }

  .hero-grid {
    padding: 8px 0 34px;
    gap: 12px;
  }

  .hero-copy {
    max-width: 92%;
  }

  h1 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: .96;
    letter-spacing: -.055em;
  }

  .promise {
    font-size: 13.5px;
    line-height: 1.28;
    margin-top: 9px;
    max-width: 92%;
    color: rgba(248,245,238,.78);
  }

  .question-panel {
    padding: 13px;
    border-radius: 20px;
  }

  .panel-local {
    font-size: 10.5px;
    margin-bottom: 7px;
  }

  .question-panel .panel-topline {
    width: 46px;
    height: 2px;
    margin-bottom: 8px;
  }

  .question-panel h2 {
    font-size: 22px;
    line-height: 1.02;
    letter-spacing: -.045em;
    margin-bottom: 5px;
  }

  .panel-intro {
    font-size: 12px;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .ask-form {
    gap: 9px;
  }

  .ask-form textarea {
    min-height: 96px;
  }

  .ask-form textarea,
  .ask-form input {
    border-radius: 13px;
    padding: 12px 13px;
    font-size: 14px;
  }

  .ask-form input {
    min-height: 47px;
  }

  .details-title {
    font-size: 12px;
    margin: 2px 0 -3px;
    letter-spacing: .08em;
  }

  .details-grid {
    gap: 8px;
  }

  .field {
    gap: 4px;
  }

  .ask-form .field label {
    font-size: 10.5px;
    margin-bottom: 2px;
  }

  .ask-form select {
    min-height: 56px;
    border-radius: 14px;
    font-size: 15px;
    padding-left: 13px;
    padding-right: 46px;
    background-position:
      calc(100% - 23px) 50%,
      calc(100% - 16px) 50%;
    background-size: 7px 7px, 7px 7px;
  }

  .consent-row {
    padding: 10px 11px;
    border-radius: 13px;
    gap: 9px;
    font-size: 11.5px;
    line-height: 1.28;
  }

  .consent-row input {
    width: 19px;
    height: 19px;
  }

  .ask-form button {
    min-height: 52px;
    border-radius: 14px;
    font-size: 12.5px;
    letter-spacing: .025em;
  }

  .ask-form button span {
    font-size: 16px;
    margin-left: 7px;
  }

  .answer-notes {
    margin-top: 11px;
    padding-top: 10px;
    gap: 7px;
  }

  .answer-notes p {
    grid-template-columns: 19px 1fr;
    gap: 8px;
    font-size: 10.5px;
    line-height: 1.25;
  }

  .answer-notes span {
    width: 18px;
    height: 18px;
    font-size: 9px;
  }

  .answer-notes p:nth-child(3) {
    display: none;
  }

  .messy-section,
  .how-section {
    padding: 32px 0;
  }

  .section-heading {
    gap: 8px;
    margin-bottom: 14px;
  }

  .section-heading h2 {
    font-size: clamp(27px, 8.5vw, 36px);
    line-height: .96;
  }

  .section-heading p {
    font-size: 13px;
    line-height: 1.32;
  }

  .quote-grid {
    gap: 8px;
  }

  .quote-card {
    min-height: auto;
    padding: 12px 14px;
    border-radius: 15px;
  }

  .quote-card:nth-child(n+4) {
    display: none;
  }

  .quote-card span {
    font-size: 19px;
  }

  .quote-card p {
    margin-top: 5px;
    font-size: 13px;
    line-height: 1.2;
  }

  .steps-grid {
    gap: 8px;
    margin-top: 14px;
  }

  .step-card {
    min-height: auto;
    padding: 13px 14px;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 26px 1fr;
    column-gap: 10px;
    align-items: start;
  }

  .step-card b {
    width: 24px;
    height: 24px;
    margin: 0;
    font-size: 12px;
  }

  .step-card h3 {
    margin: 1px 0 4px;
    font-size: 13px;
    line-height: 1.15;
  }

  .step-card p {
    grid-column: 2;
    font-size: 11.5px;
    line-height: 1.25;
  }

  .site-footer {
    padding: 22px 0 32px;
    gap: 9px;
    font-size: 11.5px;
  }
}

@media (max-width: 420px) {
  .page-shell {
    width: calc(100% - 16px);
  }

  .hero-grid {
    padding-top: 4px;
    gap: 10px;
  }

  .promise {
    font-size: 12.5px;
  }

  .question-panel {
    padding: 12px;
  }

  .question-panel h2 {
    font-size: 20px;
  }

  .panel-intro {
    font-size: 11.5px;
  }

  .ask-form textarea {
    min-height: 90px;
  }
}


/* AAAG Phase 2.4.7 mobile/desktop copy hierarchy correction
   - Move "Ask us" into the form title
   - Add breathing room below mobile header
   - Keep all three trust notes visible on mobile */
@media (max-width: 720px) {
  .site-header {
    padding-bottom: 10px;
  }

  .hero-grid {
    padding-top: 14px;
    gap: 13px;
  }

  .hero-copy h1 {
    font-size: clamp(28px, 8.2vw, 36px);
    line-height: .98;
    max-width: 92%;
  }

  .promise {
    margin-top: 8px;
  }

  .question-panel h2 {
    font-size: 21px;
    line-height: 1.05;
    margin-bottom: 5px;
  }

  .panel-intro {
    max-width: 92%;
  }

  .answer-notes p:nth-child(3) {
    display: grid;
  }

  .answer-notes {
    gap: 6px;
  }

  .answer-notes p {
    font-size: 10px;
    line-height: 1.22;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-bottom: 12px;
  }

  .hero-grid {
    padding-top: 16px;
  }

  .hero-copy h1 {
    font-size: clamp(27px, 8vw, 33px);
  }

  .question-panel h2 {
    font-size: 20px;
  }
}


/* AAAG Phase 2.4.8 homepage hero copy tighten
   - Problem first, action in form
   - Removed top promise/local copy from first view
   - Green form action title
   - Trust/support copy moved below hero */
.question-panel h2 {
  color: var(--green);
  text-shadow: 0 0 26px rgba(216,255,0,.13);
}

.hero-trust-strip {
  margin: -24px 0 64px;
  padding: 18px 22px;
  border: 1px solid rgba(185,154,85,.22);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.018));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  color: var(--muted);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.hero-trust-strip p {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 760;
}

.hero-trust-strip p:first-child {
  color: var(--white);
}

.hero-trust-strip p:nth-child(2) {
  color: var(--gold);
}

.hero-trust-strip p:nth-child(3) {
  color: rgba(248,245,238,.72);
}

@media (max-width: 920px) {
  .hero-trust-strip {
    margin: -18px 0 42px;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 16px;
  }

  .hero-trust-strip p {
    font-size: 12.5px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-bottom: 18px;
  }

  .hero-grid {
    padding-top: 26px;
  }

  .hero-copy h1 {
    margin-top: 4px;
  }

  .question-panel h2 {
    color: var(--green);
    font-size: 22px;
    line-height: 1.04;
    letter-spacing: -.035em;
  }

  .panel-intro {
    color: rgba(248,245,238,.76);
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-bottom: 20px;
  }

  .hero-grid {
    padding-top: 30px;
    gap: 15px;
  }

  .hero-copy h1 {
    font-size: clamp(30px, 8.6vw, 37px);
    max-width: 92%;
  }

  .hero-trust-strip {
    margin: -10px 0 34px;
    border-radius: 18px;
  }
}


/* AAAG Phase 2.4.9 hero action placement
   - Move "Ask us directly" out of the form card and into the hero copy
   - Keep trust/promise copy below the hero/form block on desktop and mobile */
.hero-action-line {
  margin: 18px 0 0;
  color: var(--green);
  font-size: clamp(42px, 5.4vw, 78px);
  line-height: .92;
  letter-spacing: -.065em;
  font-weight: 950;
  text-shadow: 0 0 34px rgba(216,255,0,.16);
}

.hero-subcopy {
  margin: 14px 0 0;
  max-width: 520px;
  color: rgba(248,245,238,.78);
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.28;
  font-weight: 650;
}

.compact-question-panel {
  padding-top: clamp(18px, 2.2vw, 28px);
}

.compact-question-panel .ask-form {
  margin-top: 0;
}

@media (min-width: 921px) {
  .hero-grid {
    align-items: center;
  }

  .hero-trust-strip {
    margin-top: -18px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-bottom: 18px;
  }

  .hero-grid {
    padding-top: 22px;
    gap: 16px;
  }

  .hero-copy h1 {
    margin-top: 0;
  }

  .hero-action-line {
    margin-top: 8px;
    font-size: clamp(29px, 8.7vw, 39px);
    line-height: .95;
    letter-spacing: -.055em;
  }

  .hero-subcopy {
    margin-top: 8px;
    max-width: 94%;
    font-size: 12.8px;
    line-height: 1.28;
  }

  .compact-question-panel {
    padding-top: 13px;
  }

  .hero-trust-strip {
    margin-top: 8px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-bottom: 20px;
  }

  .hero-grid {
    padding-top: 24px;
    gap: 14px;
  }

  .hero-copy h1 {
    font-size: clamp(27px, 8vw, 33px);
  }

  .hero-action-line {
    font-size: clamp(28px, 8.4vw, 36px);
  }

  .hero-subcopy {
    font-size: 12.2px;
  }

  .hero-trust-strip {
    margin-top: 6px;
  }
}

/* AAAG Phase 2.5 homepage question guidance fix
   - Cleaner trust strip: local + immediate AI advice only
   - Better example-question cards to teach users how to ask
   - Removes duplicate disclaimer from the support strip */
.hero-trust-strip.hero-trust-strip-clean {
  grid-template-columns: .72fr 1.28fr;
  align-items: center;
  gap: 20px;
}

.hero-trust-strip.hero-trust-strip-clean p:first-child {
  color: var(--gold);
  font-size: 15px;
  font-weight: 920;
}

.hero-trust-strip.hero-trust-strip-clean p:nth-child(2) {
  color: var(--white);
  font-size: 15px;
  font-weight: 820;
}

.quote-card p {
  font-size: 16px;
  line-height: 1.32;
}

@media (max-width: 920px) {
  .hero-trust-strip.hero-trust-strip-clean {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hero-trust-strip.hero-trust-strip-clean p:first-child,
  .hero-trust-strip.hero-trust-strip-clean p:nth-child(2) {
    font-size: 12.8px;
    line-height: 1.32;
  }
}

@media (max-width: 420px) {
  .quote-card p {
    font-size: 12.5px;
    line-height: 1.24;
  }
}

/* AAAG Phase 2.5.1 question guidance section polish
   - Support section must teach without competing with the hero
   - Smaller headline, cleaner copy, lighter example cards */
.messy-section {
  margin-top: 54px;
  padding: 44px clamp(18px, 4vw, 52px);
  border: 1px solid rgba(185,154,85,.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 0% 0%, rgba(126,55,255,.20), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.052), rgba(255,255,255,.018));
  box-shadow: 0 24px 80px rgba(0,0,0,.24);
}

.messy-section .section-heading {
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 26px;
  margin-bottom: 24px;
}

.messy-section .section-heading h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  line-height: 1.02;
  letter-spacing: -.045em;
  max-width: 560px;
}

.messy-section .section-heading p {
  color: rgba(248,245,238,.78);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.45;
  max-width: 620px;
}

.messy-section .quote-grid {
  gap: 12px;
}

.messy-section .quote-card {
  min-height: 108px;
  padding: 17px 18px;
  border-radius: 18px;
  border-color: rgba(185,154,85,.22);
  background: linear-gradient(180deg, rgba(5,4,8,.74), rgba(255,255,255,.022));
}

.messy-section .quote-card span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.messy-section .quote-card p {
  margin: 0;
  color: rgba(248,245,238,.88);
  font-size: 14.5px;
  line-height: 1.38;
  font-weight: 560;
}

@media (max-width: 920px) {
  .messy-section {
    margin-top: 30px;
    padding: 28px 18px;
    border-radius: 24px;
  }

  .messy-section .section-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 16px;
  }

  .messy-section .section-heading h2 {
    font-size: clamp(25px, 7vw, 34px);
    line-height: 1;
  }

  .messy-section .section-heading p {
    font-size: 13px;
    line-height: 1.34;
  }

  .messy-section .quote-card {
    padding: 13px 14px;
    border-radius: 15px;
  }

  .messy-section .quote-card span {
    font-size: 9.8px;
    margin-bottom: 6px;
  }

  .messy-section .quote-card p {
    font-size: 12px;
    line-height: 1.28;
    font-weight: 540;
  }
}

@media (max-width: 420px) {
  .messy-section {
    margin-top: 24px;
    padding: 24px 14px;
  }

  .messy-section .quote-card:nth-child(n+4) {
    display: none;
  }
}

/* AAAG Phase 2.5.2 disclaimer acceptance */
.consent-row a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 900;
}
.disclaimer-row {
  border-color: rgba(216,255,0,.22);
  background: rgba(216,255,0,.035);
}
.disclaimer-page-shell {
  padding: 34px 0 72px;
}
.disclaimer-card {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid rgba(185,154,85,.34);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(248,245,238,.98), rgba(242,239,231,.98));
  color: #15111d;
  padding: clamp(24px, 5vw, 52px);
  box-shadow: var(--shadow);
}
.disclaimer-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 22px;
}
.disclaimer-card .result-back {
  color: #15111d;
  background: rgba(185,154,85,.08);
  border-color: rgba(185,154,85,.45);
}
.disclaimer-card h1 {
  color: #15111d;
  font-size: clamp(36px, 6vw, 68px);
  line-height: .95;
  margin: 0 0 22px;
}
.disclaimer-card h2 {
  color: #b99a55;
  font-size: clamp(20px, 2.3vw, 27px);
  line-height: 1.1;
  margin: 30px 0 10px;
}
.disclaimer-card p,
.disclaimer-card li {
  color: #2d2635;
  font-size: 16px;
  line-height: 1.68;
  font-weight: 650;
}
.disclaimer-card .disclaimer-lede {
  font-size: 18px;
  line-height: 1.6;
  color: #201827;
  font-weight: 750;
}
.disclaimer-card ol {
  padding-left: 22px;
  margin: 12px 0 0;
}
.disclaimer-card li { margin-bottom: 10px; }
@media (max-width: 560px) {
  .disclaimer-page-shell { padding-top: 18px; }
  .disclaimer-card { border-radius: 22px; padding: 22px; }
  .disclaimer-card p,
  .disclaimer-card li { font-size: 14.5px; }
  .disclaimer-card .disclaimer-lede { font-size: 15.5px; }
}


/* AAAG homepage v2 strategic rebuild */
.aaag-homepage-v2 .hero-grid-v2 {
  min-height: auto;
  padding-top: clamp(34px, 5vw, 72px);
  align-items: start;
}
.hero-kicker {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 9px 13px;
  border: 1px solid rgba(216,255,0,.32);
  border-radius: 999px;
  color: var(--green);
  background: rgba(216,255,0,.07);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.hero-copy-v2 h1 {
  font-size: clamp(45px, 6.4vw, 88px);
  letter-spacing: -.062em;
}
.hero-copy-v2 h1 em {
  color: var(--green);
  max-width: 850px;
}
.hero-action-line {
  margin: 24px 0 0;
  color: var(--white);
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: -.045em;
}
.hero-subcopy {
  margin: 14px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.42;
  font-weight: 650;
}
.hero-cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}
.hero-primary-link,
.hero-secondary-link,
.final-cta-section a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 950;
  text-decoration: none;
}
.hero-primary-link,
.final-cta-section a {
  background: var(--green);
  color: #09070b;
  box-shadow: 0 18px 42px rgba(216,255,0,.14);
}
.hero-secondary-link {
  border: 1px solid rgba(185,154,85,.35);
  color: var(--white);
  background: rgba(255,255,255,.045);
}
.hero-proof-list {
  display: grid;
  gap: 9px;
  margin-top: 26px;
  max-width: 620px;
}
.hero-proof-list p {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(185,154,85,.22);
  border-radius: 16px;
  background: rgba(255,255,255,.035);
  color: rgba(248,245,238,.82);
  line-height: 1.35;
  font-weight: 650;
}
.hero-proof-list strong { color: var(--gold); }
.question-panel-v2 { scroll-margin-top: 20px; }
.question-panel-heading { margin-bottom: 16px; }
.question-panel-heading p {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.question-panel-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  letter-spacing: -.055em;
}
.ask-form > label:first-child {
  position: static;
  left: auto;
  color: var(--gold);
  font-weight: 950;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.question-help-list {
  margin: -4px 0 2px;
  padding: 0;
  display: grid;
  gap: 6px;
  list-style: none;
  color: rgba(248,245,238,.72);
  font-size: 12.5px;
  line-height: 1.35;
  font-weight: 700;
}
.question-help-list li::before {
  content: "✓";
  color: var(--green);
  margin-right: 8px;
  font-weight: 950;
}
.hero-trust-strip-clean {
  margin: 6px 0 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.hero-trust-strip-clean p {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid rgba(185,154,85,.26);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  color: rgba(248,245,238,.82);
  font-weight: 760;
  line-height: 1.38;
}
.fit-section,
.why-section,
.safety-section,
.final-cta-section {
  padding: 72px 0;
  border-top: 1px solid rgba(185,154,85,.22);
}
.fit-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.fit-card,
.why-card {
  border: 1px solid rgba(185,154,85,.26);
  border-radius: 22px;
  padding: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
}
.fit-card h3,
.why-card h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 21px;
  line-height: 1.08;
  letter-spacing: -.035em;
}
.fit-card p,
.why-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
  font-weight: 650;
}
.safety-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 28px;
  align-items: start;
}
.safety-section h2,
.final-cta-section h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  letter-spacing: -.06em;
  line-height: 1;
}
.safety-section p,
.final-cta-section p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.35;
}
.not-for-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.not-for-list span {
  border: 1px solid rgba(185,154,85,.32);
  border-radius: 999px;
  padding: 11px 14px;
  background: rgba(255,255,255,.035);
  color: rgba(248,245,238,.86);
  font-weight: 850;
}
.final-cta-section {
  text-align: center;
  border-bottom: 1px solid rgba(185,154,85,.22);
}
.final-cta-section p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta-section a { margin-top: 24px; }
#aaag-hero-register-cta,
.aaag-hero-register-cta-wrap { display: none !important; }

@media (max-width: 920px) {
  .hero-copy-v2 h1 { font-size: clamp(42px, 12vw, 74px); }
  .hero-trust-strip-clean,
  .fit-grid,
  .why-grid,
  .safety-section { grid-template-columns: 1fr; }
  .fit-section,
  .why-section,
  .safety-section,
  .final-cta-section { padding: 48px 0; }
  .hero-primary-link,
  .hero-secondary-link { width: 100%; }
}
@media (max-width: 560px) {
  .hero-kicker { font-size: 11px; }
  .hero-copy-v2 h1 { font-size: clamp(37px, 13vw, 56px); letter-spacing: -.055em; }
  .hero-action-line { font-size: 23px; }
  .hero-subcopy { font-size: 16px; }
  .hero-proof-list p,
  .hero-trust-strip-clean p { font-size: 13px; }
  .fit-card,
  .why-card,
  .quote-card,
  .step-card { padding: 18px; }
}

/* AAAG homepage v2.1 mobile-first hero correction
   Goal: faster mobile action, tighter header, better headline readability, no duplicate slogan pill. */
.aaag-homepage-v2 .hero-kicker { display: none !important; }

.aaag-homepage-v2 .hero-copy-v2 h1 {
  line-height: 1.01;
  letter-spacing: -0.048em;
  max-width: 900px;
}
.aaag-homepage-v2 .hero-copy-v2 h1 em {
  margin-top: 8px;
}
.aaag-homepage-v2 .hero-action-line {
  line-height: 1.01;
  letter-spacing: -0.048em;
}

@media (min-width: 921px) {
  .aaag-homepage-v2 .hero-grid-v2 {
    padding-top: clamp(20px, 3.2vw, 44px);
    gap: clamp(34px, 5.2vw, 72px);
  }
  .aaag-homepage-v2 .hero-copy-v2 h1 {
    font-size: clamp(50px, 5.8vw, 82px);
  }
  .aaag-homepage-v2 .hero-action-line {
    font-size: clamp(40px, 5vw, 70px);
  }
}

@media (max-width: 920px) {
  .site-header {
    width: min(100% - 24px, 720px) !important;
    padding: 10px 0 4px !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .brand img {
    width: clamp(132px, 36vw, 176px) !important;
  }
  .header-actions {
    gap: 8px !important;
  }
  .header-actions a {
    padding: 8px 11px !important;
    font-size: 12px !important;
  }
  .aaag-homepage-v2 .hero-grid-v2 {
    padding-top: 8px !important;
    gap: 18px !important;
  }
  .aaag-homepage-v2 .hero-copy-v2 {
    max-width: 100% !important;
  }
  .aaag-homepage-v2 .hero-copy-v2 h1 {
    max-width: 680px !important;
    font-size: clamp(42px, 10.4vw, 68px) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.038em !important;
  }
  .aaag-homepage-v2 .hero-copy-v2 h1 em {
    margin-top: 6px !important;
  }
  .aaag-homepage-v2 .hero-action-line {
    margin-top: 12px !important;
    font-size: clamp(31px, 8.2vw, 46px) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.035em !important;
  }
  .aaag-homepage-v2 .hero-subcopy {
    margin-top: 10px !important;
    max-width: 650px !important;
    font-size: 16px !important;
    line-height: 1.38 !important;
  }
  .aaag-homepage-v2 .hero-cta-row {
    margin-top: 14px !important;
    gap: 9px !important;
  }
  .aaag-homepage-v2 .hero-primary-link,
  .aaag-homepage-v2 .hero-secondary-link {
    min-height: 46px !important;
    padding: 12px 16px !important;
    font-size: 13px !important;
  }
  .aaag-homepage-v2 .hero-secondary-link {
    display: none !important;
  }
  .aaag-homepage-v2 .hero-proof-list {
    display: none !important;
  }
  .aaag-homepage-v2 .question-panel-v2 {
    margin-top: 0 !important;
  }
}

@media (max-width: 560px) {
  .site-header {
    width: calc(100% - 20px) !important;
    padding-top: 8px !important;
    padding-bottom: 2px !important;
  }
  .brand img {
    width: clamp(136px, 42vw, 168px) !important;
  }
  .header-actions a {
    padding: 8px 10px !important;
    font-size: 12px !important;
  }
  .page-shell {
    width: calc(100% - 20px) !important;
  }
  .aaag-homepage-v2 .hero-grid-v2 {
    padding-top: 6px !important;
    padding-bottom: 34px !important;
    gap: 14px !important;
  }
  .aaag-homepage-v2 .hero-copy-v2 h1 {
    font-size: clamp(43px, 11.8vw, 56px) !important;
    line-height: 1.065 !important;
    letter-spacing: -0.03em !important;
  }
  .aaag-homepage-v2 .hero-copy-v2 h1 em {
    margin-top: 7px !important;
  }
  .aaag-homepage-v2 .hero-action-line {
    font-size: clamp(30px, 8.6vw, 40px) !important;
    line-height: 1.06 !important;
    letter-spacing: -0.025em !important;
  }
  .aaag-homepage-v2 .hero-subcopy {
    font-size: 14.5px !important;
    line-height: 1.36 !important;
  }
  .aaag-homepage-v2 .hero-primary-link {
    width: auto !important;
    min-height: 44px !important;
    padding: 12px 15px !important;
  }
  .aaag-homepage-v2 .question-panel-heading h2 {
    font-size: 29px !important;
    line-height: 1.02 !important;
    letter-spacing: -0.035em !important;
  }
  .aaag-homepage-v2 .question-panel-v2 textarea {
    min-height: 112px !important;
  }
}

@media (max-width: 390px) {
  .aaag-homepage-v2 .hero-copy-v2 h1 {
    font-size: clamp(39px, 11vw, 48px) !important;
  }
  .aaag-homepage-v2 .hero-action-line {
    font-size: clamp(28px, 8vw, 36px) !important;
  }
}


/* AAAG homepage v2.2 hero readability correction
   Goal: less poster-like, more usable; only the AAAG action phrase is green. */
.aaag-homepage-v2 .hero-copy-v2 h1 {
  max-width: 820px !important;
  line-height: 1.09 !important;
  letter-spacing: -0.032em !important;
}
.aaag-homepage-v2 .hero-copy-v2 h1 em {
  color: var(--white) !important;
  margin-top: 10px !important;
}
.aaag-homepage-v2 .hero-copy-v2 h1 em strong {
  color: var(--green) !important;
  font-style: inherit;
}
.aaag-homepage-v2 .hero-action-line {
  margin-top: 18px !important;
  line-height: 1.12 !important;
  letter-spacing: -0.026em !important;
}

@media (min-width: 921px) {
  .aaag-homepage-v2 .hero-copy-v2 h1 {
    font-size: clamp(46px, 5.05vw, 74px) !important;
  }
  .aaag-homepage-v2 .hero-action-line {
    font-size: clamp(30px, 3.25vw, 48px) !important;
    max-width: 650px !important;
  }
}

@media (max-width: 920px) {
  .aaag-homepage-v2 .hero-copy-v2 h1 {
    max-width: 640px !important;
    font-size: clamp(36px, 8.7vw, 56px) !important;
    line-height: 1.11 !important;
    letter-spacing: -0.024em !important;
  }
  .aaag-homepage-v2 .hero-copy-v2 h1 em {
    margin-top: 7px !important;
  }
  .aaag-homepage-v2 .hero-action-line {
    margin-top: 10px !important;
    font-size: clamp(24px, 6vw, 34px) !important;
    line-height: 1.14 !important;
    letter-spacing: -0.018em !important;
    max-width: 560px !important;
  }
  .aaag-homepage-v2 .hero-subcopy {
    font-size: 15px !important;
    line-height: 1.42 !important;
  }
}

@media (max-width: 560px) {
  .aaag-homepage-v2 .hero-grid-v2 {
    padding-top: 4px !important;
    gap: 14px !important;
  }
  .aaag-homepage-v2 .hero-copy-v2 h1 {
    font-size: clamp(34px, 10.2vw, 47px) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.018em !important;
  }
  .aaag-homepage-v2 .hero-action-line {
    font-size: clamp(23px, 6.7vw, 30px) !important;
  }
  .aaag-homepage-v2 .hero-cta-row {
    margin-top: 12px !important;
  }
}


/* AAAG homepage v2.3 readability and form-fit correction
   Goal: product readability over poster impact; more character breathing room; textarea content fits on mobile. */
.aaag-homepage-v2 .hero-copy-v2 h1 {
  max-width: 760px !important;
  line-height: 1.14 !important;
  letter-spacing: 0.002em !important;
  text-wrap: balance;
}
.aaag-homepage-v2 .hero-copy-v2 h1 em {
  margin-top: 8px !important;
}
.aaag-homepage-v2 .hero-action-line {
  max-width: 560px !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
}
.aaag-homepage-v2 .hero-subcopy {
  max-width: 560px !important;
}
.aaag-homepage-v2 .question-panel-v2 textarea {
  line-height: 1.34 !important;
}
.aaag-homepage-v2 .question-panel-v2 textarea::placeholder {
  font-size: 14px !important;
  line-height: 1.34 !important;
}

@media (min-width: 921px) {
  .aaag-homepage-v2 .hero-grid-v2 {
    padding-top: clamp(16px, 2.6vw, 34px) !important;
    gap: clamp(42px, 6vw, 82px) !important;
  }
  .aaag-homepage-v2 .hero-copy-v2 h1 {
    font-size: clamp(42px, 4.55vw, 66px) !important;
  }
  .aaag-homepage-v2 .hero-action-line {
    font-size: clamp(27px, 2.75vw, 40px) !important;
    margin-top: 16px !important;
  }
  .aaag-homepage-v2 .hero-subcopy {
    font-size: clamp(15.5px, 1.2vw, 18px) !important;
    line-height: 1.46 !important;
  }
  .aaag-homepage-v2 .hero-cta-row {
    margin-top: 20px !important;
  }
  .aaag-homepage-v2 .hero-proof-list {
    margin-top: 18px !important;
  }
}

@media (max-width: 920px) {
  .aaag-homepage-v2 .hero-copy-v2 h1 {
    max-width: 610px !important;
    font-size: clamp(34px, 8.2vw, 52px) !important;
    line-height: 1.15 !important;
    letter-spacing: 0.001em !important;
  }
  .aaag-homepage-v2 .hero-action-line {
    font-size: clamp(23px, 5.6vw, 31px) !important;
    line-height: 1.16 !important;
    letter-spacing: 0 !important;
  }
  .aaag-homepage-v2 .question-panel-v2 textarea {
    min-height: 138px !important;
  }
}

@media (max-width: 560px) {
  .aaag-homepage-v2 .hero-copy-v2 h1 {
    font-size: clamp(31px, 8.8vw, 42px) !important;
    line-height: 1.16 !important;
    letter-spacing: 0.002em !important;
  }
  .aaag-homepage-v2 .hero-action-line {
    font-size: clamp(21px, 5.9vw, 27px) !important;
    line-height: 1.18 !important;
  }
  .aaag-homepage-v2 .hero-subcopy {
    font-size: 14px !important;
    line-height: 1.45 !important;
  }
  .aaag-homepage-v2 .question-panel-v2 {
    padding: 20px !important;
  }
  .aaag-homepage-v2 .question-panel-v2 textarea {
    min-height: 150px !important;
    padding: 16px !important;
  }
  .aaag-homepage-v2 .question-panel-v2 textarea::placeholder {
    font-size: 13.5px !important;
    line-height: 1.35 !important;
  }
  .question-help-list {
    font-size: 12px !important;
    gap: 5px !important;
  }
}

@media (max-width: 390px) {
  .aaag-homepage-v2 .hero-copy-v2 h1 {
    font-size: clamp(29px, 8.4vw, 37px) !important;
  }
  .aaag-homepage-v2 .hero-action-line {
    font-size: clamp(20px, 5.6vw, 25px) !important;
  }
  .aaag-homepage-v2 .question-panel-v2 textarea {
    min-height: 158px !important;
  }
}

/* AAAG temporary Paystack payment layer v1
   Goal: visible paid layer without touching entitlement/database logic yet. */
.paystack-pricing-section {
  margin: 18px 0 56px;
  padding: 28px;
  border: 1px solid rgba(185,154,85,.26);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 20%, rgba(123,44,255,.22), transparent 36%),
    linear-gradient(135deg, rgba(21,16,34,.92), rgba(5,7,17,.94));
  box-shadow: 0 26px 80px rgba(0,0,0,.24);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 24px;
  align-items: center;
}
.pricing-copy { max-width: 680px; }
.pricing-eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.paystack-pricing-section h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}
.paystack-pricing-section p {
  color: var(--muted);
  line-height: 1.48;
  font-weight: 650;
}
.pricing-copy > p:not(.pricing-eyebrow) {
  margin: 14px 0 0;
  font-size: clamp(16px, 1.5vw, 20px);
  max-width: 620px;
}
.pricing-card {
  border: 1px solid rgba(200,255,0,.28);
  border-radius: 24px;
  padding: 24px;
  background: rgba(255,255,255,.045);
}
.pricing-plan {
  margin: 0 0 8px !important;
  color: var(--gold) !important;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 950 !important;
}
.pricing-card strong {
  display: block;
  color: var(--white);
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}
.pricing-card ul {
  margin: 18px 0 20px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}
.pricing-card li {
  color: rgba(248,245,238,.84);
  line-height: 1.42;
  font-weight: 700;
}
.pricing-card li::before {
  content: "✓";
  color: var(--green);
  margin-right: 9px;
  font-weight: 950;
}
.pricing-button {
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: var(--green);
  color: #09070b;
  text-decoration: none;
  font-weight: 950;
  box-shadow: 0 18px 42px rgba(216,255,0,.14);
}
.pricing-note {
  margin: 14px 0 0 !important;
  font-size: 12.5px;
  color: rgba(185,174,200,.78) !important;
}
@media (max-width: 920px) {
  .paystack-pricing-section {
    grid-template-columns: 1fr;
    padding: 22px;
    margin: 6px 0 42px;
  }
}
@media (max-width: 560px) {
  .paystack-pricing-section {
    border-radius: 22px;
    padding: 20px;
  }
  .paystack-pricing-section h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.08;
  }
  .pricing-card {
    padding: 18px;
  }
  .pricing-card strong {
    font-size: 34px;
  }
}

/* AAAG Mentor Experience v2 */
.aaag-loading-overlay[hidden] {
  display: none !important;
}
.aaag-loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 24% 18%, rgba(185,154,85,.26), transparent 32%),
    rgba(8, 5, 13, .92);
  backdrop-filter: blur(10px);
}
body.aaag-answer-loading {
  overflow: hidden;
}
.aaag-loading-panel {
  width: min(560px, 100%);
  border: 1px solid rgba(215,200,154,.42);
  border-radius: 26px;
  padding: clamp(28px, 7vw, 48px);
  background: #fffdf8;
  color: #140b1d;
  box-shadow: 0 34px 120px rgba(0,0,0,.46);
  text-align: left;
}
.aaag-loading-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 4px solid rgba(185,154,85,.24);
  border-top-color: var(--gold);
  margin-bottom: 20px;
  animation: aaag-spin 1s linear infinite;
}
.aaag-loading-title {
  margin: 0 0 12px;
  font-size: clamp(34px, 8vw, 54px);
  line-height: 1;
  letter-spacing: 0;
  color: #140b1d;
}
.aaag-loading-panel p {
  margin: 0 0 10px;
  color: #51445d;
  font-size: clamp(17px, 3.4vw, 22px);
  line-height: 1.45;
  font-weight: 750;
}
@keyframes aaag-spin {
  to { transform: rotate(360deg); }
}

.result-page-locked {
  width: min(880px, calc(100% - 28px));
  margin: 30px auto 76px;
}
.result-mentor-card {
  overflow: visible;
  border-radius: 20px;
  background: #fffdf8;
  border: 1px solid rgba(215,200,154,.58);
  box-shadow: 0 28px 90px rgba(0,0,0,.34);
}
.result-mentor-card .result-brand-panel,
.result-mentor-card .result-logo,
.result-mentor-card .result-brand-line,
.result-mentor-card .result-topline,
.result-mentor-card .result-badge,
.result-mentor-card .result-back,
.result-mentor-card .result-answer-block > h2,
.result-mentor-card .result-body-panel > h1 {
  display: none !important;
}
.result-mentor-card .result-body-panel {
  padding: clamp(28px, 5.2vw, 54px);
  background: #fffdf8;
  color: #17121c;
}
.result-ref-row {
  display: flex;
  justify-content: flex-end;
  margin: 0 0 18px;
}
.result-mentor-card .result-ref-pill {
  width: auto;
  max-width: 100%;
  border-color: rgba(185,154,85,.34);
  background: rgba(248,241,220,.52);
  color: rgba(23,18,28,.68);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .035em;
  box-shadow: none;
}
.result-mentor-card .result-section {
  margin: 0;
}
.result-mentor-card .result-question-block {
  margin-bottom: clamp(28px, 5vw, 42px);
}
.result-mentor-card .result-question-block h2 {
  display: inline-block;
  margin: 0 0 14px;
  padding-bottom: 6px;
  color: var(--gold);
  border-bottom: 3px solid var(--gold);
  font-size: clamp(24px, 4.6vw, 34px);
  line-height: 1.08;
  font-weight: 1000;
  letter-spacing: 0;
}
.result-mentor-card .result-question-block p {
  margin: 0;
  border: 0;
  border-radius: 18px;
  background: #ffffff;
  padding: clamp(20px, 4vw, 28px);
  color: #17121c;
  font-size: clamp(20px, 3.5vw, 28px);
  line-height: 1.42;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(215,200,154,.54);
}
.result-mentor-card .answer-output {
  margin-top: 0;
}
.result-mentor-card .answer-output .answer-part {
  margin: 0 0 clamp(26px, 4vw, 38px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #17121c;
}
.result-mentor-card .answer-output .answer-part h3 {
  display: inline;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  color: #17121c !important;
  font-size: clamp(25px, 4.2vw, 36px);
  line-height: 1.1;
  font-weight: 1000;
  letter-spacing: 0;
  text-decoration: underline;
  text-decoration-color: rgba(185,154,85,.72);
  text-decoration-thickness: 3px;
  text-underline-offset: 7px;
}
.result-mentor-card .answer-output p,
.result-mentor-card .answer-output li {
  color: #2a2230;
  font-size: clamp(17px, 2.15vw, 20px);
  line-height: 1.72;
  font-weight: 575;
}
.result-mentor-card .answer-output p:first-of-type {
  margin-top: 18px;
}
.result-mentor-card .answer-output ol {
  margin: 18px 0 0 24px;
  padding: 0;
}
.result-mentor-card .answer-output li {
  margin-bottom: 12px;
  padding-left: 6px;
}
.result-mentor-card .answer-output li::marker {
  color: var(--gold);
  font-weight: 1000;
}
.result-mentor-card .answer-output .answer-moves {
  padding-left: clamp(18px, 3vw, 26px);
  border-left: 4px solid rgba(185,154,85,.5);
}
.result-mentor-card .answer-output .answer-avoid {
  padding: clamp(18px, 3vw, 24px);
  border: 1px solid rgba(185,154,85,.36);
  border-radius: 16px;
  background: rgba(255,249,232,.7);
}
.result-mentor-card .result-followup-card {
  margin: clamp(28px, 4vw, 40px) 0 0;
  border-radius: 16px;
  border: 1px solid rgba(124,58,237,.2);
  border-left: 4px solid rgba(124,58,237,.55);
  background: rgba(248,245,238,.75);
}
.result-mentor-card .result-advice-card {
  margin: 16px 0 0;
  padding: 12px 0 0;
  border: 0;
  border-top: 1px solid rgba(23,18,28,.12);
  border-radius: 0;
  background: transparent;
  color: rgba(42,34,48,.68);
}
.result-mentor-card .result-advice-card h2 {
  margin-bottom: 6px;
  color: rgba(23,18,28,.62) !important;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .055em;
  border: 0;
  padding: 0;
}
.result-mentor-card .result-advice-card p {
  color: rgba(42,34,48,.68);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 550;
}
.result-bottom-progress {
  margin: clamp(24px, 4vw, 36px) 0 18px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(243,234,255,.74);
  border: 1px solid rgba(124,58,237,.18);
  color: #210034;
  font-weight: 850;
  line-height: 1.45;
}
.result-mentor-card .result-actions {
  margin-top: 0;
}
@media (max-width: 700px) {
  .result-page-locked {
    width: calc(100% - 18px);
    margin-top: 12px;
  }
  .result-mentor-card {
    border-radius: 18px;
  }
  .result-mentor-card .result-body-panel {
    padding: 22px 16px 20px;
  }
  .result-ref-row {
    justify-content: flex-start;
    margin-bottom: 16px;
  }
  .result-mentor-card .result-question-block p {
    border-radius: 14px;
  }
  .result-mentor-card .answer-output .answer-part h3 {
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
  }
  .result-mentor-card .answer-output p,
  .result-mentor-card .answer-output li {
    font-size: 16px;
    line-height: 1.62;
  }
  .result-mentor-card .result-actions {
    grid-template-columns: 1fr;
  }
  .aaag-loading-panel {
    border-radius: 22px;
  }
}

/* AAAG Homepage Patch 1
   Scope: homepage hero/form layout only. */
.aaag-homepage-patch-01 {
  --patch-card: rgba(18, 13, 27, .94);
  --patch-line: rgba(216, 255, 0, .24);
  --patch-purple-line: rgba(124, 58, 237, .42);
}

.aaag-homepage-patch-01 .hero-grid-v2 {
  min-height: calc(100svh - 92px) !important;
  padding: 10px 0 28px !important;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 540px) !important;
  gap: clamp(28px, 4.2vw, 72px) !important;
  align-items: center !important;
}

.aaag-homepage-patch-01 .hero-copy-v2 {
  max-width: 760px !important;
}

.aaag-homepage-patch-01 .hero-copy-v2 h1 {
  max-width: 760px !important;
  color: var(--white);
  font-size: clamp(56px, 5.2vw, 88px) !important;
  line-height: 1.03 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

.aaag-homepage-patch-01 .hero-copy-v2 h1 em {
  margin-top: 8px !important;
  color: var(--white) !important;
}

.aaag-homepage-patch-01 .hero-copy-v2 h1 strong {
  color: var(--green) !important;
  text-shadow: 0 0 34px rgba(216, 255, 0, .16);
}

.aaag-homepage-patch-01 .hero-action-line {
  max-width: 620px !important;
  margin-top: 18px !important;
  color: rgba(248, 245, 238, .92);
  font-size: clamp(25px, 2.2vw, 36px) !important;
  line-height: 1.16 !important;
  letter-spacing: 0 !important;
}

.aaag-homepage-patch-01 .hero-subcopy {
  max-width: 580px !important;
  margin-top: 12px !important;
  color: rgba(248, 245, 238, .72);
  font-size: clamp(17px, 1.2vw, 20px) !important;
  line-height: 1.45 !important;
}

.aaag-homepage-patch-01 .hero-proof-list {
  display: grid !important;
  max-width: 590px !important;
  margin-top: 20px !important;
  gap: 10px !important;
}

.aaag-homepage-patch-01 .hero-proof-list p {
  position: relative;
  min-height: 46px;
  margin: 0;
  padding: 12px 14px 12px 42px !important;
  border: 1px solid var(--patch-line) !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, .04) !important;
  color: rgba(248, 245, 238, .88) !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  font-weight: 800 !important;
}

.aaag-homepage-patch-01 .hero-proof-list p::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 20px rgba(216, 255, 0, .45);
  transform: translateY(-50%);
}

.aaag-homepage-patch-01 .question-panel-v2 {
  width: 100%;
  padding: 22px !important;
  border-color: var(--patch-purple-line) !important;
  border-radius: 26px !important;
  background:
    radial-gradient(circle at 12% 0, rgba(124, 58, 237, .28), transparent 34%),
    linear-gradient(180deg, rgba(26, 21, 36, .98), rgba(9, 7, 13, .98)) !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .38), 0 0 0 1px rgba(216, 255, 0, .08) inset !important;
}

.aaag-homepage-patch-01 .question-panel-heading {
  margin-bottom: 12px !important;
}

.aaag-homepage-patch-01 .question-panel-heading p {
  color: var(--green) !important;
  letter-spacing: 0 !important;
}

.aaag-homepage-patch-01 .question-panel-heading h2 {
  font-size: clamp(28px, 2.2vw, 36px) !important;
  line-height: 1.06 !important;
  letter-spacing: 0 !important;
}

.aaag-homepage-patch-01 .ask-form {
  gap: 10px !important;
}

.aaag-homepage-patch-01 .ask-form > label:first-child,
.aaag-homepage-patch-01 .ask-form .field label {
  color: rgba(216, 255, 0, .86) !important;
  letter-spacing: 0 !important;
}

.aaag-homepage-patch-01 .ask-form textarea,
.aaag-homepage-patch-01 .ask-form input,
.aaag-homepage-patch-01 .ask-form select {
  border-radius: 14px !important;
  border-color: rgba(255, 255, 255, .12) !important;
  background: #f7f3ea !important;
}

.aaag-homepage-patch-01 .ask-form textarea {
  min-height: 108px !important;
  padding: 14px !important;
  line-height: 1.35 !important;
}

.aaag-homepage-patch-01 .ask-form input,
.aaag-homepage-patch-01 .ask-form select {
  min-height: 46px !important;
  padding: 0 13px !important;
}

.aaag-homepage-patch-01 .details-title {
  margin: 0 0 -4px !important;
  color: var(--green) !important;
  font-size: 12px !important;
  letter-spacing: 0 !important;
}

.aaag-homepage-patch-01 .details-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 9px !important;
}

.aaag-homepage-patch-01 .field {
  gap: 5px !important;
}

.aaag-homepage-patch-01 .question-help-list,
.aaag-homepage-patch-01 .answer-notes {
  display: none !important;
}

.aaag-homepage-patch-01 .consent-row {
  border-color: rgba(216, 255, 0, .18) !important;
  border-radius: 14px !important;
  padding: 10px 12px !important;
  background: rgba(255, 255, 255, .04) !important;
  font-size: 11.5px !important;
  line-height: 1.3 !important;
}

.aaag-homepage-patch-01 .consent-row input {
  width: 15px !important;
  height: 15px !important;
}

.aaag-homepage-patch-01 .submit-answer-btn {
  min-height: 54px !important;
  border-radius: 16px !important;
  background: var(--green) !important;
  color: #08070c !important;
  font-size: 15px !important;
  letter-spacing: 0 !important;
  box-shadow: 0 18px 48px rgba(216, 255, 0, .24) !important;
}

@media (max-width: 920px) {
  .aaag-homepage-patch-01 .hero-grid-v2 {
    min-height: auto !important;
    padding: 10px 0 36px !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
    align-items: start !important;
  }

  .aaag-homepage-patch-01 .hero-copy-v2 h1 {
    max-width: 680px !important;
    font-size: clamp(38px, 9.4vw, 58px) !important;
    line-height: 1.08 !important;
  }

  .aaag-homepage-patch-01 .hero-action-line {
    margin-top: 10px !important;
    font-size: clamp(20px, 5vw, 30px) !important;
    line-height: 1.18 !important;
  }

  .aaag-homepage-patch-01 .hero-subcopy {
    margin-top: 8px !important;
    font-size: 15px !important;
    line-height: 1.38 !important;
  }

  .aaag-homepage-patch-01 .hero-proof-list {
    margin-top: 12px !important;
    gap: 8px !important;
  }

  .aaag-homepage-patch-01 .hero-proof-list p {
    min-height: 38px;
    padding: 9px 11px 9px 34px !important;
    border-radius: 13px !important;
    font-size: 13px !important;
  }

  .aaag-homepage-patch-01 .hero-proof-list p::before {
    left: 12px;
    width: 10px;
    height: 10px;
  }

  .aaag-homepage-patch-01 .question-panel-v2 {
    margin-top: 0 !important;
    padding: 16px !important;
    border-radius: 20px !important;
  }

  .aaag-homepage-patch-01 .question-panel-heading {
    margin-bottom: 10px !important;
  }

  .aaag-homepage-patch-01 .question-panel-heading h2 {
    font-size: 24px !important;
  }

  .aaag-homepage-patch-01 .ask-form {
    gap: 8px !important;
  }

  .aaag-homepage-patch-01 .ask-form textarea {
    min-height: 82px !important;
    padding: 12px !important;
  }

  .aaag-homepage-patch-01 .ask-form textarea::placeholder {
    font-size: 12.5px !important;
  }

  .aaag-homepage-patch-01 .details-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  .aaag-homepage-patch-01 .ask-form input,
  .aaag-homepage-patch-01 .ask-form select {
    min-height: 41px !important;
    padding: 0 10px !important;
    font-size: 13px !important;
  }

  .aaag-homepage-patch-01 .ask-form .field label,
  .aaag-homepage-patch-01 .ask-form > label:first-child {
    font-size: 10px !important;
  }

  .aaag-homepage-patch-01 .details-title {
    font-size: 11px !important;
  }

  .aaag-homepage-patch-01 .consent-row {
    gap: 8px !important;
    padding: 8px 9px !important;
    font-size: 10.5px !important;
  }

  .aaag-homepage-patch-01 .submit-answer-btn {
    min-height: 50px !important;
    border-radius: 14px !important;
    font-size: 14px !important;
  }
}

@media (max-width: 420px) {
  .aaag-homepage-patch-01 .hero-grid-v2 {
    padding-top: 6px !important;
    gap: 12px !important;
  }

  .aaag-homepage-patch-01 .hero-copy-v2 h1 {
    font-size: clamp(34px, 9.6vw, 42px) !important;
    line-height: 1.1 !important;
  }

  .aaag-homepage-patch-01 .hero-action-line {
    font-size: clamp(18px, 5.3vw, 22px) !important;
  }

  .aaag-homepage-patch-01 .hero-subcopy {
    font-size: 13.5px !important;
  }

  .aaag-homepage-patch-01 .hero-proof-list p {
    font-size: 12px !important;
  }

  .aaag-homepage-patch-01 .question-panel-v2 {
    padding: 14px !important;
  }

  .aaag-homepage-patch-01 .details-grid {
    gap: 6px !important;
  }

  .aaag-homepage-patch-01 .ask-form input,
  .aaag-homepage-patch-01 .ask-form select {
    font-size: 12px !important;
  }
}

/* AAAG Homepage V1 - matches supplied production mockup */
html:has(.aaag-homepage-v1),
body:has(.aaag-homepage-v1) {
  background:
    radial-gradient(circle at 22% 8%, rgba(124, 0, 255, .22), transparent 24rem),
    radial-gradient(circle at 78% 16%, rgba(197, 255, 0, .06), transparent 22rem),
    #020309 !important;
  overflow-x: hidden;
}

body:has(.aaag-homepage-v1) > .site-header {
  display: none !important;
}

.aaag-homepage-v1 {
  width: min(1680px, calc(100% - 120px));
  margin: 0 auto;
  color: #fff;
  letter-spacing: 0;
  overflow-x: clip;
}

.aaag-homepage-v1,
.aaag-homepage-v1 * {
  box-sizing: border-box;
}

.aaag-homepage-v1 a {
  color: inherit;
}

.aaag-v1-header {
  position: relative;
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.aaag-v1-logo img {
  width: clamp(170px, 15vw, 245px);
  height: auto;
  display: block;
  max-width: 100%;
  filter: drop-shadow(0 0 24px rgba(146, 0, 255, .28));
}

.aaag-v1-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  font-size: 15px;
  font-weight: 800;
}

.aaag-v1-nav a {
  color: #fff;
  text-decoration: none;
}

.aaag-v1-auth-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.aaag-v1-auth-links a {
  color: #fff;
  text-decoration: none;
}

.aaag-v1-register {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 9px;
  padding: 0 19px;
  background: #cfff00;
  color: #07070a;
  box-shadow: 0 0 26px rgba(207, 255, 0, .18);
}

.aaag-v1-menu {
  display: none;
}

.aaag-v1-lang::before {
  content: "◎";
  margin-right: 6px;
}

.aaag-v1-hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 500px);
  gap: clamp(44px, 6.4vw, 108px);
  align-items: center;
  padding: 6px 0 46px;
}

.aaag-v1-hero-copy h1 {
  margin: 0;
  max-width: 760px;
  color: #fff;
  font-size: clamp(50px, 3.65vw, 70px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.aaag-v1-hero-copy h1 strong {
  color: #cfff00;
  font-style: italic;
  font-weight: 950;
  text-shadow: 0 0 28px rgba(207, 255, 0, .16);
}

.aaag-rotating-word {
  display: inline-grid;
  min-width: 5.6ch;
  color: #fff;
  vertical-align: bottom;
}

.aaag-rotating-word span {
  grid-area: 1 / 1;
  opacity: 0;
  animation: aaag-rotate-word 7.5s infinite;
}

.aaag-rotating-word span:nth-child(1) { opacity: 1; animation-delay: 0s; }
.aaag-rotating-word span:nth-child(2) { animation-delay: 2.5s; }
.aaag-rotating-word span:nth-child(3) { animation-delay: 5s; }

@keyframes aaag-rotate-word {
  0%, 28% { opacity: 1; transform: translateY(0); }
  34%, 100% { opacity: 0; transform: translateY(-8px); }
}

.aaag-v1-hero-copy > p {
  margin: 18px 0 0;
  max-width: 560px;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(20px, 1.75vw, 29px);
  line-height: 1.3;
  font-weight: 650;
}

.aaag-ask-highlight {
  color: #D7FF2F;
  font-weight: 1000;
}

.aaag-v1-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 590px;
  margin-top: 34px;
}

.aaag-v1-trust-mobile {
  display: none;
}

.aaag-trust-item {
  text-align: center;
}

.aaag-trust-item span {
  display: block;
  height: 48px;
  color: #b200ff;
  font-size: 42px;
  line-height: 1;
  text-shadow: 0 0 18px rgba(178, 0, 255, .35);
}

.aaag-trust-item span::before { content: ""; }
.aaag-icon-bolt span::before { content: "↯"; }
.aaag-icon-person span::before { content: "♙"; color: #cfff00; }
.aaag-icon-shield span::before { content: "♢"; }

.aaag-trust-title {
  margin: 8px 0 2px;
  font-size: 15px;
  line-height: 1.1;
  font-weight: 700;
}

.aaag-trust-item p {
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  line-height: 1.25;
}

.aaag-question-card {
  border: 1px solid rgba(111, 45, 255, .58);
  border-radius: 22px;
  padding: 28px 32px 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(111, 45, 255, .30), transparent 38%),
    radial-gradient(circle at 0 100%, rgba(215, 255, 47, .08), transparent 32%),
    linear-gradient(145deg, rgba(20, 19, 34, .95), rgba(8, 7, 13, .94));
  box-shadow: 0 30px 120px rgba(0, 0, 0, .42), 0 0 34px rgba(111, 45, 255, .16), 0 0 22px rgba(215, 255, 47, .06);
}

.aaag-start-note {
  margin: 0 0 22px;
  color: #fff;
  font-family: "Segoe Print", "Comic Sans MS", cursive;
  font-size: 26px;
  line-height: 1;
}

.aaag-start-note strong {
  color: #cfff00;
  font-weight: 900;
}

.aaag-start-note::before {
  content: none !important;
  display: none !important;
}

.aaag-v1-form {
  display: grid;
  gap: 11px !important;
}

.aaag-v1-form > label:first-child,
.aaag-v1-form .field label {
  position: absolute;
  left: -9999px;
}

.aaag-v1-form textarea,
.aaag-v1-form input,
.aaag-v1-form select {
  width: 100%;
  border: 0 !important;
  border-radius: 11px !important;
  background: #f5f4f7 !important;
  color: #17121c !important;
  font-weight: 650 !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 12px 34px rgba(0,0,0,.12) !important;
}

.aaag-v1-form textarea {
  min-height: 135px !important;
  padding: 24px !important;
  resize: vertical;
  font-size: 19px !important;
  line-height: 1.45 !important;
}

.aaag-v1-form textarea::placeholder {
  color: #77748a;
}

.aaag-v1-details {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
}

.aaag-province-field {
  grid-column: 1 / -1;
}

.aaag-v1-form input,
.aaag-v1-form select {
  min-height: 39px !important;
  padding: 0 12px !important;
  font-size: 12px !important;
}

.aaag-v1-consent {
  display: flex !important;
  align-items: center;
  gap: 8px;
  border: 0 !important;
  border-radius: 8px !important;
  padding: 0 !important;
  background: transparent !important;
  color: rgba(255,255,255,.76) !important;
  font-size: 11px !important;
  line-height: 1.25 !important;
}

.aaag-v1-consent input {
  width: 14px !important;
  height: 14px !important;
  min-height: auto !important;
  accent-color: #cfff00;
  box-shadow: none !important;
}

.aaag-v1-consent a {
  color: #cfff00;
}

.aaag-v1-form .submit-answer-btn {
  min-height: 70px !important;
  border: 0;
  border-radius: 10px !important;
  background: #cfff00 !important;
  color: #090909 !important;
  font-size: 25px !important;
  font-weight: 950 !important;
  letter-spacing: 0 !important;
  box-shadow: 0 16px 42px rgba(207,255,0,.2) !important;
}

.aaag-card-checks {
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.88);
  font-size: 15px;
}

.aaag-card-checks li::before {
  content: "✓";
  color: #cfff00;
  margin-right: 10px;
}

.aaag-v1-section {
  padding: 42px 0 0;
}

.aaag-section-kicker {
  margin: 0 0 10px;
  color: #b127ff;
  font-size: 14px;
  line-height: 1;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.aaag-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.aaag-section-head h2,
.aaag-v1-section > h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(31px, 2.5vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.aaag-section-head p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 17px;
}

.aaag-section-head a {
  color: #cfff00;
  font-weight: 900;
  white-space: nowrap;
}

.aaag-mentor-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.aaag-mentor-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(10,11,18,.96));
}

.aaag-mentor-placeholder {
  grid-column: 1 / -1;
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 9px;
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(10,11,18,.92));
  text-align: center;
}

.aaag-mentor-placeholder p {
  margin: 0;
  max-width: 560px;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 800;
}

.aaag-mentor-photo {
  aspect-ratio: 1.08 / .95;
  background: linear-gradient(145deg, #242631, #0c0d14);
  display: grid;
  place-items: center;
  position: relative;
}

.aaag-mentor-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.aaag-mentor-photo.is-missing::before {
  content: none !important;
  display: none !important;
}

.aaag-mentor-photo.is-missing img,
.aaag-mentor-photo img.aaag-neutral-fallback {
  width: 52%;
  height: 52%;
  object-fit: contain;
  opacity: .72;
}

.aaag-mentor-body {
  padding: 14px 14px 12px;
}

.aaag-mentor-body h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 15px;
  line-height: 1.15;
}

.aaag-mentor-body p {
  min-height: 36px;
  margin: 0 0 11px;
  color: rgba(255,255,255,.84);
  font-size: 12px;
  line-height: 1.28;
}

.aaag-mentor-body a {
  color: #cfff00;
  font-size: 30px;
  line-height: .8;
  font-weight: 950;
}

.aaag-business-library {
  max-width: 1180px;
}

.aaag-business-library .aaag-section-head h2 {
  letter-spacing: 0;
}

.aaag-library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.aaag-library-card {
  min-width: 0;
  min-height: 276px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 9px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.075), rgba(10,11,18,.94));
  box-shadow: 0 18px 60px rgba(0,0,0,.22);
}

.aaag-library-category {
  width: fit-content;
  margin: 0 0 9px;
  border: 1px solid rgba(207,255,0,.34);
  border-radius: 999px;
  padding: 5px 8px;
  color: #fff;
  font-size: 10px;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.aaag-library-location {
  margin: 0 0 13px;
  color: rgba(255,255,255,.72);
  font-size: 13px;
  line-height: 1.25;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.aaag-library-asked {
  min-height: 52px;
  margin: 0 0 6px;
  color: rgba(255,255,255,.82);
  font-size: 15px;
  line-height: 1.32;
  font-weight: 650;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.aaag-library-asked span {
  display: block;
  margin-bottom: 3px;
  color: #cfff00;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.aaag-library-answer-label {
  margin: 1px 0 2px;
  color: #cfff00;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.aaag-library-card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 21px;
  line-height: 1.22;
  letter-spacing: 0;
  font-weight: 950;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.aaag-library-title-link {
  color: inherit;
  text-decoration: none;
}

.aaag-library-title-link:hover {
  color: #cfff00;
}

.aaag-business-library .aaag-library-card a.aaag-library-read-link {
  width: fit-content;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  border: 1px solid rgba(207,255,0,.72);
  border-radius: 7px;
  background: transparent;
  padding: 0 15px;
  color: #cfff00;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
  box-shadow: none;
}

.aaag-business-library .aaag-library-card a.aaag-library-read-link:hover {
  background: rgba(207,255,0,.10);
  border-color: #cfff00;
  color: #cfff00;
}

.aaag-trending-topics {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.aaag-trending-topics h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.aaag-trending-topics nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.aaag-trending-topics a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 7px;
  padding: 0 13px;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 900;
}

.aaag-how {
  max-width: 1040px;
}

.aaag-how .aaag-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px;
  align-items: center;
  margin-top: 28px;
}

.aaag-step-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  position: relative;
}

.aaag-step-card:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -42px;
  top: 19px;
  color: #9a34ff;
  font-size: 36px;
}

.aaag-step-card b {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, #b527ff, #6d22ff);
  color: #fff;
  font-size: 25px;
}

.aaag-step-card h3 {
  margin: 2px 0 4px;
  font-size: 16px;
  line-height: 1.25;
}

.aaag-step-card p {
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 14px;
  line-height: 1.32;
}

.aaag-outline-link {
  width: 220px;
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 38px auto 0;
  border: 1px solid #cfff00;
  border-radius: 7px;
  color: #cfff00;
  font-weight: 900;
}

.aaag-pricing {
  text-align: center;
}

.aaag-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 22px;
  text-align: left;
}

.aaag-price-card {
  position: relative;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 26px 36px 22px;
  background: rgba(255,255,255,.035);
}

.aaag-price-card h3 {
  margin: 0 0 16px;
  font-size: 29px;
  font-weight: 650;
}

.aaag-price-card strong {
  display: block;
  font-size: 34px;
  line-height: 1;
}

.aaag-price-card strong span {
  font-size: 15px;
  font-weight: 500;
}

.aaag-price-card p {
  min-height: 42px;
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
}

.aaag-price-card a {
  min-height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfff00;
  border-radius: 7px;
  color: #cfff00;
  font-weight: 900;
}

.aaag-price-popular {
  border-color: #cfff00;
}

.aaag-price-popular em {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 0 0 5px 5px;
  padding: 5px 17px;
  background: #cfff00;
  color: #07070a;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
  text-transform: uppercase;
}

.aaag-price-popular a {
  background: #cfff00;
  color: #07070a;
}

.aaag-paystack-note {
  margin: 18px 0 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
}

.aaag-paystack-note::before {
  content: "▣";
  margin-right: 10px;
}

.aaag-faq-list {
  display: grid;
  gap: 7px;
}

.aaag-faq-item {
  border-radius: 7px;
  background: rgba(255,255,255,.055);
}

.aaag-faq-item summary {
  cursor: pointer;
  padding: 13px 18px;
  font-weight: 850;
}

.aaag-faq-item p {
  margin: 0;
  padding: 0 18px 15px;
  color: rgba(255,255,255,.78);
}

.aaag-v1-footer {
  margin: 34px 0 60px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.22);
  text-align: center;
}

.aaag-v1-footer > p {
  margin: 0 0 20px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.aaag-footer-logos {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  color: #fff;
}

.aaag-footer-logos span {
  min-height: 52px;
  display: grid;
  place-items: center;
  font-size: 24px;
  line-height: 1;
  font-weight: 900;
  opacity: .9;
}

.aaag-v1-footer nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 18px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
}

.aaag-mobile-ask {
  display: none;
}

@media (max-width: 1180px) and (min-width: 641px) {
  .aaag-library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .aaag-homepage-v1 {
    width: min(430px, calc(100% - 22px));
    max-width: calc(100vw - 22px);
  }

  .aaag-v1-header {
    min-height: 74px;
    padding-top: 10px;
    justify-content: space-between;
  }

  .aaag-v1-logo img {
    width: 116px;
  }

  .aaag-v1-nav a:not(.aaag-v1-lang) {
    display: none;
  }

  .aaag-v1-nav {
    gap: 14px;
    margin-left: auto;
  }

  .aaag-v1-nav::after {
    content: "☰";
    color: #fff;
    font-size: 27px;
    line-height: 1;
  }

  .aaag-v1-nav::after {
    display: none;
    content: none;
  }

  .aaag-v1-auth-links {
    display: none;
  }

  .aaag-v1-menu {
    display: block;
    position: relative;
    flex: 0 0 auto;
  }

  .aaag-v1-menu summary {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    cursor: pointer;
    list-style: none;
  }

  .aaag-v1-menu summary::-webkit-details-marker {
    display: none;
  }

  .aaag-v1-menu summary span,
  .aaag-v1-menu summary span::before,
  .aaag-v1-menu summary span::after {
    width: 21px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: #fff;
  }

  .aaag-v1-menu summary span {
    position: relative;
  }

  .aaag-v1-menu summary span::before,
  .aaag-v1-menu summary span::after {
    content: "";
    position: absolute;
    left: 0;
  }

  .aaag-v1-menu summary span::before {
    top: -7px;
  }

  .aaag-v1-menu summary span::after {
    top: 7px;
  }

  .aaag-v1-menu > div {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 10;
    width: min(250px, calc(100vw - 28px));
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 14px;
    background: rgba(8, 8, 13, .98);
    box-shadow: 0 22px 70px rgba(0,0,0,.48);
  }

  .aaag-v1-menu > div a {
    min-height: 38px;
    display: flex;
    align-items: center;
    border-radius: 9px;
    padding: 0 12px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
  }

  .aaag-v1-menu > div .aaag-v1-register {
    color: #07070a;
    justify-content: center;
  }

  .aaag-v1-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 12px 0 12px;
  }

  .aaag-v1-hero-copy {
    order: 1;
  }

  .aaag-question-card {
    order: 2;
  }

  .aaag-v1-trust-desktop {
    display: none;
  }

  .aaag-v1-trust-mobile {
    display: none;
    order: 3;
  }

  .aaag-v1-hero-copy h1 {
    font-size: clamp(32px, 7.7vw, 44px);
    line-height: 1.16;
    letter-spacing: -0.015em;
  }

  .aaag-v1-hero-copy > p {
    margin-top: 12px;
    max-width: 100%;
    font-size: 15px;
    line-height: 1.32;
  }

  .aaag-v1-trust {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 26px;
    max-width: 260px;
  }

  .aaag-trust-item {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    column-gap: 14px;
    text-align: left;
  }

  .aaag-trust-item span {
    grid-row: span 2;
    height: 38px;
    font-size: 32px;
  }

  .aaag-trust-title {
    font-size: 11px;
  }

  .aaag-trust-item p {
    font-size: 10px;
  }

  .aaag-question-card {
    width: 100%;
    max-width: 100%;
    padding: 18px 16px 20px;
    border-radius: 14px;
  }

  .aaag-start-note {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .aaag-v1-form {
    gap: 8px !important;
  }

  .aaag-v1-form textarea {
    min-height: 96px !important;
    padding: 16px !important;
    font-size: 12px !important;
  }

  .aaag-v1-details {
    gap: 6px !important;
    min-width: 0;
  }

  .aaag-v1-form input,
  .aaag-v1-form select {
    min-width: 0;
    min-height: 34px !important;
    padding: 0 9px !important;
    font-size: 10px !important;
  }

  .aaag-v1-consent {
    font-size: 9px !important;
  }

  .aaag-v1-form .submit-answer-btn {
    min-height: 54px !important;
    font-size: 20px !important;
  }

  .aaag-card-checks {
    margin-top: 14px;
    gap: 5px;
    font-size: 13px;
  }

  .aaag-v1-section {
    padding-top: 38px;
  }

  .aaag-section-head {
    display: block;
  }

  .aaag-section-head h2,
  .aaag-v1-section > h2 {
    font-size: 27px;
  }

  .aaag-section-head p {
    font-size: 14px;
  }

  .aaag-section-head a {
    display: inline-block;
    margin-top: 10px;
  }

  .aaag-mentor-grid {
    max-width: 100%;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    margin-left: -10px;
    margin-right: -10px;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-overflow-scrolling: touch;
  }

  .aaag-mentor-card {
    flex: 0 0 68%;
    max-width: 270px;
    scroll-snap-align: center;
    border-radius: 10px;
  }

  .aaag-mentor-placeholder {
    flex: 0 0 calc(100% - 20px);
    min-width: calc(100% - 20px);
    scroll-snap-align: center;
  }

  .aaag-library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .aaag-library-card {
    min-height: 0;
    padding: 19px;
  }

  .aaag-library-card h3 {
    font-size: 19px;
  }

  .aaag-how {
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 18px;
    padding: 28px 20px;
    margin-top: 34px;
  }

  .aaag-how .aaag-steps {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .aaag-step-card {
    grid-template-columns: 45px 1fr;
  }

  .aaag-step-card:not(:last-child)::after {
    content: "↓";
    left: 20px;
    right: auto;
    top: 48px;
    font-size: 26px;
  }

  .aaag-step-card b {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }

  .aaag-pricing-grid {
    grid-template-columns: 1fr;
  }

  .aaag-footer-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aaag-mobile-ask {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .aaag-library-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .aaag-homepage-v1 {
    width: calc(100% - 18px);
  }

  .aaag-v1-hero-copy h1 {
    font-size: 30px;
  }

  .aaag-v1-trust {
    gap: 8px;
  }

  .aaag-question-card {
    padding: 14px;
  }
}
