  :root {
    --coral: #FF6B6B;
    --teal: #2EC4B6;
    --gold: #FFD166;
    --navy: #0D1B2A;
    --cream: #FFF8F0;
    --lavender: #C77DFF;
    --mid: #3A5068;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--navy);
    overflow-x: hidden;
  }

  /* ── MAIN SITE ── */
  #site { display: block; }

  /* HERO */
  .hero {
    background: var(--navy);
    padding: 5rem 2rem 4rem;
    position: relative; overflow: hidden;
  }

  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 10% 80%, rgba(255,107,107,0.18) 0%, transparent 50%),
      radial-gradient(ellipse at 90% 10%, rgba(46,196,182,0.15) 0%, transparent 50%),
      radial-gradient(ellipse at 50% 100%, rgba(199,125,255,0.12) 0%, transparent 50%);
  }

  .hero-inner {
    max-width: 900px; margin: 0 auto;
    position: relative; z-index: 1;
    display: grid; grid-template-columns: auto 1fr; gap: 3rem; align-items: center;
  }

  .hero-avatar {
    width: 130px; height: 130px;
    border-radius: 50%;
    border: 4px solid var(--coral);
    object-fit: cover;
    box-shadow: 0 0 0 8px rgba(255,107,107,0.15);
  }

  .hero-avatar-placeholder {
    width: 130px; height: 130px;
    border-radius: 50%;
    border: 4px solid var(--coral);
    background: linear-gradient(135deg, var(--coral), var(--teal));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem; font-weight: 900; color: #fff;
    box-shadow: 0 0 0 8px rgba(255,107,107,0.15);
  }

  .hero-name {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 900; color: #fff;
    letter-spacing: -0.03em; line-height: 1;
  }

  .hero-name span { color: var(--coral); }

  .hero-title {
    font-size: 0.78rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--teal); margin: 0.7rem 0 1.2rem;
    font-weight: 500;
  }

  .hero-contacts {
    display: flex; flex-wrap: wrap; gap: 1rem;
  }

  .hero-contact {
    display: flex; align-items: center; gap: 0.4rem;
    font-size: 0.82rem; color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
  }
  .hero-contact:hover { color: var(--coral); }
  .hero-contact .icon { font-size: 1rem; }

  /* COLOR STRIPE */
  .stripe {
    height: 6px;
    background: linear-gradient(90deg, var(--coral), var(--gold), var(--teal), var(--lavender));
  }

  /* TABS */
  .tab-nav {
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.08);
    position: sticky; top: 0; z-index: 100;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  }
  .tab-nav-inner {
    max-width: 900px; margin: 0 auto;
    padding: 0 2rem;
    display: flex; gap: 0;
  }
  .tab-btn {
    padding: 1rem 1.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem; font-weight: 500;
    letter-spacing: 0.06em; text-transform: uppercase;
    color: var(--mid);
    background: none; border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
  }
  .tab-btn:hover { color: var(--navy); }
  .tab-btn.active { color: var(--coral); border-bottom-color: var(--coral); }
  .tab-panel { display: none; }
  .tab-panel.active { display: block; }
  /* LEADERSHIP SECTIONS */
  .leadership-wrap {
    max-width: 960px; margin: 0 auto;
    padding: 2rem 3rem 4rem;
  }
  .ls-section {
    display: flex; flex-direction: column;
    gap: 1.5rem;
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.07);
  }
  .ls-section:last-child { border-bottom: none; }
  .ls-left { display: flex; flex-direction: column; }
  .ls-number {
    font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--coral); font-weight: 500; margin-bottom: 0.8rem;
  }
  .ls-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700; color: var(--navy);
    line-height: 1.25; margin-bottom: 0.6rem;
  }
  .ls-body {
    font-size: 0.9rem; line-height: 1.8; color: var(--mid);
  }
  .ls-right {
    width: 100%;
  }
  .ls-image-placeholder {
    width: 100%; aspect-ratio: 4/3;
    background: #e8e8e8;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 3rem; font-weight: 700;
    color: rgba(0,0,0,0.18);
  }
  @media (max-width: 700px) {
    .ls-section { flex-direction: column; }
    .leadership-wrap { padding: 1.5rem; }
  }

  .placeholder {
    max-width: 900px; margin: 0 auto;
    padding: 5rem 2rem; text-align: center;
  }
  .placeholder-icon { font-size: 3rem; margin-bottom: 1.2rem; opacity: 0.25; }
  .placeholder-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700; color: var(--navy);
    margin-bottom: 0.6rem;
  }
  .placeholder-sub { font-size: 0.88rem; color: var(--mid); line-height: 1.6; }

  /* LAYOUT */
  .main {
    max-width: 900px; margin: 0 auto;
    padding: 3.5rem 2rem;
    display: grid; grid-template-columns: 200px 1fr; gap: 3.5rem;
  }

  /* SIDEBAR */
  .sidebar {}

  .sidebar-block { margin-bottom: 2.5rem; }

  .sidebar-label {
    font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--coral); font-weight: 500;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255,107,107,0.25);
  }

  .tag-list { display: flex; flex-direction: column; gap: 0.3rem; }

  .tag {
    font-size: 0.82rem; font-weight: 400;
    color: var(--mid); padding: 0.1rem 0;
  }
  .tag-coral, .tag-teal, .tag-lavender, .tag-gold { color: var(--mid); }

  .award-card {
    padding: 0.5rem 0;
    margin-bottom: 0.8rem;
  }
  .award-year { font-size: 0.65rem; letter-spacing: 0.15em; color: var(--gold); text-transform: uppercase; margin-bottom: 0.2rem; }
  .award-name { font-size: 0.82rem; font-weight: 500; line-height: 1.4; color: var(--navy); }
  .award-sub  { font-size: 0.73rem; color: var(--mid); margin-top: 0.2rem; }

  .edu-school { font-size: 0.78rem; font-weight: 500; color: var(--mid); margin-bottom: 0.2rem; }
  .edu-degree { font-family: 'Playfair Display', serif; font-size: 0.95rem; font-style: italic; color: var(--navy); line-height: 1.35; margin-bottom: 0.3rem; }
  .edu-detail { font-size: 0.76rem; color: var(--mid); line-height: 1.5; }

  .vol-item { margin-bottom: 0.6rem; }
  .vol-role  { font-size: 0.8rem; font-weight: 500; color: var(--navy); }
  .vol-org   { font-size: 0.73rem; color: var(--mid); }

  .beyond-item {
    font-size: 0.82rem; color: var(--mid);
    padding: 0.3rem 0;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .beyond-item::before { content:'→'; color: var(--teal); font-size: 0.7rem; }

  /* MAIN CONTENT */
  .content {}

  .summary-block {
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .summary-text {
    font-size: 0.92rem; line-height: 1.8; color: var(--mid);
  }
  .summary-text strong { color: var(--navy); font-weight: 600; }

  .section-label {
    font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--teal); font-weight: 500; margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.6rem;
  }
  .section-label::after { content:''; flex:1; height:1px; background: rgba(46,196,182,0.25); }

  .job {
    margin-bottom: 1.4rem;
    padding-bottom: 1.4rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    position: relative;
  }
  .job:last-child { border-bottom: none; margin-bottom: 0; }

  .job-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 0.8rem; }

  .job-role {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem; font-weight: 700; color: var(--navy);
    line-height: 1.3;
  }

  .job-meta { font-size: 0.73rem; color: var(--mid); text-align: right; line-height: 1.5; }
  .job-company { font-weight: 500; }

  .job-period {
    display: inline-block;
    background: var(--teal);
    color: #fff; border-radius: 100px;
    padding: 0.15rem 0.65rem; font-size: 0.68rem; font-weight: 500;
    margin-top: 0.2rem;
  }

  .job-bullets { list-style: none; }
  .job-bullets li {
    font-size: 0.84rem; line-height: 1.65; color: var(--mid);
    padding: 0.4rem 0 0.4rem 1.2rem;
    position: relative;
    border-top: 1px dashed rgba(199,125,255,0.07);
  }
  .job-bullets li:first-child { border-top: none; }
  .job-bullets li::before {
    content: '▸';
    position: absolute; left: 0;
    color: var(--coral); font-size: 0.65rem; top: 0.55rem;
  }
  .job-bullets li strong { color: var(--navy); font-weight: 500; }

  /* STAT PILLS */
  .stat-row { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 0.8rem 0; }
  .stat {
    padding: 0.25rem 0.7rem; border-radius: 100px;
    font-size: 0.73rem; font-weight: 500;
    background: linear-gradient(135deg, rgba(255,107,107,0.1), rgba(199,125,255,0.1));
    color: var(--navy); border: 1px solid rgba(255,107,107,0.2);
  }

  /* FOOTER */
  footer {
    background: var(--navy); color: rgba(255,255,255,0.4);
    text-align: center; padding: 1.5rem;
    font-size: 0.75rem; letter-spacing: 0.08em;
  }
  footer span { color: var(--coral); }
  footer .footer-dot { color: rgba(255,255,255,0.25); }
  footer .footer-ideas { color: var(--teal); }
  footer .footer-claude { color: var(--gold); }

  /* LEADERSHIP COMPANIES (slide 02) */
  .lco-graphic {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .lco-container {
    background: var(--navy);
    border-radius: 16px;
    padding: 2rem 2rem 1.8rem;
    position: relative;
    overflow: hidden;
  }
  .lco-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 15% 85%, rgba(46,196,182,0.1) 0%, transparent 55%),
      radial-gradient(ellipse at 85% 15%, rgba(255,107,107,0.08) 0%, transparent 55%),
      radial-gradient(ellipse at 50% 50%, rgba(255,209,102,0.04) 0%, transparent 60%);
    pointer-events: none;
  }
  .lco-columns {
    display: flex;
    gap: 1.5rem;
    position: relative;
  }
  .lco-company {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .lco-col-divider {
    width: 1px;
    background: rgba(255,255,255,0.08);
    align-self: stretch;
    flex-shrink: 0;
  }
  .lco-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.9rem;
  }
  .lco-logo {
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
  }
  .lco-logo-c1 {
    height: 30px;
  }
  .lco-tags {
    display: flex;
    gap: 0.35rem;
    align-items: center;
  }
  .lco-tag {
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
    font-size: 0.55rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  .lco-tag-teal {
    background: rgba(46,196,182,0.15);
    color: var(--teal);
  }
  .lco-tag-coral {
    background: rgba(255,107,107,0.15);
    color: var(--coral);
  }
  .lco-tag-dim {
    background: rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.4);
  }
  .lco-node {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-left-width: 3px;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    margin-bottom: 0.9rem;
  }
  .lco-node-teal { border-left-color: var(--teal); }
  .lco-node-coral { border-left-color: var(--coral); }
  .lco-traits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
  }
  .lco-traits li {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.45;
    padding-left: 0.75rem;
    position: relative;
  }
  .lco-node-teal .lco-traits li::before {
    content: '';
    position: absolute; left: 0; top: 0.35rem;
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--teal);
  }
  .lco-node-coral .lco-traits li::before {
    content: '';
    position: absolute; left: 0; top: 0.35rem;
    width: 4px; height: 4px; border-radius: 50%;
    background: var(--coral);
  }
  .lco-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.85);
    margin-top: 0.65rem;
    padding-top: 0.55rem;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .lco-section-label {
    font-size: 0.58rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 500;
    margin-bottom: 0.3rem;
  }
  .lco-section-label-coral {
    color: var(--coral);
  }
  .lco-highlight-teal {
    color: var(--teal);
    font-weight: 500;
  }
  .lco-highlight-coral {
    color: var(--coral);
    font-weight: 500;
  }
  .lco-project {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.48);
    line-height: 1.55;
  }
  .lco-connect {
    position: relative;
    width: 100%;
    padding-top: calc(94 / 860 * 100%);
  }
  .lco-connect-svg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
  }
  .lco-connect-label {
    position: absolute;
    top: 18%;
    left: 75%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--mid);
    font-weight: 500;
    background: var(--cream);
    padding: 0.15rem 0.6rem;
    border-radius: 100px;
    white-space: nowrap;
  }
  .lco-partners {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
  }
  .lco-partner-col {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .lco-partner-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.6rem 0.4rem;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .lco-partner-logo {
    height: 32px;
    object-fit: contain;
  }
  .lco-logo-walmart {
    height: 36px;
  }
  .lco-partner-detail {
    padding: 0.6rem 0.5rem;
    text-align: center;
    font-size: 0.72rem;
    color: var(--mid);
    line-height: 1.45;
    flex: 1;
  }
  .lco-partner-detail strong {
    color: var(--navy);
    font-weight: 600;
  }

  /* LEADERSHIP SCOPE (slide 03) */
  .lsc-graphic {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .lsc-hero {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(13,27,42,0.18);
    background: #fff;
  }
  .lsc-header-bar {
    background: var(--navy);
    color: #fff;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    padding: 0.9rem 2rem;
  }
  .lsc-journey-img {
    width: 100%;
    display: block;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-bottom: calc(0.75rem - 4px);
    clip-path: inset(0 0 4px 0);
  }
  .lsc-journey-img:hover { opacity: 0.85; }
  .lsc-tagline-eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    font-weight: 500;
    text-align: center;
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
  }
  .lsc-tagline-wrap {
    background: var(--navy);
    padding: 1.5rem 3rem 2.5rem;
    position: relative;
    overflow: hidden;
  }
  .lsc-tagline-wrap::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 0% 50%, rgba(46,196,182,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 100% 20%, rgba(255,209,102,0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 60% 100%, rgba(255,107,107,0.06) 0%, transparent 50%);
  }
  .lsc-tagline-wrap::after {
    content: '\201C';
    position: absolute;
    bottom: -2rem; right: 1rem;
    font-family: 'Playfair Display', serif;
    font-size: 12rem; font-weight: 900;
    color: rgba(255,255,255,0.03);
    pointer-events: none; user-select: none; line-height: 1;
  }
  .lsc-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    line-height: 1.4;
    position: relative;
    z-index: 1;
  }
  .lsc-section-break {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--mid);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }
  .lsc-section-break::before,
  .lsc-section-break::after {
    content: '';
    flex: 1;
    height: 1px;
    background: rgba(58,80,104,0.2);
  }
  .lsc-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  .lsc-result {
    background: var(--navy);
    border-radius: 10px;
    padding: 1.25rem 1rem;
    text-align: center;
  }
  .lsc-result-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--teal);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
  }
  .lsc-result-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--coral);
    margin-bottom: 0.25rem;
  }
  .lsc-result-label {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .lsc-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
  }
  .lsc-lightbox.active { display: flex; }
  .lsc-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 12px;
  }

  /* RESPONSIVE */
  @media (max-width: 700px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 1.5rem; }
    .hero-avatar-placeholder, .hero-avatar { margin: 0 auto; }
    .hero-contacts { justify-content: center; }
    .main { grid-template-columns: 1fr; gap: 2rem; }
  }

  /* PAGE LOAD ANIMATIONS */
  .fade-in {
    opacity: 1;
  }

  /* FIXED SECTION NAV ARROW */
  .section-nav-arrow {
    position: fixed;
    right: 2rem;
    bottom: 2.5rem;
    width: 48px; height: 48px;
    background: var(--navy);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: none;
    align-items: center; justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
    z-index: 500;
    transition: background 0.2s, transform 0.2s;
  }
  .section-nav-arrow:hover {
    background: var(--coral);
    transform: translateY(2px);
  }
  .section-nav-arrow.visible { display: flex; }

  /* LEADERSHIP DRIVE (ld- prefix) */
  .ld-section-divider {
    display: flex; align-items: center; gap: 1rem;
    margin: 1.5rem 0;
  }
  .ld-section-divider::before,
  .ld-section-divider::after {
    content: ''; flex: 1; height: 1px;
    background: rgba(13,27,42,0.1);
  }
  .ld-section-divider span {
    font-size: 0.72rem; color: var(--mid); opacity: 0.6;
    font-style: italic; white-space: nowrap;
  }
  .ld-graphic-header {
    text-align: left; margin-bottom: 1.5rem;
    display: flex; align-items: stretch; gap: 1.2rem;
  }
  .ld-graphic-number {
    font-family: 'Playfair Display', serif;
    font-size: 5rem; font-weight: 900; line-height: 1;
    color: var(--coral); flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
  }
  .ld-graphic-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700; color: var(--navy);
    line-height: 1.25; display: flex; align-items: center;
    padding-top: 1.4rem;
  }
  .ld-process-row {
    display: flex; align-items: stretch;
  }
  .ld-process-step {
    flex: 1; min-width: 0;
    opacity: 0; transform: translateX(-10px);
    animation: ldFadeRight 0.45s ease forwards;
  }
  .ld-process-step:nth-child(1) { animation-delay: 0.05s; }
  .ld-process-step:nth-child(2) { animation-delay: 0.22s; }
  .ld-process-step:nth-child(3) { animation-delay: 0.39s; }
  .ld-process-step:nth-child(4) { animation-delay: 0.56s; }
  @keyframes ldFadeRight {
    to { opacity: 1; transform: translateX(0); }
  }
  .ld-node {
    height: 100%; background: #fff; border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 2px 14px rgba(0,0,0,0.06);
    overflow: hidden; display: flex; flex-direction: column;
  }
  .ld-node-top { height: 4px; width: 100%; flex-shrink: 0; }
  .ld-node-body {
    padding: 1.1rem 1rem; display: flex;
    flex-direction: column; gap: 0.5rem; flex: 1;
  }
  .ld-node-icon {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .ld-node-label {
    font-size: 0.57rem; letter-spacing: 0.17em;
    text-transform: uppercase; font-weight: 600;
  }
  .ld-node-heading {
    font-family: 'Playfair Display', serif;
    font-size: 0.82rem; font-weight: 700;
    color: var(--navy); line-height: 1.35;
  }
  .ld-node-detail {
    font-size: 0.72rem; color: var(--mid);
    line-height: 1.55; flex: 1;
  }
  .ld-node-footer {
    padding-top: 0.55rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex; flex-wrap: wrap; gap: 0.25rem; align-items: center;
  }
  .ld-node-badge {
    display: inline-block;
    padding: 0.16rem 0.55rem; border-radius: 100px;
    font-size: 0.57rem; font-weight: 600;
    letter-spacing: 0.07em; text-transform: uppercase;
    margin-left: auto; white-space: nowrap;
  }
  .ld-arrow-wrap {
    display: flex; align-items: center; justify-content: center;
    width: 32px; flex-shrink: 0;
    opacity: 0; animation: ldFadeIn 0.3s ease forwards;
  }
  .ld-arrow-wrap:nth-of-type(2) { animation-delay: 0.18s; }
  .ld-arrow-wrap:nth-of-type(4) { animation-delay: 0.35s; }
  .ld-arrow-wrap:nth-of-type(6) { animation-delay: 0.52s; }
  @keyframes ldFadeIn { to { opacity: 1; } }
  .ld-arrow-wrap svg { opacity: 0.3; }
  .ld-n1 .ld-node-top  { background: var(--teal); }
  .ld-n1 .ld-node-icon { background: rgba(46,196,182,0.12); color: var(--teal); }
  .ld-n1 .ld-node-label { color: var(--teal); }
  .ld-n1 .ld-node-badge { background: rgba(46,196,182,0.12); color: var(--teal); }
  .ld-n2 .ld-node-top  { background: var(--lavender); }
  .ld-n2 .ld-node-icon { background: rgba(199,125,255,0.12); color: var(--lavender); }
  .ld-n2 .ld-node-label { color: var(--lavender); }
  .ld-n2 .ld-node-badge { background: rgba(199,125,255,0.12); color: var(--lavender); }
  .ld-n3 .ld-node-top  { background: var(--coral); }
  .ld-n3 .ld-node-icon { background: rgba(255,107,107,0.12); color: var(--coral); }
  .ld-n3 .ld-node-label { color: var(--coral); }
  .ld-n3 .ld-node-badge { background: rgba(255,107,107,0.12); color: var(--coral); }
  .ld-n4 .ld-node-top  { background: var(--gold); }
  .ld-n4 .ld-node-icon { background: rgba(255,209,102,0.15); color: #9a6e00; }
  .ld-n4 .ld-node-label { color: #9a6e00; }
  .ld-n4 .ld-node-badge { background: rgba(255,209,102,0.2); color: #9a6e00; }
  .ld-section-footer {
    margin-top: 1.2rem; text-align: center;
    font-size: 0.72rem; color: var(--mid);
    opacity: 0.65; font-style: italic;
  }
  .ld-flywheel-wrap {
    background: var(--navy); border-radius: 16px;
    padding: 1.8rem 2rem; position: relative; overflow: hidden;
  }
  .ld-flywheel-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 15% 85%, rgba(46,196,182,0.1) 0%, transparent 55%),
      radial-gradient(ellipse at 85% 15%, rgba(255,107,107,0.08) 0%, transparent 55%),
      radial-gradient(ellipse at 50% 50%, rgba(255,209,102,0.04) 0%, transparent 60%);
    pointer-events: none;
  }
  .ld-flywheel-section-label {
    font-size: 0.6rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: rgba(255,255,255,0.3);
    font-weight: 500; margin-bottom: 1.2rem; position: relative;
  }
  .ld-flywheel-layout {
    display: flex; align-items: center; gap: 2rem; position: relative;
  }
  .ld-flywheel-svg-wrap {
    flex: 1; min-width: 0; position: relative;
  }
  .ld-flywheel-svg-wrap svg { width: 100%; height: 100%; overflow: visible; }
  @keyframes ldSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
  }
  .ld-arc-spin {
    transform-origin: 130px 130px;
    animation: ldSpin 20s linear infinite;
  }
  .ld-arc-spin-rev {
    transform-origin: 130px 130px;
    animation: ldSpin 14s linear infinite reverse;
  }
  .ld-flywheel-nodes {
    flex: 1; display: flex; flex-direction: column; gap: 0.7rem;
  }
  .ld-fw-node {
    flex: 1; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-left-width: 3px; border-radius: 10px;
    padding: 0.85rem 1rem; display: flex; flex-direction: column; gap: 0.25rem;
    opacity: 0; transform: translateX(12px);
    animation: ldFwFade 0.5s ease forwards;
  }
  .ld-fw-node:nth-child(1) { animation-delay: 0.1s; }
  .ld-fw-node:nth-child(2) { animation-delay: 0.28s; }
  .ld-fw-node:nth-child(3) { animation-delay: 0.46s; }
  @keyframes ldFwFade { to { opacity: 1; transform: translateX(0); } }
  .ld-fw-meta {
    display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.1rem;
  }
  .ld-fw-day {
    font-size: 0.57rem; letter-spacing: 0.15em;
    text-transform: uppercase; font-weight: 600;
  }
  .ld-fw-duration {
    padding: 0.08rem 0.4rem; border-radius: 100px;
    font-size: 0.55rem; font-weight: 600;
    letter-spacing: 0.06em; text-transform: uppercase;
  }
  .ld-fw-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.88rem; font-weight: 700; color: #fff; line-height: 1.3;
  }
  .ld-fw-detail {
    font-size: 0.7rem; color: rgba(255,255,255,0.48); line-height: 1.5;
  }
  .ld-fw-teal { border-left-color: var(--teal); }
  .ld-fw-teal .ld-fw-day { color: var(--teal); }
  .ld-fw-teal .ld-fw-duration { background: rgba(46,196,182,0.15); color: var(--teal); }
  .ld-fw-gold { border-left-color: var(--gold); }
  .ld-fw-gold .ld-fw-day { color: var(--gold); }
  .ld-fw-gold .ld-fw-duration { background: rgba(255,209,102,0.15); color: var(--gold); }
  .ld-fw-coral { border-left-color: var(--coral); }
  .ld-fw-coral .ld-fw-day { color: var(--coral); }
  .ld-fw-coral .ld-fw-duration { background: rgba(255,107,107,0.15); color: var(--coral); }
  .ld-outcomes-label {
    font-size: 0.6rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--coral);
    font-weight: 500; margin: 1.5rem 0 0.8rem;
  }
  .ld-outcomes-row { display: flex; gap: 0.75rem; }
  .ld-outcome-card {
    flex: 1; background: #fff; border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    overflow: hidden; display: flex; flex-direction: column;
    opacity: 0; transform: translateY(10px);
    animation: ldFadeUp 0.45s ease forwards;
  }
  .ld-outcome-card:nth-child(1) { animation-delay: 0.1s; }
  .ld-outcome-card:nth-child(2) { animation-delay: 0.22s; }
  .ld-outcome-card:nth-child(3) { animation-delay: 0.34s; }
  .ld-outcome-card:nth-child(4) { animation-delay: 0.46s; }
  .ld-outcome-card:nth-child(5) { animation-delay: 0.58s; }
  @keyframes ldFadeUp { to { opacity: 1; transform: translateY(0); } }
  .ld-outcome-stripe { height: 3px; width: 100%; }
  .ld-outcome-body {
    padding: 0.9rem 0.85rem; flex: 1;
    display: flex; flex-direction: column; gap: 0.35rem;
  }
  .ld-outcome-icon {
    width: 30px; height: 30px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .ld-outcome-heading {
    font-family: 'Playfair Display', serif;
    font-size: 0.78rem; font-weight: 700; color: var(--navy); line-height: 1.3;
  }
  .ld-outcome-detail {
    font-size: 0.68rem; color: var(--mid); line-height: 1.5;
  }
  .ld-oc-teal .ld-outcome-stripe { background: var(--teal); }
  .ld-oc-teal .ld-outcome-icon { background: rgba(46,196,182,0.12); color: var(--teal); }
  .ld-oc-coral .ld-outcome-stripe { background: var(--coral); }
  .ld-oc-coral .ld-outcome-icon { background: rgba(255,107,107,0.12); color: var(--coral); }
  .ld-oc-lavender .ld-outcome-stripe { background: var(--lavender); }
  .ld-oc-lavender .ld-outcome-icon { background: rgba(199,125,255,0.12); color: var(--lavender); }
  .ld-oc-gold .ld-outcome-stripe { background: var(--gold); }
  .ld-oc-gold .ld-outcome-icon { background: rgba(255,209,102,0.15); color: #9a6e00; }
  .ld-oc-navy .ld-outcome-stripe { background: var(--mid); }
  .ld-oc-navy .ld-outcome-icon { background: rgba(58,80,104,0.1); color: var(--mid); }

  /* LEADERSHIP TRAINING (lt- prefix) */
  .lt-training-row {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 0;
    align-items: center;
    padding: 1.4rem 0;
  }
  .lt-training-row + .lt-training-row {
    border-top: 1px solid rgba(13,27,42,0.07);
  }
  .lt-img-side { padding-right: 1.8rem; }
  .lt-img-wrap {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 16px rgba(13,27,42,0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: pointer;
  }
  .lt-training-row:hover .lt-img-wrap {
    box-shadow: 0 8px 28px rgba(13,27,42,0.15);
    transform: translateY(-2px);
  }
  .lt-img-wrap img { width: 100%; display: block; }
  .lt-text-side {
    padding-left: 1.8rem;
    border-left: 3px solid;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }
  .lt-r1 .lt-text-side { border-color: var(--teal); }
  .lt-r2 .lt-text-side { border-color: var(--coral); }
  .lt-r3 .lt-text-side { border-color: var(--gold); }
  .lt-row-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 500;
  }
  .lt-r1 .lt-row-eyebrow { color: var(--teal); }
  .lt-r2 .lt-row-eyebrow { color: var(--coral); }
  .lt-r3 .lt-row-eyebrow { color: #9a6e00; }
  .lt-row-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
  }
  .lt-row-sub {
    font-size: 0.76rem;
    color: var(--mid);
    line-height: 1.65;
    font-weight: 300;
    margin-top: 0.1rem;
  }
  .lt-lightbox {
    display: none;
    position: fixed; inset: 0;
    background: rgba(13,27,42,0.85);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 2rem;
  }
  .lt-lightbox.lt-active { display: flex; }
  .lt-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 12px 60px rgba(0,0,0,0.4);
  }

  /* NETFLIX VALUES TABLE */
  .nf-values-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.25);
  }
  .nf-values-table thead tr {
    background: #071520;
    border-bottom: 1px solid rgba(255,255,255,0.15);
  }
  .nf-values-table thead th {
    padding: 0.85rem 1.2rem;
    text-align: left;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
  }
  .nf-values-table thead th:first-child { color: var(--coral); text-align: right; }
  .nf-values-table thead th:last-child { color: var(--teal); }
  .nf-values-table tbody tr {
    background: #0D1B2A;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background 0.15s;
  }
  .nf-values-table tbody tr:last-child { border-bottom: none; }
  .nf-values-table tbody tr:hover { background: #1c2f42; }
  .nf-values-table tbody td {
    padding: 0.8rem 1.2rem;
    vertical-align: middle;
    line-height: 1.5;
    color: rgba(255,255,255,0.6);
    white-space: nowrap;
  }
  .nf-values-table tbody td:first-child {
    width: 32%;
    border-right: 1px solid rgba(255,255,255,0.07);
    text-align: right;
  }
  .nf-value-name {
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
  }

  /* HYPOTHETICAL TAB */
  .hyp-wrap {
    max-width: 960px; margin: 0 auto;
    padding: 2.5rem 3rem 5rem;
  }
  .hyp-embed-header {
    margin-bottom: 1.5rem; padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    text-align: center;
  }
  .hyp-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 900; color: var(--navy);
    line-height: 1.2; margin-bottom: 0.4rem;
  }
  .hyp-subtitle { font-size: 0.9rem; color: var(--mid); margin-bottom: 1rem; }
  .hyp-open-link {
    display: inline-block;
    font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
    color: var(--coral); text-decoration: none;
    padding: 0.5rem 1.2rem;
    border: 1.5px solid var(--coral);
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
  }
  .hyp-open-link:hover { background: var(--coral); color: #fff; }
  .hyp-embed-frame {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    background: #fff;
  }
  .hyp-embed-frame iframe {
    width: 100%;
    height: 75vh;
    min-height: 500px;
    border: none;
    display: block;
  }

/* CAROUSEL */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: height 0.35s ease;
}
.carousel-track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.35s ease;
}
.carousel-slide {
  min-width: 100%;
}
#carousel-01 .carousel-slide {
  height: var(--carousel-01-height);
  overflow: hidden;
  box-sizing: border-box;
}
#carousel-01 .carousel-slide:nth-child(3) {
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(13,27,42,0.65);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 10;
  transition: background 0.2s;
}
.carousel-btn:hover { background: var(--coral); }
.carousel-prev { left: 0.6rem; }
.carousel-next { right: 0.6rem; }
.carousel-dots {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  margin-top: 0.6rem;
}
.carousel-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(0,0,0,0.2);
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  padding: 0;
}
.carousel-dot.active { background: var(--coral); }
.carousel-nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  color: var(--mid);
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}
.carousel-nav-btn:hover:not(:disabled) { color: var(--coral); }
.carousel-nav-btn:disabled { opacity: 0.2; cursor: default; }
.carousel-placeholder {
  aspect-ratio: 16/9;
  background: #e8e8e8;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700;
  color: rgba(0,0,0,0.2);
}

