/* ============================================================
   ACTIVE Academy — flagship sales page
   Light mode only · Active Vision tokens · Instrument Sans
   Editorial Dovetail restraint · subtle motion
   ============================================================ */

/* ---------- Tokens (BRAND.md) ---------- */
:root {
  --av-gold:       #fcb813;
  --av-gold-soft:  #fdf4dd;
  --av-orange:     #f05a22;
  --av-blue:       #0088cf;
  --av-ink:        #1a1a18;
  --av-text:       #3d3d3a;
  --av-caption:    #8a877e;
  --av-cream:      #f7f5f0;
  --av-warm-white: #fdfcf9;
  --av-sand:       #ece9e1;

  --f-display: "Instrument Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --f-body:    "Instrument Sans", ui-sans-serif, system-ui, -apple-system, sans-serif;

  --max-w:    1180px;
  --max-w-narrow: 760px;
  --radius:   8px;
  --radius-card: 12px;
  --ease:     cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--av-cream);
  color: var(--av-text);
  font: 400 17px/1.65 var(--f-body);
  font-feature-settings: "ss01", "ss02", "cv11";
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:hover { color: var(--av-blue); }
::selection { background: var(--av-gold); color: var(--av-ink); }

h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--av-ink);
  margin: 0;
}
h1 em, h2 em, h3 em { font-style: normal; color: var(--av-gold); font-weight: 600; }
p { margin: 0 0 1em; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.container.narrow { max-width: var(--max-w-narrow); }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--av-caption);
  margin-bottom: 1.25rem;
}
.eyebrow--light { color: rgba(253, 252, 249, 0.7); }

.display {
  font-size: clamp(2rem, 4.2vw, 2.875rem);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.display--light { color: var(--av-warm-white); }
h2.display { font-size: clamp(1.9rem, 4vw, 2.625rem); }

.lead {
  font-size: 1.1875rem;
  line-height: 1.6;
  color: var(--av-text);
  max-width: 64ch;
  text-wrap: pretty;
}
.lead--light { color: rgba(253, 252, 249, 0.85); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 16px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 200ms var(--ease),
              border-color 200ms var(--ease),
              color 200ms var(--ease);
  white-space: nowrap;
}
.btn:focus-visible {
  outline: 2px solid var(--av-gold);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--av-gold);
  color: var(--av-ink);
  border-color: var(--av-gold);
}
.btn--primary:hover {
  background: #e8a90c;
  border-color: #e8a90c;
  color: var(--av-ink);
}
.btn--outline {
  background: transparent;
  color: var(--av-ink);
  border-color: var(--av-sand);
}
.btn--outline:hover {
  background: var(--av-warm-white);
  border-color: var(--av-ink);
  color: var(--av-ink);
}
.btn--dark-invert {
  background: var(--av-warm-white);
  color: var(--av-ink);
  border-color: var(--av-warm-white);
}
.btn--dark-invert:hover {
  background: var(--av-gold);
  border-color: var(--av-gold);
  color: var(--av-ink);
}
.btn--lg { padding: 20px 36px; font-size: 1rem; }

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 2rem 0 0;
}

/* ============================================================
   PUBLIC HEADER
   ============================================================ */
.ph {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--av-cream) 90%, transparent);
  backdrop-filter: saturate(1.1) blur(14px);
  -webkit-backdrop-filter: saturate(1.1) blur(14px);
  border-bottom: 1px solid var(--av-sand);
}
.ph__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.ph__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--av-ink);
  text-decoration: none;
  font-size: 1rem;
}
.ph__logo em { font-style: normal; color: var(--av-caption); font-weight: 500; }
.ph__logo-mark {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--av-gold) 0%, #e8a90c 100%);
  display: inline-block;
  position: relative;
}
.ph__logo-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 2px;
  background: var(--av-ink);
}
.ph__nav {
  display: flex;
  gap: 28px;
  margin-left: auto;
  margin-right: 16px;
}
.ph__nav a {
  font-size: 0.9375rem;
  color: var(--av-text);
  text-decoration: none;
  transition: color 200ms var(--ease);
}
.ph__nav a:hover { color: var(--av-ink); }
.ph__cta { padding: 12px 22px; }

