/* ── Reset mínimo ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── Promo Bar ────────────────────────────────────────────────────── */
.aa-promo-bar {
  background: linear-gradient(90deg, #1a3a8f 0%, #1C5BFE 50%, #1a3a8f 100%);
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
}
.aa-promo-bar.is-hidden { display: none; }
.aa-promo-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 8px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 48px 10px 24px;
  position: relative;
}
@media (min-width: 768px) { .aa-promo-bar-inner { padding: 10px 60px 10px 40px; } }
.aa-promo-bar-icon {
  flex-shrink: 0;
  display: flex; align-items: center;
  color: #FFD533;
}
.aa-promo-bar-text {
  text-align: center;
  color: rgba(255,255,255,.92);
}
.aa-promo-bar-text strong { color: #fff; font-weight: 700; }
.aa-promo-bar-close {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  color: rgba(255,255,255,.7);
  transition: color 150ms ease, background 150ms ease;
}
.aa-promo-bar-close:hover {
  color: #fff;
  background: rgba(255,255,255,.15);
}
@media (min-width: 768px) { .aa-promo-bar-close { right: 24px; } }

/* ── Tokens ───────────────────────────────────────────────────────── */
:root {
  --bg:          #FFFFFF;
  --bg-subtle:   #F7F8FA;
  --bg-card:     #FFFFFF;
  --border:      #E5E7EB;
  --ink:         #111827;
  --ink-muted:   #6B7280;
  --accent:      #1C5BFE;
  --accent-dark: #1547CC;
  --accent-light:#EEF2FF;
  --radius:      12px;
  --radius-sm:   8px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md:   0 4px 16px rgba(0,0,0,.08), 0 2px 6px rgba(0,0,0,.04);
}

/* ── Base ─────────────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 16px; line-height: 1.6;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

/* ── Container ────────────────────────────────────────────────────── */
.aa-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .aa-container { padding: 0 40px; } }

/* ── Buttons ──────────────────────────────────────────────────────── */
.aa-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; letter-spacing: .01em;
  border-radius: 9999px;
  transition: background 150ms ease, box-shadow 150ms ease, transform 120ms ease, color 150ms ease, border-color 150ms ease;
  white-space: nowrap;
}
.aa-btn:active { transform: translateY(1px); }

.aa-btn-sm  { font-size: 13px; padding: 7px 18px; }
.aa-btn-lg  { font-size: 15px; padding: 13px 28px; }

.aa-btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 8px rgba(28,91,254,.25);
}
.aa-btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 16px rgba(28,91,254,.32);
}

.aa-btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.aa-btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── Release chip (hero) ──────────────────────────────────────────── */
.aa-release-chip {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px;
  padding: 5px 12px;
  border-radius: 9999px;
  background: #F3F4F6;
  border: 1px solid var(--border);
  font-size: 12px; font-weight: 500;
  color: var(--ink-muted);
}
.aa-release-chip svg { flex-shrink: 0; color: var(--accent); }

/* ── Scroll reveal ────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease calc(var(--delay, 0s)), transform 500ms ease calc(var(--delay, 0s));
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navbar ───────────────────────────────────────────────────────── */
.aa-navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}
.aa-navbar.is-scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.aa-navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.aa-navbar-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700; color: var(--ink);
}
.aa-navbar-logo:hover { color: var(--accent); }

/* ── Hero ─────────────────────────────────────────────────────────── */
.aa-hero {
  padding: 80px 0 72px;
  text-align: center;
  background: var(--bg);
}
@media (min-width: 768px) { .aa-hero { padding: 100px 0 88px; } }

.aa-badge {
  display: inline-flex; align-items: center;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 11px; font-weight: 700; letter-spacing: .07em;
  background: var(--accent-light);
  color: var(--accent);
  border: 1px solid rgba(28,91,254,.2);
  margin-bottom: 24px;
}

.aa-hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.12;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto 20px;
}

.aa-hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--ink-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.aa-hero-ctas {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px;
}

/* ── Section base ─────────────────────────────────────────────────── */
.aa-section { padding: 72px 0; }
@media (min-width: 768px) { .aa-section { padding: 96px 0; } }

.aa-section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800; letter-spacing: -.02em;
  color: var(--ink);
  text-align: center;
  margin-bottom: 48px;
}

/* ── Upgrade Banner ───────────────────────────────────────────────── */
.aa-upgrade-wrap {
  padding: 0 0 40px;
  background: var(--bg-subtle);
}

.aa-upgrade-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 36px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  box-shadow: 0 4px 24px rgba(5,150,105,.28), 0 1px 4px rgba(5,150,105,.15);
}
@media (max-width: 767px) {
  .aa-upgrade-card { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 20px; }
}

