/* =========================================================================
   AiOO v2 — PDF content overlay on the existing dark/cyan design system
   ========================================================================= */

/* -------- Header nav (4 items) ------------------------------------------ */
.site-header .v2-nav { display: flex; }
.v2-nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.v2-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  position: relative;
  transition: color 180ms ease;
}
.v2-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 380ms var(--ease-out);
}
.v2-nav a:hover { color: var(--cyan); }
.v2-nav a:hover::after { transform: scaleX(1); }

/* -------- Hero (2 columns) --------------------------------------------- */
.v2-hero {
  padding-top: 160px;
  padding-bottom: 100px;
  position: relative;
  overflow: visible;
}
.v2-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.v2-hero__text { display: flex; flex-direction: column; align-items: flex-start; }
.v2-hero__text .eyebrow { margin-bottom: 30px; }
.v2-hero__text .hero__headline { margin: 0 0 28px; }

/* Cyan emphasis (was an underline — switched to text color per feedback) */
.u-line {
  color: var(--cyan);
  text-shadow: 0 0 28px rgba(74, 243, 248, 0.22);
}
.v2-manifesto__headline .u-line.accent { color: var(--cyan); }

.v2-hero__lede {
  max-width: 560px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.55;
  margin: 0 0 36px;
}
.v2-hero__lede strong { color: var(--text); font-weight: 700; }

.v2-hero__ctas {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* Button variants */
.btn--inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: auto;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
}
.btn--inline .btn__icon-inline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn--big {
  padding: 18px 32px;
  font-size: 17px;
}
.btn-link {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 12px 4px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease, gap 240ms ease;
  display: inline-flex;
  gap: 6px;
}
.btn-link:hover { color: var(--cyan); gap: 12px; }

/* -------- Dashboard mockup card ---------------------------------------- */
.v2-dashboard {
  position: relative;
  background:
    radial-gradient(50% 50% at 80% 0%, rgba(74, 243, 248, 0.05), transparent 70%),
    #15171A;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 28px 28px 22px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.02);
}

.v2-dash__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.v2-dash__head h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}
.v2-dash__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--text-soft);
}
.v2-dash__live .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #ff5252;
  box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.6);
  animation: pulse-red 1.6s ease-out infinite;
}
@keyframes pulse-red {
  0%   { box-shadow: 0 0 0 0 rgba(255, 82, 82, 0.6); }
  100% { box-shadow: 0 0 0 14px rgba(255, 82, 82, 0); }
}

.v2-dash__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.v2-metric {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.v2-metric__label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-mute);
}
.v2-metric__value {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  font-feature-settings: 'tnum' 1;
  letter-spacing: -0.01em;
}
.v2-metric__value small {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-mute);
  margin-left: 2px;
}

.v2-dash__chart {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 14px 16px 8px;
  margin-bottom: 14px;
}
.v2-dash__chart-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-mute);
}
.v2-dash__chart-headline {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 6px 0 4px;
}
.v2-uplift {
  font-size: 30px;
  font-weight: 800;
  color: var(--text);
  font-feature-settings: 'tnum' 1;
  letter-spacing: -0.01em;
}
.v2-uplift__delta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cyan);
}
.v2-spark {
  width: 100%;
  height: 64px;
  display: block;
}
.v2-spark__line {
  stroke-dasharray: 800;
  stroke-dashoffset: 800;
  animation: sparkDraw 2.4s 0.4s var(--ease-out) forwards;
}
@keyframes sparkDraw {
  to { stroke-dashoffset: 0; }
}

.v2-dash__rows {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.v2-dash__rows li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 13px;
  color: var(--text-soft);
}
.v2-dash__rows li:last-child { border-bottom: none; }
.v2-dash__rows li strong {
  color: var(--cyan);
  font-weight: 600;
  font-feature-settings: 'tnum' 1;
}

/* Floating badges on the dashboard */
.v2-dash__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: rgba(15, 18, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  font-size: 11px;
  color: var(--text-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: absolute;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.v2-dash__badge .bdot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan-glow);
}
.v2-dash__badge .bdot--cyan { background: #b96bff; box-shadow: 0 0 10px rgba(185, 107, 255, 0.5); }
.v2-dash__badge .bk { font-family: var(--font-mono); font-weight: 600; }
.v2-dash__badge .bv { color: var(--text); font-weight: 500; }

.v2-dash__badge--cohort { top: -16px; right: 24px; }
.v2-dash__badge--pos    { right: -16px; bottom: 90px; }
.v2-dash__badge--imp    { left: 24px; bottom: -16px; }

/* -------- 80% vs 10% --------------------------------------------------- */
.v2-eighty {
  padding-block: 110px;
}
.v2-eighty__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.v2-eighty__big {
  display: inline-flex;
  align-items: baseline;
  gap: 28px;
  font-size: clamp(72px, 11vw, 132px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  font-feature-settings: 'tnum' 1;
  margin: 0 0 14px;
}
.v2-eighty__num {
  color: var(--text);
  display: inline-flex;
  align-items: baseline;
}
.v2-eighty__num small {
  font-size: 0.4em;
  font-weight: 500;
  margin-left: 2px;
  color: var(--text-mute);
}
.v2-eighty__num--cyan {
  color: var(--cyan);
  text-shadow: 0 0 36px rgba(74, 243, 248, 0.30);
}
.v2-eighty__num--cyan small { color: var(--cyan); }
.v2-eighty__vs {
  font-size: 0.38em;
  font-weight: 500;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  margin: 0 6px;
}
.v2-eighty__caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin: 0;
}
.v2-eighty__right p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 16px;
}
.v2-eighty__right p:last-child { margin-bottom: 0; }
.v2-eighty__right strong { color: var(--text); font-weight: 700; }

