:root {
  --font-brand: 'Outfit', sans-serif;
  --ink: #0D1117;
  --navy-deep: #0F2D5E;
  --cobalt: #1A4FA0;
  --off-white: #F7F8FA;
  --crimson: #D91A4A;
  --crimson-bright: #F0204F;
  --amber: #F5A800;
  --ink-soft: #1C2333;
  --cloud: #EEF1F6;
  --mist: #D5DCE8;
  --slate: #5C6880;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-brand);
  background: var(--off-white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* { box-sizing: border-box; }

.nav-dropdown .dropdown-menu{opacity:0;visibility:hidden;transform:translateY(8px);transition:all .25s ease}.nav-dropdown:hover .dropdown-menu{opacity:1;visibility:visible;transform:translateY(0)}.nav-dropdown:hover .dropdown-chevron{transform:rotate(180deg)}

.aa-shell { background: var(--off-white); }
.aa-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(13,17,23,0.98), rgba(15,45,94,0.94));
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.aa-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(245,168,0,0.18), transparent 25%), radial-gradient(circle at bottom left, rgba(26,79,160,0.24), transparent 30%);
}

.aa-hero .aa-hero-inner {
  position: relative;
  z-index: 1;
}

.aa-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  border: 1px solid rgba(217,26,74,0.6);
  color: #ffffff;
  background: var(--crimson);
  padding: 0.55rem 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.aa-title {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 400;
  color: #ffffff;
}

.aa-intro {
  margin: 1.5rem 0 0;
  max-width: 44rem;
  font-size: 1.12rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
}

.aa-h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--ink);
}

.aa-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.aa-benefit {
  padding: 1.75rem;
}

.aa-benefit h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
}

.aa-benefit p {
  margin: 0;
  color: var(--slate);
  line-height: 1.65;
}

.aa-subtitle {
  margin: 1.25rem 0 0;
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  line-height: 1.35;
  color: rgba(255,255,255,0.78);
}

.aa-subtitle-logo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.5em;
  row-gap: 0.4em;
}

.aa-platform-logo {
  height: 1em;
  width: auto;
  flex-shrink: 0;
}

.aa-cta-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--crimson);
  color: #ffffff;
  border-radius: 9999px;
  padding: 1rem 1.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(217,26,74,0.25);
}

.aa-cta-primary:hover {
  background: var(--crimson-bright);
  transform: translateY(-1px);
}

.aa-care {
  margin-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  color: rgba(255,255,255,0.8);
  padding: 0.7rem 1rem;
  font-size: 0.92rem;
}

.aa-section {
  padding: 5rem 1.5rem;
}

.aa-band {
  background: var(--cloud);
}

.aa-card {
  background: #ffffff;
  border: 1px solid rgba(13,17,23,0.08);
  border-radius: 1.5rem;
  box-shadow: 0 18px 38px rgba(13,17,23,0.04);
}

.aa-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(13,17,23,0.08);
  border-radius: 1.5rem;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(13,17,23,0.04);
}

.aa-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  border-spacing: 0;
}

.aa-table thead th {
  background: var(--navy-deep);
  color: #ffffff;
  text-align: left;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 1.2rem;
  font-weight: 700;
}

.aa-table th,
.aa-table td {
  border-bottom: 1px solid rgba(13,17,23,0.08);
  padding: 1rem 1.2rem;
  vertical-align: top;
}

.aa-table tbody tr:last-child th,
.aa-table tbody tr:last-child td {
  border-bottom: none;
}

.aa-table tbody tr:nth-child(odd) td,
.aa-table tbody tr:nth-child(odd) th {
  background: rgba(247,248,250,0.8);
}

.aa-table tbody tr.report-row td,
.aa-table tbody tr.report-row th {
  background: rgba(13,17,23,0.96);
  color: #ffffff;
}

.aa-table tbody tr.report-row td {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.aa-step-name {
  font-weight: 700;
  color: var(--ink);
}

.aa-table .report-row .aa-step-name {
  color: #ffffff;
}

.aa-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-top: 1.5rem;
}

.aa-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--slate);
  font-size: 0.96rem;
  font-weight: 600;
}

.aa-badge {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}

.aa-badge-8p {
  background: var(--amber);
  color: var(--ink);
}

.aa-badge-e {
  background: var(--cobalt);
  color: #ffffff;
}

.aa-badge-ps {
  background: #ffffff;
  color: var(--ink);
  border-color: rgba(13,17,23,0.15);
}

.aa-footnote {
  margin-top: 1rem;
  color: var(--slate);
  font-size: 0.96rem;
}

.aa-cta-band {
  background: var(--ink);
  color: #ffffff;
  border-radius: 1.5rem;
  padding: 3.2rem 1.5rem;
  text-align: center;
  box-shadow: 0 24px 48px rgba(13,17,23,0.12);
}

.aa-cta-band h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.aa-cta-band p {
  margin: 1rem auto 0;
  max-width: 42rem;
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
  line-height: 1.7;
}

.aa-cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  padding: 1rem 1.8rem;
  margin-top: 1.75rem;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  transition: background 0.2s ease, transform 0.2s ease;
}

.aa-cta-secondary:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

.aa-muted {
  color: var(--slate);
}

.aa-label {
  display: inline-block;
  color: var(--ink);
  background: rgba(26,79,160,0.08);
  border: 1px solid rgba(26,79,160,0.12);
  border-radius: 9999px;
  padding: 0.5rem 0.9rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.aa-placeholder {
  background: rgba(26,79,160,0.06);
  border: 1px solid rgba(26,79,160,0.12);
  color: var(--navy-deep);
  border-radius: 1rem;
  padding: 1rem 1.1rem;
  font-size: 0.96rem;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .aa-section {
    padding: 4rem 1rem;
  }

  .aa-table-wrap {
    border-radius: 1.1rem;
  }

  .aa-table {
    min-width: 0;
  }

  .aa-table,
  .aa-table thead,
  .aa-table tbody,
  .aa-table th,
  .aa-table td,
  .aa-table tr {
    display: block;
    width: 100%;
  }

  .aa-table thead {
    display: none;
  }

  .aa-table tr {
    padding: 0.75rem;
    border: 1px solid rgba(13,17,23,0.08);
    border-radius: 1rem;
    margin-bottom: 0.85rem;
    background: #ffffff;
  }

  .aa-table tr.report-row {
    background: rgba(13,17,23,0.96);
    border-color: rgba(255,255,255,0.08);
  }

  .aa-table th,
  .aa-table td {
    border: none;
    padding: 0.35rem 0;
  }

  .aa-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.72rem;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 0.4rem;
    font-weight: 700;
  }

  .aa-table tr.report-row td::before {
    color: rgba(255,255,255,0.72);
  }

  .aa-legend {
    justify-content: flex-start;
  }
}