@media (max-width: 880px) {
  .ph__nav { display: none; }
  .ph__cta { margin-left: auto; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--av-sand);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--av-gold-soft) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0.6;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
}
.hero__copy { max-width: 580px; }
.hero__copy h1 { margin-bottom: 1.5rem; }
.hero__copy .lead { max-width: 52ch; margin-bottom: 0; }
.hero__facts {
  list-style: none;
  padding: 0;
  margin: 3rem 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
}
.hero__facts li {
  border-left: 2px solid var(--av-gold);
  padding-left: 14px;
}
.hero__facts strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--av-ink);
  margin-bottom: 4px;
}
.hero__facts span {
  display: block;
  font-size: 0.875rem;
  color: var(--av-caption);
  line-height: 1.45;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--av-warm-white);
  border: 1px solid var(--av-sand);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 24px 64px -28px rgba(26, 26, 24, 0.25);
}
.hero__portrait {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 26, 24, 0) 30%, rgba(26, 26, 24, 0.7) 100%),
    linear-gradient(135deg, #ece9e1 0%, #d8d2c2 50%, #b8ad95 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
}
.hero__portrait-inner {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253, 252, 249, 0.95);
  color: var(--av-ink);
  border-radius: 999px;
  padding: 6px 14px 6px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--av-gold);
  box-shadow: 0 0 0 3px rgba(252, 184, 19, 0.25);
}
.hero__portrait-text {
  color: var(--av-warm-white);
}
.hero__portrait-eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.85;
}
.hero__portrait-line {
  display: block;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.0625rem;
  line-height: 1.4;
  font-style: italic;
}

@media (max-width: 960px) {
  .hero { padding: 56px 0 72px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { max-width: 480px; }
  .hero__facts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .hero__facts { grid-template-columns: 1fr; gap: 1rem; }
}

/* ============================================================
   PROOF BAR
   ============================================================ */
.proofbar {
  background: var(--av-warm-white);
  border-bottom: 1px solid var(--av-sand);
  padding: 56px 0;
}
.proofbar__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.proofbar__grid li {
  text-align: left;
  border-left: 1px solid var(--av-sand);
  padding-left: 24px;
}
.proofbar__grid li:first-child {
  border-left-color: var(--av-gold);
  border-left-width: 2px;
}
.proofbar__metric {
  display: block;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--av-ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  font-variant-numeric: tabular-nums;
}
.proofbar__label {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--av-text);
}
@media (max-width: 880px) {
  .proofbar__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}
@media (max-width: 480px) {
  .proofbar__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 100px 0; }
.section--cream { background: var(--av-cream); }
.section + .section { border-top: 1px solid var(--av-sand); }
.section__header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section__header .lead { margin: 0 auto; }

/* ---------- Split layout (outcomes) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.split__copy { position: sticky; top: 100px; }
.split__copy .lead { margin-bottom: 0; }
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.checklist li {
  background: var(--av-warm-white);
  border: 1px solid var(--av-sand);
  border-radius: var(--radius-card);
  padding: 22px 24px 22px 60px;
  position: relative;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}
.checklist li:hover {
  border-color: var(--av-ink);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 26px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--av-gold-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%231a1a18' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.checklist strong { color: var(--av-ink); }

@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split__copy { position: static; }
}

/* ============================================================
   AUDIENCE
   ============================================================ */