/* -------- THE PLATFORM (3 cards) -------------------------------------- */
.v2-platform { padding-block: 100px; }
.v2-platform__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.v2-platform__grid {
  margin-top: 64px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
.v2-pcard {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 460px;
  position: relative;
  transition: transform 380ms var(--ease-out), border-color 280ms ease;
}
.v2-pcard:hover {
  transform: translateY(-4px);
  border-color: rgba(74, 243, 248, 0.30);
}
.v2-pcard__num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--text-mute);
}
.v2-pcard h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--text);
  margin: 0;
}
.v2-pcard h3 .accent { color: var(--cyan); }
.v2-pcard p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}
.v2-pcard__metric {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.v2-pcard__bracket {
  color: var(--cyan);
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}
.v2-pcard__pct {
  color: var(--cyan);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-feature-settings: 'tnum' 1;
}
.v2-pcard__pct small {
  font-size: 0.6em;
  font-weight: 600;
  margin-left: 2px;
}
.v2-pcard__metric-label {
  flex-basis: 100%;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-top: 4px;
}

/* -------- THE ARCHITECTURE (5-step pipeline) -------------------------- */
.v2-arch { padding-block: 110px; }
.v2-arch__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.v2-pipeline {
  margin-top: 64px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  gap: 14px;
  align-items: stretch;
  text-align: left;
}
.v2-step {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 380ms var(--ease-out), border-color 280ms ease;
}
.v2-step:hover {
  border-color: rgba(74, 243, 248, 0.25);
  transform: translateY(-3px);
}
.v2-step__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--cyan);
  letter-spacing: 0.12em;
}
.v2-step h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.v2-step p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--text-soft);
}
.v2-step__arrow {
  align-self: center;
  font-size: 24px;
  color: var(--text-mute);
  font-weight: 300;
}
.v2-arch__feedback {
  margin-top: 38px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--cyan);
  text-align: center;
}

/* -------- WHO WE SERVE (4 cards) -------------------------------------- */
.v2-serve { padding-block: 110px; }
.v2-serve__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.v2-serve__grid {
  margin-top: 60px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}
.v2-scard {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 38px 30px 36px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  text-decoration: none;
  color: inherit;
  transition: background 240ms ease;
  min-height: 320px;
}
.v2-scard:last-child { border-right: none; }
.v2-scard:hover { background: rgba(74, 243, 248, 0.025); }
.v2-scard__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.14em;
}
.v2-scard h3 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
}
.v2-scard p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-soft);
  margin: 0;
}
.v2-scard__link {
  margin-top: auto;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  gap: 6px;
  transition: gap 240ms ease, color 200ms ease;
}
.v2-scard:hover .v2-scard__link { gap: 12px; color: var(--cyan); }

/* -------- Trusted by + quote ------------------------------------------ */
.v2-trusted {
  padding-block: 80px 60px;
  text-align: center;
}
.v2-trusted__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.20em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 36px;
}
.v2-trusted .partners { margin-top: 0; }

.v2-quote {
  padding-block: 80px 100px;
}
.v2-quote__card {
  margin: 0 auto;
  max-width: 880px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 48px 48px;
  text-align: center;
}
.v2-quote__mark {
  display: inline-block;
  color: var(--cyan);
  margin-bottom: 22px;
}
.v2-quote__card p {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.005em;
  margin: 0 0 32px;
}
.v2-quote__card p .accent { color: var(--cyan); font-weight: 600; }
.v2-quote__card footer {
  font-size: 14px;
  color: var(--text-soft);
}
.v2-quote__name { color: var(--text); font-weight: 700; }
.v2-quote__sep { color: var(--text-mute); margin: 0 8px; }
.v2-quote__role { color: var(--text-soft); }

