/* =============================================================
   Project Phoenix — miPic Shareholder Deck
   Cloned from mipic-ui PRO landing page (_pro.scss)
   Pure black, white text, premium feel
   Fonts: Sequel/Integral CF (headlines), Inter (body), Geist Mono / Kiwari Mono (numerics)
   ============================================================= */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Sequel 100 Wide';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/sequel/sequel100wide-75-bold.woff2') format('woff2'),
       url('../fonts/sequel/sequel100wide-75-bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Integral CF';
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/integralcf/integralcf-extrabold.woff2') format('woff2'),
       url('../fonts/integralcf/integralcf-extrabold.otf') format('opentype');
}
@font-face {
  font-family: 'ZY Starry';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/zystarry/zystarry-regular.woff2') format('woff2'),
       url('../fonts/zystarry/zystarry-regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Kiwari Mono';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url('../fonts/kiwarimono/kiwarimono-bold.woff2') format('woff2'),
       url('../fonts/kiwarimono/kiwarimono-bold.otf') format('opentype');
}
@font-face {
  font-family: 'Inter';
  font-weight: 400; font-style: normal; font-display: swap;
  src: url('../fonts/inter/Inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-weight: 500; font-style: normal; font-display: swap;
  src: url('../fonts/inter/Inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-weight: 700; font-style: normal; font-display: swap;
  src: url('../fonts/inter/Inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-weight: 800; font-style: normal; font-display: swap;
  src: url('../fonts/inter/Inter-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Damion';
  font-weight: 400; font-style: normal; font-display: swap;
  src: url('../fonts/damion/Damion-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Geist Mono';
  font-weight: 400; font-style: normal; font-display: swap;
  src: url('../fonts/geistmono/GeistMono-Regular.woff2') format('woff2'),
       url('../fonts/geistmono/GeistMono-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Geist Mono';
  font-weight: 500; font-style: normal; font-display: swap;
  src: url('../fonts/geistmono/GeistMono-Medium.woff2') format('woff2'),
       url('../fonts/geistmono/GeistMono-Medium.ttf') format('truetype');
}
@font-face {
  font-family: 'Geist Mono';
  font-weight: 700; font-style: normal; font-display: swap;
  src: url('../fonts/geistmono/GeistMono-Bold.woff2') format('woff2'),
       url('../fonts/geistmono/GeistMono-Bold.ttf') format('truetype');
}

/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #000;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Tokens (mirroring _variables.scss) ---------- */
:root {
  --black: #000000;
  --white: #FFFFFF;
  --page-bg: #F8F4F1;
  --primary-text: #000000;
  --subtitle-grey: #1F2020;
  --accent: #37D4B1;
  --yellow: #FFDD00;
  --pink: #DF6CDF;
  --danger: #EB505B;
  --light-grey: #E2E0E0;
  --container-max: 1300px;
  --section-pad: 120px;
  --section-pad-mobile: 80px;
}

/* ---------- Phoenix scope ---------- */
.phoenix {
  background: #000;
  color: #fff;
}

/* Container — matches _pro.scss .container max 900 for premium spacing */
.phoenix .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 767px) {
  .phoenix .container { padding: 0 20px; }
}

/* Wider container for grid sections */
.phoenix .container--wide {
  max-width: 1300px;
}

/* ---------- Section spacing ---------- */
.phoenix-section {
  padding: 0 0 var(--section-pad) 0;
  position: relative;
}
@media (max-width: 767px) {
  .phoenix-section { padding-bottom: var(--section-pad-mobile); }
}

/* ---------- Divider hairline ---------- */
.phoenix-divider {
  height: 1px;
  width: 100%;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 80px;
}
@media (max-width: 767px) { .phoenix-divider { margin-bottom: 50px; } }

/* ---------- Eyebrow label (Integral CF uppercase) ---------- */
.phoenix-eyebrow {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 24px;
}
@media (max-width: 767px) {
  .phoenix-eyebrow { font-size: 11px; letter-spacing: 4px; }
}

/* ---------- Section H1 (Sequel) ---------- */
.phoenix-h1 {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 56px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 40px;
  color: #fff;
}
@media (max-width: 767px) {
  .phoenix-h1 { font-size: 32px; margin-bottom: 30px; }
}

/* ---------- Section divider title (Integral CF, huge) ---------- */
.phoenix-divider-title {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 96px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 0.95;
  margin: 0;
  color: #fff;
}
@media (max-width: 767px) {
  .phoenix-divider-title { font-size: 48px; letter-spacing: 2px; }
}

/* ---------- Body copy ---------- */
.phoenix-body {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 24px;
  max-width: 720px;
}
@media (max-width: 767px) {
  .phoenix-body { font-size: 17px; line-height: 1.5; }
}

/* ---------- Footnote / source citation ---------- */
.phoenix-footnote {
  font-family: 'Geist Mono', 'Courier New', monospace;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.5px;
}

/* =============================================================
   1. HERO / COVER
   ============================================================= */
.phoenix-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #0a0a0a; /* fallback while bg image loads */
}
@media (max-width: 767px) { .phoenix-hero { min-height: 90vh; } }

.phoenix-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* Shader canvas — sits behind overlay + content. Lighter overlay
   on shader hero so the animation reads. */
.phoenix-hero--shader { background: #000; }
.phoenix-hero--shader .phoenix-hero__overlay {
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.45) 60%,
    rgba(0, 0, 0, 0.7) 100%
  );
}
.phoenix-hero__shader {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.phoenix-hero__shader canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
}

.phoenix-hero__content {
  position: relative;
  z-index: 2;
  padding: 110px 30px 60px;
  animation: phoenixFadeIn 1.2s ease-out both;
  max-width: 1100px;
}
@media (max-width: 767px) {
  .phoenix-hero__content { padding: 90px 20px 40px; }
}

.phoenix-hero__eyebrow {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0 0 8px;
}
.phoenix-hero__date {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 32px;
}
@media (max-width: 767px) {
  .phoenix-hero__eyebrow { font-size: 11px; letter-spacing: 4px; }
  .phoenix-hero__date { font-size: 11px; letter-spacing: 3px; margin-bottom: 24px; }
}

.phoenix-hero__logo {
  display: block;
  margin: 0 auto 50px;
  height: 38px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.phoenix-hero__tagline {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.3px;
  color: #fff;
  text-align: center;
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .phoenix-hero__tagline { font-size: 18px; margin-top: 36px; }
}
@media (max-width: 767px) {
  .phoenix-hero__logo { height: 28px; margin-bottom: 36px; }
}

.phoenix-hero__title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 140px;
  font-weight: 200;
  letter-spacing: -4px;
  line-height: 0.9;
  margin: 0;
  color: #fff;
}
@media (max-width: 1024px) { .phoenix-hero__title { font-size: 110px; } }
@media (max-width: 767px)  { .phoenix-hero__title { font-size: 64px; letter-spacing: -2px; } }

.phoenix-hero__subtitle {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 26px;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
  margin: 30px auto 0;
  max-width: 620px;
  letter-spacing: -0.3px;
}
@media (max-width: 767px) { .phoenix-hero__subtitle { font-size: 18px; } }

.phoenix-hero__meta {
  font-family: 'Geist Mono', 'Courier New', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 60px 0 0;
}

.phoenix-hero__powered {
  font-size: 12px;
  text-align: center;
  color: #fff;
  margin: 30px 0 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.phoenix-hero__powered img {
  margin-top: -6px;
  filter: brightness(0) invert(1);
  display: inline-block;
  vertical-align: middle;
  height: 20px;
}

@keyframes phoenixFadeIn {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =============================================================
   2. SECTION DIVIDERS (full-bleed black with one big word)
   ============================================================= */
.phoenix-section-divider {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 30px;
  background: #000;
}
.phoenix-section-divider__num {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 4px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  margin: 0 0 24px;
}

/* =============================================================
   3. METRIC / BIG NUMBER
   ============================================================= */
.phoenix-metric {
  text-align: center;
  padding: 60px 20px;
}
.phoenix-metric__number {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 160px;
  font-weight: 200;
  letter-spacing: -5px;
  line-height: 1;
  color: #fff;
  margin: 0;
}
@media (max-width: 767px) {
  .phoenix-metric__number { font-size: 88px; letter-spacing: -3px; }
}
.phoenix-metric__caption {
  font-family: 'Kiwari Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 24px 0 0;
}

/* Metric grid (e.g. 4 numbers across) */
.phoenix-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 60px 0;
}
@media (max-width: 1024px) {
  .phoenix-metric-grid { grid-template-columns: repeat(2, 1fr); gap: 60px 30px; }
}
@media (max-width: 480px) {
  .phoenix-metric-grid { grid-template-columns: 1fr; gap: 50px; }
}
.phoenix-metric-grid .phoenix-metric { padding: 0; }
.phoenix-metric-grid .phoenix-metric__number { font-size: 88px; }
@media (max-width: 767px) {
  .phoenix-metric-grid .phoenix-metric__number { font-size: 64px; }
}

/* =============================================================
   4. FEATURE CARD GRID (shipped-features section)
   ============================================================= */
.phoenix-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
@media (max-width: 1024px) {
  .phoenix-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .phoenix-cards { grid-template-columns: 1fr; }
}

.phoenix-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.phoenix-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
}
.phoenix-card__tag {
  font-family: 'Kiwari Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}
.phoenix-card__title {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
}
.phoenix-card__body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin: 0 0 16px;
}
.phoenix-card__meta {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* =============================================================
   5. TIMELINE (sabotage)
   ============================================================= */
.phoenix-timeline {
  list-style: none;
  padding: 0;
  margin: 60px 0 0;
  border-left: 1px solid rgba(235, 80, 91, 0.3);
}
.phoenix-timeline__item {
  position: relative;
  padding: 0 0 50px 40px;
}
.phoenix-timeline__item::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 6px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 0 4px rgba(235, 80, 91, 0.2);
}
.phoenix-timeline__date {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--danger);
  text-transform: uppercase;
  margin: 0 0 8px;
}
.phoenix-timeline__title {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff;
  margin: 0 0 10px;
}
.phoenix-timeline__body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* =============================================================
   6. CTA BUTTON (matches .pro-btn)
   ============================================================= */
.phoenix-btn {
  display: inline-block;
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
  padding: 16px 48px;
  background: #fff;
  color: #000;
}
.phoenix-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.phoenix-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
}

/* =============================================================
   7. SCROLL-REVEAL (mirrors .pro-reveal)
   ============================================================= */
.phoenix-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.phoenix-reveal--visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .phoenix-reveal { opacity: 1; transform: none; transition: none; }
}

/* =============================================================
   8. SLIDE NUMBER (sticky bottom-left, like .pro-page-num)
   ============================================================= */
.phoenix-slide-num {
  position: fixed;
  bottom: 24px;
  left: 24px;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  z-index: 100;
  pointer-events: none;
}

/* =============================================================
   10. HERO STATS (3-up under cover title)
   ============================================================= */
.phoenix-hero-stats {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 70px 0 40px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .phoenix-hero-stats {
    gap: 18px;
    margin: 40px 0 30px;
    flex-wrap: nowrap;          /* force single row on mobile */
    justify-content: space-around;
  }
}
.phoenix-hero-stats__item {
  text-align: center;
  flex: 0 1 auto;
  min-width: 0;
}
.phoenix-hero-stats__num {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 64px;
  font-weight: 200;
  letter-spacing: -2px;
  line-height: 1;
  color: #fff;
}
@media (max-width: 767px) {
  .phoenix-hero-stats__num { font-size: 32px; letter-spacing: -1px; }
}
@media (max-width: 380px) {
  .phoenix-hero-stats__num { font-size: 28px; }
}
.phoenix-hero-stats__cap {
  font-family: 'Kiwari Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
}
@media (max-width: 767px) {
  .phoenix-hero-stats__cap {
    font-size: 8.5px;
    letter-spacing: 1.5px;
    margin-top: 8px;
    line-height: 1.5;
  }
}

/* =============================================================
   11. IMAGED FEATURE CARDS (each card has a media block on top)
   ============================================================= */
.phoenix-cards--imaged .phoenix-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phoenix-card--imaged .phoenix-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0a;
}
.phoenix-card--imaged .phoenix-card__media img,
.phoenix-card--imaged .phoenix-card__media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.phoenix-card--imaged:hover .phoenix-card__media img,
.phoenix-card--imaged:hover .phoenix-card__media video {
  transform: scale(1.04);
}
.phoenix-card--imaged .phoenix-card__body-wrap {
  padding: 28px 24px 28px;
}
.phoenix-card--imaged .phoenix-card__tag,
.phoenix-card--imaged .phoenix-card__title,
.phoenix-card--imaged .phoenix-card__body,
.phoenix-card--imaged .phoenix-card__meta {
  margin-left: 0;
  margin-right: 0;
}
.phoenix-card--imaged .phoenix-card__tag {
  color: #FFD23F;
}
.phoenix-card__media--carousel {
  position: relative;
}
.phoenix-card__media--carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: phoenixCardCarousel 12s infinite;
}
.phoenix-card__media--carousel img:nth-child(1) { animation-delay: 0s; }
.phoenix-card__media--carousel img:nth-child(2) { animation-delay: 3s; }
.phoenix-card__media--carousel img:nth-child(3) { animation-delay: 6s; }
.phoenix-card__media--carousel img:nth-child(4) { animation-delay: 9s; }
.phoenix-card__media--carousel img:nth-child(5) { animation-delay: 12s; }
@keyframes phoenixCardCarousel {
  0%, 22%  { opacity: 1; }
  28%, 100% { opacity: 0; }
}
.phoenix-card--imaged .phoenix-card__meta {
  color: #FFD23F;
}