/* Photo collage – art-book style */
.collage {
  position: relative;
  aspect-ratio: 23/15;
  border-radius: 12px;
  overflow: hidden;
}
.collage img {
  position: absolute;
  object-fit: cover;
  aspect-ratio: 4/3;
  border: 3px solid #fff;
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  opacity: 0;
  transform: scale(0.7) rotate(var(--r, 0deg));
  transition: opacity 0.45s ease-out, transform 0.45s ease-out;
}
.collage.animate-in img {
  opacity: 1;
  transform: scale(1) rotate(var(--r, 0deg));
}

/* LEADERSHIP PRINCIPLES GRAPHIC */
.lp-graphic {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.lp-philosophy {
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(13,27,42,0.18);
  position: relative;
  padding: 2.8rem 3rem;
  opacity: 0;
  animation: lpPanelIn 0.6s ease 0.05s forwards;
}
.lp-philosophy::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 0% 50%, rgba(46,196,182,0.15) 0%, transparent 50%),
              radial-gradient(ellipse at 100% 20%, rgba(255,209,102,0.08) 0%, transparent 50%),
              radial-gradient(ellipse at 60% 100%, rgba(255,107,107,0.06) 0%, transparent 50%);
}
.lp-phil-bg-text {
  position: absolute;
  bottom: -2rem; right: 1rem;
  font-family: 'Playfair Display', serif;
  font-size: 12rem; font-weight: 900;
  color: rgba(255,255,255,0.03);
  pointer-events: none; user-select: none; line-height: 1;
}
.lp-phil-left { position: relative; z-index: 1; }
.lp-phil-left-eyebrow {
  font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--teal); font-weight: 500; margin-bottom: 0.75rem;
}
.lp-phil-left-headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900; font-style: italic;
  color: #fff; line-height: 1.3; max-width: 640px;
}
.lp-phil-left-headline em { font-style: normal; color: var(--teal); }
.lp-bridge {
  display: flex; align-items: center; gap: 0;
  opacity: 0; animation: lpPanelIn 0.5s ease 0.25s forwards;
}
.lp-bridge-line { flex: 1; height: 1px; background: linear-gradient(to right, transparent, rgba(58,80,104,0.4)); }
.lp-bridge-line-r { background: linear-gradient(to left, transparent, rgba(58,80,104,0.4)); }
.lp-bridge-center {
  display: flex; align-items: center; gap: 0.6rem; padding: 0 1rem;
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mid); font-weight: 500;
}
.lp-bridge-center::before, .lp-bridge-center::after {
  content: '\25C6'; font-size: 0.4rem; color: var(--coral); opacity: 0.6;
}
.lp-triptych {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(13,27,42,0.18);
}
.lp-panel {
  position: relative; padding: 2.8rem 2rem 2.4rem;
  display: flex; flex-direction: column; justify-content: space-between;
  min-height: 320px; overflow: hidden;
  opacity: 0; animation: lpPanelIn 0.6s ease forwards;
}
.lp-panel:nth-child(1) { animation-delay: 0.35s; }
.lp-panel:nth-child(2) { animation-delay: 0.5s; }
.lp-panel:nth-child(3) { animation-delay: 0.65s; }
@keyframes lpPanelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lp-panel:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 10%; bottom: 10%;
  width: 1px; background: rgba(255,255,255,0.1);
}
.lp-panel-define  { background: var(--navy); }
.lp-panel-inspire { background: var(--mid); }
.lp-panel-drive   { background: #1a0f0f; }
.lp-panel-define::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 20%, rgba(46,196,182,0.18) 0%, transparent 60%),
              radial-gradient(ellipse at 90% 90%, rgba(46,196,182,0.08) 0%, transparent 50%);
}
.lp-panel-inspire::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 10%, rgba(255,209,102,0.15) 0%, transparent 55%),
              radial-gradient(ellipse at 10% 90%, rgba(255,209,102,0.08) 0%, transparent 50%);
}
.lp-panel-drive::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 90% 20%, rgba(255,107,107,0.2) 0%, transparent 55%),
              radial-gradient(ellipse at 10% 80%, rgba(255,107,107,0.08) 0%, transparent 50%);
}
.lp-panel-number {
  position: absolute; bottom: -0.5rem; right: 1rem;
  font-family: 'Playfair Display', serif; font-size: 9rem; font-weight: 900;
  line-height: 1; color: rgba(255,255,255,0.04);
  pointer-events: none; user-select: none;
}
.lp-panel-top { position: relative; z-index: 1; }
.lp-panel-verb {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 900; line-height: 1;
  letter-spacing: -0.02em; color: #fff; margin-bottom: 0.6rem;
}
.lp-panel-define .lp-panel-verb  { color: var(--teal); }
.lp-panel-inspire .lp-panel-verb { color: var(--gold); }
.lp-panel-drive .lp-panel-verb   { color: var(--coral); }
.lp-panel-accent { width: 32px; height: 3px; border-radius: 2px; margin-bottom: 1.2rem; }
.lp-panel-define .lp-panel-accent  { background: var(--teal); }
.lp-panel-inspire .lp-panel-accent { background: var(--gold); }
.lp-panel-drive .lp-panel-accent   { background: var(--coral); }
.lp-panel-bottom { position: relative; z-index: 1; }
.lp-panel-mantra {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700; font-style: italic;
  color: #fff; line-height: 1.45; margin-bottom: 0.75rem; min-height: 4.35rem;
}
.lp-panel-sub {
  font-size: 0.72rem; color: rgba(255,255,255,0.45);
  line-height: 1.65; font-weight: 400;
}

