/* ════════════════════════════════════════════════════════
   PROJECT THREE — dark theme
   Loaded after style.css and project-one.css.
════════════════════════════════════════════════════════ */

/* ── CSS VARIABLE OVERRIDES ─────────────────────────── */
:root {
  --accent:          #64B5F6;
  --bg:              #0D0B14;
  --card:            #16132A;
  --text:            #D3D4D2;
  --text-muted:      #919191;
  --text-mid:        #919191;
  --border-card:     rgba(255, 255, 255, 0.10);
  --border-light:    rgba(255, 255, 255, 0.07);
  --border-pill:     rgba(255, 255, 255, 0.18);
  --placeholder-bg:  #1E1A30;
  --placeholder-alt: #1A1628;
  --placeholder-lbl: #919191;
}

/* ── BODY BACKGROUND ────────────────────────────────── */
body {
  background: #0D0B14;
}

/* ── SECTION PILL ───────────────────────────────────── */
.section-pill {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: #919191;
}

/* ── CREATIVE BRIEF ─────────────────────────────────── */
.brief-headline {
  color: #D3D4D2;
}

.brief-accent {
  color: var(--accent);
}

.hmw-block {
  border-top-color: rgba(255, 255, 255, 0.12);
}

.hmw-label {
  color: #919191;
}

.hmw-text {
  color: #D3D4D2;
}

/* ── TIMELINE ───────────────────────────────────────── */
.timeline-line {
  background: rgba(255, 255, 255, 0.12);
}

.node-dot {
  background: var(--accent);
}

.node-date {
  color: #919191;
}

.phase-num,
.phase-name {
  color: #D3D4D2;
}

.phase-sub {
  color: var(--accent);
}

.phase-note {
  display: block;
  font-size: 11px;
  font-style: italic;
  color: #919191;
  margin-top: 6px;
  line-height: 1.4;
}

/* ── AUDIENCE / TRAITS ──────────────────────────────── */
.section-title-centered {
  color: #D3D4D2;
}

.trait-title {
  color: #D3D4D2;
}

.trait-body {
  color: #919191;
}

/* ── DESIGN SYSTEM STATEMENT ────────────────────────── */
.centered-statement {
  color: #D3D4D2;
}