/* =============================================================
   12. FULL-BLEED MEDIA SECTION (hero-style, video bg + overlay)
   Used for Nano Banana, Crypto, iFrame story slides
   ============================================================= */
.phoenix-section--media {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0;
  overflow: hidden;
}
@media (max-width: 767px) {
  .phoenix-section--media { min-height: 70vh; padding: 80px 0; }
}
.phoenix-section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.phoenix-section-bg img,
.phoenix-section-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.phoenix-section-bg__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.65) 50%,
    rgba(0,0,0,0.4) 100%
  );
}
.phoenix-section--media__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.phoenix-section--media__content .phoenix-h1 { font-size: 48px; }
.phoenix-section--media__content .phoenix-body { color: rgba(255,255,255,0.82); }
@media (max-width: 767px) {
  .phoenix-section--media__content .phoenix-h1 { font-size: 28px; }
}

/* =============================================================
   14. NANO BANANA — CLONED FROM .pro-nanobanana
   70%-width centred bg image (Vincent + banana), 55% black overlay,
   left-aligned content block max 550px
   ============================================================= */
.phoenix-nanobanana {
  padding: 0;
  overflow: hidden;
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .phoenix-nanobanana {
    min-height: auto;
    flex-direction: column;
  }
}
.phoenix-nanobanana__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  z-index: 0;
}
.phoenix-nanobanana__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (max-width: 767px) {
  .phoenix-nanobanana__bg {
    position: relative;
    width: 100%;
    left: 0;
    transform: none;
    aspect-ratio: 3 / 4;
  }
}
.phoenix-nanobanana__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.55);
}
@media (max-width: 767px) {
  .phoenix-nanobanana__overlay { display: none; }
}
.phoenix-nanobanana__content {
  position: relative;
  z-index: 2;
  padding: 80px 70px;
  max-width: 550px;
}
@media (max-width: 1024px) {
  .phoenix-nanobanana__content { padding: 60px 40px; }
}
@media (max-width: 767px) {
  .phoenix-nanobanana__content {
    padding: 50px 20px;
    text-align: center;
    max-width: 100%;
    order: -1;
  }
}
.phoenix-nanobanana__title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 72px;
  font-weight: 200;
  letter-spacing: -3px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 24px;
  line-height: 0.95;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .phoenix-nanobanana__title {
    font-size: 52px;
    letter-spacing: -2px;
  }
}
@media (max-width: 767px) {
  .phoenix-nanobanana__title {
    font-size: 36px;
    letter-spacing: -1px;
    white-space: normal;
  }
}
.phoenix-nanobanana__sub {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 24px;
  max-width: 440px;
}
@media (max-width: 767px) {
  .phoenix-nanobanana__sub { font-size: 16px; }
}
.phoenix-nanobanana__credits {
  font-family: 'Geist Mono', monospace;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 30px;
}
@media (max-width: 767px) {
  .phoenix-nanobanana__credits { font-size: 13px; }
}
.phoenix-btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 14px 32px;
}
.phoenix-btn--outline:hover {
  background: #fff;
  color: #000;
  border-color: #fff;
}

/* =============================================================
   15. EMBED — CLONED FROM .pro-embed
   Two-column grid: terminal-style code card | laptop video
   Laptop video floats past right screen edge (200% width)
   ============================================================= */
.phoenix-embed {
  overflow: hidden;
}
.phoenix-embed__title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.08;
  color: #fff;
  margin: 16px 0 12px;
}
@media (max-width: 1024px) { .phoenix-embed__title { font-size: 34px; } }
@media (max-width: 767px)  { .phoenix-embed__title { font-size: 26px; } }

.phoenix-embed__sub {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 40px;
  line-height: 1.6;
}
@media (max-width: 767px) { .phoenix-embed__sub { font-size: 14px; } }

.phoenix-embed__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .phoenix-embed__grid { grid-template-columns: 1fr; gap: 24px; }
}

.phoenix-embed__left {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
  margin-right: -60px;
  max-width: 520px;
}
@media (max-width: 767px) {
  .phoenix-embed__left { margin-right: 0; max-width: none; }
}