/* THE WHAT GRAPHIC */
.tw-graphic { width: 100%; }
.tw-panels {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; align-items: stretch;
}
.tw-panel {
  background: var(--navy); border-radius: 16px;
  padding: 1.8rem 1.8rem 2rem; position: relative;
  overflow: hidden; display: flex; flex-direction: column; gap: 1.4rem;
}
.tw-panel-bg { position: absolute; inset: 0; pointer-events: none; }
.tw-panel:nth-child(1) .tw-panel-bg {
  background:
    radial-gradient(ellipse at 10% 90%, rgba(46,196,182,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 90% 10%, rgba(255,107,107,0.07) 0%, transparent 55%);
}
.tw-panel:nth-child(2) .tw-panel-bg {
  background:
    radial-gradient(ellipse at 50% 15%, rgba(255,209,102,0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 85%, rgba(46,196,182,0.1) 0%, transparent 50%);
}
.tw-panel-label {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--coral); font-weight: 500; position: relative;
}
.tw-two-things { display: flex; flex-direction: column; gap: 1.6rem; flex: 1; }
.tw-thing-row { display: flex; align-items: flex-start; gap: 1.2rem; }
.tw-thing-number {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; font-weight: 700; line-height: 0.85;
  flex-shrink: 0; width: 52px; text-align: right; user-select: none;
}
.tw-thing-number.tw-n-teal  { color: rgba(46,196,182,0.35); }
.tw-thing-number.tw-n-coral { color: rgba(255,107,107,0.35); }
.tw-thing-content { flex: 1; padding-top: 0.15rem; }
.tw-thing-label {
  font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 0.3rem;
}
.tw-row-teal .tw-thing-label { color: var(--teal); }
.tw-row-coral .tw-thing-label { color: var(--coral); }
.tw-thing-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700; color: #fff; line-height: 1.3;
  margin-bottom: 0.35rem;
}
.tw-thing-desc {
  font-size: 0.72rem; line-height: 1.65;
  color: rgba(255,255,255,0.45); font-weight: 300;
}
.tw-thing-chips { margin-top: 0.5rem; display: flex; flex-wrap: wrap; gap: 0.3rem; }
.tw-chip {
  font-size: 0.56rem; letter-spacing: 0.05em;
  padding: 0.18rem 0.55rem; border-radius: 100px;
  font-weight: 500; text-transform: uppercase;
}
.tw-row-teal .tw-chip { background: rgba(46,196,182,0.15); color: var(--teal); }
.tw-row-coral .tw-chip { background: rgba(255,107,107,0.15); color: var(--coral); }
.tw-things-divider {
  display: flex; align-items: center; gap: 0.6rem; padding-left: 64px;
}
.tw-div-line { flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.tw-div-label {
  font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.18); font-weight: 500;
}
/* ── Circular Flow (Panel 2) ── */
.tw-flow-container {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tw-flow-inner {
  position: relative;
  width: 100%;
  max-width: 420px;
}
.tw-flow-svg {
  display: block;
  width: 100%;
  height: auto;
}
.tw-flow-node {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  padding: 0.5rem 1.4rem;
  text-align: center;
  z-index: 2;
}
.tw-flow-node-what {
  top: 8%;
  border: 1px solid rgba(255,209,102,0.35);
  background: #0D1B2A;
}
.tw-flow-node-how {
  bottom: 8%;
  border: 1px solid rgba(46,196,182,0.35);
  background: #0D1B2A;
}
.tw-flow-node-label {
  font-size: 0.55rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 0.1rem;
}
.tw-flow-node-what .tw-flow-node-label { color: rgba(255,209,102,0.65); }
.tw-flow-node-how .tw-flow-node-label  { color: rgba(46,196,182,0.65); }
.tw-flow-node-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700; line-height: 1.1;
}
.tw-flow-node-what .tw-flow-node-name { color: #FFD166; }
.tw-flow-node-how .tw-flow-node-name  { color: #2EC4B6; }

/* ─── COMMERCE SCOPE GRAPHIC ─── */
.cs-graphic {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cs-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(13,27,42,0.18);
}

.cs-panel {
  position: relative;
  padding: 2.2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  overflow: hidden;
  opacity: 0;
  animation: csFadeIn 0.6s ease forwards;
}
.cs-panel:nth-child(1) { animation-delay: 0.2s; }
.cs-panel:nth-child(2) { animation-delay: 0.35s; }

.cs-panel-core {
  background: var(--navy);
}
.cs-panel-core::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(46,196,182,0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 10%, rgba(46,196,182,0.06) 0%, transparent 50%);
}
.cs-panel-lifecycle {
  background: var(--mid);
}
.cs-panel-lifecycle::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 80%, rgba(255,209,102,0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 10% 10%, rgba(255,209,102,0.06) 0%, transparent 50%);
}