.aa-upgrade-icon {
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
}

.aa-upgrade-body {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: 4px;
}

.aa-upgrade-eyebrow {
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  color: rgba(255,255,255,.7);
}

.aa-upgrade-title {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 800; letter-spacing: -.01em;
  color: #fff;
}

.aa-upgrade-desc {
  font-size: 13.5px; line-height: 1.6;
  color: rgba(255,255,255,.82);
  margin-top: 2px;
}

.aa-upgrade-cta {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: 9999px;
  background: #fff;
  color: #047857;
  font-size: 14px; font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: background 150ms ease, box-shadow 150ms ease, gap 150ms ease;
  white-space: nowrap;
}
.aa-upgrade-cta:hover {
  background: #F0FDF4;
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
  gap: 12px;
}

/* ── AI Section ───────────────────────────────────────────────────── */
.aa-ai-section { background: var(--bg-subtle); }

.aa-ai-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}


.aa-ai-title {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.15;
  color: var(--ink);
  margin-bottom: 12px;
}

.aa-ai-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}

.aa-ai-desc {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.7;
}

.aa-ai-providers {
  display: inline-flex; align-items: center;
  flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
  padding: 9px 20px;
  border: 1px solid var(--border);
  border-radius: 9999px;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}
.aa-ai-providers-label {
  font-size: 12px; font-weight: 500;
  color: var(--ink-muted);
}
.aa-ai-providers-divider {
  width: 1px; height: 14px;
  background: var(--border);
  flex-shrink: 0;
}
.aa-ai-provider {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 500;
  color: var(--ink);
}
.aa-ai-providers-more {
  font-size: 12px; color: var(--ink-muted);
  font-style: italic;
}