/* Terminal card — frosted, sits over the laptop edge with backdrop blur */
.phoenix-embed__code-card {
  background: rgba(20, 20, 22, 0.22);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 40px rgba(100, 150, 255, 0.08),
    0 30px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255,255,255,0.04) inset;
}
.phoenix-embed__code-header {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background: rgba(34, 34, 34, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.phoenix-embed__code-dots {
  display: flex;
  gap: 6px;
  margin-right: 12px;
}
.phoenix-embed__code-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.phoenix-embed__code-dots span:nth-child(1) { background: #ff5f57; }
.phoenix-embed__code-dots span:nth-child(2) { background: #ffbd2e; }
.phoenix-embed__code-dots span:nth-child(3) { background: #28ca41; }

.phoenix-embed__code-filename {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.3);
  flex: 1;
}
.phoenix-embed__copy-btn {
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 4px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.phoenix-embed__copy-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
}
.phoenix-embed__code-body {
  padding: 20px;
  margin: 0;
  overflow-x: auto;
  background: rgba(20, 20, 22, 0.35);
}
.phoenix-embed__code-body code {
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5);
  white-space: pre;
}
@media (max-width: 767px) {
  .phoenix-embed__code-card { max-width: 100%; }
  .phoenix-embed__code-body { padding: 12px 10px; }
  .phoenix-embed__code-body code { font-size: 9px; line-height: 1.55; }
  .phoenix-embed__code-header { padding: 8px 10px; }
  .phoenix-embed__code-filename { font-size: 11px; }
  .phoenix-embed__copy-btn { font-size: 9px; padding: 4px 10px; }
}
.phoenix-embed__tag  { color: #ff7b72; }
.phoenix-embed__attr { color: #93d1ff; }
.phoenix-embed__val  { color: #c8e6ff; }
.phoenix-embed__user { color: #7ee787; font-weight: 700; }

/* Laptop video — scaled down 30% from previous, slides in from the right */
.phoenix-embed__preview {
  overflow: visible;
  margin-right: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 767px) {
  .phoenix-embed__preview { margin-right: 0; }
}
.phoenix-embed__laptop {
  width: 110%;
  max-width: none;
  background: transparent;
  overflow: visible;
  transform: translateX(-6%);
}
@media (max-width: 767px) {
  .phoenix-embed__preview { overflow: hidden; }
  .phoenix-embed__laptop { width: 100%; transform: none; }
  .phoenix-embed__laptop video,
  .phoenix-embed__laptop img { border-radius: 12px; }
}
.phoenix-embed__laptop video,
.phoenix-embed__laptop img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px 0 0 12px;
}

/* =============================================================
   37. INLINE ASIDE (small image + reframing line, used on Dark Years)
   ============================================================= */
.phoenix-aside {
  display: grid;
  grid-template-columns: 1fr 30vw;
  gap: 50px;
  align-items: center;
  margin: 30px 0 40px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 767px) {
  .phoenix-aside { grid-template-columns: 1fr; gap: 24px; }
}
.phoenix-aside__lead {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: -1.5px;
}
@media (max-width: 767px) { .phoenix-aside__lead { font-size: 36px; letter-spacing: -1px; } }
.phoenix-aside__sub {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.4;
  letter-spacing: -0.3px;
}
@media (max-width: 767px) { .phoenix-aside__sub { font-size: 17px; } }
.phoenix-aside__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 40px rgba(255,255,255,0.05),
    0 20px 50px rgba(0,0,0,0.4);
}

/* =============================================================
   36. A DISCOVERY (standalone narrative section under Dark Years)
   Promoted from card to prose. Sits on the same dark slide.
   ============================================================= */
.phoenix-discovery {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.phoenix-discovery__title {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 24px;
}
.phoenix-discovery__body {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin: 0 0 36px;
  max-width: 880px;
}
@media (max-width: 767px) { .phoenix-discovery__body { font-size: 17px; } }
.phoenix-discovery__list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 880px;
}
.phoenix-discovery__list li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  padding: 12px 0 12px 24px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.phoenix-discovery__list li:last-child { border-bottom: none; }

/* Teaser line that hands off to the Resurrection slide */
.phoenix-discovery__teaser {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: rgba(255,255,255,0.85);
  letter-spacing: -0.5px;
  margin: 60px 0 0;
  text-align: center;
}
@media (max-width: 767px) { .phoenix-discovery__teaser { font-size: 20px; margin-top: 40px; } }
.phoenix-discovery__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 22px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EB505B;
  box-shadow: 0 0 10px rgba(235,80,91,0.5);
}

/* =============================================================
   34. HERO BANNER — full-width image left, large stat text right
   Same dimensions as Instant Users chart (1200x600 ratio)
   ============================================================= */
.phoenix-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1200 / 600;
  margin: 0;
  background: #000;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}
@media (max-width: 767px) {
  .phoenix-banner { grid-template-columns: 1fr; aspect-ratio: 4/5; }
}
.phoenix-banner__media {
  position: relative;
  overflow: hidden;
  background: #000;
}
.phoenix-banner__media img,
.phoenix-banner__media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.phoenix-banner__content {
  background: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 70px;
}
@media (max-width: 1024px) { .phoenix-banner__content { padding: 50px 40px; } }
@media (max-width: 767px)  { .phoenix-banner__content { padding: 40px 24px; } }

.phoenix-banner__num {
  font-family: 'Inter', sans-serif;
  font-size: 220px;
  font-weight: 200;
  letter-spacing: -8px;
  line-height: 0.9;
  color: #fff;
  margin: 0;
}
@media (max-width: 1024px) { .phoenix-banner__num { font-size: 140px; letter-spacing: -5px; } }
@media (max-width: 767px)  { .phoenix-banner__num { font-size: 96px; letter-spacing: -3px; } }

.phoenix-banner__line {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  margin: 16px 0 0;
  line-height: 1.1;
}
@media (max-width: 767px) { .phoenix-banner__line { font-size: 22px; letter-spacing: 1px; } }

.phoenix-banner__sub {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  margin: 8px 0 0;
  letter-spacing: -0.3px;
}
@media (max-width: 767px) { .phoenix-banner__sub { font-size: 16px; } }

.phoenix-banner__foot {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-style: italic;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 32px 0 0;
}
@media (max-width: 767px) { .phoenix-banner__foot { font-size: 10px; margin-top: 22px; } }

/* =============================================================
   35. "A SABOTAGE" — black-on-white pivot moment
   Big title with serif-italic emphasis, single subtitle line
   ============================================================= */
.phoenix-pivot {
  background: #fff;
  color: #000;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px;
}
.phoenix-pivot__eyebrow {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin: 0 0 24px;
}
.phoenix-pivot__title {
  font-family: 'Inter', sans-serif;
  font-size: 140px;
  font-weight: 800;
  letter-spacing: -4px;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 40px;
  line-height: 0.95;
}
@media (max-width: 1024px) { .phoenix-pivot__title { font-size: 96px; letter-spacing: -3px; } }
@media (max-width: 767px)  { .phoenix-pivot__title { font-size: 56px; letter-spacing: -2px; } }

.phoenix-pivot__sub {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.5;
  color: rgba(0,0,0,0.7);
  margin: 0 auto;
  max-width: 760px;
  letter-spacing: -0.3px;
}
@media (max-width: 767px) { .phoenix-pivot__sub { font-size: 18px; } }

/* =============================================================
   33. GLOBAL REVENUE MAP — world line-art map with sales pins
   ============================================================= */
.phoenix-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1200 / 600;
  margin: 50px 0 24px;
  background: #0a0a0a;
  border-radius: 16px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.06);
}
.phoenix-map__base {
  position: absolute;
  inset: 30px;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
  background-image: url('../img/world-map.svg');
  background-size: 115%;
  background-repeat: no-repeat;
  background-position: 25% 30%;
  filter: brightness(0) invert(1) opacity(0.2) drop-shadow(0 0 1px rgba(255,255,255,0.4));
}

/* Lab pin variant — yellow ring (outline only), different shape from customer pins */
.phoenix-pin--lab .phoenix-pin__dot {
  background: transparent;
  border: 2.5px solid #FFDD00;
  box-shadow:
    0 0 0 2px rgba(255,221,0,0.15),
    0 0 18px rgba(255,221,0,0.55);
}

/* Inline % label sitting next to a customer pin */
.phoenix-pin__pct {
  position: absolute;
  left: calc(50% + 14px);
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 0 6px rgba(0,0,0,0.9), 0 1px 2px rgba(0,0,0,0.7);
}
.phoenix-pin__pct--left {
  left: auto;
  right: calc(50% + 14px);
}

/* Map legend strip — sits below the map */
.phoenix-map-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 0 0 50px;
  padding: 16px 24px;
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.phoenix-map-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.phoenix-map-legend__swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}
.phoenix-map-legend__swatch--customer {
  background: #37D4B1;
  box-shadow: 0 0 12px rgba(55,212,177,0.5);
}
.phoenix-map-legend__swatch--lab {
  background: transparent;
  border: 2px solid #FFDD00;
  box-shadow: 0 0 12px rgba(255,221,0,0.4);
}
.phoenix-map__pins {
  position: absolute;
  inset: 30px;
  width: calc(100% - 60px);
  height: calc(100% - 60px);
}
.phoenix-pin {
  position: absolute;
  transform: translate(-50%, -50%);
}
.phoenix-pin__dot {
  width: var(--size, 14px);
  height: var(--size, 14px);
  border-radius: 50%;
  background: #37D4B1;
  box-shadow:
    0 0 0 2px rgba(55,212,177,0.25),
    0 0 20px rgba(55,212,177,0.6);
  position: relative;
  z-index: 2;
}
/* (gold customer dot — superseded by --lab variant; retained for compat) */
.phoenix-pin__dot--gold {
  background: #37D4B1;
  box-shadow:
    0 0 0 2px rgba(55,212,177,0.25),
    0 0 24px rgba(55,212,177,0.7);
}
.phoenix-pin__pulse {
  position: absolute;
  top: 50%; left: 50%;
  width: var(--size, 14px);
  height: var(--size, 14px);
  border-radius: 50%;
  background: #37D4B1;
  transform: translate(-50%, -50%);
  animation: phoenixPinPulse 2.6s ease-out infinite;
  opacity: 0;
  z-index: 1;
}
.phoenix-pin__dot--gold + .phoenix-pin__pulse,
.phoenix-pin__pulse--gold { background: #FFDD00; }
@keyframes phoenixPinPulse {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.55; }
  100% { transform: translate(-50%, -50%) scale(3.4); opacity: 0; }
}
.phoenix-pin__label {
  position: absolute;
  left: calc(50% + 10px);
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Geist Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  background: rgba(0,0,0,0.7);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.1);
}
.phoenix-pin__label strong {
  color: #FFDD00;
  font-weight: 700;
  margin-right: 6px;
}

/* Headline stat trio above the map */
.phoenix-map-headline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0 20px;
}
@media (max-width: 600px) { .phoenix-map-headline { grid-template-columns: 1fr; gap: 24px; } }
.phoenix-map-headline__cell { text-align: center; }
.phoenix-map-headline__num {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 200;
  letter-spacing: -2px;
  line-height: 1;
  color: #fff;
}
@media (max-width: 767px) { .phoenix-map-headline__num { font-size: 44px; } }
.phoenix-map-headline__cap {
  font-family: 'Kiwari Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
}