.cs-panel-core::after {
  content: '';
  position: absolute;
  right: 0; top: 8%; bottom: 8%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.cs-panel-number {
  position: absolute;
  bottom: -0.5rem;
  right: 0.8rem;
  font-family: 'Playfair Display', serif;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  user-select: none;
}

.cs-panel-top {
  position: relative;
  z-index: 1;
}
.cs-panel-label {
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.cs-panel-core .cs-panel-label { color: var(--teal); }
.cs-panel-lifecycle .cs-panel-label { color: var(--gold); }

.cs-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.cs-panel-accent {
  width: 28px;
  height: 3px;
  border-radius: 2px;
  margin-top: 0.8rem;
}
.cs-panel-core .cs-panel-accent { background: var(--teal); }
.cs-panel-lifecycle .cs-panel-accent { background: var(--gold); }

.cs-panel-body {
  position: relative;
  z-index: 1;
}
.cs-panel-align-eyebrow {
  font-size: 0.55rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.cs-panel-align-text {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
  font-weight: 400;
}
.cs-panel-align-text strong {
  color: #fff;
  font-weight: 500;
}

/* ── Phone animation (bedrock panel) ── */
.cs-phone-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}
.cs-phone {
  width: 100px;
  height: 180px;
  border: 2px solid rgba(46,196,182,0.35);
  border-radius: 16px;
  background: rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
}
.cs-phone-notch {
  width: 36px;
  height: 4px;
  background: rgba(46,196,182,0.25);
  border-radius: 2px;
  margin: 6px auto 0;
}
.cs-phone-screens {
  display: flex;
  width: 400%;
  height: calc(100% - 14px);
  animation: csPhoneSlide 8s ease-in-out forwards;
}
.cs-phone-screen {
  width: calc(100% / 4);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 10px;
  text-align: center;
}
.cs-screen-icon {
  opacity: 0.8;
}
.cs-screen-check svg {
  color: var(--teal);
}
.cs-screen-label {
  font-size: 7px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}
.cs-screen-bar {
  width: 70%;
  height: 4px;
  background: rgba(46,196,182,0.15);
  border-radius: 2px;
}
.cs-screen-bar.cs-bar-short {
  width: 45%;
}
.cs-screen-pill {
  width: 70%;
  height: 12px;
  background: rgba(46,196,182,0.1);
  border: 1px solid rgba(46,196,182,0.2);
  border-radius: 6px;
}
.cs-screen-btn {
  font-size: 6px;
  font-weight: 600;
  color: var(--navy);
  background: var(--teal);
  padding: 3px 14px;
  border-radius: 8px;
  letter-spacing: 0.03em;
  margin-top: 2px;
}

/* Checklist elements */
.cs-screen-checklist {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 70%;
}
.cs-check-row {
  display: flex;
  align-items: center;
  gap: 4px;
}
.cs-check-box {
  width: 6px;
  height: 6px;
  border: 1px solid rgba(46,196,182,0.4);
  border-radius: 1px;
  flex-shrink: 0;
}
.cs-check-box.cs-checked {
  background: var(--teal);
  border-color: var(--teal);
}
.cs-check-text {
  flex: 1;
  height: 3px;
  background: rgba(46,196,182,0.15);
  border-radius: 1px;
}
.cs-check-text.cs-text-short {
  width: 60%;
  flex: none;
}

@keyframes csPhoneSlide {
  0%, 8%     { transform: translateX(0); }
  16%, 28%   { transform: translateX(-25%); }
  36%, 48%   { transform: translateX(-50%); }
  56%, 72%   { transform: translateX(-75%); }
  84%, 100%  { transform: translateX(0); }
}

/* ── Journey map (lifecycle panel) ── */
.cs-journey-wrap {
  position: relative;
  z-index: 1;
  margin-top: auto;
}
.cs-journey-svg {
  width: 100%;
  height: auto;
  display: block;
}
.cs-journey-path {
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: csJourneyDraw 3s ease forwards 0.3s;
}
.cs-j-dot {
  opacity: 0;
  animation: csJourneyDot 0.4s ease forwards;
}
.cs-j-d1  { animation-delay: 0.4s; }
.cs-j-d2  { animation-delay: 0.7s; }
.cs-j-d3  { animation-delay: 1.0s; }
.cs-j-d4  { animation-delay: 1.3s; }
.cs-j-d5  { animation-delay: 1.6s; }
.cs-j-d6  { animation-delay: 1.9s; }
.cs-j-d7  { animation-delay: 2.2s; }
.cs-j-d8  { animation-delay: 2.5s; }
.cs-j-d9  { animation-delay: 1.1s; }
.cs-j-d10 { animation-delay: 1.7s; }
.cs-j-d11 { animation-delay: 2.1s; }
.cs-j-d12 { animation-delay: 1.4s; }
.cs-j-d13 { animation-delay: 1.8s; }

@keyframes csJourneyDraw {
  to { stroke-dashoffset: 0; }
}
@keyframes csJourneyDot {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── Customer segments footer ── */
.cs-segments {
  opacity: 0;
  animation: csFadeIn 0.5s ease 0.5s forwards;
}
.cs-segments-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0.5rem;
}
.cs-segments-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(58,80,104,0.4));
}
.cs-segments-line-r {
  background: linear-gradient(to left, transparent, rgba(58,80,104,0.4));
}
.cs-segments-center {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1rem;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
  font-weight: 500;
}
.cs-segments-center::before,
.cs-segments-center::after {
  content: '\25C6';
  font-size: 0.4rem;
  color: var(--coral);
  opacity: 0.6;
}