.audience {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.audience__card {
  background: var(--av-warm-white);
  border: 1px solid var(--av-sand);
  border-radius: var(--radius-card);
  padding: 32px;
  position: relative;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.audience__card:hover {
  border-color: var(--av-ink);
  transform: translateY(-2px);
}
.audience__num {
  display: inline-block;
  font-family: var(--f-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--av-gold);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.audience__card h3 {
  font-size: 1.375rem;
  margin-bottom: 10px;
}
.audience__card p {
  font-size: 1rem;
  color: var(--av-text);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 720px) {
  .audience { grid-template-columns: 1fr; }
}

/* ============================================================
   CURRICULUM
   ============================================================ */
.curriculum {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: none;
  display: flex;
  flex-direction: column;
}
.curriculum__item {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  padding: 36px 0;
  border-top: 1px solid var(--av-sand);
  position: relative;
}
.curriculum__item:first-child { border-top: 1px solid var(--av-ink); }
.curriculum__item:last-child { border-bottom: 1px solid var(--av-sand); }
.curriculum__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.curriculum__num {
  font-family: var(--f-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--av-gold);
}
.curriculum__head h3 {
  font-size: 1.5rem;
  line-height: 1.2;
}
.curriculum__item p {
  font-size: 1.0625rem;
  color: var(--av-text);
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 64ch;
}
.curriculum__output {
  display: inline-block;
  padding: 6px 12px;
  background: var(--av-gold-soft);
  color: var(--av-ink);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
}
@media (max-width: 720px) {
  .curriculum__item { grid-template-columns: 1fr; gap: 16px; }
}

/* ============================================================
   USE CASES
   ============================================================ */
.usecases {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.usecase {
  background: var(--av-warm-white);
  border: 1px solid var(--av-sand);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
  position: relative;
}
.usecase:hover {
  border-color: var(--av-ink);
  background: var(--av-warm-white);
}
.usecase__icon {
  display: inline-flex;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--av-gold-soft);
  color: var(--av-ink);
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}
.usecase h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
.usecase p {
  font-size: 0.9375rem;
  color: var(--av-text);
  margin: 0;
  line-height: 1.55;
}
@media (max-width: 900px) { .usecases { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .usecases { grid-template-columns: 1fr; } }

/* ============================================================
   INSTRUCTORS
   ============================================================ */
.instructors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.instructor {
  background: var(--av-warm-white);
  border: 1px solid var(--av-sand);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.instructor__portrait {
  aspect-ratio: 4 / 3;
  position: relative;
  background: linear-gradient(135deg, #f5f1e6 0%, #ece9e1 100%);
  overflow: hidden;
}
.instructor__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
  transition: transform 600ms var(--ease-out);
}
.instructor:hover .instructor__photo { transform: scale(1.03); }
.instructor__caption {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(253, 252, 249, 0.95);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--av-ink);
}
.instructor__copy {
  padding: 28px 32px 32px;
}
.instructor__copy h3 {
  font-size: 1.75rem;
  margin-bottom: 4px;
}
.instructor__role {
  font-size: 0.9375rem;
  color: var(--av-gold);
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.instructor__copy p {
  font-size: 1rem;
  color: var(--av-text);
  line-height: 1.6;
  margin: 0 0 22px;
}

.logo-strip {
  border-top: 1px solid var(--av-sand);
  padding-top: 18px;
}
.logo-strip__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--av-caption);
  margin-bottom: 12px;
}
.logo-strip__items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.logo-chip {
  display: inline-flex;
  align-items: center;
  background: var(--av-cream);
  border: 1px solid var(--av-sand);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--av-text);
  font-family: var(--f-display);
  white-space: nowrap;
}
.logo-chip--lg {
  padding: 10px 18px;
  font-size: 0.9375rem;
}
@media (max-width: 720px) {
  .instructors { grid-template-columns: 1fr; }
}

/* ============================================================
   TOOL STACK
   ============================================================ */
.toolstack {
  background: var(--av-warm-white);
  border-top: 1px solid var(--av-sand);
  border-bottom: 1px solid var(--av-sand);
  padding: 48px 0;
}
.toolstack__label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--av-caption);
  margin-bottom: 24px;
}
.toolstack__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--av-warm-white);
  border: 1px solid var(--av-sand);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: border-color 200ms var(--ease);
}
.testimonial:hover { border-color: var(--av-ink); }
.testimonial::before {
  content: "“";
  position: absolute;
  top: 12px;
  right: 24px;
  font-family: Georgia, serif;
  font-size: 64px;
  line-height: 1;
  color: var(--av-gold);
  opacity: 0.6;
}
.testimonial blockquote {
  font-family: var(--f-display);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--av-ink);
  margin: 0;
  letter-spacing: -0.005em;
}
.testimonial cite {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--av-caption);
  font-style: normal;
  margin-top: auto;
}
@media (max-width: 960px) { .testimonials { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .testimonials { grid-template-columns: 1fr; } }

/* ============================================================
   PLANS
   ============================================================ */
.plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.plan {
  background: var(--av-warm-white);
  border: 1px solid var(--av-sand);
  border-radius: var(--radius-card);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: border-color 200ms var(--ease), transform 200ms var(--ease);
}
.plan:hover { border-color: var(--av-ink); }
.plan--featured {
  background: var(--av-ink);
  color: var(--av-warm-white);
  border-color: var(--av-ink);
  position: relative;
}
.plan--featured:hover { transform: translateY(-3px); }
.plan--featured .plan__head h3,
.plan--featured .plan__features { color: var(--av-warm-white); }
.plan--featured .plan__sub { color: rgba(253, 252, 249, 0.7); }

.plan__head { display: flex; flex-direction: column; gap: 10px; }
.plan__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--av-caption);
}
.plan__tag--featured {
  background: var(--av-gold);
  color: var(--av-ink);
  padding: 5px 12px;
  border-radius: 999px;
}
.plan__price {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 2.25rem;
  line-height: 1;
  margin: 0;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.plan--featured .plan__price { color: var(--av-warm-white); }
.plan__price-unit {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--av-caption);
  letter-spacing: 0;
}
.plan--featured .plan__price-unit { color: rgba(253, 252, 249, 0.6); }
.plan__sub {
  font-size: 0.9375rem;
  color: var(--av-text);
  margin: 0;
  line-height: 1.5;
}
.plan__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9375rem;
}
.plan__features li {
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.plan__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23fcb813' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.plan__cta { width: 100%; margin-top: auto; }
.plan--featured .plan__cta.btn--primary:hover { background: #e8a90c; border-color: #e8a90c; }

.guarantee {
  text-align: center;
  margin: 48px auto 0;
  max-width: 600px;
  color: var(--av-caption);
  font-size: 0.9375rem;
}
.guarantee strong { color: var(--av-ink); }

@media (max-width: 720px) {
  .plans { grid-template-columns: 1fr; }
}

/* ============================================================
   ENTERPRISE BAND
   ============================================================ */
.enterprise {
  background: var(--av-ink);
  color: var(--av-warm-white);
  padding: 80px 0;
}
.enterprise__inner {
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 48px;
  align-items: center;
}
.enterprise__copy { max-width: 600px; }
.enterprise__copy .display { margin-bottom: 16px; }
.enterprise__copy .lead { margin: 0; max-width: 56ch; }
@media (max-width: 840px) {
  .enterprise__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq__item {
  border-bottom: 1px solid var(--av-sand);
  padding: 20px 0;
}
.faq__item:first-child { border-top: 1px solid var(--av-sand); }
.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--av-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--av-gold);
  transition: transform 240ms var(--ease);
}
.faq__item[open] summary::after { content: "−"; }
.faq__item p {
  margin: 12px 0 4px;
  color: var(--av-text);
  line-height: 1.65;
  font-size: 1rem;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.finalcta {
  background: var(--av-cream);
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--av-sand);
  position: relative;
  overflow: hidden;
}
.finalcta::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--av-gold-soft) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0.5;
}
.finalcta__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.finalcta .cta-group { justify-content: center; margin-top: 2.5rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--av-warm-white);
  border-top: 1px solid var(--av-sand);
  padding: 48px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  color: var(--av-ink);
}
.footer__brand em { font-style: normal; color: var(--av-caption); font-weight: 500; }
.footer__nav {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 0.875rem;
  color: var(--av-text);
  text-decoration: none;
}
.footer__nav a:hover { color: var(--av-ink); }
.footer__meta {
  font-size: 0.8125rem;
  color: var(--av-caption);
  margin: 0;
  text-align: right;
}
.footer__meta a { color: var(--av-blue); text-decoration: none; }
@media (max-width: 720px) {
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand, .footer__meta { text-align: center; justify-content: center; }
}