/* Top 10 country list — 2-col grid on dark bg */
.phoenix-top10 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 40px;
  margin: 50px 0 30px;
}
@media (max-width: 767px) { .phoenix-top10 { grid-template-columns: 1fr; } }
.phoenix-top10__row {
  display: grid;
  grid-template-columns: 30px auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-family: 'Inter', sans-serif;
}
.phoenix-top10__rank {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.phoenix-top10__flag { font-size: 20px; line-height: 1; }
.phoenix-top10__name {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.phoenix-top10__sales {
  font-family: 'Geist Mono', monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  text-align: right;
}
.phoenix-top10__share {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #37D4B1;
  text-align: right;
  min-width: 60px;
}

/* Region distribution bars */
.phoenix-regions {
  margin: 40px 0 20px;
}
.phoenix-regions__row {
  display: grid;
  grid-template-columns: 220px 1fr 70px;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}
@media (max-width: 767px) { .phoenix-regions__row { grid-template-columns: 1fr 60px; } .phoenix-regions__bar { display: none; } }
.phoenix-regions__label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.phoenix-regions__bar {
  height: 6px;
  background: rgba(255,255,255,0.05);
  border-radius: 3px;
  overflow: hidden;
}
.phoenix-regions__bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #37D4B1, #5fe0c4);
  border-radius: 3px;
}
.phoenix-regions__pct {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  color: #fff;
  text-align: right;
  font-weight: 500;
}

/* Long-tail strip */
.phoenix-tail {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px 30px;
  margin: 40px 0 0;
}
.phoenix-tail__head {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #FFDD00;
  margin: 0 0 14px;
}
.phoenix-tail__body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* =============================================================
   32. INSTANT USERS CHART — paid + organic growth slide
   Dark bg, SVG line+area chart with phase markers
   ============================================================= */
.phoenix-chart {
  background: linear-gradient(135deg, #061a16 0%, #0a3d33 100%);
  border-radius: 20px;
  padding: 50px 50px 40px;
  margin: 50px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 767px) {
  .phoenix-chart { padding: 30px 20px; }
}
.phoenix-chart__title {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 200;
  letter-spacing: -2px;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1;
}
@media (max-width: 767px) { .phoenix-chart__title { font-size: 36px; } }
.phoenix-chart__subtitle {
  font-family: 'Kiwari Mono', monospace;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 30px;
}
.phoenix-chart__svg-wrap {
  position: relative;
  width: 100%;
}
.phoenix-chart__svg {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .phoenix-chart__svg {
    height: auto;
    aspect-ratio: 1200 / 630;
  }
  .phoenix-chart__svg text {
    transform: scaleY(0.667);
    transform-box: fill-box;
    transform-origin: center;
  }
}
.phoenix-chart__annotations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.phoenix-chart__anno {
  position: absolute;
  font-family: 'Inter', sans-serif;
  color: #fff;
}
.phoenix-chart__anno-num {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 4px;
}
.phoenix-chart__anno-detail {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}
.phoenix-chart__highlight {
  display: inline-block;
  background: #FFDD00;
  color: #000;
  padding: 2px 12px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 24px;
}
.phoenix-chart__phases {
  display: grid;
  grid-template-columns: 4fr 2fr;
  gap: 0;
  margin: 12px 0 24px;
  height: 6px;
  border-radius: 3px;
  overflow: hidden;
}
.phoenix-chart__phase-paid    { background: linear-gradient(90deg, #DF6CDF, #b94db9); }
.phoenix-chart__phase-organic { background: linear-gradient(90deg, #37D4B1, #2aa68a); }
.phoenix-chart__phase-labels {
  display: grid;
  grid-template-columns: 4fr 2fr;
  gap: 0;
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.phoenix-chart__phase-labels span:nth-child(1) { color: #DF6CDF; }
.phoenix-chart__phase-labels span:nth-child(2) { color: #37D4B1; text-align: right; }
.phoenix-chart__footer {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 0;
  letter-spacing: -0.3px;
}
.phoenix-chart__footer strong { font-weight: 700; }

/* Hide individual annotation blocks on mobile — chart still works as visual */
@media (max-width: 767px) {
  .phoenix-chart__annotations { display: none; }
}

/* 3-column campaign-results strip — sits below the chart on white */
.phoenix-chart-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  margin: 50px 0 30px;
  padding: 0 10px;
}
@media (max-width: 1024px) {
  .phoenix-chart-stats { grid-template-columns: 1fr; gap: 40px; }
}
.phoenix-chart-stat {
  text-align: center;
}
.phoenix-chart-stat:nth-child(2) { text-align: center; }
.phoenix-chart-stat__num {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1;
  color: #000;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .phoenix-chart-stat__num { font-size: 48px; }
}
.phoenix-chart-stat__label {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #000;
  margin-bottom: 18px;
}
.phoenix-chart-stat__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: rgba(0,0,0,0.75);
}
.phoenix-chart-stat__list li {
  letter-spacing: 0;
}

/* =============================================================
   31. YELLOW HIGHLIGHT (Q1 deck signature — boxed phrase emphasis)
   Inline component. Wraps a key phrase in a yellow box.
   Use sparingly — 1-2 per slide max for impact.
   ============================================================= */
.phoenix-mark {
  background: #FFDD00;
  color: #000;
  padding: 2px 10px;
  border-radius: 4px;
  font-weight: 600;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.phoenix-mark--inline {
  padding: 1px 8px;
  font-size: inherit;
}
/* Outline variant — for the big-title combo (e.g. "End / End") */
.phoenix-mark--outline {
  background: transparent;
  color: inherit;
  border: 2px solid currentColor;
  padding: 0 12px;
  border-radius: 6px;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px currentColor;
}

/* miPic word-mark strapline — italic Geist Mono noun definition */
.phoenix-strap {
  font-family: 'Geist Mono', monospace;
  font-size: 14px;
  font-style: italic;
  color: rgba(0,0,0,0.5);
  letter-spacing: 0;
  margin: 8px 0 0;
}
.phoenix-section--cream .phoenix-strap,
.phoenix-section--light .phoenix-strap { color: rgba(0,0,0,0.5); }
[style*="background: #000"] .phoenix-strap,
.phoenix .phoenix-strap--dark { color: rgba(255,255,255,0.5); }

/* Dictionary-style noun callout — used as a slide title block */
.phoenix-noun {
  text-align: left;
  margin: 32px 0 20px;
  padding: 16px 0;
}
.phoenix-noun--with-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 767px) {
  .phoenix-noun--with-stat { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* Centred bold hero stat — sits below the dictionary title */
.phoenix-noun__hero-stat {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.5px;
  color: #000;
  text-align: center;
  margin: 24px 0 0;
  line-height: 1.2;
}
.phoenix-noun__hero-stat strong {
  font-weight: 800;
}
@media (max-width: 767px) {
  .phoenix-noun__hero-stat { font-size: 24px; margin-top: 16px; }
}
.phoenix-noun__definition {
  font-family: 'New York', ui-serif, 'Times New Roman', Times, Georgia, serif;
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.3px;
  color: #000;
  margin: 0;
  line-height: 1.2;
}
.phoenix-noun__definition em {
  font-family: 'New York', ui-serif, 'Times New Roman', Times, Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: rgba(0,0,0,0.55);
}
.phoenix-noun__stat {
  text-align: right;
  flex-shrink: 0;
}
.phoenix-noun__stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 200;
  letter-spacing: -1.5px;
  line-height: 1;
  color: #000;
  margin-bottom: 6px;
}
.phoenix-noun__stat-cap {
  font-family: 'Kiwari Mono', monospace;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.6);
  line-height: 1.5;
}
@media (max-width: 767px) {
  .phoenix-noun__definition { font-size: 24px; letter-spacing: 0; }
  .phoenix-noun__stat-num { font-size: 36px; }
  .phoenix-noun__stat { text-align: left; }
}

/* Compact press ribbon — fit all logos on one line */
.phoenix-press--compact .phoenix-press__logos {
  flex-wrap: nowrap;
  gap: 28px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 10px;
}
.phoenix-press--compact .phoenix-press__logos::-webkit-scrollbar { display: none; }
@media (max-width: 1024px) {
  .phoenix-press--compact .phoenix-press__logos { gap: 22px; }
}
@media (max-width: 600px) {
  .phoenix-press--compact .phoenix-press__logos { gap: 18px; }
}

/* =============================================================
   28. TWO-COLUMN SECTION (text left, image right, rounded corners)
   Used for founder story slides
   ============================================================= */
.phoenix-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .phoenix-split { gap: 40px; padding: 80px 0; }
}
@media (max-width: 767px) {
  .phoenix-split {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0;
  }
}
.phoenix-split--reverse .phoenix-split__media { order: -1; }
@media (max-width: 767px) {
  .phoenix-split--reverse .phoenix-split__media { order: -1; }
}

.phoenix-split__media {
  position: relative;
}
.phoenix-split__media img,
.phoenix-split__media video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}
/* Dark variant — soft white/teal glow around the photo */
.phoenix-split--dark .phoenix-split__media img,
.phoenix-split--dark .phoenix-split__media video {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 60px rgba(255,255,255,0.08),
    0 0 120px rgba(55,212,177,0.12),
    0 30px 80px rgba(0,0,0,0.5);
}
.phoenix-split--dark .phoenix-body {
  color: rgba(255,255,255,0.78);
}
.phoenix-split--dark em {
  color: rgba(255,255,255,0.92);
}
.phoenix-split--portrait .phoenix-split__media img,
.phoenix-split--portrait .phoenix-split__media video {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.phoenix-split--square .phoenix-split__media img,
.phoenix-split--square .phoenix-split__media video {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* =============================================================
   29. UNIQUELY-QUALIFIED CARD (caps title, multi-paragraph body)
   ============================================================= */
.phoenix-quality-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-left: 3px solid #000;
  border-radius: 12px;
  padding: 32px 36px;
  margin-top: 30px;
}
.phoenix-quality-card__title {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 16px;
}
.phoenix-quality-card p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(0,0,0,0.8);
  margin: 0 0 14px;
}
.phoenix-quality-card p:last-child { margin-bottom: 0; }

/* =============================================================
   30. PRESS RIBBON (FEATURED IN strip from mipic.co homepage)
   ============================================================= */
.phoenix-press {
  margin-top: 80px;
  padding: 50px 0 30px;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.phoenix-section--cream .phoenix-press,
.phoenix-section--light .phoenix-press {
  border-top-color: rgba(0,0,0,0.08);
}
.phoenix-press__label {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  margin: 0 0 30px;
  text-align: center;
}
.phoenix-press__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 50px;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .phoenix-press__logos { gap: 30px; }
}
.phoenix-press__logos img {
  height: 28px;
  width: auto;
  filter: grayscale(1) opacity(0.85);
  transition: filter 0.25s ease;
}
.phoenix-press__logos img:hover {
  filter: grayscale(0) opacity(1);
}
@media (max-width: 767px) {
  .phoenix-press__logos img { height: 22px; }
}

/* =============================================================
   18. LIGHT-BG SECTION VARIANTS (white, cream — for non-dark slides)
   ============================================================= */
.phoenix-section--light {
  background: #FFFFFF;
  color: var(--primary-text);
  padding: 120px 0;
}
.phoenix-section--light .phoenix-eyebrow,
.phoenix-section--light .phoenix-h1 { color: var(--primary-text); }
.phoenix-section--light .phoenix-divider { background: rgba(0,0,0,0.08); }
.phoenix-section--light .phoenix-body { color: rgba(0,0,0,0.75); }
.phoenix-section--light .phoenix-footnote { color: rgba(0,0,0,0.4); }

.phoenix-section--cream {
  background: #F8F4F1;
  color: var(--primary-text);
  padding: 120px 0;
}
.phoenix-section--cream .phoenix-eyebrow,
.phoenix-section--cream .phoenix-h1 { color: var(--primary-text); }
.phoenix-section--cream .phoenix-divider { background: rgba(0,0,0,0.08); }
.phoenix-section--cream .phoenix-body { color: rgba(0,0,0,0.75); }
.phoenix-section--cream .phoenix-footnote { color: rgba(0,0,0,0.45); }

/* =============================================================
   19. STORYBOARD CARDS (red-bordered, teal-bordered, gold-bordered)
   Reused for Destruction (red), Settlement (teal), Ask (gold)
   Light-bg + dark-bg variants
   ============================================================= */
.phoenix-story-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 50px 0;
}
@media (max-width: 1024px) { .phoenix-story-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .phoenix-story-cards { grid-template-columns: 1fr; } }
.phoenix-story-cards--four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .phoenix-story-cards--four { grid-template-columns: repeat(2, 1fr); } }

.phoenix-story-card {
  padding: 28px 26px;
  border-radius: 12px;
  background: rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.06);
  border-left: 3px solid #999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.phoenix-story-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
}
.phoenix-story-card--red    { border-left-color: #EB505B; }
.phoenix-story-card--teal   { border-left-color: #37D4B1; }
.phoenix-story-card--gold   { border-left-color: #FFDD00; }

.phoenix-story-card__title {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: #000;
  line-height: 1.2;
}
.phoenix-story-card__body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(0,0,0,0.7);
  margin: 0;
}

/* Dark variant — when used on black slides (Dark Years) */
.phoenix-story-card--dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}
.phoenix-story-card--dark .phoenix-story-card__title { color: #fff; }
.phoenix-story-card--dark .phoenix-story-card__body { color: rgba(255,255,255,0.7); }

/* Red-shimmer treatment for danger/sabotage cards
   — red-tinted gradient wash + soft red glow + slow shimmer line crossing the card */
.phoenix-story-card--dark.phoenix-story-card--red {
  background:
    linear-gradient(155deg,
      rgba(235,80,91,0.14) 0%,
      rgba(235,80,91,0.04) 60%,
      rgba(255,255,255,0.02) 100%);
  border-color: rgba(235,80,91,0.25);
  box-shadow:
    0 0 0 1px rgba(235,80,91,0.18) inset,
    0 0 40px rgba(235,80,91,0.12),
    0 20px 50px rgba(0,0,0,0.35);
  position: relative;
  overflow: hidden;
}
/* Shimmer band — diagonal sweep that crosses every ~6 seconds */
.phoenix-story-card--dark.phoenix-story-card--red::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(115deg,
    transparent 35%,
    rgba(235,80,91,0.18) 48%,
    rgba(255,255,255,0.06) 50%,
    rgba(235,80,91,0.18) 52%,
    transparent 65%);
  transform: translateX(-110%);
  animation: phoenixRedShimmer 6.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
.phoenix-story-card--dark.phoenix-story-card--red > * {
  position: relative;
  z-index: 2;
}
/* Stagger the shimmer between cards so they don't fire in unison */
.phoenix-story-cards .phoenix-story-card--dark.phoenix-story-card--red:nth-child(2)::before { animation-delay: 1.5s; }
.phoenix-story-cards .phoenix-story-card--dark.phoenix-story-card--red:nth-child(3)::before { animation-delay: 3.0s; }

@keyframes phoenixRedShimmer {
  0%   { transform: translateX(-110%); }
  60%  { transform: translateX(110%); }
  100% { transform: translateX(110%); }
}
@media (prefers-reduced-motion: reduce) {
  .phoenix-story-card--dark.phoenix-story-card--red::before { animation: none; opacity: 0; }
}

/* =============================================================
   20. BIO METRIC GRID (Carl section — 4 stats with detail caps)
   Lighter-bg variant of phoenix-metric-grid
   ============================================================= */
.phoenix-bio-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 50px 0;
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
@media (max-width: 1024px) { .phoenix-bio-metrics { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; } }
@media (max-width: 480px)  { .phoenix-bio-metrics { grid-template-columns: 1fr; gap: 30px; } }

.phoenix-bio-metric { text-align: center; }
.phoenix-bio-metric__num {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 200;
  letter-spacing: -1.5px;
  line-height: 1;
  color: #000;
  margin-bottom: 12px;
}
@media (max-width: 767px) { .phoenix-bio-metric__num { font-size: 40px; } }
.phoenix-bio-metric__cap {
  font-family: 'Kiwari Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  line-height: 1.4;
}

/* =============================================================
   21. PULL QUOTE (ZY Starry, used in Dark Years)
   ============================================================= */
.phoenix-pullquote {
  font-family: 'ZY Starry', cursive;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  margin: 80px auto;
  max-width: 900px;
  padding: 0 30px;
  position: relative;
}
@media (max-width: 1024px) { .phoenix-pullquote { font-size: 36px; } }
@media (max-width: 767px)  { .phoenix-pullquote { font-size: 26px; margin: 50px auto; } }
.phoenix-pullquote::before,
.phoenix-pullquote::after {
  content: '"';
  color: rgba(55,212,177,0.4);
  font-size: 1.2em;
  display: inline;
}

/* =============================================================
   22. THEN-vs-NOW COMPARISON (red column / teal column dramatic)
   Used in AI Integration slide
   ============================================================= */
.phoenix-versus {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 60px 0;
  border-radius: 16px;
  overflow: hidden;
}
@media (max-width: 767px) { .phoenix-versus { grid-template-columns: 1fr; } }

.phoenix-versus__col {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) { .phoenix-versus__col { padding: 40px 30px; } }

.phoenix-versus__col--then {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(235,80,91,0.18) 0%, rgba(235,80,91,0) 55%),
    radial-gradient(ellipse at 100% 100%, rgba(235,80,91,0.10) 0%, rgba(235,80,91,0) 60%),
    linear-gradient(135deg, #100608 0%, #1a0a0d 50%, #0e0608 100%);
  border: 1px solid rgba(235,80,91,0.18);
  position: relative;
  overflow: hidden;
}
.phoenix-versus__col--then::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(235,80,91,0.08) 0%, rgba(235,80,91,0) 70%);
  pointer-events: none;
  filter: blur(20px);
}
.phoenix-versus__col--now {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(55,212,177,0.22) 0%, rgba(55,212,177,0) 55%),
    radial-gradient(ellipse at 0% 100%, rgba(55,212,177,0.14) 0%, rgba(55,212,177,0) 60%),
    linear-gradient(135deg, #04221c 0%, #073a30 50%, #0c5447 100%);
  border: 1.5px solid rgba(55,212,177,0.45);
  position: relative;
  overflow: hidden;
  box-shadow:
    0 12px 50px rgba(55,212,177,0.18),
    inset 0 1px 0 rgba(255,255,255,0.10);
}
.phoenix-versus__col--now::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.10) 0%, rgba(55,212,177,0.06) 50%, rgba(55,212,177,0) 70%);
  pointer-events: none;
  filter: blur(14px);
  z-index: 0;
}
.phoenix-versus__col--now::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0.02) 35%, rgba(255,255,255,0) 60%),
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.55 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.22'/></svg>");
  background-size: 100% 100%, 220px 220px;
  background-blend-mode: screen, overlay;
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}
.phoenix-versus__col--now > * { position: relative; z-index: 2; }