.cs-segments-note {
  font-size: 0.72rem;
  color: var(--mid);
  line-height: 1.4;
  text-align: center;
  margin: 0 auto 0.6rem;
  white-space: nowrap;
}

.cs-segments-placeholder {
  background: rgba(13,27,42,0.04);
  border: 2px dashed rgba(58,80,104,0.2);
  border-radius: 12px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.cs-segments-img {
  width: 100%;
  border-radius: 12px;
}

/* Spender Segments HTML table */
.cs-seg-table {
  display: flex;
  gap: 0.5rem;
}
.cs-seg-groups {
  flex: 1;
  display: flex;
  gap: 0;
}
.cs-seg-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cs-seg-group-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0 0.25rem;
}
.cs-seg-line {
  flex: 1;
  height: 1.5px;
  background: var(--navy);
}
.cs-seg-cards {
  display: flex;
  gap: 0.4rem;
}
.cs-seg-card {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cs-seg-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  padding: 0.6rem 0.5rem;
  border-radius: 4px 4px 0 0;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
}
.cs-seg-debit {
  background: var(--navy);
}
.cs-seg-credit {
  background: var(--mid);
}
.cs-seg-def {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  color: var(--navy);
  text-align: center;
  padding: 0.5rem 0.4rem;
  line-height: 1.5;
  border: 1px solid rgba(13,27,42,0.1);
  border-top: none;
  border-radius: 0 0 4px 4px;
  flex: 1;
}
.cs-seg-def strong {
  text-decoration: underline;
}
.cs-seg-def em {
  font-style: italic;
}
.cs-seg-divider {
  width: 1px;
  border-left: 2px dashed rgba(13,27,42,0.2);
  margin: 1.5rem 0.5rem 0;
}
.cs-seg-spectrum {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding: 0 0.25rem;
}
.cs-seg-spectrum-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mid);
  white-space: nowrap;
}
.cs-seg-arrow-left {
  color: var(--coral);
}
.cs-seg-arrow-right {
  color: var(--teal);
}
.cs-seg-spectrum-bar {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--coral), var(--teal));
  position: relative;
}
.cs-seg-spectrum-bar::before,
.cs-seg-spectrum-bar::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
}
.cs-seg-spectrum-bar::before {
  left: -6px;
  border-right: 6px solid var(--coral);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}