.aa-ai-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .aa-ai-cards { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

.aa-ai-card {
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 16px;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-top-width: 3px;
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.aa-ai-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.aa-ai-card--blue   { border-top-color: var(--accent); }
.aa-ai-card--violet { border-top-color: #7C3AED; }

.aa-ai-card-ghost {
  position: absolute;
  bottom: -16px; right: -16px;
  pointer-events: none;
  flex-shrink: 0;
}
.aa-ai-card--blue   .aa-ai-card-ghost { color: var(--accent);   opacity: .05; }
.aa-ai-card--violet .aa-ai-card-ghost { color: #7C3AED;          opacity: .05; }

.aa-ai-card-top { display: flex; }

.aa-ai-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px;
  border-radius: 9999px;
  font-size: 10px; font-weight: 700; letter-spacing: .06em;
}
.aa-ai-badge--blue   { background: rgba(28,91,254,.12);  color: #1C5BFE; border: 1px solid rgba(28,91,254,.2); }
.aa-ai-badge--violet { background: rgba(109,40,217,.10); color: #7C3AED; border: 1px solid rgba(109,40,217,.2); }

.aa-ai-card-title {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 700; letter-spacing: -.01em; line-height: 1.25;
  color: var(--ink);
}

.aa-ai-card-desc {
  font-size: 14px; color: var(--ink-muted); line-height: 1.65;
}

.aa-check-list--violet li svg { color: #7C3AED; }

.aa-ai-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px; font-weight: 700;
  transition: gap 150ms ease;
}
.aa-ai-card-link--blue   { color: #1C5BFE; }
.aa-ai-card-link--violet { color: #7C3AED; }
.aa-ai-card-link:hover { gap: 10px; }

/* ── Showcase section (steps + screenshots) ───────────────────────── */
.aa-showcase-section { background: var(--bg-subtle); }

.aa-showcase-heading {
  text-align: center;
  margin-bottom: 48px;
}
.aa-showcase-intro {
  font-size: 16px; color: var(--ink-muted); line-height: 1.65;
  margin-top: -32px;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
}

/* Layout: sidebar + screen */
.aa-showcase-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 900px) {
  .aa-showcase-layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}

/* Step list sidebar */
.aa-step-list {
  display: flex; flex-direction: column; gap: 8px;
  flex-shrink: 0;
}
@media (min-width: 900px) { .aa-step-list { width: 300px; } }

.aa-step-tab {
  display: flex; align-items: flex-start; gap: 14px;
  width: 100%; padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: var(--radius-sm);
  text-align: left; cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}
.aa-step-tab:hover { border-color: var(--border); border-left-color: rgba(28,91,254,.35); box-shadow: var(--shadow-sm); }
.aa-step-tab.is-active {
  border-color: var(--border);
  border-left-color: var(--accent);
  background: var(--accent-light);
  box-shadow: var(--shadow-sm);
}

.aa-step-tab-num {
  font-size: 11px; font-weight: 800; letter-spacing: .07em;
  color: var(--accent); opacity: .55;
  padding-top: 2px; flex-shrink: 0;
  transition: opacity 180ms ease;
}
.aa-step-tab.is-active .aa-step-tab-num { opacity: 1; }

.aa-step-tab-body {
  display: flex; flex-direction: column; gap: 4px; flex: 1;
}
.aa-step-tab-body strong {
  font-size: 13.5px; font-weight: 700; color: var(--ink); line-height: 1.3;
}
.aa-step-tab-body span {
  font-size: 12px; color: var(--ink-muted); line-height: 1.45;
}

.aa-step-tab-arrow {
  flex-shrink: 0; margin-top: 2px;
  color: var(--ink-muted); opacity: 0;
  transition: opacity 180ms ease;
}
.aa-step-tab.is-active .aa-step-tab-arrow { opacity: 1; color: var(--accent); }

/* Screen area */
.aa-screen-area { flex: 1; min-width: 0; }

.aa-screen { display: none; }
.aa-screen.is-active {
  display: block;
  animation: aa-screen-fade 240ms ease;
}
@keyframes aa-screen-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Browser frame */
.aa-browser-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: var(--bg-card);
}

.aa-browser-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 16px;
  background: #F3F4F6;
  border-bottom: 1px solid var(--border);
}

.aa-browser-dots {
  display: flex; gap: 6px; flex-shrink: 0;
}
.aa-browser-dots span {
  width: 10px; height: 10px; border-radius: 50%;
  background: #D1D5DB;
}
.aa-browser-dots span:nth-child(1) { background: #FC615D; }
.aa-browser-dots span:nth-child(2) { background: #FDBC40; }
.aa-browser-dots span:nth-child(3) { background: #34C749; }

.aa-browser-url-bar {
  flex: 1; height: 24px;
  background: #E5E7EB;
  border-radius: 9999px;
  max-width: 360px;
}

.aa-browser-body { line-height: 0; }
.aa-screen-img {
  width: 100%; height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}
#aa-screen-0 .aa-browser-body,
#aa-screen-1 .aa-browser-body,
#aa-screen-2 .aa-browser-body { aspect-ratio: 16 / 9; overflow: hidden; }
#aa-screen-0 .aa-screen-img,
#aa-screen-1 .aa-screen-img   { width: 140%; max-width: 140%; height: 100%; aspect-ratio: unset; object-position: top left; }
#aa-screen-2 .aa-screen-img   { width: 100%; max-width: 100%; height: 100%; aspect-ratio: unset; object-position: top left; }

/* ── Tilt cards ───────────────────────────────────────────────────── */
.aa-tilt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 600px) { .aa-tilt-grid { grid-template-columns: repeat(3, 1fr); } }

.aa-tilt-card {
  display: flex; flex-direction: column; align-items: flex-start; gap: 16px;
  padding: 28px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  cursor: default;
  will-change: transform;
  transform-style: preserve-3d;
  transition: box-shadow 300ms ease;
}
.aa-tilt-card:hover {
  box-shadow: 0 16px 40px rgba(0,0,0,.10), 0 2px 8px rgba(0,0,0,.05);
}

/* Card 1 — cobalt */
.aa-tilt-card:nth-child(1) {
  background: #EEF2FF;
  border-color: rgba(28,91,254,.18);
}
.aa-tilt-card:nth-child(1) .aa-tilt-card-icon {
  background: rgba(28,91,254,.12);
  border-color: rgba(28,91,254,.2);
  color: #1C5BFE;
}
.aa-tilt-card:nth-child(1):hover { box-shadow: 0 16px 40px rgba(28,91,254,.12), 0 2px 8px rgba(28,91,254,.08); }

/* Card 2 — violet */
.aa-tilt-card:nth-child(2) {
  background: #F5F3FF;
  border-color: rgba(109,40,217,.18);
}
.aa-tilt-card:nth-child(2) .aa-tilt-card-icon {
  background: rgba(109,40,217,.10);
  border-color: rgba(109,40,217,.2);
  color: #7C3AED;
}
.aa-tilt-card:nth-child(2):hover { box-shadow: 0 16px 40px rgba(109,40,217,.10), 0 2px 8px rgba(109,40,217,.07); }

/* Card 3 — emerald */
.aa-tilt-card:nth-child(3) {
  background: #ECFDF5;
  border-color: rgba(16,185,129,.18);
}
.aa-tilt-card:nth-child(3) .aa-tilt-card-icon {
  background: rgba(16,185,129,.10);
  border-color: rgba(16,185,129,.2);
  color: #059669;
}
.aa-tilt-card:nth-child(3):hover { box-shadow: 0 16px 40px rgba(16,185,129,.10), 0 2px 8px rgba(16,185,129,.07); }

.aa-tilt-card-icon {
  display: flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  border: 1px solid transparent;
  flex-shrink: 0;
}
.aa-tilt-card-icon i,
.aa-tilt-card-icon svg {
  width: 22px; height: 22px;
  stroke-width: 1.75;
}

.aa-tilt-card-text {
  font-size: 14px; font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
}

/* ── Details section ──────────────────────────────────────────────── */
.aa-details-section { background: var(--bg); }

.aa-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .aa-details { grid-template-columns: 1fr 1fr; gap: 72px; }
}

.aa-details-left  { display: flex; flex-direction: column; gap: 20px; }
.aa-details-right { display: flex; flex-direction: column; }

.aa-details-label {
  font-size: 11px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--accent);
}
.aa-details-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800; letter-spacing: -.02em; line-height: 1.2;
  color: var(--ink);
}
.aa-details-desc {
  font-size: 15px; color: var(--ink-muted); line-height: 1.7;
}

.aa-check-list {
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 4px;
}
.aa-check-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink-muted); line-height: 1.5;
}
.aa-check-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }

.aa-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.aa-img {
  width: 100%; height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.aa-img--square { aspect-ratio: 1 / 1; object-fit: contain; }

/* ── FK Compare widget ────────────────────────────────────────────── */
.aa-fk-compare {
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 599px) {
  .aa-fk-compare { flex-direction: column; }
  .aa-fk-arrow { transform: rotate(90deg); }
}

.aa-fk-panel {
  flex: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  background: var(--bg-card);
}

.aa-fk-panel--after {
  border-color: rgba(16,185,129,.3);
}

.aa-fk-panel-header {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: #F9FAFB;
  border-bottom: 1px solid var(--border);
  font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  color: var(--ink-muted);
}
.aa-fk-panel--after .aa-fk-panel-header {
  background: #F0FDF4;
  border-bottom-color: rgba(16,185,129,.2);
  color: #065F46;
}

.aa-fk-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.aa-fk-dot--red   { background: #EF4444; }
.aa-fk-dot--green { background: #10B981; }

.aa-fk-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.aa-fk-table th {
  padding: 7px 10px;
  text-align: left;
  font-size: 11px; font-weight: 600;
  color: var(--ink-muted);
  background: #FAFAFA;
  border-bottom: 1px solid var(--border);
}
.aa-fk-table td {
  padding: 8px 10px;
  color: var(--ink);
  border-bottom: 1px solid #F3F4F6;
}
.aa-fk-table tbody tr:last-child td { border-bottom: none; }

.aa-fk-col-bad  { color: #DC2626 !important; }
.aa-fk-col-good { color: #059669 !important; }
.aa-fk-val-bad  { color: #9CA3AF; font-family: monospace; font-size: 13px; }
.aa-fk-val-good { color: #059669; font-weight: 600; }

.aa-fk-arrow {
  flex-shrink: 0;
  color: var(--ink-muted);
  opacity: .45;
}

/* ── CTA section ──────────────────────────────────────────────────── */
.aa-cta-section { background: var(--bg-subtle); }

.aa-cta-card {
  background: var(--accent);
  border-radius: 20px;
  padding: 56px 40px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(28,91,254,.25);
}
@media (min-width: 768px) { .aa-cta-card { padding: 72px 80px; } }

.aa-cta-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800; letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 12px;
}
.aa-cta-desc {
  font-size: 16px; color: rgba(255,255,255,.8);
  margin-bottom: 32px; line-height: 1.6;
}
.aa-cta-btns {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 12px;
}
.aa-cta-card .aa-btn-primary {
  background: #fff; color: var(--accent);
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
}
.aa-cta-card .aa-btn-primary:hover {
  background: #F0F4FF; color: var(--accent-dark);
}
.aa-cta-card .aa-btn-ghost {
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.aa-cta-card .aa-btn-ghost:hover {
  border-color: #fff; color: #fff;
  background: rgba(255,255,255,.1);
}

/* ── Footer ───────────────────────────────────────────────────────── */
.aa-footer {
  padding: 20px 0 28px;
  border-top: 1px solid var(--border);
  background: var(--bg);
}
.aa-footer-release-bar {
  display: flex; justify-content: center;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.aa-footer-release {
  font-size: 12px; font-weight: 500;
  color: var(--ink-muted);
  letter-spacing: .01em;
}
.aa-footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.aa-footer-rights { font-size: 13px; color: var(--ink-muted); }
.aa-footer-links  { display: flex; gap: 20px; }
.aa-footer-links a {
  font-size: 13px; color: var(--ink-muted);
  transition: color 150ms ease;
}
.aa-footer-links a:hover { color: var(--accent); }