.phoenix-versus__label {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.phoenix-versus__col--then .phoenix-versus__label { color: #EB505B; }
.phoenix-versus__col--now  .phoenix-versus__label { color: #37D4B1; }

.phoenix-versus__num {
  font-family: 'Inter', sans-serif;
  font-size: 64px;
  font-weight: 200;
  letter-spacing: -2px;
  line-height: 1;
  color: #fff;
  margin: 0 0 12px;
}
@media (max-width: 767px) { .phoenix-versus__num { font-size: 44px; } }

.phoenix-versus__sub {
  font-family: 'Kiwari Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0 0 36px;
}
.phoenix-versus__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.phoenix-versus__list li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  padding: 8px 0 8px 22px;
  position: relative;
}
.phoenix-versus__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.phoenix-versus__col--then .phoenix-versus__list li::before { background: #EB505B; }
.phoenix-versus__col--now  .phoenix-versus__list li::before { background: #37D4B1; }

/* =============================================================
   23. INSIGHT CARD (gold border, used in AI Integration + Settlement)
   ============================================================= */
.phoenix-insight {
  background: rgba(255,221,0,0.04);
  border: 1px solid rgba(255,221,0,0.2);
  border-left: 4px solid #FFDD00;
  border-radius: 8px;
  padding: 28px 32px;
  margin: 40px 0;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}
.phoenix-section--light .phoenix-insight,
.phoenix-section--cream .phoenix-insight {
  color: rgba(0,0,0,0.85);
  background: rgba(255,221,0,0.06);
}
.phoenix-insight strong { color: #fff; font-weight: 600; }
.phoenix-section--light .phoenix-insight strong,
.phoenix-section--cream .phoenix-insight strong { color: #000; }

/* =============================================================
   24. RESURRECTION DIVIDER (huge teal Integral CF + sub)
   ============================================================= */
.phoenix-resurrection {
  position: relative;
  min-height: 80vh;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 30px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .phoenix-resurrection { padding: 80px 16px; }
}
.phoenix-resurrection__shader {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.phoenix-resurrection__shader canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}
.phoenix-resurrection__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* Flat 20% black + radial vignette stacked — punches up the title legibility */
  background:
    linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),
    radial-gradient(
      ellipse at center,
      rgba(0,0,0,0.2) 0%,
      rgba(0,0,0,0.55) 65%,
      rgba(0,0,0,0.85) 100%
    );
}
.phoenix-resurrection__content {
  position: relative;
  z-index: 2;
}
/* Lead-in italic line ("In 2026 we rolled the dice with…") */
.phoenix-resurrection__lead {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.3px;
  margin: 0 0 24px;
}
@media (max-width: 767px) { .phoenix-resurrection__lead { font-size: 16px; margin-bottom: 18px; } }

/* Subtitle below the big title — Inter bold, elegant counterweight */
.phoenix-resurrection__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: rgba(255,255,255,0.9);
  margin: 24px 0 36px;
  text-shadow: 0 0 30px rgba(255,255,255,0.15);
}
@media (max-width: 1024px) { .phoenix-resurrection__subtitle { font-size: 28px; } }
@media (max-width: 767px)  { .phoenix-resurrection__subtitle { font-size: 22px; margin-top: 18px; } }

/* Title — two lines (AI / Resurrection.), large white on shader.
   Fluid clamp so "RESURRECTION." (13 chars) fits any viewport. */
.phoenix-resurrection__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(36px, 8.5vw, 130px);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 0.92;
  text-shadow: 0 0 80px rgba(255,255,255,0.2);
  word-break: keep-all;
  overflow-wrap: normal;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .phoenix-resurrection__title {
    font-size: clamp(34px, 10vw, 56px);
    letter-spacing: -0.02em;
    white-space: normal;
  }
}
.phoenix-resurrection__sub {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  letter-spacing: -0.3px;
  margin: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) { .phoenix-resurrection__sub { font-size: 18px; } }

/* =============================================================
   25. INFRASTRUCTURE METRIC STRIP (4 across, light bg)
   ============================================================= */
.phoenix-infra-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 50px 0;
}
@media (max-width: 767px) { .phoenix-infra-stats { grid-template-columns: 1fr; } }
.phoenix-infra-stat {
  background: rgba(55,212,177,0.04);
  border: 1.5px solid rgba(55,212,177,0.55);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}
.phoenix-infra-stat__num {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1;
  color: #37D4B1;
  margin-bottom: 14px;
}
.phoenix-infra-stat__cap {
  font-family: 'Kiwari Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* =============================================================
   26. REVENUE LIST (numbered teal-bordered cards)
   ============================================================= */
.phoenix-revenue-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 50px 0;
}
@media (max-width: 767px) { .phoenix-revenue-list { grid-template-columns: 1fr; } }
.phoenix-revenue-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
  background: rgba(0,0,0,0.02);
  border-left: 3px solid #37D4B1;
  border-radius: 8px;
}
.phoenix-revenue-item__num {
  font-family: 'Geist Mono', monospace;
  font-size: 14px;
  color: #37D4B1;
  font-weight: 700;
  letter-spacing: 1px;
  padding-top: 2px;
}
.phoenix-revenue-item__title {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: #000;
}
.phoenix-revenue-item__body {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(0,0,0,0.7);
  margin: 0;
}

/* =============================================================
   27. THE ASK — gold CTA box, 3-line title, final stats
   ============================================================= */