.cs-seg-spectrum-bar::after {
  right: -6px;
  border-left: 6px solid var(--teal);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

@keyframes csFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── COMMERCE CRITIQUE GRAPHIC ─── */
.cc-graphic {
  display: flex;
  flex-direction: column;
}

/* Shared label row */
.cc-labels {
  display: flex;
  gap: 0;
}
.cc-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  background: var(--navy);
  padding: 1rem 1.5rem 0.5rem;
}
.cc-label-define {
  flex: 1.2;
  border-radius: 16px 0 0 0;
  color: var(--teal);
}
.cc-label-critique {
  flex: 0.8;
  border-left: 1px solid rgba(255,255,255,0.06);
  border-radius: 0 16px 0 0;
  color: var(--coral);
}

/* Two-panel layout */
.cc-panels {
  display: flex;
  gap: 0;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
}
.cc-panel {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.cc-panel-define {
  flex: 1.2;
  padding: 0.5rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.cc-panel-critique {
  flex: 0.8;
  padding: 0.5rem 1.5rem 1.2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.cc-sweetspot-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(46,196,182,0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 70% 50%, rgba(255,209,102,0.08) 0%, transparent 55%);
}
.cc-venn {
  flex-shrink: 0;
  width: 300px;
}
.cc-venn-center {
  width: 100%;
  max-width: 400px;
}
.cc-venn-svg {
  width: 100%;
  height: auto;
  display: block;
}
.cc-venn-circle {
  opacity: 0;
  animation: ccCircleIn 1s ease forwards;
}
.cc-venn-c1 { animation-delay: 0.2s; }
.cc-venn-c2 { animation-delay: 0.4s; }
@keyframes ccCircleIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cc-pulse-ring {
  animation: ccPulse 3s ease-in-out infinite;
}
@keyframes ccPulse {
  0%, 100% { r: 18; opacity: 0; }
  50%      { r: 28; opacity: 0.3; }
}

/* Vision callout */
.cc-vision {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin-top: -15px;
}
.cc-vision-arrow {
  line-height: 0;
}
.cc-vision-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Lookout items */
.cc-lookouts {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.cc-lookout {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cc-lookout-icon {
  flex-shrink: 0;
  opacity: 0.8;
}
.cc-lookout-text {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════
   Commerce Bedrocks (slide 03)
   ═══════════════════════════════════════════ */
.cb-graphic {
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
  padding: 2.5rem 2rem;
}
.cb-slide-title {
  text-align: center;
  margin-bottom: 0.8rem;
}
.cb-row-number {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--coral);
  margin-bottom: 0.25rem;
}
.cb-row-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}
.cb-phones {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}
.cb-phone-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

/* Phone frames */
.cb-phone {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}
.cb-phone-notch {
  width: 36px;
  height: 5px;
  background: rgba(255,255,255,0.08);
  border-radius: 0 0 5px 5px;
  margin: 0 auto;
}
.cb-phone-img {
  padding: 5px;
  height: calc(100% - 5px);
}
.cb-img-placeholder {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.03);
  border-radius: 14px;
  border: 1px dashed rgba(255,255,255,0.08);
}

/* Info boxes beneath phones */
.cb-info-box {
  width: 100%;
  margin-top: 0.75rem;
  padding: 0.75rem;
  background: rgba(255,255,255,0.06);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}
.cb-info-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}
.cb-info-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
  margin-bottom: 0.3rem;
}
.cb-info-result {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--teal);
  line-height: 1.4;
}
.cb-info-bullet {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  padding-left: 0.6rem;
  position: relative;
}
.cb-info-bullet::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--coral);
}
.cb-info-bullet strong {
  color: #fff;
  font-weight: 500;
}