/* ── SIDEBAR NAV ────────────────────────────────────── */
.sidebar-nav-card {
  background: #16132A;
  border: 0.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.sidebar-nav-link {
  color: #919191;
}

.sidebar-nav-link:hover {
  color: #D3D4D2;
}

.sidebar-nav-link.is-active {
  color: #D3D4D2;
  border-left-color: var(--accent);
}

/* ── BACK BUTTON ────────────────────────────────────── */
.back-btn-float {
  background: rgba(13, 11, 20, 0.80);
  border-color: rgba(255, 255, 255, 0.15);
  color: #D3D4D2;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.back-btn-float.sidebar-mode {
  background: #16132A;
  border-color: rgba(255, 255, 255, 0.12);
  color: #D3D4D2;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
}

/* ── CASE INTRO ─────────────────────────────────────── */
.case-intro {
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.project-label {
  color: #919191;
}

.meta-sep {
  color: #919191;
}

.meta-muted {
  color: #919191;
}

.case-headline {
  color: #D3D4D2;
}

.accent-italic {
  color: var(--accent);
}

/* ── OVERVIEW CARD ──────────────────────────────────── */
.col-header {
  color: #919191;
}

.context-col p:not(.col-header) {
  color: #D3D4D2;
}

.context-col p:not(.col-header) span {
  color: #919191;
}

.card {
  box-shadow: none;
}

/* ── TRAIT CARDS ────────────────────────────────────── */
.trait-card {
  background: #0D0B14;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
}

.trait-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at bottom center,
    rgba(100, 181, 246, 0.10) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.trait-card:hover {
  border-color: var(--accent);
}

.trait-card:hover::after {
  opacity: 1;
}

/* ── OUR SOLUTION ───────────────────────────────────── */

.sol-layout {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.sol-row-top {
  display: flex;
}

.sol-row-bottom {
  display: flex;
  justify-content: center;
}

/* ── Left column ── */
.sol-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Pre-Game stage label — echoes ri-stage--1 */
.sol-stage {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;

  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
#solution.sol-visible .sol-stage { opacity: 1; transform: translateY(0); transition-delay: 0s; }

.sol-stage-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background: rgba(56, 189, 210, 0.12);
  border: 2px solid rgba(56, 189, 210, 0.4);
  color: #38BDD2;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.sol-stage:hover .sol-stage-icon {
  border-color: #38BDD2;
  box-shadow: 0 0 20px rgba(56, 189, 210, 0.3);
}
.sol-stage-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #38BDD2;
}

/* Quote card — same visual as ri-card--1 */
.sol-ri-card {
  background: #0B2229;
  border: 1px solid rgba(56, 189, 210, 0.2);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 16px;

  opacity: 0;
  transform: translateY(-18px);  /* drops DOWN from Research Insights above */
  transition: opacity 0.55s ease,
              transform 0.6s cubic-bezier(0.34, 1.1, 0.64, 1),
              border-color 0.3s ease;
}
#solution.sol-visible .sol-ri-card { opacity: 1; transform: translateY(0); transition-delay: 0.14s; }

.sol-ri-card:hover {
  border-color: rgba(56, 189, 210, 0.55);
  box-shadow: 0 12px 40px rgba(56, 189, 210, 0.1);
}

.sol-ri-quote {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #C8C9C7;
  line-height: 1.65;
  margin: 0;
}
.sol-ri-quote strong {
  font-weight: 700;
  color: #7DE0EE;
}

/* Insight description */
.sol-ri-desc {
  font-size: 14px;
  color: #919191;
  line-height: 1.65;
  margin-bottom: 20px;
  padding: 0 4px;

  opacity: 0;
  transition: opacity 0.45s ease;
}
#solution.sol-visible .sol-ri-desc { opacity: 1; transition-delay: 0.32s; }

/* Connector: thin vertical line + dot */
.sol-connector {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 20px;
  margin-bottom: 20px;
  gap: 0;
}
.sol-connector-line {
  width: 1.5px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(56,189,210,0.5), rgba(100,181,246,0.3));
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 0.4s ease;
}
#solution.sol-visible .sol-connector-line { transform: scaleY(1); transition-delay: 0.46s; }

.sol-connector-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(100, 181, 246, 0.5);
  margin-left: -3px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
#solution.sol-visible .sol-connector-dot { opacity: 1; transition-delay: 0.86s; }

/* Solution statement card */
.sol-statement-card {
  background: #16132A;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease,
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease;
}
#solution.sol-visible .sol-statement-card { opacity: 1; transform: translateY(0); transition-delay: 0.58s; }

.sol-statement-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom center, rgba(100,181,246,0.07) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.sol-statement-card:hover { border-color: rgba(100, 181, 246, 0.35); }
.sol-statement-card:hover::after { opacity: 1; }

.sol-statement {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #D3D4D2;
  line-height: 1.7;
  margin: 0;
}
.sol-accent {
  font-weight: 700;
  color: var(--accent);
}

/* ── Bottom row: annotated mockup ── */
.sol-right {
  display: flex;
  justify-content: center;

  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
#solution.sol-visible .sol-right { opacity: 1; transform: translateY(0); transition-delay: 0.32s; }

/* Outer wrapper: annotations col + phone col side by side */
.sol-annotated {
  display: flex;
  align-items: stretch;  /* annot-col stretches to phone height */
  gap: 0;
}

/* ── Annotation column (labels + lines) ── */
.sol-annot-col {
  position: relative;
  width: 300px;
  flex-shrink: 0;
  /* height is driven by .sol-phone-col child */
}

.sol-annot-item {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  position: absolute;
  right: 0;
}

.sol-annot-item--1 { top: 11%; }
.sol-annot-item--2 { top: 26%; }
.sol-annot-item--3 { top: 45%; }
.sol-annot-item--4 { top: 61%; }

.sol-annot-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.04em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.sol-annot-line {
  width: 90px;
  height: 1.5px;
  background: var(--accent);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.sol-annot-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  transform: scale(0);
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}

/* Stagger delays when visible */
#solution.sol-visible .sol-annot-item--1 .sol-annot-dot  { transform: scale(1); transition-delay: 0.65s; }
#solution.sol-visible .sol-annot-item--2 .sol-annot-dot  { transform: scale(1); transition-delay: 0.82s; }
#solution.sol-visible .sol-annot-item--3 .sol-annot-dot  { transform: scale(1); transition-delay: 0.99s; }
#solution.sol-visible .sol-annot-item--4 .sol-annot-dot  { transform: scale(1); transition-delay: 1.16s; }

#solution.sol-visible .sol-annot-item--1 .sol-annot-line { transform: scaleX(1); transition-delay: 0.68s; }
#solution.sol-visible .sol-annot-item--2 .sol-annot-line { transform: scaleX(1); transition-delay: 0.85s; }
#solution.sol-visible .sol-annot-item--3 .sol-annot-line { transform: scaleX(1); transition-delay: 1.02s; }
#solution.sol-visible .sol-annot-item--4 .sol-annot-line { transform: scaleX(1); transition-delay: 1.19s; }

#solution.sol-visible .sol-annot-item--1 .sol-annot-label { opacity: 1; transition-delay: 1.05s; }
#solution.sol-visible .sol-annot-item--2 .sol-annot-label { opacity: 1; transition-delay: 1.22s; }
#solution.sol-visible .sol-annot-item--3 .sol-annot-label { opacity: 1; transition-delay: 1.39s; }
#solution.sol-visible .sol-annot-item--4 .sol-annot-label { opacity: 1; transition-delay: 1.56s; }

/* ── Phone column ── */
.sol-phone-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.sol-phone-img {
  width: 460px;
  height: auto;
  display: block;
  border-radius: 44px;
}

.sol-mockup-label {
  font-size: 12px;
  font-weight: 500;
  color: #919191;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .sol-stage, .sol-ri-card, .sol-ri-desc,
  .sol-connector-line, .sol-connector-dot,
  .sol-statement-card, .sol-right,
  .sol-annot-label, .sol-annot-line, .sol-annot-dot {
    transition: none; opacity: 1; transform: none !important;
  }
}

/* ── Pivoted Concept row ── */
.sol-row-pivot {
  display: flex;
  align-items: center;
  gap: 56px;
}

.sol-pivot-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;

  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
#solution.sol-visible .sol-pivot-phone { opacity: 1; transform: translateY(0); transition-delay: 0.45s; }

.sol-pivot-img {
  width: 460px;
  border-radius: 44px;
}

.sol-pivot-rationale {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 0;

  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
#solution.sol-visible .sol-pivot-rationale { opacity: 1; transform: translateY(0); transition-delay: 0.58s; }

.sol-pivot-heading {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.sol-audit-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.sol-audit-card:hover {
  border-color: rgba(100,181,246,0.35);
  box-shadow: 0 0 18px rgba(100,181,246,0.08);
}

.sol-audit-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.4;
}

.sol-audit-body {
  font-size: 14px;
  color: #9BA3B5;
  margin: 0;
  line-height: 1.6;
}

.sol-audit-body strong {
  color: #C8D8ED;
  font-weight: 600;
}

/* ── ALTERNATE IDEAS ────────────────────────────────── */

.ai-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Base card */
.ai-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0E0B1A;
  position: relative;
  cursor: default;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease,
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}
#altideas.ai-visible .ai-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
#altideas.ai-visible .ai-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.14s; }

.ai-card--mainevent:hover,
.ai-card--mainevent.is-active {
  border-color: rgba(160, 130, 220, 0.55);
  box-shadow: 0 20px 56px rgba(160, 130, 220, 0.12);
}
.ai-card--afterparty:hover,
.ai-card--afterparty.is-active {
  border-color: rgba(220, 170, 80, 0.55);
  box-shadow: 0 20px 56px rgba(220, 170, 80, 0.12);
}

/* Card headers */
.ai-card-header {
  width: 100%;
  height: 180px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ai-header--1 { background: #111520; }
.ai-header--2 { background: #0A1A10; }

/* Gallery / icebreaker visual — abstract art shapes + silhouette figures */
.ai-art-shape {
  position: absolute;
  border-radius: 4px;
}
.ai-shape--1 {
  width: 64px; height: 80px;
  background: rgba(160, 130, 220, 0.25);
  top: 24px; left: 28%;
  transform: rotate(-3deg);
}
.ai-shape--2 {
  width: 48px; height: 64px;
  background: rgba(220, 170, 80, 0.2);
  top: 30px; left: 48%;
  transform: rotate(2deg);
}
.ai-shape--3 {
  width: 56px; height: 72px;
  background: rgba(56, 189, 210, 0.18);
  top: 20px; left: 65%;
  transform: rotate(-1deg);
}
.ai-figure {
  position: absolute;
  bottom: 0;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.08);
}
.ai-figure--1 { width: 36px; height: 72px; left: 34%; }
.ai-figure--2 { width: 30px; height: 60px; left: 44%; }

/* NFC device visual */
.ai-nfc-card {
  position: absolute;
  width: 100px;
  height: 64px;
  border-radius: 10px;
}
.ai-nfc--back {
  background: rgba(160, 220, 150, 0.15);
  border: 1px solid rgba(160, 220, 150, 0.25);
  transform: rotate(-6deg) translate(-8px, 6px);
}
.ai-nfc--front {
  background: rgba(80, 180, 100, 0.2);
  border: 1px solid rgba(80, 180, 100, 0.35);
  transform: rotate(3deg) translate(8px, -4px);
}
.ai-nfc-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(220, 170, 80, 0.6);
  background: rgba(220, 170, 80, 0.1);
  bottom: 28px;
  right: 30%;
}

/* Card body */
.ai-card-body { padding: 28px 24px 28px; }
.ai-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #D3D4D2;
  margin-bottom: 10px;
}
.ai-desc {
  font-size: 14px;
  color: #919191;
  line-height: 1.7;
  margin-bottom: 16px;
}
.ai-verdict {
  font-size: 14px;
  font-weight: 700;
  color: #D3D4D2;
}

/* Progress line:
   Pre-Game = muted teal (already covered by competitors)
   Main Event + After-Party draw in left→right  */
.ai-timeline {
  display: flex;
  height: 3px;
  border-radius: 3px;
  margin-bottom: 32px;
  align-items: center;
}

.ai-tl-pregame {
  flex: 1;
  height: 3px;
  background: #38BDD2;
  opacity: 0.18;
  border-radius: 3px 0 0 3px;
}

.ai-tl-mainevent {
  flex: 1;
  height: 3px;
  background: #A082DC;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
#altideas.ai-visible .ai-tl-mainevent {
  transform: scaleX(1);
  transition-delay: 0.55s;
}

.ai-tl-afterparty {
  flex: 1;
  height: 3px;
  background: #DCA050;
  border-radius: 0 3px 3px 0;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
#altideas.ai-visible .ai-tl-afterparty {
  transform: scaleX(1);
  transition-delay: 0.78s;
}

/* Stage labels */
.ai-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ai-stage {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: default;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
#altideas.ai-visible .ai-stage:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.70s; }
#altideas.ai-visible .ai-stage:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.82s; }
#altideas.ai-visible .ai-stage:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.94s; }

.ai-stage--covered { opacity: 0.28 !important; cursor: default; }

.ai-stage-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease,
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.ai-stage--covered .ai-stage-icon { background: rgba(56,189,210,0.06); border-color: rgba(56,189,210,0.15); color: rgba(56,189,210,0.4); }
.ai-stage--2 .ai-stage-icon { background: rgba(160,130,220,0.12); border-color: rgba(160,130,220,0.3); color: #A082DC; }
.ai-stage--3 .ai-stage-icon { background: rgba(220,170,80,0.12);  border-color: rgba(220,170,80,0.3);  color: #DCA050; }

.ai-stage-text { display: flex; flex-direction: column; gap: 2px; }
.ai-stage-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #D3D4D2;
  transition: color 0.3s ease;
}
.ai-stage--covered .ai-stage-name { color: #919191; }
.ai-stage-sub { font-size: 12px; color: #919191; letter-spacing: 0.04em; text-transform: uppercase; }

/* Hover / active states */
.ai-stage--2:hover .ai-stage-icon, .ai-stage--2.is-active .ai-stage-icon {
  transform: scale(1.12); border-color: #A082DC; box-shadow: 0 0 18px rgba(160,130,220,0.35);
}
.ai-stage--3:hover .ai-stage-icon, .ai-stage--3.is-active .ai-stage-icon {
  transform: scale(1.12); border-color: #DCA050; box-shadow: 0 0 18px rgba(220,170,80,0.35);
}
.ai-stage--2:hover .ai-stage-name, .ai-stage--2.is-active .ai-stage-name { color: #A082DC; }
.ai-stage--3:hover .ai-stage-name, .ai-stage--3.is-active .ai-stage-name { color: #DCA050; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .ai-card  { transition: none; opacity: 1; transform: none; }
  .ai-stage { transition: none; opacity: 1; transform: none; }
  .ai-stage--covered { opacity: 0.28 !important; }
  .ai-tl-mainevent, .ai-tl-afterparty { transition: none; transform: scaleX(1); }
}

/* ── COMPETITOR ANALYSIS ────────────────────────────── */

.ca-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

/* Base card */
.ca-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0E0B1A;
  position: relative;
  cursor: default;

  /* scroll-in: slide up */
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease,
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}
#competitive.ca-visible .ca-card:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0s; }
#competitive.ca-visible .ca-card:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.14s; }

/* Card hover / active */
.ca-card--pregame:hover,
.ca-card--pregame.is-active {
  border-color: rgba(56, 189, 210, 0.55);
  box-shadow: 0 20px 56px rgba(56, 189, 210, 0.12);
}
.ca-card--mainevent:hover,
.ca-card--mainevent.is-active {
  border-color: rgba(160, 130, 220, 0.55);
  box-shadow: 0 20px 56px rgba(160, 130, 220, 0.12);
}

/* Card header image area */
.ca-card-header {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.ca-header--1 { background: #131824; }
.ca-header--2 { background: linear-gradient(135deg, #0D1840 0%, #1A0E40 100%); }

/* App-icon grid for card 1 */
.ca-app-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 8px;
}
.ca-app {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  opacity: 0.5;
}

/* Jackbox-inspired visual for card 2 */
.ca-jackbox-visual {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ca-jb-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
}
.ca-jb-c1 { width: 200px; height: 200px; background: #A082DC; top: -40px; left: -40px; }
.ca-jb-c2 { width: 160px; height: 160px; background: #38BDD2; bottom: -50px; right: -20px; }
.ca-jb-c3 { width: 100px; height: 100px; background: #DCA050; top: 20px; right: 30px; }
.ca-jb-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  z-index: 1;
  letter-spacing: -0.02em;
}

/* Card header image */
.ca-header-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badge logo image */
.ca-badge-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

/* Stage badge (floating pill on card) */
.ca-stage-badge {
  position: absolute;
  top: 160px; /* overlap header/body boundary */
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 2px solid transparent;
  z-index: 2;

  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
}
#competitive.ca-visible .ca-stage-badge { transform: scale(1); }
#competitive.ca-visible .ca-card:nth-child(1) .ca-stage-badge { transition-delay: 0.35s; }
#competitive.ca-visible .ca-card:nth-child(2) .ca-stage-badge { transition-delay: 0.5s; }

.ca-badge--1 { background: rgba(56, 189, 210, 0.15);  border-color: rgba(56, 189, 210, 0.5);  color: #38BDD2; }
.ca-badge--2 { background: rgba(160, 130, 220, 0.15); border-color: rgba(160, 130, 220, 0.5); color: #A082DC; }

/* Card body */
.ca-card-body { padding: 28px 24px 28px; }
.ca-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #D3D4D2;
  margin-bottom: 10px;
}
.ca-desc {
  font-size: 14px;
  color: #919191;
  line-height: 1.7;
  margin-bottom: 16px;
}
.ca-verdict {
  font-size: 14px;
  font-weight: 700;
  color: #D3D4D2;
}

/* Timeline — ties back to Research Insights line */
.ca-timeline {
  display: flex;
  height: 3px;
  border-radius: 3px;
  overflow: visible;
  margin-bottom: 32px;
  gap: 0;
  align-items: center;
}

/* Filled 2/3 — teal → purple gradient */
.ca-tl-filled {
  flex: 2;
  height: 3px;
  background: linear-gradient(to right, #38BDD2 0%, #A082DC 100%);
  border-radius: 3px 0 0 3px;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
#competitive.ca-visible .ca-tl-filled { transform: scaleX(1); transition-delay: 0.55s; }

/* Gap 1/3 — dashed amber with pulse + label */
.ca-tl-gap {
  flex: 1;
  position: relative;
  height: 3px;
  display: flex;
  align-items: center;
}
.ca-tl-gap-dots {
  width: 100%;
  height: 3px;
  background: repeating-linear-gradient(
    to right,
    rgba(220, 170, 80, 0.5) 0px,
    rgba(220, 170, 80, 0.5) 6px,
    transparent 6px,
    transparent 12px
  );
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  animation: ca-gap-pulse 2.2s ease-in-out infinite;
}
#competitive.ca-visible .ca-tl-gap-dots { opacity: 1; transition-delay: 1.45s; }

@keyframes ca-gap-pulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 1; }
}

.ca-gap-label {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(220, 170, 80, 0.6);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.5s ease;
}
#competitive.ca-visible .ca-gap-label { opacity: 1; transition-delay: 1.6s; }

/* Stage labels */
.ca-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ca-stage {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: default;

  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
#competitive.ca-visible .ca-stage:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.7s; }
#competitive.ca-visible .ca-stage:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.82s; }
#competitive.ca-visible .ca-stage:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.94s; }

.ca-stage--uncovered { opacity: 0.35 !important; }

.ca-stage-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.ca-stage--1 .ca-stage-icon { background: rgba(56, 189, 210, 0.12);  border-color: rgba(56, 189, 210, 0.3);  color: #38BDD2; }
.ca-stage--2 .ca-stage-icon { background: rgba(160, 130, 220, 0.12); border-color: rgba(160, 130, 220, 0.3); color: #A082DC; }
.ca-stage--3 .ca-stage-icon { background: rgba(220, 170, 80, 0.08);  border-color: rgba(220, 170, 80, 0.2);  color: rgba(220,170,80,0.5); }

.ca-stage-text { display: flex; flex-direction: column; gap: 2px; }
.ca-stage-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #D3D4D2;
  transition: color 0.3s ease;
}
.ca-stage--uncovered .ca-stage-name { color: #919191; }
.ca-stage-sub { font-size: 12px; color: #919191; letter-spacing: 0.04em; text-transform: uppercase; }

/* Stage hover / active */
.ca-stage--1:hover .ca-stage-icon, .ca-stage--1.is-active .ca-stage-icon {
  transform: scale(1.12); border-color: #38BDD2; box-shadow: 0 0 18px rgba(56,189,210,0.35);
}
.ca-stage--2:hover .ca-stage-icon, .ca-stage--2.is-active .ca-stage-icon {
  transform: scale(1.12); border-color: #A082DC; box-shadow: 0 0 18px rgba(160,130,220,0.35);
}
.ca-stage--1:hover .ca-stage-name, .ca-stage--1.is-active .ca-stage-name { color: #38BDD2; }
.ca-stage--2:hover .ca-stage-name, .ca-stage--2.is-active .ca-stage-name { color: #A082DC; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .ca-card  { transition: none; opacity: 1; transform: none; }
  .ca-stage { transition: none; opacity: 1; transform: none; }
  .ca-stage--uncovered { opacity: 0.35 !important; }
  .ca-tl-filled { transition: none; transform: scaleX(1); }
  .ca-tl-gap-dots { animation: none; opacity: 1; }
  .ca-gap-label { opacity: 1; }
  .ca-stage-badge { transition: none; transform: scale(1); }
}

/* ── RESEARCH INSIGHTS ──────────────────────────────── */

/* Three-column grid */
.ri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

/* Each column: card + desc */
.ri-col {
  display: flex;
  flex-direction: column;
  gap: 20px;

  /* scroll-reveal */
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.ri-col.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Quote card */
.ri-quote-card {
  border-radius: 16px;
  padding: 32px 28px 28px;
  border: 1px solid transparent;
  position: relative;
  cursor: default;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

.ri-card--1 { background: #0B2229; border-color: rgba(56, 189, 210, 0.18); }
.ri-card--2 { background: #18102E; border-color: rgba(160, 130, 220, 0.18); }
.ri-card--3 { background: #261708; border-color: rgba(220, 170, 80,  0.18); }

/* Hover / cross-highlight */
.ri-quote-card:hover,
.ri-quote-card.is-highlighted {
  transform: translateY(-10px) scale(1.02);
}
.ri-card--1:hover, .ri-card--1.is-highlighted {
  border-color: rgba(56, 189, 210, 0.65);
  box-shadow: 0 24px 60px rgba(56, 189, 210, 0.14),
              0 0 0 1px rgba(56, 189, 210, 0.15);
}
.ri-card--2:hover, .ri-card--2.is-highlighted {
  border-color: rgba(160, 130, 220, 0.65);
  box-shadow: 0 24px 60px rgba(160, 130, 220, 0.14),
              0 0 0 1px rgba(160, 130, 220, 0.15);
}
.ri-card--3:hover, .ri-card--3.is-highlighted {
  border-color: rgba(220, 170, 80, 0.65);
  box-shadow: 0 24px 60px rgba(220, 170, 80, 0.14),
              0 0 0 1px rgba(220, 170, 80, 0.12);
}

/* Quote text */
.ri-quote {
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #C8C9C7;
  line-height: 1.65;
  margin: 0 0 24px;
}
.ri-quote strong {
  font-weight: 700;
  color: #FFFFFF;
}
.ri-card--1 .ri-quote strong { color: #7DE0EE; }
.ri-card--2 .ri-quote strong { color: #C4AAEE; }
.ri-card--3 .ri-quote strong { color: #F0C878; }

/* Attribution */
.ri-attribution {
  font-size: 12px;
  color: #919191;
  letter-spacing: 0.02em;
}

/* Description below card — hidden until hover */
.ri-desc {
  font-size: 14px;
  color: #919191;
  line-height: 1.65;
  text-align: center;
  padding: 0 4px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.35s ease,
              transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ri-col:hover .ri-desc,
.ri-col.is-highlighted .ri-desc {
  opacity: 1;
  transform: translateY(0);
}

/* Gradient connector line */
.ri-line-wrap {
  padding: 8px 0 32px;
}
.ri-line {
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(to right, #38BDD2 0%, #A082DC 50%, #DCA050 100%);
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.ri-line.is-visible {
  transform: scaleX(1);
}

/* Stage labels */
.ri-stages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ri-stage {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: default;

  /* scroll-reveal */
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.ri-stage.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stage icon circle */
.ri-stage-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  border: 2px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.ri-stage--1 .ri-stage-icon { background: rgba(56, 189, 210, 0.12);  border-color: rgba(56, 189, 210, 0.3);  color: #38BDD2; }
.ri-stage--2 .ri-stage-icon { background: rgba(160, 130, 220, 0.12); border-color: rgba(160, 130, 220, 0.3); color: #A082DC; }
.ri-stage--3 .ri-stage-icon { background: rgba(220, 170, 80, 0.12);  border-color: rgba(220, 170, 80, 0.3);  color: #DCA050; }

.ri-stage-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ri-stage-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #D3D4D2;
  transition: color 0.3s ease;
}
.ri-stage-sub {
  font-size: 12px;
  color: #919191;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Stage hover / cross-highlight */
.ri-stage:hover .ri-stage-icon,
.ri-stage.is-highlighted .ri-stage-icon {
  transform: scale(1.12);
}
.ri-stage--1:hover .ri-stage-icon,
.ri-stage--1.is-highlighted .ri-stage-icon {
  border-color: #38BDD2;
  box-shadow: 0 0 18px rgba(56, 189, 210, 0.35);
}
.ri-stage--2:hover .ri-stage-icon,
.ri-stage--2.is-highlighted .ri-stage-icon {
  border-color: #A082DC;
  box-shadow: 0 0 18px rgba(160, 130, 220, 0.35);
}
.ri-stage--3:hover .ri-stage-icon,
.ri-stage--3.is-highlighted .ri-stage-icon {
  border-color: #DCA050;
  box-shadow: 0 0 18px rgba(220, 170, 80, 0.35);
}
.ri-stage--1:hover .ri-stage-name,
.ri-stage--1.is-highlighted .ri-stage-name { color: #38BDD2; }
.ri-stage--2:hover .ri-stage-name,
.ri-stage--2.is-highlighted .ri-stage-name { color: #A082DC; }
.ri-stage--3:hover .ri-stage-name,
.ri-stage--3.is-highlighted .ri-stage-name { color: #DCA050; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .ri-col, .ri-stage { transition: none; opacity: 1; transform: none; }
  .ri-line { transition: none; transform: scaleX(1); }
  .ri-quote-card { transition: none; }
}

/* ── AUDIENCE CARDS ─────────────────────────────────── */
.audience-cards {
  display: flex;
  align-items: flex-start;
  padding: 24px 24px 48px;
}

.audience-card {
  flex: 1;
  padding: 0;
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.audience-card:first-child {
  transform: rotate(-2deg) translateY(40px);
  z-index: 1;
  margin-right: -28px;
}

.audience-card:last-child {
  transform: rotate(2deg);
  z-index: 2;
  margin-left: -28px;
}

.audience-card:first-child:hover {
  transform: rotate(-2deg) translateY(40px) scale(1.02);
  z-index: 3;
}

.audience-card:last-child:hover {
  transform: rotate(2deg) scale(1.02);
  z-index: 3;
}

.audience-card__img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.audience-card__body {
  padding: 28px 28px 36px;
}

.audience-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: #D3D4D2;
  margin-bottom: 12px;
}

.audience-card__desc {
  font-size: 15px;
  font-weight: 400;
  color: #919191;
  line-height: 1.7;
}

/* ── FINAL DESIGN ───────────────────────────────────── */
.fd-item {
  margin-bottom: 48px;
}

.fd-media {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}

/* Results tease */
.fd-results-tease {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 80px 0 60px;
}

.fd-results-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
}

.fd-drum {
  font-size: clamp(56px, 9vw, 96px);
  display: inline-block;
  /* entry pop + continuous roll */
  animation:
    fd-drum-entry 0.55s cubic-bezier(0.34, 1.4, 0.64, 1) 0.3s both,
    fd-drumroll    0.1s  linear                             0.9s infinite;
}

@keyframes fd-drum-entry {
  0%   { opacity: 0; transform: scale(0.5) translateY(24px); }
  100% { opacity: 1; transform: scale(1)   translateY(0); }
}

@keyframes fd-drumroll {
  0%   { transform: rotate(-7deg) translateX(-3px); }
  50%  { transform: rotate( 7deg) translateX( 3px); }
  100% { transform: rotate(-7deg) translateX(-3px); }
}

/* Finalist reveal */
.fd-finalist {
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.fd-finalist-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.02em;
  text-align: center;
}

.fd-finalist .fd-item {
  margin-bottom: 0;
}

/* ── IMG PLACEHOLDER ────────────────────────────────── */
.img-placeholder {
  background: var(--placeholder-bg);
  color: var(--placeholder-lbl);
}

/* ── INSIGHT STAT BANNER ────────────────────────────── */
.insight-stat-banner {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 56px;
}

.isb-left {
  flex-shrink: 0;
}

.isb-big {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 96px;
  font-weight: 700;
  color: #D3D4D2;
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.isb-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.isb-body {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: #D3D4D2;
  line-height: 1.45;
}

.isb-accent {
  font-weight: 700;
  color: var(--accent);
}

.isb-cite {
  font-size: 12px;
  font-weight: 400;
  color: #919191;
  letter-spacing: 0.01em;
}

.isb-image {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* ── MARKET OPPORTUNITY ─────────────────────────────── */
.mo-combined {
  display: flex;
  align-items: center;
  gap: 64px;
}

/* ── Circle visualization container ── */
.mo-viz {
  flex-shrink: 0;
  width: 520px;
  height: 520px;
  position: relative;
}

/* Visual circles — display only, no pointer events */
.mo-vis {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  pointer-events: none;
  border: 1.5px solid transparent;
  transition: opacity 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}

.mo-vis--outer {
  width: 500px;
  height: 500px;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(255, 255, 255, 0.04);
  opacity: 0.5;
}

.mo-vis--mid {
  width: 370px;
  height: 370px;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(255, 255, 255, 0.06);
  opacity: 0.5;
}

.mo-vis--inner {
  width: 240px;
  height: 240px;
  transform: translate(-50%, -50%) scale(0);
  background: radial-gradient(
    circle at 38% 62%,
    rgba(100, 181, 246, 0.55) 0%,
    rgba(100, 181, 246, 0.26) 42%,
    rgba(100, 181, 246, 0.07) 68%,
    transparent 100%
  );
  opacity: 0.6;
}

/* Entry: scale circles in when .mo-combined gets .is-visible */
.mo-combined.is-visible .mo-vis--outer {
  animation: mo-pop-in 0.7s cubic-bezier(0.34, 1.15, 0.64, 1) 0s both;
}
.mo-combined.is-visible .mo-vis--mid {
  animation: mo-pop-in 0.7s cubic-bezier(0.34, 1.15, 0.64, 1) 0.15s both;
}
.mo-combined.is-visible .mo-vis--inner {
  animation: mo-pop-in 0.7s cubic-bezier(0.34, 1.15, 0.64, 1) 0.3s both;
}

@keyframes mo-pop-in {
  from { transform: translate(-50%, -50%) scale(0.4); opacity: 0; }
  to   { transform: translate(-50%, -50%) scale(1);   opacity: 1; }
}

/* Active state: highlight the hovered ring */
.mo-vis--outer.is-active {
  opacity: 1;
  border-color: rgba(100, 181, 246, 0.55);
  box-shadow: 0 0 60px rgba(100, 181, 246, 0.12),
              inset 0 0 30px rgba(100, 181, 246, 0.06);
}

.mo-vis--mid.is-active {
  opacity: 1;
  border-color: rgba(100, 181, 246, 0.55);
  box-shadow: 0 0 40px rgba(100, 181, 246, 0.12),
              inset 0 0 20px rgba(100, 181, 246, 0.06);
}

.mo-vis--inner.is-active {
  opacity: 1;
  border-color: rgba(100, 181, 246, 0.55);
  box-shadow: 0 0 50px rgba(100, 181, 246, 0.22);
}

/* Hover zones — transparent, stacked by z-index */
.mo-zone {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  cursor: pointer;
  transform: translate(-50%, -50%);
}

.mo-zone--outer { width: 500px; height: 500px; z-index: 1; }
.mo-zone--mid   { width: 370px; height: 370px; z-index: 2; }
.mo-zone--inner { width: 240px; height: 240px; z-index: 3; }

/* ── Text panel ── */
.mo-panel {
  flex: 1;
  display: grid;
  min-height: 220px;
  align-items: start;
}

.mo-panel-item {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease,
              transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.mo-panel-item.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mo-panel-num {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: #D3D4D2;
  letter-spacing: -0.03em;
  line-height: 1;
}

.mo-body {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #D3D4D2;
  line-height: 1.55;
}

.mo-accent {
  font-weight: 700;
  color: var(--accent);
}

.mo-cite {
  font-size: 13px;
  color: #919191;
  font-style: italic;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .mo-vis--outer,
  .mo-vis--mid,
  .mo-vis--inner { animation: none !important;
    transform: translate(-50%, -50%) scale(1); opacity: 1; }
  .mo-panel-item { transition: none; }
  .mo-panel-item.is-active { opacity: 1; transform: none; }
}

/* ── OUR SOLUTION LIST ──────────────────────────────── */
.solution-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.solution-list li {
  font-size: 28px;
  font-weight: 400;
  color: #D3D4D2;
  line-height: 1.5;
  padding-left: 0;
  position: relative;
}

/* ── USER INSIGHTS SECTION ──────────────────────────── */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
  margin-top: 48px;
}

.insights-grid .insight-card:last-child {
  grid-column: 1 / -1;
}

/* Scroll-reveal for insight cards: land at 0.45, not 1 */
.anim-insight {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease,
              transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.anim-insight.is-visible {
  opacity: 0.45;
  transform: translateY(0);
}

.insight-card {
  background: #16132A;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 16px;
  padding: 50px;
  position: relative;
  overflow: hidden;
  transition: opacity 0.35s ease,
              transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease;
  cursor: default;
}

.insight-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at bottom center,
    rgba(100, 181, 246, 0.11) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.insight-card:hover,
.anim-insight.is-visible.insight-card:hover {
  opacity: 1;
  transform: scale(1.03);
  border-color: var(--accent);
}

.insight-card:hover::after {
  opacity: 1;
}

.insight-num {
  display: none;
}

.insight-title {
  font-size: 21px;
  font-weight: 600;
  color: #D3D4D2;
  line-height: 1.35;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.insight-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.insight-body {
  font-size: 16px;
  font-weight: 400;
  color: #919191;
  line-height: 1.7;
  margin-bottom: 20px;
}

.insight-body:last-child {
  margin-bottom: 0;
}

/* ── CHALLENGE LIST ─────────────────────────────────── */
.challenge-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.challenge-list li {
  font-size: 16px;
  font-weight: 400;
  color: #919191;
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.challenge-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.challenge-list li strong {
  color: #D3D4D2;
  font-weight: 600;
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .anim-insight            { transition: none; opacity: 0.45; transform: none; }
  .anim-insight.is-visible { opacity: 0.45; }
}