.phoenix-ask__title {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 200;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin: 0 0 50px;
  text-align: left;
}
@media (max-width: 767px) { .phoenix-ask__title { font-size: 30px; } }
.phoenix-ask__title-line { display: block; }
.phoenix-ask__title-line--teal { color: #FFD23F; }

.phoenix-ask__cta {
  background: #FFDD00;
  color: #000;
  padding: 50px 60px;
  border-radius: 16px;
  margin: 50px 0;
  text-align: center;
  box-shadow: 0 30px 80px rgba(255,221,0,0.15);
}
@media (max-width: 767px) { .phoenix-ask__cta { padding: 36px 24px; } }
.phoenix-ask__cta-eyebrow {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin: 0 0 20px;
}
.phoenix-ask__cta-headline {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: -0.5px;
  color: #000;
  margin: 0 0 16px;
}
@media (max-width: 767px) { .phoenix-ask__cta-headline { font-size: 20px; } }
.phoenix-ask__cta-offer {
  font-family: 'Geist Mono', monospace;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: rgba(0,0,0,0.7);
  margin: 0;
  text-transform: uppercase;
}

/* Closing 3-stat row, big numbers on black */
.phoenix-ask__final-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 60px 0 40px;
  padding: 50px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 600px) { .phoenix-ask__final-stats { grid-template-columns: 1fr; gap: 30px; } }
.phoenix-ask__final-stat { text-align: center; }
.phoenix-ask__final-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 80px;
  font-weight: 200;
  letter-spacing: -2px;
  line-height: 1;
  color: #fff;
  margin-bottom: 16px;
}
@media (max-width: 767px) { .phoenix-ask__final-stat-num { font-size: 56px; } }
.phoenix-ask__final-stat-cap {
  font-family: 'Kiwari Mono', monospace;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* =============================================================
   17. CRYPTO TRIPTYCH — MoonPay portrait | text centre | coin right
   Three-column grid, video left in rounded portrait, coin floats
   on the right at 60% scale, text dead-centre between them.
   ============================================================= */
.phoenix-crypto {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
  background: #000;
}
@media (max-width: 767px) {
  .phoenix-crypto { min-height: auto; padding: 60px 0; }
}

.phoenix-crypto__grid {
  display: grid;
  grid-template-columns: 320px 1fr 360px;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
}
@media (max-width: 1100px) {
  .phoenix-crypto__grid {
    grid-template-columns: 280px 1fr;
    gap: 40px;
  }
  .phoenix-crypto__coin { display: none; }
}
@media (max-width: 767px) {
  .phoenix-crypto__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 0 20px;
    text-align: center;
  }
}

/* LEFT — MoonPay phone-style portrait video, rounded corners */
.phoenix-crypto__moonpay {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 30px 80px rgba(0,0,0,0.6),
    0 0 60px rgba(55,212,177,0.08);
}
.phoenix-crypto__moonpay video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* CENTRE — text content, centred alignment */
.phoenix-crypto__content {
  text-align: center;
}
.phoenix-crypto__eyebrow {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #37D4B1;
  margin: 0 0 24px;
}
.phoenix-crypto__logo {
  display: block;
  margin: 0 auto 24px;
  height: 32px;
  width: auto;
}
@media (max-width: 767px) {
  .phoenix-crypto__logo { height: 26px; margin-bottom: 18px; }
}
.phoenix-crypto__title {
  font-family: 'Inter', Arial, sans-serif;
  font-size: 56px;
  font-weight: 200;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 24px;
  white-space: nowrap;
}
@media (max-width: 1024px) { .phoenix-crypto__title { font-size: 44px; } }
@media (max-width: 767px)  { .phoenix-crypto__title { font-size: 36px; white-space: normal; } }

.phoenix-crypto__sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  margin: 0 auto 36px;
  max-width: 480px;
}

/* Stat strip — 4 small metrics under the title */
.phoenix-crypto__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 auto 32px;
  max-width: 520px;
}
@media (max-width: 540px) {
  .phoenix-crypto__stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
.phoenix-crypto__stat {
  text-align: center;
  background: linear-gradient(160deg, rgba(99,118,255,0.20) 0%, rgba(58,79,255,0.08) 60%, rgba(58,79,255,0) 100%);
  border: 1.5px solid rgba(99,118,255,0.6);
  border-radius: 12px;
  padding: 22px 8px;
  box-shadow:
    0 8px 30px rgba(58,79,255,0.30),
    inset 0 1px 0 rgba(255,255,255,0.14);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.phoenix-crypto__stat::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.18) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.phoenix-crypto__stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #8FA0FF;
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 24px rgba(99,118,255,0.6);
  position: relative;
}
.phoenix-crypto__stat-cap {
  font-family: 'Kiwari Mono', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.3;
}

/* Benefit list — 5 bullets with teal dots */
.phoenix-crypto__benefits {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 480px;
  text-align: left;
}
@media (max-width: 767px) {
  .phoenix-crypto__benefits { text-align: left; padding-left: 20px; padding-right: 20px; }
}
.phoenix-crypto__benefits li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.75);
  padding: 8px 0 8px 22px;
  position: relative;
}
.phoenix-crypto__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #37D4B1;
  box-shadow: 0 0 10px rgba(55,212,177,0.6);
}

/* RIGHT — Unity coin spin, scaled down 40%, no overlay, full colour */
.phoenix-crypto__coin {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phoenix-crypto__coin video,
.phoenix-crypto__coin img {
  width: 60%;
  height: auto;
  display: block;
  /* No overlay, no glow — clean full-colour token animation */
  background: transparent;
}
.phoenix-crypto__coin-placeholder {
  width: 60%;
  aspect-ratio: 1;
  border: 2px dashed rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  text-align: center;
  padding: 20px;
  letter-spacing: 1px;
}

/* =============================================================
   16. SABOTAGE FINDING CARDS (red-bordered, what was found)
   Sits below the git table on the forensic slide
   ============================================================= */
.phoenix-findings {
  margin-top: 80px;
}
.phoenix-findings__title {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #EB505B;
  margin: 0 0 24px;
}

/* Forensic intro — title/body left, Frida photo right, larger height */
.phoenix-forensic-intro {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .phoenix-forensic-intro { grid-template-columns: 1fr 340px; gap: 40px; }
}
@media (max-width: 767px) {
  .phoenix-forensic-intro { grid-template-columns: 1fr; gap: 32px; }
}
.phoenix-forensic-intro__text { padding-right: 0; }
.phoenix-forensic-intro__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  display: block;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 30px 70px rgba(0,0,0,0.55);
}

.phoenix-findings__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) {
  .phoenix-findings__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .phoenix-findings__grid { grid-template-columns: 1fr; }
}

.phoenix-finding {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid #EB505B;
  border-radius: 8px;
  padding: 24px 22px;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.phoenix-finding:hover {
  background: rgba(235,80,91,0.05);
  border-left-color: #EB505B;
  border-color: rgba(235,80,91,0.3);
}
.phoenix-finding__name {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #EB505B;
  margin: 0 0 12px;
  text-transform: uppercase;
}
.phoenix-finding__title {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}
.phoenix-finding__body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* =============================================================
   42. FINALE BANNER — full-width image with closing headline
   Sits at the bottom of Slide 11 (Forensic Review)
   ============================================================= */
/* Rounded landscape image cell, text centred below on black */
.phoenix-finale-banner {
  width: 100%;
  margin-top: 100px;
  background: #000;
  padding: 0 60px 80px;
  text-align: center;
}
@media (max-width: 1024px) { .phoenix-finale-banner { padding: 0 40px 60px; } }
@media (max-width: 767px)  { .phoenix-finale-banner { padding: 0 20px 50px; margin-top: 60px; } }

.phoenix-finale-banner__image {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  display: block;
  border-radius: 18px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05),
    0 40px 90px rgba(0,0,0,0.6);
}
@media (max-width: 600px) {
  .phoenix-finale-banner__image { aspect-ratio: 4 / 3; border-radius: 14px; }
}

/* Overlay no longer needed — text sits below the image */
.phoenix-finale-banner__overlay { display: none; }

.phoenix-finale-banner__content {
  max-width: 900px;
  margin: 50px auto 0;
  text-align: center;
}
@media (max-width: 767px) { .phoenix-finale-banner__content { margin-top: 36px; } }
.phoenix-finale-banner__headline {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.3;
  letter-spacing: -0.5px;
  color: #fff;
  margin: 0 0 24px;
}
@media (max-width: 1024px) { .phoenix-finale-banner__headline { font-size: 28px; } }
@media (max-width: 600px)  { .phoenix-finale-banner__headline { font-size: 21px; line-height: 1.35; margin-bottom: 22px; } }

.phoenix-finale-banner__sub {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin: 0;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
@media (max-width: 600px) {
  .phoenix-finale-banner__sub { font-size: 10px; letter-spacing: 2px; }
}

/* =============================================================
   41. BRIDGE — narrative hand-off between phase chart and findings
   Used on Slide 11 (AI Forensic Review) under the 4 phase cards
   ============================================================= */
.phoenix-bridge {
  margin: 60px 0 50px;
  padding: 50px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.phoenix-bridge__headline {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.7px;
  color: #fff;
  margin: 0 0 28px;
  max-width: 880px;
}
@media (max-width: 767px) { .phoenix-bridge__headline { font-size: 24px; line-height: 1.25; } }
.phoenix-bridge__lead {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  margin: 0 0 18px;
  letter-spacing: -0.2px;
}
.phoenix-bridge__list {
  list-style: none;
  counter-reset: bridgenum;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 767px) { .phoenix-bridge__list { grid-template-columns: 1fr; gap: 12px; } }

/* Number-badge button cards — neutral dark base, RED stroked border,
   RED watermark numerals. Subtle hover lift. */
.phoenix-bridge__list li {
  counter-increment: bridgenum;
  position: relative;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255,255,255,0.95);
  padding: 28px 24px 26px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(235,80,91,0.55);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
  min-height: 130px;
  display: flex;
  align-items: flex-end;
}
.phoenix-bridge__list li:hover {
  transform: translateY(-3px);
  border-color: rgba(235,80,91,0.85);
  box-shadow: 0 16px 40px rgba(235,80,91,0.18);
}
.phoenix-bridge__list li::before {
  content: counter(bridgenum, decimal-leading-zero);
  position: absolute;
  top: 8px;
  right: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -4px;
  color: rgba(235,80,91,0.32);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.phoenix-bridge__list li > * { position: relative; z-index: 1; }
@media (max-width: 767px) {
  .phoenix-bridge__list li { padding: 22px 22px 20px; min-height: 100px; }
  .phoenix-bridge__list li::before { font-size: 64px; top: 4px; right: 12px; }
}

/* =============================================================
   40. TESTIMONIAL — Shabeer / engineering peer
   Two-column on desktop: photo left, content right
   ============================================================= */
.phoenix-testimonial {
  background: #000;
  color: #fff;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.phoenix-testimonial__grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
@media (max-width: 1024px) {
  .phoenix-testimonial__grid { grid-template-columns: 1fr 240px; gap: 40px; }
}
@media (max-width: 767px) {
  .phoenix-testimonial__grid { grid-template-columns: 1fr; gap: 32px; }
}
/* Photo column moves to the right; text content takes the left.
   Shabeer's portrait looks LEFT — placed on the right so his gaze flows
   back into the text content. */
.phoenix-testimonial__media   { order: 2; }
.phoenix-testimonial__content { order: 1; }
@media (max-width: 767px) {
  /* On mobile, photo above text reads better — restore natural order */
  .phoenix-testimonial__media   { order: 1; }
  .phoenix-testimonial__content { order: 2; }
}

.phoenix-testimonial__media {
  position: relative;
}
.phoenix-testimonial__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  object-fit: cover;
  background: rgba(255,255,255,0.05);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 30px 60px rgba(0,0,0,0.4);
}
.phoenix-testimonial__photo--placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px dashed rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 80px;
  font-weight: 200;
  color: rgba(255,255,255,0.35);
}

.phoenix-testimonial__content { padding-top: 8px; }

.phoenix-testimonial__eyebrow {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #FFDD00;
  margin: 0 0 8px;
}
.phoenix-testimonial__sub-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.55);
  margin: 0 0 32px;
}