/* ═══════════════════════════════════════════
   Commerce E2E (slide 04)
   ═══════════════════════════════════════════ */
.ce-graphic {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.ce-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ce-col-journey {
  flex: 1;
  min-width: 0;
}
.ce-col-phone {
  flex-shrink: 0;
  align-items: center;
}
.ce-col-header {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  line-height: 1.4;
}
.ce-journey-img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.ce-journey-img:hover {
  opacity: 0.85;
}
.ce-journey-placeholder {
  width: 100%;
  height: 120px;
  background: rgba(13,27,42,0.06);
  border: 2px dashed rgba(13,27,42,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ce-placeholder-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(13,27,42,0.2);
}
.ce-phone {
  width: 280px;
  height: 560px;
  background: var(--navy);
  border: 4px solid var(--navy);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.ce-phone-notch {
  width: 40px;
  height: 6px;
  background: var(--navy);
  border-radius: 0 0 6px 6px;
  margin: 0 auto;
}
.ce-phone-video {
  width: 100%;
  height: calc(100% - 6px);
  object-fit: cover;
}
.ce-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.ce-lightbox.active {
  display: flex;
}
.ce-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
}

/* ═══════════════════════════════════════════
   Commerce Iterate (slide 04)
   ═══════════════════════════════════════════ */
.ci-graphic {
  padding: 0;
}
.ci-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
.ci-pair {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}
.ci-pair-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--coral);
}
.ci-phones {
  display: flex;
  gap: 0.75rem;
  width: 100%;
}
.ci-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(13,27,42,0.15);
}
.ci-phone {
  flex: 1;
  min-width: 0;
  aspect-ratio: 9/18;
  background: var(--navy);
  border: 1.5px solid rgba(13,27,42,0.1);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}