/* ============================================================
   UNIVERSAL ANIMATIONS
   (per bator_frontend_skill rule §6.0 — every visible block animates)
   Gate: only hide elements ONCE the JS has signalled .js-ready on <body>.
   If JS fails to load (file:// edge cases), content stays visible.
   ============================================================ */
.js-ready [data-animate] {
  opacity: 0;
  transform: translateY(20px);
  filter: blur(6px);
  transition: opacity 700ms var(--ease-out),
              transform 700ms var(--ease-out),
              filter 700ms var(--ease-out);
}
.js-ready [data-animate].in {
  opacity: 1;
  transform: none;
  filter: blur(0);
}
.js-ready [data-animate="clip"] {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 900ms var(--ease-out);
}
.js-ready [data-animate="clip"].in { clip-path: inset(0 0 0 0); }

.js-ready [data-stagger] > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 540ms var(--ease-out),
              transform 540ms var(--ease-out);
}
.js-ready [data-stagger].in > * { opacity: 1; transform: none; }
.js-ready [data-stagger].in > *:nth-child(1) { transition-delay: 0ms; }
.js-ready [data-stagger].in > *:nth-child(2) { transition-delay: 80ms; }
.js-ready [data-stagger].in > *:nth-child(3) { transition-delay: 160ms; }
.js-ready [data-stagger].in > *:nth-child(4) { transition-delay: 240ms; }
.js-ready [data-stagger].in > *:nth-child(5) { transition-delay: 320ms; }
.js-ready [data-stagger].in > *:nth-child(6) { transition-delay: 400ms; }
.js-ready [data-stagger].in > *:nth-child(7) { transition-delay: 480ms; }
.js-ready [data-stagger].in > *:nth-child(8) { transition-delay: 560ms; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate], [data-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }
}