.phoenix-testimonial__quote {
  font-family: 'New York', ui-serif, 'Times New Roman', Times, Georgia, serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.5px;
  color: #fff;
  margin: 0 0 24px;
}
.phoenix-testimonial__quote + .phoenix-testimonial__quote {
  margin-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 28px;
}
@media (max-width: 1024px) { .phoenix-testimonial__quote { font-size: 22px; } }
@media (max-width: 600px)  { .phoenix-testimonial__quote { font-size: 18px; line-height: 1.32; } }

.phoenix-testimonial__sub-quote {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  color: rgba(255,221,0,0.95);
  border-left: 3px solid rgba(255,221,0,0.7);
  padding-left: 22px;
  margin: 30px 0 40px;
}
@media (max-width: 600px) {
  .phoenix-testimonial__sub-quote { font-size: 17px; padding-left: 16px; }
}

/* Stat cards row beneath the quotes */
.phoenix-testimonial__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 12px;
}
@media (max-width: 600px) {
  .phoenix-testimonial__stats { grid-template-columns: 1fr; }
}
.phoenix-testimonial__stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 22px 20px;
}
.phoenix-testimonial__stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 200;
  letter-spacing: -1px;
  line-height: 1;
  color: #fff;
  margin-bottom: 8px;
}
.phoenix-testimonial__stat-cap {
  font-family: 'Kiwari Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* =============================================================
   39. REVENUE PILLARS — 3 hero columns for the software-first model
   Used on Slide 18 (Revenue Model)
   ============================================================= */
.phoenix-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 50px 0 30px;
}
@media (max-width: 1024px) { .phoenix-pillars { grid-template-columns: 1fr; gap: 20px; } }