.ci-arrow {
  flex-shrink: 0;
  opacity: 0.7;
}

/* ═══════════════════════════════════════════
   Commerce Results (slide 09)
   ═══════════════════════════════════════════ */
.cr-graphic {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cr-stats {
  display: flex;
  gap: 0;
  background: var(--navy);
  border-radius: 12px;
  padding: 1.5rem 0.5rem;
}
.cr-stat {
  flex: 1;
  text-align: center;
}
.cr-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
}
.cr-stat-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.6rem;
  line-height: 1.4;
}
.cr-stat-line1 {
  color: var(--teal);
}
.cr-bottom {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  justify-content: center;
  padding-left: 1.5rem;
}
.cr-left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}
.cr-right {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-width: 0;
  overflow: hidden;
}
.cr-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--coral);
  text-align: center;
}
.cr-prototype-video {
  width: 340px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(13,27,42,0.2);
}
.cr-feedback-img {
  width: auto;
  height: 736px;
  object-fit: contain;
  border-radius: 16px;
  cursor: pointer;
  transition: transform 0.2s;
}
.cr-feedback-img:hover {
  transform: scale(1.02);
}
.cr-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
}

/* ═══════════════════════════════════════════
   Commerce Conversion (slide 05)
   ═══════════════════════════════════════════ */
.cv-graphic {
  background: var(--navy);
  border-radius: 16px;
  padding: 2rem;
}
.cv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cv-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.cv-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.cv-unit {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ═══════════════════════════════════════════
   Commerce Dual Path (slide 06)
   ═══════════════════════════════════════════ */
.dp-graphic {
  padding: 0;
}
.dp-columns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.dp-subheader {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.75rem;
}
.dp-placeholder {
  width: 100%;
  height: 200px;
  background: rgba(13,27,42,0.05);
  border-radius: 12px;
  border: 1px dashed rgba(13,27,42,0.12);
}
.dp-img {
  width: 100%;
  border-radius: 12px;
  cursor: pointer;
  transition: opacity 0.2s;
}
.dp-img:hover {
  opacity: 0.85;
}
.dp-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.dp-lightbox.active {
  display: flex;
}
.dp-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
}

/* ═══════════════════════════════════════════
   Commerce Slides (slide 07)
   ═══════════════════════════════════════════ */
.cs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.cs-thumb {
  aspect-ratio: 16/10;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  padding: 0.5rem;
  box-shadow: 0 1px 4px rgba(13,27,42,0.1);
}
.cs-thumb:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(13,27,42,0.2);
}
.cs-thumb-inner {
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 10px;
}
.cs-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
  border-radius: 6px;
}
.cs-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.cs-lightbox.active {
  display: flex;
}
.cs-lightbox-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16/10;
  background: var(--navy);
  border-radius: 16px;
  overflow: hidden;
}
.cs-lightbox img.cs-lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
}
.cs-lightbox-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.cs-lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}