/* -------- THE CATEGORY CASE ------------------------------------------- */
.v2-cat {
  padding-block: 100px;
}
.v2-cat__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.v2-cat__grid {
  margin-top: 56px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
}
.v2-cat__stat {
  padding: 44px 36px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.v2-cat__stat:last-child { border-right: none; }
.v2-cat__value {
  font-size: clamp(60px, 7vw, 96px);
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
  font-feature-settings: 'tnum' 1;
  margin: 0;
}
.v2-cat__value small {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--text-mute);
  margin-left: 2px;
}
.v2-cat__stat--accent .v2-cat__value { color: var(--cyan); text-shadow: 0 0 36px rgba(74, 243, 248, 0.30); }
.v2-cat__stat--accent .v2-cat__value small { color: var(--cyan); }
.v2-cat__copy {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0;
}

/* -------- MANIFESTO --------------------------------------------------- */
.v2-manifesto {
  padding-block: 120px;
  text-align: center;
}
.v2-manifesto__headline {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 1100px;
  margin: 0 auto;
}
.v2-manifesto__headline .u-line.accent {
  color: var(--text);
}

/* -------- CTA Banner -------------------------------------------------- */
.v2-ctabanner {
  padding-block: 40px 100px;
  text-align: center;
}

/* -------- Big Footer (5 cols) ----------------------------------------- */
.v2-footer { margin-top: 80px; padding-block: 0; }
.v2-footer .container { padding-block: 0; }
.v2-footer .v2-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-block: 56px 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.v2-footer__brand p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 260px;
  margin-top: 16px;
}
.v2-footer__brand img { height: 30px; width: auto; }
.v2-footer__col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.16em;
  margin: 0 0 18px;
}
.v2-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.v2-footer__col li {
  margin-bottom: 12px;
}
.v2-footer__col a {
  font-size: 14px;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 200ms ease;
}
.v2-footer__col a:hover { color: var(--cyan); }

.v2-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 22px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: var(--text-dim);
}
.v2-footer__bottom .footer__socials a {
  background: #000 !important;
  border: 1px solid rgba(255, 255, 255, 0.04) !important;
  color: #fff !important;
}
.v2-footer__bottom .footer__socials a:hover {
  background: var(--cyan) !important;
  color: #001214 !important;
}

/* -------- Responsive --------------------------------------------------- */
@media (max-width: 1024px) {
  .v2-hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .v2-dashboard { max-width: 560px; margin: 0 auto; }
  .v2-eighty__inner { grid-template-columns: 1fr; gap: 40px; }
  .v2-platform__grid { grid-template-columns: 1fr 1fr; }
  .v2-platform__grid > .v2-pcard:nth-child(3) { grid-column: 1 / -1; }
  .v2-pipeline {
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-rows: 1fr;
    grid-template-areas:
      "s1 a1 s2"
      "a2 .  a3"
      "s3 a4 s4"
      ".  .  a5"
      "s5 s5 s5";
  }
  .v2-pipeline > .v2-step:nth-of-type(1) { grid-area: s1; }
  .v2-pipeline > .v2-step:nth-of-type(2) { grid-area: s2; }
  .v2-pipeline > .v2-step:nth-of-type(3) { grid-area: s3; }
  .v2-pipeline > .v2-step:nth-of-type(4) { grid-area: s4; }
  .v2-pipeline > .v2-step:nth-of-type(5) { grid-area: s5; }
  .v2-pipeline > .v2-step__arrow { display: none; }
  .v2-serve__grid { grid-template-columns: 1fr 1fr; }
  .v2-serve__grid .v2-scard:nth-child(2n) { border-right: none; }
  .v2-serve__grid .v2-scard { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .v2-cat__grid { grid-template-columns: 1fr; }
  .v2-cat__stat { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
  .v2-cat__stat:last-child { border-bottom: none; }
  .v2-footer .v2-footer__grid { grid-template-columns: 1fr 1fr 1fr; }
  .v2-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .v2-nav { display: none; }
  .v2-hero { padding-top: 110px; }
  .v2-dash__badge--cohort { right: 12px; top: -12px; }
  .v2-dash__badge--pos { right: -8px; bottom: 100px; font-size: 10px; }
  .v2-dash__badge--imp { left: 12px; bottom: -12px; font-size: 10px; }
  .v2-platform__grid { grid-template-columns: 1fr; }
  .v2-platform__grid > .v2-pcard:nth-child(3) { grid-column: auto; }
  .v2-pipeline {
    grid-template-columns: 1fr;
    grid-template-areas: "s1" "s2" "s3" "s4" "s5";
  }
  .v2-serve__grid { grid-template-columns: 1fr; }
  .v2-serve__grid .v2-scard { border-right: none; }
  .v2-eighty__big { gap: 14px; }
  .v2-footer .v2-footer__grid { grid-template-columns: 1fr 1fr; }
  .v2-footer__bottom { flex-direction: column; gap: 14px; align-items: flex-start; }
}

@media (max-width: 480px) {
  .v2-footer .v2-footer__grid { grid-template-columns: 1fr; }
}