.phoenix-pillar {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.phoenix-pillar--saas    { border-top: 4px solid #37D4B1; }
.phoenix-pillar--ai      { border-top: 4px solid #DF6CDF; }
.phoenix-pillar--digital { border-top: 4px solid #FFDD00; }

.phoenix-pillar__tag {
  font-family: 'Geist Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin: 0 0 16px;
}
.phoenix-pillar__name {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #000;
  margin: 0 0 24px;
  line-height: 1.1;
}
.phoenix-pillar__num {
  font-family: 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 200;
  letter-spacing: -2px;
  line-height: 1;
  color: #000;
  margin-bottom: 8px;
}
.phoenix-pillar__num-cap {
  font-family: 'Kiwari Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  margin-bottom: 28px;
}
.phoenix-pillar__body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0,0,0,0.75);
  margin: 0 0 18px;
}
.phoenix-pillar__list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 16px;
}
.phoenix-pillar__list li {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(0,0,0,0.65);
  padding: 4px 0 4px 16px;
  position: relative;
}
.phoenix-pillar__list li::before {
  content: '·';
  position: absolute;
  left: 4px;
  color: rgba(0,0,0,0.4);
}

/* Foundation strip beneath the pillars */
.phoenix-foundation {
  background: rgba(0,0,0,0.03);
  border-radius: 12px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.phoenix-foundation__label {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  flex-shrink: 0;
}
.phoenix-foundation__body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(0,0,0,0.75);
  margin: 0;
  flex: 1;
}
.phoenix-foundation__body strong { color: #000; }

/* =============================================================
   38. FORENSIC PHASES — replaces the dense year-by-year table.
   Inline SVG sparkline showing 2015→2026 build activity, plus
   4 phase summary cards with build-rate stats.
   ============================================================= */
.phoenix-phases {
  margin: 50px 0 30px;
}
.phoenix-phases__chart {
  width: 100%;
  height: auto;
  display: block;
  background: #000;
  border-radius: 12px;
  padding: 30px 20px 12px;
  border: 1px solid rgba(255,255,255,0.06);
}
@media (max-width: 768px) {
  .phoenix-phases__chart {
    width: 100%;
    height: auto;
    padding: 12px 8px 6px;
  }
  .phoenix-phases__chart text {
    font-size: 36px !important;
    letter-spacing: 3px !important;
  }
  .phoenix-phases__chart path[stroke] { stroke-width: 5 !important; }
  .phoenix-phases__chart circle[r="7"] { r: 14 !important; }
  .phoenix-phases__chart circle[r="16"] { r: 26 !important; }
}
.phoenix-phases__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 24px;
}
@media (max-width: 1024px) {
  .phoenix-phases__cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 600px) {
  .phoenix-phases__cards { grid-template-columns: 1fr; }
}

.phoenix-phase-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--phase-color, #888);
  border-radius: 10px;
  padding: 22px 22px;
}
.phoenix-phase-card--healthy   { --phase-color: #37D4B1; }
.phoenix-phase-card--slowing   { --phase-color: #FFDD00; }
.phoenix-phase-card--collapse  { --phase-color: #EB505B; background: rgba(235,80,91,0.05); }
.phoenix-phase-card--rebirth   { --phase-color: #37D4B1; background: rgba(55,212,177,0.06); }

.phoenix-phase-card__label {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--phase-color);
  margin: 0 0 6px;
}
.phoenix-phase-card__years {
  font-family: 'Geist Mono', monospace;
  font-size: 12px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.45);
  margin: 0 0 14px;
}
.phoenix-phase-card__num {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 200;
  letter-spacing: -1px;
  line-height: 1;
  color: #fff;
  margin: 0 0 6px;
}
.phoenix-phase-card__cap {
  font-family: 'Kiwari Mono', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin: 0 0 12px;
}
.phoenix-phase-card__body {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* =============================================================
   13. FORENSIC GIT TABLE (the evidence chart)
   Era colour-coding, visual bar per row, dead-zone emphasis
   ============================================================= */
.phoenix-git-table {
  margin: 60px 0 0;
  font-family: 'Geist Mono', monospace;
}
.phoenix-git-row {
  display: grid;
  grid-template-columns: 32px 80px 1fr 100px 90px;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
}
.phoenix-git-row--header {
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 12px;
  font-family: 'Kiwari Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
@media (max-width: 767px) {
  .phoenix-git-row {
    grid-template-columns: 24px 60px 1fr 70px;
    font-size: 12px;
    gap: 10px;
  }
  .phoenix-git-row__avg { display: none; }
}
.phoenix-git-row__dot {
  font-size: 14px;
  text-align: center;
}
.phoenix-git-row__year {
  font-weight: 700;
  color: #fff;
}
.phoenix-git-row__era {
  color: rgba(255,255,255,0.7);
}
.phoenix-git-row__count {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: #fff;
  text-align: right;
  font-size: 16px;
}
.phoenix-git-row__avg {
  color: rgba(255,255,255,0.45);
  text-align: right;
}

/* Bar chart inline behind the row */
.phoenix-git-row__bar {
  position: relative;
  height: 4px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 6px;
}
.phoenix-git-row__bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.9));
  border-radius: 2px;
}

/* Era colour modifiers */
.phoenix-git-row--healthy .phoenix-git-row__dot { color: #37D4B1; }
.phoenix-git-row--healthy .phoenix-git-row__bar-fill { background: linear-gradient(90deg, #37D4B1, #5fe0c4); }

.phoenix-git-row--slowing .phoenix-git-row__dot { color: #FFDD00; }
.phoenix-git-row--slowing .phoenix-git-row__bar-fill { background: linear-gradient(90deg, #d4b800, #FFDD00); }

.phoenix-git-row--critical .phoenix-git-row__dot { color: #EB505B; }
.phoenix-git-row--critical .phoenix-git-row__bar-fill { background: linear-gradient(90deg, #b8404a, #EB505B); }

.phoenix-git-row--dead {
  background: rgba(235, 80, 91, 0.06);
}
.phoenix-git-row--dead .phoenix-git-row__dot { color: rgba(255,255,255,0.4); }
.phoenix-git-row--dead .phoenix-git-row__year,
.phoenix-git-row--dead .phoenix-git-row__count {
  color: rgba(255,255,255,0.35);
  font-style: italic;
}
.phoenix-git-row--dead .phoenix-git-row__bar-fill {
  background: rgba(255,255,255,0.1);
}

.phoenix-git-row--resurrection {
  background: rgba(55, 212, 177, 0.08);
  border-bottom: 1px solid rgba(55,212,177,0.3);
  padding: 18px 0;
}
.phoenix-git-row--resurrection .phoenix-git-row__year { color: #37D4B1; }
.phoenix-git-row--resurrection .phoenix-git-row__count {
  color: #37D4B1;
  font-weight: 700;
  font-size: 20px;
}

.phoenix-git-table__footer {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 600px) {
  .phoenix-git-table__footer { grid-template-columns: 1fr; gap: 20px; }
}
.phoenix-git-stat {
  text-align: center;
  padding: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
}
.phoenix-git-stat__num {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 200;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}
.phoenix-git-stat__cap {
  font-family: 'Kiwari Mono', monospace;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* =============================================================
   9. PRINT — clean PDF export
   ============================================================= */
@media print {
  body { background: #000 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .phoenix-slide-num { display: none; }
  .phoenix-hero, .phoenix-section, .phoenix-section-divider {
    page-break-after: always;
    break-after: page;
    min-height: auto;
  }
  .phoenix-reveal { opacity: 1 !important; transform: none !important; }
}

/* =============================================================
   SHOP PRODUCT SCROLLER (mipic.co homepage replica)
   ============================================================= */
.phoenix-shop-scroller { color: #000; background: #fff; }
.phoenix-shop-scroller__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}
.phoenix-shop-scroller__title {
  margin: 0;
}
.phoenix-shop-scroller__more {
  display: none;
}
.phoenix-shop-track-wrap {
  position: relative;
}
.phoenix-shop-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 60px 32px;
  scrollbar-width: none;
}
.phoenix-shop-track::-webkit-scrollbar { display: none; }
.phoenix-shop-cell {
  flex: 0 0 270px;
  scroll-snap-align: start;
  text-decoration: none;
  display: block;
  cursor: default;
  color: #000;
}
.phoenix-shop-cell__media {
  height: 440px;
  border-radius: 15px;
  overflow: hidden;
  background: #f0eee9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.phoenix-shop-cell__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.phoenix-shop-cell:hover .phoenix-shop-cell__media img { transform: scale(1.04); }
.phoenix-shop-cell__title {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #444;
  text-align: center;
  padding-top: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.phoenix-shop-cell__price {
  font-family: 'Kiwari Mono', 'Geist Mono', monospace;
  font-size: 18px;
  letter-spacing: 0.9px;
  color: #444;
  text-align: center;
  margin-top: 2px;
  padding-bottom: 20px;
}
@media (max-width: 1024px) {
  .phoenix-shop-cell { flex: 0 0 220px; }
  .phoenix-shop-cell__media { height: 340px; }
}
.phoenix-shop-arrow {
  position: absolute;
  right: 16px;
  top: 40%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}
.phoenix-shop-arrow:hover { background: #f5f3ee; }
@media (max-width: 768px) {
  .phoenix-shop-cell { flex: 0 0 180px; }
  .phoenix-shop-cell__media { height: 280px; }
  .phoenix-shop-cell__title { font-size: 12px; }
  .phoenix-shop-cell__price { font-size: 14px; }
  .phoenix-shop-track { padding: 8px 20px 28px; gap: 14px; }
  .phoenix-shop-arrow { display: none; }
}

.phoenix-testimonial__header {
  margin-bottom: 40px;
}

.phoenix-iframe-hero {
  width: 100%;
  margin: 0 0 100px;
  overflow: hidden;
}
.phoenix-iframe-hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
@media (max-width: 768px) {
  .phoenix-iframe-hero { margin-bottom: 60px; }
}

/* =============================================================
   WHAT'S NEXT — 3-cell banner + token row
   ============================================================= */
.phoenix-whats-next__banner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
}
.phoenix-whats-next__cell {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-decoration: none;
  cursor: default;
}
.phoenix-whats-next__cell:last-child { border-right: none; }
.phoenix-whats-next__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.phoenix-whats-next__cell:hover img { transform: scale(1.04); }
.phoenix-whats-next__caption {
  position: absolute;
  left: 28px;
  bottom: 28px;
  right: 28px;
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.phoenix-whats-next__cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.0) 55%);
  z-index: 1;
}
.phoenix-whats-next__num {
  display: block;
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 13px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
.phoenix-whats-next__label {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 800;
}
@media (max-width: 768px) {
  .phoenix-whats-next__banner { grid-template-columns: 1fr; }
  .phoenix-whats-next__cell { aspect-ratio: 1 / 1; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .phoenix-whats-next__label { font-size: 18px; }
}

/* Token row — Picasso/text split */
.phoenix-token {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 0;
  background: #0a0a0a;
  padding: 0;
}
.phoenix-token__content {
  padding: 80px 60px 80px 80px;
  color: #fff;
}
.phoenix-token__num {
  display: inline-block;
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
}
.phoenix-token__title {
  font-family: 'Sequel100Wide', 'Integral CF', Impact, sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -1px;
  color: #FFD23F;
  margin: 0 0 20px;
  line-height: 1;
}
.phoenix-token__body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0 0 24px;
}
.phoenix-token__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.phoenix-token__list li {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  padding: 8px 0 8px 24px;
  position: relative;
}
.phoenix-token__list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #FFD23F;
  font-size: 10px;
  top: 12px;
}
.phoenix-token__media {
  height: 100%;
  min-height: 600px;
  overflow: hidden;
}
.phoenix-token__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .phoenix-token { grid-template-columns: 1fr; }
  .phoenix-token__content { padding: 60px 24px 50px; }
  .phoenix-token__media { min-height: 380px; }
}

.phoenix-story-card__list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
}
.phoenix-story-card__list li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  padding: 6px 0 6px 22px;
  position: relative;
}
.phoenix-story-card__list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 9px;
  color: #37D4B1;
}

.phoenix-story-card--platform {
  border: 3px solid #000 !important;
  background: #fff !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.phoenix-story-card--platform .phoenix-story-card__title { color: #000; }
.phoenix-story-card--platform .phoenix-story-card__list li { color: #000; }
.phoenix-story-card--platform .phoenix-story-card__list li::before { color: #000; }

.phoenix-findings__title {
  font-family: 'Sequel100Wide', 'Integral CF', Impact, sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #fff;
  margin: 50px 0 30px;
  line-height: 1.15;
}

.phoenix-ios__copy { text-align: left; }
.phoenix-ios__title {
  font-size: 48px;
  white-space: nowrap;
}
.phoenix-ios__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  max-width: 620px;
}
.phoenix-ios__list li {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  padding: 6px 0 6px 22px;
  position: relative;
}
.phoenix-ios__list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 8px;
  font-size: 9px;
  color: #fff;
}
.phoenix-ios__badge {
  display: inline-block;
  height: 56px;
  transition: transform 0.2s ease;
}
.phoenix-ios__badge img {
  height: 100%;
  width: auto;
  display: block;
}
.phoenix-ios__badge:hover { transform: translateY(-2px); }
@media (max-width: 768px) {
  .phoenix-ios__title { font-size: 32px; }
  .phoenix-ios__list li { font-size: 15px; }
  .phoenix-ios__badge { height: 48px; }
}
@media (max-width: 380px) {
  .phoenix-ios__title { font-size: 28px; }
}

.phoenix-android__pill {
  display: inline-block;
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 14px 22px;
  border-radius: 30px;
}

/* Android row — reverse layout (image left, copy right) for visual rhythm */
.phoenix-token--android {
  direction: rtl;
}
.phoenix-token--android .phoenix-token__content,
.phoenix-token--android .phoenix-token__media {
  direction: ltr;
}
.phoenix-token--android .phoenix-token__list li::before {
  color: #A4C639;
}

/* =============================================================
   TWIN ROW — two-column split (Android + Gaming Avatars)
   ============================================================= */
.phoenix-twin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.phoenix-twin__cell {
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.phoenix-twin__cell:last-child { border-right: none; }
.phoenix-twin__media {
  background: #000;
  padding: 40px 0 10px;
  display: flex;
  justify-content: center;
}
.phoenix-twin__media--placeholder { background: #000; }
.phoenix-twin__media img,
.phoenix-twin__media video {
  width: 70%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.6);
}
@media (max-width: 1024px) {
  .phoenix-twin__media { padding: 30px 0 0; }
  .phoenix-twin__media img,
  .phoenix-twin__media video { width: 60%; max-width: 320px; }
}
.phoenix-twin__content {
  padding: 50px 50px 60px;
  color: #fff;
  flex: 1;
}
.phoenix-twin__num {
  font-family: 'Integral CF', Impact, sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
}
.phoenix-twin__title {
  font-family: 'Sequel100Wide', 'Integral CF', Impact, sans-serif;
  font-size: clamp(32px, 3.4vw, 48px);
  font-weight: 800;
  letter-spacing: -1px;
  margin: 0 0 16px;
  line-height: 1;
}
.phoenix-twin__body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
  margin: 0 0 20px;
}
.phoenix-twin__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.phoenix-twin__list li {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  padding: 6px 0 6px 22px;
  position: relative;
}
.phoenix-twin__list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 9px;
  color: rgba(255,255,255,0.4);
}
.phoenix-twin__cell:first-child .phoenix-twin__list li::before { color: #A4C639; }
.phoenix-twin__cell:last-child  .phoenix-twin__list li::before { color: #FFD23F; }
@media (max-width: 1024px) {
  .phoenix-twin { grid-template-columns: 1fr; }
  .phoenix-twin__cell { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .phoenix-twin__cell:last-child { border-bottom: none; }
  .phoenix-twin__content { padding: 40px 24px 50px; }
}

/* GTA carousel inside twin row — 4 images, 2s fade, 8s loop total */
.phoenix-twin__carousel {
  position: relative;
  width: 70%;
  max-width: 380px;
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,0.6);
}
.phoenix-twin__carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  animation: phoenixTwinCarousel 8s infinite;
}
.phoenix-twin__carousel img:nth-child(1) { animation-delay: 0s; }
.phoenix-twin__carousel img:nth-child(2) { animation-delay: 2s; }
.phoenix-twin__carousel img:nth-child(3) { animation-delay: 4s; }
.phoenix-twin__carousel img:nth-child(4) { animation-delay: 6s; }
@keyframes phoenixTwinCarousel {
  0%        { opacity: 0; }
  6%, 25%   { opacity: 1; }
  31%, 100% { opacity: 0; }
}
@media (max-width: 1024px) {
  .phoenix-twin__carousel { width: 60%; max-width: 320px; }
}

/* =============================================================
   FOOTER STRAPLINE — echoes mipic.co homepage hero tagline
   ============================================================= */
.phoenix-strapline {
  background: #000;
  color: #fff;
  padding: 80px 60px 100px;
  text-align: left;
}
.phoenix-strapline__line {
  font-family: 'Sequel100Wide', sans-serif;
  font-weight: 700;
  font-size: 48px;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin: 0;
  white-space: nowrap;
}
.phoenix-strapline__white {
  color: #fff;
  display: inline-block;
  vertical-align: baseline;
}
.phoenix-strapline__highlight {
  display: inline-block;
  background: #fff;
  color: #000;
  padding: 7.5px 10px;
  line-height: 1;
  margin-left: 10px;
  vertical-align: baseline;
  position: relative;
  top: 4px;
}
.phoenix-strapline__sub {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  margin: 18px 0 0;
}
@media (max-width: 768px) {
  .phoenix-strapline { padding: 60px 24px 70px; }
  .phoenix-strapline__line { font-size: 32px; line-height: 1; white-space: normal; }
  .phoenix-strapline__highlight { padding: 5.5px 8px; margin-left: 0; display: inline-block; margin-top: 4px; top: 0; }
  .phoenix-strapline__sub { font-size: 15px; }
}
