/* ============================================
   DataClaw — Linear-inspired stylesheet
   Monochrome base + colored data packets only
   Themes: auto / light / dark · EN/KO support
   ============================================ */

/* ─── Design Tokens ─── */
:root {
  /* Color packets (the only color on the page) */
  --packet-1: #2FA4FF;
  --packet-2: #42C96A;
  --packet-3: #F0B63E;
  --packet-4: #F06C5E;

  /* Logo (monochrome - themed) */
  --logo-outer: #08090A;
  --logo-inner: #08090A;
  --logo-slot:  #08090A;
  --logo-word:  #08090A;

  /* Surface (light default) */
  --bg:             #FFFFFF;
  --bg-elevated:    #F7F8FA;
  --bg-feature:     #08090A;        /* always-dark feature sections */

  /* Text hierarchy — rgba opacity scale (Linear-style) */
  --text-primary:    rgba(8, 9, 10, 1);      /* 100% — headlines, key labels */
  --text-secondary:  rgba(8, 9, 10, 0.62);   /* ~62% — body text, descriptions */
  --text-tertiary:   rgba(8, 9, 10, 0.42);   /* ~42% — section labels, meta */
  --text-quaternary: rgba(8, 9, 10, 0.28);   /* ~28% — decorative numbers, hints */

  --border-subtle:  rgba(8, 9, 10, 0.06);
  --border-default: rgba(8, 9, 10, 0.10);
  --border-strong:  rgba(8, 9, 10, 0.18);
  --card-bg:        #FFFFFF;
  --card-bg-hover:  #FAFAFA;

  /* Header */
  --header-bg:    rgba(255, 255, 255, 0.80);
  --header-border: rgba(8, 9, 10, 0.08);

  /* Action color (subtle, monochrome) */
  --action-primary-bg:    #08090A;
  --action-primary-text:  #FFFFFF;
  --action-primary-hover: #1A1B1D;
}

/* Dark mode (manual + auto-system) */
html[data-theme="dark"] {
  --logo-outer: #F7F8F8;
  --logo-inner: #F7F8F8;
  --logo-slot:  #F7F8F8;
  --logo-word:  #F7F8F8;

  --bg:             #08090A;
  --bg-elevated:    #0F1011;

  --text-primary:    rgba(247, 248, 248, 1);
  --text-secondary:  rgba(247, 248, 248, 0.62);
  --text-tertiary:   rgba(247, 248, 248, 0.42);
  --text-quaternary: rgba(247, 248, 248, 0.28);

  --border-subtle:  rgba(255, 255, 255, 0.06);
  --border-default: rgba(255, 255, 255, 0.10);
  --border-strong:  rgba(255, 255, 255, 0.18);
  --card-bg:        #0F1011;
  --card-bg-hover:  #16171A;

  --header-bg:    rgba(8, 9, 10, 0.82);
  --header-border: rgba(255, 255, 255, 0.08);

  --action-primary-bg:    #F7F8F8;
  --action-primary-text:  #08090A;
  --action-primary-hover: #FFFFFF;
}

@media (prefers-color-scheme: dark) {
  html:not([data-theme="light"]) {
    --logo-outer: #F7F8F8;
    --logo-inner: #F7F8F8;
    --logo-slot:  #F7F8F8;
    --logo-word:  #F7F8F8;

    --bg:             #08090A;
    --bg-elevated:    #0F1011;

    --text-primary:    rgba(247, 248, 248, 1);
    --text-secondary:  rgba(247, 248, 248, 0.62);
    --text-tertiary:   rgba(247, 248, 248, 0.42);
    --text-quaternary: rgba(247, 248, 248, 0.28);

    --border-subtle:  rgba(255, 255, 255, 0.06);
    --border-default: rgba(255, 255, 255, 0.10);
    --border-strong:  rgba(255, 255, 255, 0.18);
    --card-bg:        #0F1011;
    --card-bg-hover:  #16171A;

    --header-bg:     rgba(8, 9, 10, 0.76);
    --header-border: rgba(255, 255, 255, 0.08);

    --action-primary-bg:    #F7F8F8;
    --action-primary-text:  #08090A;
    --action-primary-hover: #FFFFFF;
  }
}


/* ─── Reset & Base ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-primary);
  background: var(--bg);
  transition: background .25s, color .25s;
  letter-spacing: -0.011em;
}
a { text-decoration: none; color: inherit; transition: color .15s, opacity .15s; }
ul, ol { list-style: none; }
img, svg { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }


/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text-primary);
}
h1 { font-weight: 700; }
h2 { font-weight: 700; letter-spacing: -0.03em; }
h3 { font-weight: 600; letter-spacing: -0.018em; }


/* ─── Layout ─── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.section {
  padding: 112px 0;
  background: var(--bg);
}
.section--alt { background: var(--bg-elevated); }
.section--feature {
  background: var(--bg-feature);
  color: #F7F8F8;
}
.section--feature .section-label { color: rgba(247, 248, 248, 0.42); }
.section--feature .section-title { color: #FFFFFF; }
.section--feature .section-sub   { color: rgba(247, 248, 248, 0.58); }

/* Always-on-dark variants for use within --feature sections */
.section-label--on-dark { color: rgba(247, 248, 248, 0.42) !important; }
.section-title--on-dark { color: #FFFFFF !important; }
.section-sub--on-dark   { color: rgba(247, 248, 248, 0.58) !important; }

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
}


/* ─── Section Common — text hierarchy ─── */
.section-label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 24px;
  max-width: 720px;
  color: var(--text-primary);
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}
.section-sub {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.6;
  font-weight: 400;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}

.reveal-on-scroll {
  opacity: 0;
  transition:
    opacity .7s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform .7s cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-on-scroll:not(.is-visible) {
  transform: translateY(24px);
}
.reveal-on-scroll.is-visible {
  opacity: 1;
  will-change: auto;
}
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    transition: none;
  }
  .reveal-on-scroll,
  .reveal-on-scroll:not(.is-visible) {
    transform: none;
    opacity: 1;
  }
}


/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
  border: 1px solid transparent;
}
/* Header-context CTA: tighter than general btn */
.header__actions .btn {
  padding: 7px 14px;
  font-size: 0.8125rem;
  border-radius: 6px;
  letter-spacing: -0.01em;
}
.btn--lg {
  padding: 12px 24px;
  font-size: 0.9375rem;
  border-radius: 10px;
}
.btn--primary {
  background: var(--action-primary-bg);
  color: var(--action-primary-text);
}
.btn--primary:hover {
  background: var(--action-primary-hover);
  transform: translateY(-1px);
}
.hero .btn--primary {
  background: #FFFFFF;
  color: #08090A;
}
.hero .btn--primary:hover {
  background: rgba(255, 255, 255, 0.92);
}
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-default);
}
.btn--ghost:hover {
  background: var(--bg-elevated);
  border-color: var(--border-strong);
}
.section--feature .btn--ghost,
.hero .btn--ghost {
  color: #F7F8F8;
  border-color: rgba(255, 255, 255, 0.14);
}
.section--feature .btn--ghost:hover,
.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.28);
}


/* ═══════════════════════════════════════
   HEADER
═══════════════════════════════════════ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--header-bg);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  transition: border-color .2s, background .2s;
}
.header.is-scrolled { border-bottom-color: var(--header-border); }

.header__inner {
  display: flex;
  align-items: center;
  height: 52px;
}
.header__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  color: var(--text-primary);
  transition: opacity .15s;
  margin-right: 32px;
}
.header__logo:hover { opacity: 0.65; }
.logo-mark { height: 26px; width: auto; }
@media (max-width: 768px) {
  .logo-mark { height: 22px; }
}

.header__nav { display: flex; align-items: center; gap: 22px; margin: 0 auto; }
.header__nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: -0.012em;
  color: var(--text-tertiary);
  transition: color .15s;
}
.header__nav a:hover { color: var(--text-secondary); }

.header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 32px;
}

/* Design mode toggle */
.design-toggle {
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-width: 168px;
  height: 30px;
  padding: 3px;
  border: 1px solid var(--border-subtle);
  border-radius: 7px;
  background: var(--bg-elevated);
  color: var(--text-tertiary);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0;
  overflow: hidden;
  transition: border-color .18s ease, background .18s ease;
}
.design-toggle::before {
  content: "";
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  border-radius: 5px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.design-toggle[data-design="pixel"]::before {
  transform: translateX(100%);
  background: #FFF2B8;
  border-color: rgba(20, 76, 84, 0.18);
}
.design-toggle:hover {
  border-color: var(--border-default);
}
.design-toggle__option {
  position: relative;
  z-index: 1;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
  color: var(--text-tertiary);
  transition: color .18s ease;
  white-space: nowrap;
}
.design-toggle:not([data-design="pixel"]) .design-toggle__option--boardroom,
.design-toggle[data-design="pixel"] .design-toggle__option--pixel {
  color: var(--text-primary);
}

/* Lang toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 6px 8px;
  border-radius: 5px;
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--text-quaternary);
  border: none;
  background: transparent;
  transition: all .15s;
}
.lang-toggle:hover {
  color: var(--text-secondary);
  background: var(--bg-elevated);
}
.lang-toggle__current { color: var(--text-secondary); }
.lang-toggle__divider { color: var(--text-quaternary); margin: 0 1px; opacity: 0.5; }
.lang-toggle__alt { color: var(--text-quaternary); }

/* Theme toggle */
.theme-toggle {
  width: 28px; height: 28px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-quaternary);
  border: none;
  background: transparent;
  transition: all .15s;
}
.theme-toggle:hover {
  color: var(--text-secondary);
  background: var(--bg-elevated);
}
.theme-toggle .icon { display: none; width: 14px; height: 14px; }
.theme-toggle[data-theme="light"] .icon--light { display: block; }
.theme-toggle[data-theme="dark"]  .icon--dark  { display: block; }
.theme-toggle[data-theme="auto"]  .icon--auto  { display: block; }
.theme-toggle:not([data-theme]) .icon--auto { display: block; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all .25s;
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 52px; left: 0; right: 0;
  z-index: 99;
  background: var(--bg);
  border-bottom: 1px solid var(--border-subtle);
  padding: 12px 0 16px;
}
.mobile-nav a {
  padding: 12px 20px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-tertiary);
}
.mobile-nav a:hover { color: var(--text-primary); background: var(--bg-elevated); }
.mobile-nav__cta { color: var(--text-primary) !important; font-weight: 600; margin-top: 4px; }
.mobile-nav__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px 0;
  margin-top: 4px;
  border-top: 1px solid var(--border-subtle);
}
.mobile-nav__footer .design-toggle {
  flex: 1;
  min-width: 0;
}
.mobile-nav__footer .theme-toggle {
  width: 32px; height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-quaternary);
  border: none;
  background: transparent;
  transition: all .15s;
}
.mobile-nav__footer .theme-toggle:hover {
  color: var(--text-secondary);
  background: var(--bg-elevated);
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header__actions { margin-left: auto; }
  .header__actions .btn { display: none; }
  .header__actions .theme-toggle { display: none; }
  .header__actions .design-toggle {
    min-width: 138px;
    height: 28px;
    font-size: 0.625rem;
  }
  .hamburger { display: flex; }
  .mobile-nav.is-open { display: flex; }
}

@media (max-width: 420px) {
  .header__actions .design-toggle {
    min-width: 106px;
  }
  .header__actions .design-toggle__option--boardroom {
    font-size: 0;
  }
  .header__actions .design-toggle__option--boardroom::after {
    content: "Board";
    font-size: 0.625rem;
  }
  .header__actions .design-toggle__option--pixel {
    font-size: 0;
  }
  .header__actions .design-toggle__option--pixel::after {
    content: "Pixel";
    font-size: 0.625rem;
  }
}


/* ═══════════════════════════════════════
   HERO — Text-first, then concrete transformation
═══════════════════════════════════════ */
.hero {
  position: relative;
  background: var(--bg-feature);
  color: #F7F8F8;
  padding: 116px 0 96px;
  overflow: hidden;

  /* Force light logo colors within hero (always-dark section) */
  --logo-outer: #F7F8F8;
  --logo-inner: #F7F8F8;
  --logo-slot:  #F7F8F8;
}

.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__grid-pattern {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 70%, #000 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 70%, #000 30%, transparent 70%);
}
.hero__glow {
  position: absolute;
  top: 65%; left: 50%;
  width: 880px; height: 480px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse,
    rgba(47, 164, 255, 0.08) 0%,
    rgba(66, 201, 106, 0.05) 30%,
    transparent 65%);
  filter: blur(60px);
  animation: glowPulse 3.8s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.96); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.12); }
}

.hero__inner {
  position: relative;
  z-index: 1;
}

/* Text block (centered, above the visual) */
.hero__copy {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(247, 248, 248, 0.7);
  margin-bottom: 24px;
}
.badge__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--packet-2);
  box-shadow: 0 0 8px var(--packet-2);
  animation: pulse 1.25s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 8px var(--packet-2); }
  50%      { transform: scale(1.7); opacity: 0.35; box-shadow: 0 0 18px var(--packet-2); }
}

.hero__title {
  font-size: clamp(2rem, 4.3vw, 3.6rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #FFFFFF;
  margin-bottom: 20px;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.1875rem);
  color: rgba(247, 248, 248, 0.62);
  line-height: 1.55;
  margin-bottom: 30px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  max-width: 760px;
  margin: 24px auto 0;
}
.hero-proof__item {
  display: flex;
  gap: 7px;
  align-items: center;
}
.hero-proof__item:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 12px;
  margin-left: 6px;
  background: rgba(247, 248, 248, 0.14);
}
.hero-proof__value {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}
.hero-proof__label {
  font-size: 0.6875rem;
  color: rgba(247, 248, 248, 0.46);
  white-space: nowrap;
}

/* ─── Transformation Strip (Sheet → Engine → Dashboard) ─── */
.transform-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  color: #F7F8F8;
}

.transform-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.transform-stage__label {
  font-family: 'Inter', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 248, 248, 0.5);
}
.transform-stage__visual {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 200 / 140;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 14px;
  backdrop-filter: blur(8px);
  transition: border-color .2s, background .2s;
}
.transform-stage__visual svg,
.transform-stage__visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
.transform-stage--engine .transform-stage__visual {
  border-color: rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.03);
}

/* Arrows between stages */
.transform-arrow {
  width: 60px;
  color: rgba(247, 248, 248, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
.transform-arrow svg { width: 100%; height: 24px; }

/* Animated flow lines */
.arrow-flow {
  stroke-linecap: round;
  stroke-dasharray: 13 10;
  animation: arrowFlow 950ms linear infinite;
}
.flow-1 { animation-delay: 0ms; }
.flow-2 { animation-delay: 120ms; }
.flow-3 { animation-delay: 240ms; }

@keyframes arrowFlow {
  0%   { stroke-dashoffset: 23; stroke-opacity: 0.18; }
  35%  { stroke-opacity: 1; }
  100% { stroke-dashoffset: -23; stroke-opacity: 0.28; }
}

/* Hero engine — Pac-Man eating animation, 3-stage narrative:
   1. Queue → fly toward mouth (full color packet)
   2. Enter mouth at upper-right opening of C
   3. Inside belly: stretch into slot-shaped data bar, slide left into the slot area,
      and dissolve as it merges with the digested data inside */
.hero-packet {
  animation: pacmanEat 2600ms cubic-bezier(0.4, 0, 0.7, 1) infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.hero-packet1 { animation-delay: 0ms;    }
.hero-packet2 { animation-delay: 240ms;  }
.hero-packet3 { animation-delay: 480ms;  }
.hero-packet4 { animation-delay: 720ms;  }

@keyframes pacmanEat {
  /* — Stage 1: Queue → approach mouth — */
  0%   { transform: translate(0, 0) scale(1, 1);                                                     opacity: 0; }
  8%   {                                                                                              opacity: 1; }
  62%  { transform: translate(calc(var(--dx) * 0.92), calc(var(--dy) * 0.92)) scale(1, 1);            opacity: 1; }

  /* — Stage 2: Cross the mouth threshold (140, 63) — */
  72%  { transform: translate(var(--dx), var(--dy)) scale(1, 1);                                      opacity: 1; }

  /* — Stage 3: Inside belly, morph into slot-shape (32×7 bar) and slide toward slot area — */
  86%  { transform: translate(calc(var(--dx) - 26px), calc(var(--dy) + 6px))  scale(2.4, 0.7);       opacity: 0.7; }

  /* Dissolve into the digested data layer */
  100% { transform: translate(calc(var(--dx) - 50px), calc(var(--dy) + 12px)) scale(3.2, 0.55);      opacity: 0; }
}

/* Hero engine slots — chomp pulse synced with eating (one chomp per packet) */
.hero-slot {
  animation: chomp 600ms ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0.22;
}
.hero-slot1 { animation-delay: 0ms;   }
.hero-slot2 { animation-delay: 100ms; }
.hero-slot3 { animation-delay: 200ms; }

@keyframes chomp {
  0%, 100% { opacity: 0.22; transform: scaleX(0.92); }
  50%      { opacity: 0.85; transform: scaleX(1.06); }
}

/* Hero engine rings — outer FIXED (mouth aimed at consumption direction),
   inner rotates slowly for ambient life */
.ring-outer-hero { /* fixed at rotate(28) — mouth points to upper-right where packets converge */ }
.ring-inner-hero { animation: heroRingIn 22s linear infinite reverse; transform-origin: 100px 74px; }
@keyframes heroRingIn {
  from { transform: rotate(38deg); }
  to   { transform: rotate(398deg); }
}

@media (prefers-reduced-motion: reduce) {
  .arrow-flow, .hero-packet, .hero-slot,
  .ring-inner-hero { animation: none; }
}

/* Tablet: stack vertically with rotated arrows */
@media (max-width: 900px) {
  .transform-strip {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 360px;
  }
  .transform-arrow {
    transform: rotate(90deg);
    width: 40px;
    margin: 0 auto;
  }
  .transform-stage__visual { max-width: 320px; }
}

@media (max-width: 768px) {
  .hero { padding: 96px 0 76px; }
  .hero__copy { margin-bottom: 48px; }
  .hero__title { font-size: clamp(1.9rem, 9vw, 2.45rem); line-height: 1.12; }
  .hero__badge { margin-bottom: 24px; }
  .hero__actions { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
  .hero-proof { max-width: 320px; margin-top: 20px; gap: 10px 12px; }
  .hero-proof__item:not(:last-child)::after { display: none; }
  .hero-proof__label { white-space: normal; }
  .btn--lg { justify-content: center; width: 100%; }
}


/* ═══════════════════════════════════════
   PIXEL OPS DESIGN MODE
═══════════════════════════════════════ */
html[data-design="pixel"] {
  --bg: #FFF5D6;
  --bg-elevated: #F0E8C2;
  --bg-feature: #19243A;
  --text-primary: #142036;
  --text-secondary: rgba(20, 32, 54, 0.72);
  --text-tertiary: rgba(20, 32, 54, 0.54);
  --text-quaternary: rgba(20, 32, 54, 0.34);
  --border-subtle: rgba(20, 32, 54, 0.14);
  --border-default: rgba(20, 32, 54, 0.24);
  --border-strong: rgba(20, 32, 54, 0.42);
  --card-bg: #FFFAE8;
  --card-bg-hover: #FFF0B8;
  --header-bg: rgba(255, 245, 214, 0.92);
  --header-border: rgba(20, 32, 54, 0.24);
  --action-primary-bg: #18253D;
  --action-primary-text: #FFF5D6;
  --action-primary-hover: #26385C;
}

html[data-design="pixel"] body {
  background:
    linear-gradient(90deg, rgba(20, 50, 59, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(20, 50, 59, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: 16px 16px, 16px 16px, auto;
}

html[data-design="pixel"] .header {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: 3px solid var(--header-border);
}

html[data-design="pixel"] .btn,
html[data-design="pixel"] .lang-toggle,
html[data-design="pixel"] .theme-toggle,
html[data-design="pixel"] .design-toggle,
html[data-design="pixel"] .mobile-nav {
  border-radius: 0;
}

html[data-design="pixel"] .btn {
  border: 2px solid rgba(20, 50, 59, 0.22);
  box-shadow: 4px 4px 0 rgba(20, 50, 59, 0.18);
  transform: translate(0, 0);
}

html[data-design="pixel"] .btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 rgba(20, 50, 59, 0.2);
}

.pixel-ops-scene {
  display: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
  image-rendering: pixelated;
}

.pixel-art-motion {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  image-rendering: pixelated;
}

html[data-design="pixel"] .hero {
  min-height: 760px;
  padding: 108px 0 92px;
  background:
    #0B1730 url("../assets/dataclaw-pixel-control-room-hero.png") center center / cover no-repeat;
  overflow: hidden;
  isolation: isolate;
  --logo-outer: #FFF1BA;
  --logo-inner: #8FDBD0;
  --logo-slot: #8FDBD0;
}

html[data-design="pixel"] .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 12, 24, 0.82) 0%, rgba(5, 12, 24, 0.62) 34%, rgba(5, 12, 24, 0.18) 58%, rgba(5, 12, 24, 0.02) 78%),
    linear-gradient(180deg, rgba(5, 12, 24, 0.20) 0%, transparent 46%, rgba(5, 12, 24, 0.34) 100%);
  pointer-events: none;
}

html[data-design="pixel"] .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(5, 12, 24, 0.42));
  pointer-events: none;
}

html[data-design="pixel"] .hero__bg {
  z-index: 1;
}

html[data-design="pixel"] .hero__grid-pattern,
html[data-design="pixel"] .hero__glow {
  display: none;
}

html[data-design="pixel"] .pixel-ops-scene {
  display: none;
}

html[data-design="pixel"] .pixel-art-motion {
  display: block;
}

html[data-design="pixel"] .hero__inner {
  z-index: 2;
}

html[data-design="pixel"] .hero__copy {
  text-align: left;
  max-width: 650px;
  margin: 0 0 0;
}

html[data-design="pixel"] .hero__badge {
  border-radius: 0;
  border: 2px solid rgba(255, 241, 186, 0.26);
  background: rgba(15, 24, 43, 0.58);
  color: rgba(255, 245, 214, 0.9);
  box-shadow: 4px 4px 0 rgba(5, 12, 24, 0.34);
}

html[data-design="pixel"] .hero__title {
  color: #FFF5D6;
  text-shadow:
    0 3px 0 rgba(5, 12, 24, 0.52),
    3px 3px 0 rgba(244, 199, 109, 0.16);
}

html[data-design="pixel"] .hero__sub {
  color: rgba(255, 245, 214, 0.82);
  margin-left: 0;
  margin-right: 0;
}

html[data-design="pixel"] .hero__actions {
  justify-content: flex-start;
}

html[data-design="pixel"] .hero .btn--primary {
  background: #FFF1BA;
  color: #142036;
}

html[data-design="pixel"] .hero .btn--ghost {
  background: rgba(15, 24, 43, 0.46);
  color: #FFF5D6;
  border-color: rgba(255, 245, 214, 0.28);
}

html[data-design="pixel"] .hero-proof {
  justify-content: flex-start;
  margin-left: 0;
  margin-right: 0;
}

html[data-design="pixel"] .hero-proof__item {
  padding: 5px 8px;
  background: rgba(15, 24, 43, 0.48);
  border: 1px solid rgba(255, 245, 214, 0.18);
}

html[data-design="pixel"] .hero-proof__item::after {
  display: none;
}

html[data-design="pixel"] .transform-strip {
  display: none;
}

.pixel-flow {
  position: absolute;
  height: 10px;
  transform-origin: left center;
  opacity: 0.95;
}

.pixel-flow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 4px;
  height: 2px;
  background:
    linear-gradient(90deg, transparent 0 8px, rgba(143, 219, 208, 0.75) 8px 18px, transparent 18px 32px) 0 0 / 32px 2px repeat-x;
  box-shadow: 0 0 14px rgba(91, 210, 229, 0.4);
  animation: pixelFlowRail 1.8s linear infinite;
}

.pixel-flow span {
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(255, 245, 214, 0.72);
  background: #5BD2E5;
  box-shadow: 0 0 16px rgba(91, 210, 229, 0.68);
  animation: pixelPacketRun 3.8s linear infinite;
}

.pixel-flow span:nth-child(2) {
  background: #F4C76D;
  box-shadow: 0 0 16px rgba(244, 199, 109, 0.62);
  animation-delay: 1.15s;
}

.pixel-flow span:nth-child(3) {
  background: #8FDBD0;
  box-shadow: 0 0 16px rgba(143, 219, 208, 0.62);
  animation-delay: 2.25s;
}

.pixel-flow--one {
  left: 30%;
  top: 48%;
  width: 43%;
  --flow-distance: 43vw;
  transform: rotate(-9deg);
}

.pixel-flow--two {
  left: 24%;
  top: 62%;
  width: 49%;
  --flow-distance: 49vw;
  transform: rotate(-16deg);
}

.pixel-flow--three {
  left: 41%;
  top: 42%;
  width: 31%;
  --flow-distance: 31vw;
  transform: rotate(6deg);
}

.pixel-flow--two span {
  animation-duration: 4.6s;
}

.pixel-flow--three span {
  animation-duration: 3.2s;
}

@keyframes pixelFlowRail {
  from { background-position-x: 0; opacity: 0.62; }
  50%  { opacity: 1; }
  to   { background-position-x: 32px; opacity: 0.62; }
}

@keyframes pixelPacketRun {
  0%   { transform: translateX(0) scale(0.55); opacity: 0; }
  10%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: translateX(var(--flow-distance, 40vw)) scale(1); opacity: 0; }
}

.pixel-window-spark {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #FFF1BA;
  box-shadow:
    48px 18px 0 rgba(255, 241, 186, 0.82),
    112px -16px 0 rgba(143, 219, 208, 0.62),
    176px 34px 0 rgba(255, 241, 186, 0.76),
    248px -2px 0 rgba(91, 210, 229, 0.58);
  animation: pixelWindowTwinkle 3.6s steps(2, end) infinite;
}

.pixel-window-spark--one { left: 9%; top: 55%; }
.pixel-window-spark--two { left: 22%; top: 70%; animation-delay: 0.9s; }
.pixel-window-spark--three { left: 48%; top: 66%; animation-delay: 1.8s; }

@keyframes pixelWindowTwinkle {
  0%, 100% { opacity: 0.28; }
  45%      { opacity: 0.82; }
  55%      { opacity: 0.45; }
}

.pixel-monitor-aura {
  position: absolute;
  right: 2.5%;
  top: 5.5%;
  width: 36%;
  height: 54%;
  background:
    radial-gradient(ellipse at 52% 44%, rgba(91, 210, 229, 0.5), transparent 56%),
    radial-gradient(ellipse at 72% 24%, rgba(143, 219, 208, 0.34), transparent 46%),
    radial-gradient(ellipse at 82% 62%, rgba(244, 199, 109, 0.26), transparent 48%);
  mix-blend-mode: screen;
  filter: saturate(1.24);
  animation: pixelMonitorBreathe 2.1s ease-in-out infinite;
}

.pixel-monitor-scan {
  position: absolute;
  right: 6%;
  top: 14.5%;
  width: 23.5%;
  height: 28%;
  overflow: hidden;
  opacity: 0.72;
  mix-blend-mode: screen;
}

.pixel-monitor-scan::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 8px;
  height: 8px;
  background: linear-gradient(180deg, transparent, rgba(143, 219, 208, 0.88), rgba(91, 210, 229, 0.56), transparent);
  box-shadow:
    0 0 12px rgba(143, 219, 208, 0.54),
    0 0 22px rgba(91, 210, 229, 0.28);
  animation: pixelMonitorScan 2.6s linear infinite;
}

.pixel-office-lamp {
  position: absolute;
  right: 1.4%;
  top: 45.5%;
  width: 9.5%;
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 213, 132, 0.58) 0 16%, rgba(244, 199, 109, 0.34) 28%, rgba(255, 179, 86, 0.18) 48%, transparent 72%);
  border-radius: 50%;
  mask-image: radial-gradient(circle at 50% 50%, #000 0 42%, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 0 42%, transparent 76%);
  mix-blend-mode: screen;
  animation: pixelLampWarmth 2.8s ease-in-out infinite;
}

.pixel-office-lamp::before {
  content: "";
  position: absolute;
  left: 42%;
  top: 33%;
  width: 18%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 213, 132, 0.76);
  box-shadow:
    0 0 14px rgba(255, 213, 132, 0.7),
    0 0 34px rgba(244, 199, 109, 0.36);
  animation: pixelLampCore 2.8s steps(4, end) infinite;
}

.pixel-office-lamp::after {
  content: "";
  position: absolute;
  left: 22%;
  bottom: 14%;
  width: 58%;
  height: 24%;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 194, 103, 0.3), transparent 68%);
  filter: blur(1px);
  animation: pixelLampDesk 2.8s ease-in-out infinite;
}

@keyframes pixelMonitorBreathe {
  0%, 100% { opacity: 0.48; filter: saturate(1.04) brightness(0.9); }
  48%      { opacity: 1; filter: saturate(1.55) brightness(1.24); }
}

@keyframes pixelMonitorScan {
  from { top: 8px; }
  to   { top: calc(100% - 4px); }
}

@keyframes pixelLampWarmth {
  0%, 100% { opacity: 0.52; filter: brightness(0.96); }
  48%      { opacity: 0.82; filter: brightness(1.12); }
}

@keyframes pixelLampCore {
  0%, 100% { opacity: 0.62; transform: scale(0.96); }
  48%      { opacity: 0.88; transform: scale(1.04); }
}

@keyframes pixelLampDesk {
  0%, 100% { opacity: 0.4; transform: scaleX(0.98); }
  48%      { opacity: 0.67; transform: scaleX(1.02); }
}

html[data-design="pixel"] .transform-stage__visual {
  border-radius: 0;
  border: 3px solid rgba(255, 241, 186, 0.28);
  background: rgba(15, 24, 43, 0.76);
  color: #FFF5D6;
  box-shadow: 6px 6px 0 rgba(5, 12, 24, 0.34), 0 0 36px rgba(143, 219, 208, 0.10);
  backdrop-filter: none;
}

html[data-design="pixel"] .transform-stage__label {
  color: rgba(255, 245, 214, 0.76);
  text-shadow: 2px 2px 0 rgba(5, 12, 24, 0.42);
}

html[data-design="pixel"] .transform-arrow {
  color: #FFF5D6;
  filter: drop-shadow(2px 2px 0 rgba(5, 12, 24, 0.44));
}

.pixel-cloud {
  position: absolute;
  width: 7px;
  height: 7px;
  background: #FFF1BA;
  box-shadow:
    72px 42px 0 rgba(255, 241, 186, 0.78),
    154px -4px 0 rgba(143, 219, 208, 0.72),
    238px 62px 0 rgba(255, 241, 186, 0.68),
    322px 18px 0 rgba(255, 241, 186, 0.82),
    414px 72px 0 rgba(143, 219, 208, 0.58),
    506px 8px 0 rgba(255, 241, 186, 0.72);
}
.pixel-cloud--one { top: 92px; left: 44%; opacity: 0.92; }
.pixel-cloud--two { top: 198px; left: 6%; opacity: 0.72; }
.pixel-cloud--three { top: 128px; right: 10%; opacity: 0.78; }

.pixel-sun {
  position: absolute;
  top: 102px;
  right: 32%;
  width: 54px;
  height: 54px;
  background: #FFF1BA;
  box-shadow:
    -10px 0 0 #F4C76D,
    10px 0 0 #FFF1BA,
    0 -10px 0 #FFF1BA,
    0 10px 0 #F4C76D,
    -18px 18px 0 rgba(244, 199, 109, 0.32),
    0 0 0 10px rgba(255, 241, 186, 0.08),
    0 0 0 22px rgba(143, 219, 208, 0.04);
}

.pixel-hills {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 198px;
  height: 210px;
  background:
    linear-gradient(90deg, transparent 0 24px, rgba(255, 241, 186, 0.58) 24px 30px, transparent 30px 48px) 0 58px / 78px 24px repeat-x,
    linear-gradient(90deg, #223A5D 0 54px, transparent 54px 70px, #1D314F 70px 122px, transparent 122px 138px, #2A4569 138px 206px, transparent 206px 228px) left bottom / 228px 146px repeat-x;
  opacity: 0.95;
}

.pixel-ground {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 238px;
  background:
    linear-gradient(90deg, rgba(143, 219, 208, 0.22) 0 18px, transparent 18px 40px) 0 34px / 80px 28px repeat-x,
    linear-gradient(90deg, #17243B 0 22px, #203554 22px 48px, #2B4766 48px 72px) 0 0 / 72px 100% repeat;
  border-top: 8px solid #F4C76D;
}
.pixel-ground::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 44px;
  height: 38px;
  background:
    linear-gradient(90deg, rgba(255, 241, 186, 0.22) 0 20px, transparent 20px 42px) 0 0 / 84px 38px repeat-x;
}

.pixel-city {
  position: absolute;
  left: 6%;
  bottom: 250px;
  width: 52%;
  height: 178px;
}
.pixel-building {
  position: absolute;
  bottom: 0;
  width: 42px;
  background: #263E61;
  border-top: 6px solid #8FDBD0;
  box-shadow: inset 0 -14px 0 rgba(5, 12, 24, 0.22);
}
.pixel-building::before {
  content: "";
  position: absolute;
  left: 8px;
  right: 8px;
  top: 14px;
  height: calc(100% - 24px);
  background:
    repeating-linear-gradient(180deg, #FFF1BA 0 6px, transparent 6px 16px),
    repeating-linear-gradient(90deg, transparent 0 11px, rgba(143, 219, 208, 0.8) 11px 17px, transparent 17px 28px);
  opacity: 0.78;
}
.pixel-building--one { left: 0; height: 92px; }
.pixel-building--two { left: 58px; height: 142px; background: #1E3353; }
.pixel-building--three { left: 128px; height: 176px; width: 34px; background: #34557A; }
.pixel-building--four { left: 188px; height: 118px; background: #253D60; }
.pixel-building--five { left: 258px; height: 84px; background: #314D70; }

.pixel-road {
  position: absolute;
  height: 14px;
  background:
    linear-gradient(90deg, #8FDBD0 0 12px, transparent 12px 28px) 0 5px / 28px 4px repeat-x,
    rgba(143, 219, 208, 0.18);
  border-top: 3px solid rgba(255, 241, 186, 0.38);
  border-bottom: 3px solid rgba(143, 219, 208, 0.28);
  transform-origin: left center;
  box-shadow: 0 0 18px rgba(143, 219, 208, 0.24);
}
.pixel-road--left {
  left: 17%;
  bottom: 230px;
  width: 36%;
  transform: rotate(-4deg);
}
.pixel-road--right {
  left: 51%;
  bottom: 228px;
  width: 34%;
  transform: rotate(4deg);
}

.pixel-source,
.pixel-engine,
.pixel-dashboard,
.pixel-terminal {
  position: absolute;
  border: 4px solid #0D1729;
  background: #FFF5D6;
  box-shadow: 8px 8px 0 rgba(5, 12, 24, 0.36);
}
.pixel-source {
  width: 122px;
  height: 86px;
  padding: 12px;
}
.pixel-source--sheet { left: 14%; bottom: 198px; }
.pixel-source--ads { left: 30%; bottom: 166px; transform: scale(0.82); background: #E6F8F2; }
.pixel-source span {
  display: block;
  height: 8px;
  margin-bottom: 8px;
  background: #66B1D6;
}
.pixel-source span:nth-child(2) { width: 72%; background: #42C96A; }
.pixel-source span:nth-child(3) { width: 86%; background: #F0B63E; }
.pixel-source span:nth-child(4) { width: 58%; background: #F06C5E; }
.pixel-source--ads span:nth-child(1) { width: 84%; background: #F0B63E; }
.pixel-source--ads span:nth-child(2) { width: 64%; background: #F06C5E; }
.pixel-source--ads span:nth-child(3) { width: 78%; background: #2FA4FF; }

.pixel-engine {
  left: 46%;
  bottom: 178px;
  width: 154px;
  height: 116px;
  display: grid;
  place-items: center;
  background: #111C31;
  box-shadow: 8px 8px 0 rgba(5, 12, 24, 0.38), 0 0 32px rgba(143, 219, 208, 0.18);
}
.pixel-engine img {
  width: 132px;
  height: auto;
  image-rendering: auto;
}

.pixel-dashboard {
  right: 9%;
  bottom: 188px;
  width: 236px;
  height: 152px;
  padding: 15px;
  background: #0F182B;
  box-shadow: 10px 10px 0 rgba(5, 12, 24, 0.44), 0 0 46px rgba(255, 241, 186, 0.16);
}
.pixel-dashboard::before {
  content: "";
  display: block;
  height: 28px;
  margin-bottom: 13px;
  background: linear-gradient(90deg, #8FDBD0 0 52px, #F4C76D 52px 98px, #76B8FF 98px 154px, transparent 154px);
}
.pixel-dashboard span {
  display: inline-block;
  width: 30px;
  margin-right: 11px;
  vertical-align: bottom;
  background: #76B8FF;
}
.pixel-dashboard span:nth-child(1) { height: 38px; }
.pixel-dashboard span:nth-child(2) { height: 64px; background: #8FDBD0; }
.pixel-dashboard span:nth-child(3) { height: 78px; background: #F4C76D; }
.pixel-dashboard span:nth-child(4) { height: 48px; background: #F06C5E; }
.pixel-dashboard::after {
  content: "";
  position: absolute;
  left: 88px;
  right: 88px;
  bottom: -24px;
  height: 20px;
  background: #0D1729;
  box-shadow: -38px 20px 0 #0D1729, 38px 20px 0 #0D1729;
}

.pixel-tree {
  position: absolute;
  bottom: 202px;
  width: 22px;
  height: 96px;
  background: #111C31;
  box-shadow: inset 0 10px 0 #8FDBD0;
}
.pixel-tree::before {
  content: "";
  position: absolute;
  left: -22px;
  top: -42px;
  width: 66px;
  height: 50px;
  background: #263E61;
  box-shadow:
    16px -18px 0 #34557A,
    36px -8px 0 #1E3353,
    24px 18px 0 rgba(255, 241, 186, 0.34);
}
.pixel-tree--small { left: 6%; transform: scale(0.74); }
.pixel-tree--large { right: 0; bottom: 212px; transform: scale(1.62); opacity: 0.86; }

.pixel-packet {
  position: absolute;
  width: 14px;
  height: 14px;
  border: 3px solid #0D1729;
  background: #76B8FF;
  z-index: 1;
  animation: pixelPacketFlow 3.2s linear infinite;
  box-shadow: 0 0 16px rgba(143, 219, 208, 0.36);
}
.pixel-packet--one { left: 25%; bottom: 270px; background: #76B8FF; animation-delay: 0ms; }
.pixel-packet--two { left: 34%; bottom: 246px; background: #8FDBD0; animation-delay: 420ms; }
.pixel-packet--three { left: 54%; bottom: 258px; background: #F4C76D; animation-delay: 840ms; }

@keyframes pixelPacketFlow {
  0%   { transform: translate(0, 0) scale(0.7); opacity: 0; }
  14%  { opacity: 1; }
  52%  { transform: translate(130px, -18px) scale(1); opacity: 1; }
  82%  { transform: translate(260px, 10px) scale(0.86); opacity: 1; }
  100% { transform: translate(340px, 18px) scale(0.5); opacity: 0; }
}

.pixel-terminal {
  right: 18%;
  bottom: 366px;
  min-width: 188px;
  padding: 10px 12px;
  background: rgba(15, 24, 43, 0.88);
  border-color: rgba(255, 241, 186, 0.42);
  color: #FFF5D6;
  box-shadow: 6px 6px 0 rgba(5, 12, 24, 0.36), 0 0 28px rgba(143, 219, 208, 0.10);
}
.pixel-terminal span {
  display: block;
  color: rgba(255, 245, 214, 0.58);
  font-size: 0.625rem;
}
.pixel-terminal span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  background: #8FDBD0;
}
.pixel-terminal strong {
  display: block;
  margin-top: 2px;
  font-size: 0.75rem;
}

html[data-design="pixel"] .section-label {
  color: rgba(20, 50, 59, 0.62);
}

html[data-design="pixel"] .section,
html[data-design="pixel"] .section--alt {
  position: relative;
}

html[data-design="pixel"] .section--alt {
  background:
    linear-gradient(90deg, rgba(20, 50, 59, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(20, 50, 59, 0.04) 1px, transparent 1px),
    var(--bg-elevated);
  background-size: 18px 18px, 18px 18px, auto;
}

html[data-design="pixel"] .decision-card,
html[data-design="pixel"] .fit-card,
html[data-design="pixel"] .industry-card,
html[data-design="pixel"] .route-card,
html[data-design="pixel"] .trust-card,
html[data-design="pixel"] .before-after-panel,
html[data-design="pixel"] .pricing-card,
html[data-design="pixel"] .case-card,
html[data-design="pixel"] .preview-flow__item,
html[data-design="pixel"] .meeting-action,
html[data-design="pixel"] .impact-item,
html[data-design="pixel"] .meeting-scene,
html[data-design="pixel"] .before-after-scene,
html[data-design="pixel"] .compare-scene,
html[data-design="pixel"] .industry-scene {
  border-radius: 0;
  border: 3px solid rgba(20, 50, 59, 0.22);
  box-shadow: 6px 6px 0 rgba(20, 50, 59, 0.10);
}

html[data-design="pixel"] .dashboard-mockup,
html[data-design="pixel"] .diagnosis-preview {
  border-radius: 0;
  border: 4px solid #14323B;
  box-shadow: 10px 10px 0 rgba(20, 50, 59, 0.20), 0 24px 72px rgba(20, 50, 59, 0.22);
}

html[data-design="pixel"] .mockup__chrome,
html[data-design="pixel"] .diagnosis-preview__chrome {
  border-radius: 0;
}

html[data-design="pixel"] .industry-card__question,
html[data-design="pixel"] .source-cloud span,
html[data-design="pixel"] .output-grid span,
html[data-design="pixel"] .portfolio-tabs,
html[data-design="pixel"] .kpi__badge,
html[data-design="pixel"] .game-row__trend {
  border-radius: 0;
}

html[data-design="pixel"] .compare-table {
  border-radius: 0;
  border: 3px solid rgba(20, 50, 59, 0.22);
  box-shadow: 6px 6px 0 rgba(20, 50, 59, 0.10);
}

html[data-design="pixel"] .compare-row--accent,
html[data-design="pixel"] .pricing-card--accent,
html[data-design="pixel"] .cta-band {
  background:
    linear-gradient(90deg, rgba(255, 248, 219, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 248, 219, 0.045) 1px, transparent 1px),
    #173D49;
  background-size: 18px 18px, 18px 18px, auto;
}

html[data-design="pixel"] .flow-arrow--claw::before {
  border-radius: 0;
  background: linear-gradient(135deg, rgba(47, 164, 255, 0.16), rgba(66, 201, 106, 0.12));
}

html[data-design="pixel"] .flow-arrow__mark {
  filter: drop-shadow(6px 6px 0 rgba(20, 50, 59, 0.18));
}

html[data-design="pixel"] .cta-band .btn--primary {
  background: #FFF2A8;
  color: #14323B;
}

@media (max-width: 900px) {
  html[data-design="pixel"] .hero__copy {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  html[data-design="pixel"] .hero__actions,
  html[data-design="pixel"] .hero-proof {
    justify-content: center;
  }
  html[data-design="pixel"] .pixel-terminal,
  html[data-design="pixel"] .pixel-source--ads,
  html[data-design="pixel"] .pixel-tree--large {
    display: none;
  }
  html[data-design="pixel"] .pixel-engine {
    left: 39%;
    bottom: 150px;
    transform: scale(0.84);
  }
  html[data-design="pixel"] .pixel-dashboard {
    right: 4%;
    bottom: 156px;
    transform: scale(0.78);
  }
}

@media (max-width: 768px) {
  html[data-design="pixel"] .hero {
    min-height: 820px;
    padding: 94px 0 72px;
  }
  html[data-design="pixel"] .hero::before {
    background:
      linear-gradient(180deg, rgba(19, 64, 80, 0.70) 0%, rgba(19, 64, 80, 0.42) 50%, rgba(19, 64, 80, 0.16) 100%);
  }
  html[data-design="pixel"] .pixel-city {
    left: 0;
    width: 70%;
    bottom: 214px;
    transform: scale(0.74);
    transform-origin: left bottom;
  }
  html[data-design="pixel"] .pixel-source--sheet {
    left: 5%;
    bottom: 182px;
    transform: scale(0.72);
    transform-origin: left bottom;
  }
  html[data-design="pixel"] .pixel-engine {
    left: 36%;
    bottom: 158px;
    transform: scale(0.66);
  }
  html[data-design="pixel"] .pixel-dashboard {
    right: -22px;
    bottom: 172px;
    transform: scale(0.58);
    transform-origin: right bottom;
  }
  html[data-design="pixel"] .pixel-road--left,
  html[data-design="pixel"] .pixel-road--right,
  html[data-design="pixel"] .pixel-packet {
    display: none;
  }
  html[data-design="pixel"] .pixel-cloud--one { left: 28%; top: 156px; transform: scale(0.92); }
  html[data-design="pixel"] .pixel-cloud--two { left: -4%; top: 276px; transform: scale(0.72); }
  html[data-design="pixel"] .pixel-flow {
    opacity: 0.72;
  }
  html[data-design="pixel"] .pixel-flow--one {
    left: 10%;
    top: 49%;
    width: 78%;
    --flow-distance: 78vw;
    transform: rotate(-17deg);
  }
  html[data-design="pixel"] .pixel-flow--two {
    left: 0;
    top: 64%;
    width: 92%;
    --flow-distance: 92vw;
    transform: rotate(-19deg);
  }
  html[data-design="pixel"] .pixel-flow--three {
    left: 18%;
    top: 41%;
    width: 66%;
    --flow-distance: 66vw;
    transform: rotate(10deg);
  }
  html[data-design="pixel"] .pixel-monitor-aura,
  html[data-design="pixel"] .pixel-monitor-scan,
  html[data-design="pixel"] .pixel-office-lamp {
    opacity: 0.58;
  }
  html[data-design="pixel"] .pixel-monitor-scan {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pixel-packet,
  .pixel-flow::before,
  .pixel-flow span,
  .pixel-window-spark,
  .pixel-monitor-aura,
  .pixel-monitor-scan::before,
  .pixel-office-lamp,
  .pixel-office-lamp::before,
  .pixel-office-lamp::after {
    animation: none;
  }
}


/* ─── Logo Animations ─── */
.anim-packet {
  animation: packetFlow 1800ms linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.packet1 { animation-delay: 0ms; }
.packet2 { animation-delay: 180ms; }
.packet3 { animation-delay: 360ms; }
.packet4 { animation-delay: 540ms; }

@keyframes packetFlow {
  0%   { transform: translate(0, 0) scale(1); opacity: 0; }
  14%  { opacity: 1; }
  56%  { transform: translate(calc(var(--dx) * 0.72), calc(var(--dy) * 0.72)) scale(1); opacity: 1; }
  78%  { transform: translate(var(--dx), var(--dy)) scale(0.54); opacity: 0.5; }
  100% { transform: translate(var(--dx), var(--dy)) scale(0.18); opacity: 0; }
}

.anim-slot {
  animation: slotPulse 1800ms ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
  opacity: 0.18;
}
.slot1 { animation-delay: 520ms; }
.slot2 { animation-delay: 720ms; }
.slot3 { animation-delay: 920ms; }

@keyframes slotPulse {
  0%, 100% { opacity: 0.18; transform: scaleX(0.92); }
  44%      { opacity: 0.24; transform: scaleX(0.92); }
  56%      { opacity: 1;    transform: scaleX(1.08); }
  72%      { opacity: 0.34; transform: scaleX(0.98); }
}

/* Packet stream (philosophy step 1 — packets drop into the sheet) */
.phil-card .anim-packet {
  animation: packetIdle 2100ms cubic-bezier(0.22, 1, 0.36, 1) infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.phil-card .packet1 { animation-delay: 0ms;   }
.phil-card .packet2 { animation-delay: 240ms; }
.phil-card .packet3 { animation-delay: 480ms; }
.phil-card .packet4 { animation-delay: 720ms; }
@keyframes packetIdle {
  0%   { opacity: 0; transform: translateY(-8px) scale(0.72); }
  14%  { opacity: 1; }
  62%  { opacity: 1; transform: translateY(70px) scale(1.08); }
  82%  { opacity: 0.45; transform: translateY(84px) scale(0.62); }
  100% { opacity: 0; transform: translateY(90px) scale(0.42); }
}

/* Philosophy step 02 — outer C FIXED (mouth toward upper-right), inner C rotates */
.phil-card .ring-outer { /* fixed at rotate(28) per inline transform */ }
.phil-card .ring-inner { animation: ringRotateInner 18s linear infinite reverse; transform-origin: 120px 100px; }
@keyframes ringRotateInner {
  from { transform: rotate(38deg); }
  to   { transform: rotate(398deg); }
}

/* Philosophy step 03 — chart builds visibly instead of staying static */
.phil-chart-bar {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: philChartBar 2.2s ease-in-out infinite;
}
.phil-chart-bar-1 { animation-delay: 0ms; }
.phil-chart-bar-2 { animation-delay: 120ms; }
.phil-chart-bar-3 { animation-delay: 240ms; }
.phil-chart-bar-4 { animation-delay: 360ms; }
.phil-chart-bar-5 { animation-delay: 480ms; }
@keyframes philChartBar {
  0%, 10%   { transform: scaleY(0.15); opacity: 0.25; }
  34%       { transform: scaleY(1.15); opacity: 1; }
  54%, 82%  { transform: scaleY(1); opacity: 0.78; }
  100%      { transform: scaleY(0.2); opacity: 0.28; }
}
.phil-chart-line {
  stroke-dasharray: 122;
  stroke-dashoffset: 122;
  animation: philChartLine 2.2s ease-out infinite;
  animation-delay: 520ms;
}
@keyframes philChartLine {
  0%, 12%   { stroke-dashoffset: 122; opacity: 0; }
  46%, 82%  { stroke-dashoffset: 0; opacity: 1; }
  100%      { stroke-dashoffset: 0; opacity: 0.25; }
}
.phil-chart-dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: philChartDot 2.2s ease-out infinite;
  animation-delay: 980ms;
}
.phil-chart-dot-start { animation-delay: 660ms; }
@keyframes philChartDot {
  0%, 20%   { transform: scale(0.4); opacity: 0; }
  38%       { transform: scale(1.9); opacity: 1; }
  58%, 82%  { transform: scale(1); opacity: 0.8; }
  100%      { transform: scale(0.65); opacity: 0.25; }
}

@media (prefers-reduced-motion: reduce) {
  .anim-packet, .anim-slot, .hero__glow, .badge__dot,
  .phil-card .anim-packet,
  .phil-card .ring-outer, .phil-card .ring-inner,
  .phil-chart-bar, .phil-chart-line, .phil-chart-dot {
    animation: none;
  }
}


/* ═══════════════════════════════════════
   PHILOSOPHY (Data → Claw → Visualize)
   Linear-style with brand-colored packets
═══════════════════════════════════════ */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.phil-card {
  position: relative;
  padding: 36px 36px 44px;
  border-right: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
}
.phil-card:last-child { border-right: none; }

.phil-card__num {
  position: absolute;
  top: 28px; left: 36px;
  font-family: 'Inter', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-quaternary);
}

.phil-card__visual {
  height: 212px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 26px -8px 30px;
  color: var(--text-primary);
}
.phil-card__visual svg {
  width: 100%;
  height: 100%;
  max-width: 320px;
}

.phil-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.phil-card__body {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .philosophy-grid { grid-template-columns: 1fr; }
  .phil-card {
    border-right: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 36px 24px 40px;
  }
  .phil-card:last-child { border-bottom: none; }
  .phil-card__visual { height: 200px; margin: 28px -4px 28px; }
}
@media (max-width: 768px) {
  .phil-card__visual { height: 180px; }
}


/* ═══════════════════════════════════════
   WHY (Problem)
═══════════════════════════════════════ */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 32px;
  transition: border-color .2s, transform .2s;
}
.problem-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.problem-card__num {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-quaternary);
  margin-bottom: 16px;
}
.problem-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.problem-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

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


/* ═══════════════════════════════════════
   FIT + COMPARISON
═══════════════════════════════════════ */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 48px;
}
.fit-card,
.industry-card,
.resource-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 24px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.fit-card:hover,
.industry-card:hover,
.resource-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-default);
}
.fit-card svg,
.industry-card svg {
  width: 20px;
  height: 20px;
  color: var(--text-primary);
  margin-bottom: 18px;
  stroke-width: 1.9;
}
.fit-card h3,
.industry-card h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.018em;
  line-height: 1.35;
  margin-bottom: 10px;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.fit-card p,
.industry-card p {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.industry-card__question {
  display: block;
  margin-bottom: 12px;
  padding: 10px 11px;
  border-radius: 8px;
  background: var(--bg-elevated);
  color: var(--text-primary);
  font-size: 0.875rem;
  line-height: 1.35;
  letter-spacing: -0.018em;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}
.industry-card__question::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--packet-2);
  vertical-align: 0.08em;
}

.compare-table {
  display: grid;
  margin-top: 48px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg);
}
.compare-row {
  display: grid;
  grid-template-columns: 0.8fr 1.6fr 1.4fr;
  gap: 20px;
  align-items: center;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border-subtle);
}
.compare-row:last-child { border-bottom: none; }
.compare-row--head {
  background: var(--bg);
  color: var(--text-tertiary);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.compare-row strong {
  color: var(--text-primary);
  font-size: 1rem;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.compare-row span {
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.5;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.compare-row--accent {
  background: var(--bg-feature);
}
.compare-row--accent strong,
.compare-row--accent span {
  color: #F7F8F8;
}
.compare-row--accent span:last-child {
  font-weight: 700;
}

@media (max-width: 1100px) {
  .fit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 720px) {
  .fit-grid { grid-template-columns: 1fr; }
  .compare-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px;
  }
  .compare-row--head { display: none; }
}


/* ═══════════════════════════════════════
   STARTING POINTS + TRUST
═══════════════════════════════════════ */
.route-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.route-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 32px;
}
.route-card__eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.route-card h3 {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  color: var(--text-primary);
}
.route-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}
.route-card__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border-subtle);
}
.route-card__items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.route-card__items svg {
  width: 15px;
  height: 15px;
  color: var(--text-primary);
  flex-shrink: 0;
  stroke-width: 2.2;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.trust-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 12px;
  align-items: start;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 18px;
}
.trust-card svg {
  width: 18px;
  height: 18px;
  color: var(--text-primary);
  grid-row: span 2;
  margin-top: 1px;
  stroke-width: 1.9;
}
.trust-card h3 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
}
.trust-card p {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  line-height: 1.5;
}
@media (max-width: 900px) {
  .route-grid,
  .trust-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════
   BEFORE / AFTER
═══════════════════════════════════════ */
.before-after-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 172px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  margin-top: 48px;
}
.before-after-panel {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 28px;
}
.before-after-panel--after {
  border-color: var(--border-default);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}
.before-after-scene,
.compare-scene,
.industry-scene {
  width: 100%;
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background: var(--card-bg);
  box-shadow: 0 24px 72px rgba(8, 9, 10, 0.08);
}
.before-after-scene img,
.compare-scene img,
.industry-scene img {
  display: block;
  width: 100%;
  height: auto;
}
.before-after-panel__label {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.source-cloud,
.output-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.source-cloud span,
.output-grid span {
  min-height: 46px;
  display: flex;
  align-items: center;
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  background: var(--bg);
}
.output-grid span {
  color: var(--text-primary);
  font-weight: 700;
  background: var(--bg-elevated);
}
.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--text-primary);
}
.flow-arrow--claw {
  position: relative;
  align-self: stretch;
  min-height: 148px;
  isolation: isolate;
}
.flow-arrow--claw::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 124px;
  height: 124px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(99, 225, 211, 0.16), rgba(99, 225, 211, 0) 68%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.flow-arrow__rail {
  position: absolute;
  top: 50%;
  width: 54px;
  height: 1px;
  border-top: 1px dashed currentColor;
  opacity: 0.36;
}
.flow-arrow__rail--before {
  left: 0;
}
.flow-arrow__rail--after {
  right: 0;
}
.flow-arrow__rail--after::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.9;
}
.flow-arrow__mark {
  width: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.22));
}
.flow-arrow__mark img {
  display: block;
  width: 132px;
  height: auto;
  transform: translateX(-2px);
  transform-origin: center;
  opacity: 0.95;
}

@media (max-width: 900px) {
  .before-after-flow { grid-template-columns: 1fr; }
  .flow-arrow--claw {
    min-height: 108px;
    transform: rotate(90deg);
  }
  .flow-arrow__mark {
    width: 116px;
  }
  .flow-arrow__mark img {
    width: 116px;
  }
  .flow-arrow__rail {
    width: 40px;
  }
  .flow-arrow__rail--before { left: 2px; }
  .flow-arrow__rail--after { right: 2px; }
}
@media (max-width: 540px) {
  .source-cloud,
  .output-grid { grid-template-columns: 1fr; }
  .flow-arrow--claw {
    min-height: 98px;
  }
}


/* ═══════════════════════════════════════
   HOW IT WORKS (Steps)
═══════════════════════════════════════ */
.steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}
.step {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color .2s;
}
.step:hover { border-color: var(--border-default); }
.step__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.step__num {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-quaternary);
}
.step__duration {
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 100px;
  background: var(--bg-elevated);
  color: var(--text-tertiary);
  border: 1px solid var(--border-subtle);
}
.section--alt .step__duration { background: var(--bg); }
.step h3 {
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.step p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 1180px) { .steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .steps { grid-template-columns: 1fr; } }


/* ═══════════════════════════════════════
   PRINCIPLES (Linear-style FIG illustrations)
═══════════════════════════════════════ */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.principle {
  position: relative;
  padding: 36px 36px 44px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
}
.principle:last-child { border-right: none; }

.principle__fig {
  position: absolute;
  top: 28px; left: 36px;
  font-family: 'Inter', monospace;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: rgba(247, 248, 248, 0.32);
}

.principle__visual {
  height: 212px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 26px -8px 30px;
  color: rgba(247, 248, 248, 0.85);
}
.principle__visual svg {
  width: 100%;
  height: 100%;
  max-width: 320px;
}

.principle__title {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.principle__body {
  font-size: 0.9375rem;
  color: rgba(247, 248, 248, 0.58);
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .principles-grid { grid-template-columns: 1fr; }
  .principle {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 36px 24px 40px;
  }
  .principle:last-child { border-bottom: none; }
  .principle__visual { height: 200px; margin: 28px -4px 28px; }
}
@media (max-width: 768px) {
  .principle__visual { height: 180px; }
}


/* ═══════════════════════════════════════
   PREVIEW (Dashboard mockup)
═══════════════════════════════════════ */
/* Preview stage wrapper */
.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 44px;
}
.decision-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 18px;
}
.decision-card span,
.resource-card span {
  color: var(--text-quaternary);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.decision-card p {
  color: var(--text-primary);
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.018em;
}

.preview-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.preview-flow__item {
  background: linear-gradient(180deg, var(--card-bg), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  padding: 18px;
}
.preview-flow__item span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--text-tertiary);
  font-size: 0.75rem;
  font-weight: 700;
}
.preview-flow__item strong {
  display: block;
  color: var(--text-primary);
  font-size: 1rem;
  letter-spacing: -0.018em;
  margin-bottom: 6px;
}
.preview-flow__item p {
  color: var(--text-tertiary);
  font-size: 0.8125rem;
  line-height: 1.55;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 24px auto 0;
  max-width: 920px;
}
.impact-item {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding: 18px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
}
.impact-item strong {
  color: var(--text-primary);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.impact-item span {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  word-break: keep-all;
}

.meeting-proof__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 56px;
  align-items: end;
}
.meeting-proof__copy .section-title {
  max-width: 660px;
}
.meeting-proof .impact-strip {
  grid-template-columns: 1fr;
  max-width: none;
  margin: 0;
}
.meeting-proof .impact-item {
  justify-content: flex-start;
  padding: 16px 18px;
}
.meeting-proof__board {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1.38fr);
  gap: 18px;
  margin-top: 44px;
  align-items: stretch;
}
.meeting-proof__board .preview-flow {
  grid-template-columns: 1fr;
  margin-top: 0;
  align-content: stretch;
}
.meeting-proof__board .preview-flow__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.meeting-proof__board .meeting-result {
  margin-top: 0;
  height: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
}
.meeting-proof__board .meeting-result__items {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.meeting-scene {
  grid-column: 1 / -1;
  min-width: 0;
  overflow: hidden;
  aspect-ratio: 32 / 9;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: var(--card-bg);
  box-shadow: 0 22px 70px rgba(8, 9, 10, 0.08);
}
.meeting-scene img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-stage {
  position: relative;
  margin-top: 44px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.dashboard-mockup {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #0F1011;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 24px 80px rgba(0, 0, 0, 0.6);
}
.mockup__chrome {
  background: #16171A;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.mockup__dots { display: flex; gap: 6px; }
.mockup__dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.mockup__url {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 5px;
  padding: 4px 10px;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
  font-family: 'Inter', monospace;
}
.mockup__body {
  display: flex;
  padding: 0;
}

/* ── Sidebar ── */
.mockup__sidebar {
  width: 166px;
  flex-shrink: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.20);
  padding: 18px 0;
}
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 8px;
}
.sidebar-nav__item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(247, 248, 248, 0.32);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.sidebar-nav__item:hover,
.sidebar-nav__item:focus-visible {
  background: rgba(255, 255, 255, 0.045);
  color: rgba(247, 248, 248, 0.72);
  outline: none;
  transform: translateX(2px);
}
.sidebar-nav__item--active {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(247, 248, 248, 0.88);
}
.sidebar-nav__item--locked {
  color: rgba(247, 248, 248, 0.20);
  cursor: help;
}
.sidebar-nav__item--locked:hover,
.sidebar-nav__item--locked:focus-visible {
  color: rgba(247, 248, 248, 0.42);
  transform: none;
}
.sidebar-nav__dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(247, 248, 248, 0.18);
  flex-shrink: 0;
}
.sidebar-nav__item--active .sidebar-nav__dot {
  background: var(--packet-2);
}

/* ── Main panel ── */
.mockup__main {
  flex: 1;
  min-width: 0;
  padding: 20px;
}
.preview-view {
  display: none;
  min-height: 466px;
}
.preview-view--active {
  display: block;
  animation: previewViewIn 360ms ease;
}
@keyframes previewViewIn {
  0%   { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.mockup__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(84, 168, 255, 0.10), rgba(111, 224, 147, 0.06)),
    rgba(255, 255, 255, 0.025);
}
.mockup__summary-label,
.mockup__summary-score span,
.mockup__decision-card span {
  display: block;
  color: rgba(247, 248, 248, 0.48);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.mockup__summary strong {
  display: block;
  color: rgba(247, 248, 248, 0.94);
  font-size: 1.125rem;
  line-height: 1.25;
  letter-spacing: -0.024em;
  margin-top: 5px;
}
.mockup__summary p {
  color: rgba(247, 248, 248, 0.56);
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 5px;
}
.mockup__source-trail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px 10px;
  margin-top: 10px;
  color: rgba(247, 248, 248, 0.42);
  font-size: 0.625rem;
  line-height: 1.35;
}
.mockup__source-trail span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 9px;
  margin-left: 10px;
  background: rgba(247, 248, 248, 0.12);
  vertical-align: -1px;
}
.source-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: rgba(247, 248, 248, 0.82);
  font-weight: 700;
  cursor: pointer;
  transition: color .18s ease, opacity .18s ease, transform .18s ease;
}
.source-link:hover,
.source-link:focus-visible {
  color: #FFFFFF;
  outline: none;
  transform: translateX(2px);
}
.source-link--mini {
  margin-top: 5px;
  color: rgba(247, 248, 248, 0.42);
  font-size: 0.625rem;
}
.mockup__summary-score {
  min-width: 104px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(240, 108, 94, 0.12);
  border: 1px solid rgba(240, 108, 94, 0.24);
}
.mockup__summary-score strong {
  color: #F89A91;
  font-size: 1.35rem;
}

.mockup__kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.mockup__kpi {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 13px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.mockup__kpi:hover,
.mockup__kpi.is-highlighted {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.kpi__label {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
}
.kpi__value {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1;
  transition: opacity .18s ease, transform .18s ease;
}
.kpi__value.is-updating {
  opacity: 0.45;
  transform: translateY(-2px);
}
.kpi__badge {
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 2px 6px;
  border-radius: 4px;
  width: fit-content;
}
.kpi__badge--up   { background: rgba(66, 201, 106, 0.12); color: #6FE093; }
.kpi__badge--down { background: rgba(240, 108, 94, 0.12); color: #F89A91; }

.mockup__decision-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}
.mockup__decision-card {
  min-width: 0;
  padding: 13px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}
.mockup__decision-card--alert {
  border-color: rgba(240, 108, 94, 0.22);
  background: rgba(240, 108, 94, 0.06);
}
.mockup__decision-card strong {
  display: block;
  color: rgba(247, 248, 248, 0.9);
  font-size: 0.8125rem;
  line-height: 1.25;
  letter-spacing: -0.014em;
  margin-top: 7px;
}
.mockup__decision-card p {
  color: rgba(247, 248, 248, 0.52);
  font-size: 0.6875rem;
  line-height: 1.45;
  margin-top: 5px;
}

.mockup__charts {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 12px;
}
.mockup__chart-box {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 16px;
  transition: border-color .2s ease, background .2s ease;
}
.mockup__chart-box.is-highlighted {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}
.chart__title {
  display: block;
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  margin-bottom: 12px;
}
.bar-chart { display: flex; align-items: flex-end; gap: 6px; height: 80px; }
.bar-group {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  flex: 1;
  height: 100%;
  cursor: crosshair;
}
.bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  min-width: 6px;
  transform-origin: center bottom;
  transition: height .28s ease, opacity .2s ease, transform .2s ease, filter .2s ease;
}
.bar-group:hover .bar,
.bar-group.is-highlighted .bar {
  transform: translateY(-4px);
  filter: brightness(1.18);
}
.bar--forecast {
  animation: forecastPulse 2.8s ease-in-out infinite;
}
@keyframes forecastPulse {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 0.68; }
}
.line-chart { height: 80px; }
.line-chart svg { width: 100%; height: 100%; }
.margin-line {
  stroke-dasharray: 245;
  stroke-dashoffset: 0;
  transition: stroke-width .2s ease, filter .2s ease;
}
.line-chart:hover .margin-line,
.line-chart.is-highlighted .margin-line {
  stroke-width: 3.2;
  filter: drop-shadow(0 0 8px rgba(66, 201, 106, 0.34));
}
.margin-area { transition: opacity .2s ease; }
.line-chart:hover .margin-area,
.line-chart.is-highlighted .margin-area { opacity: 0.8; }
.trend-hit {
  fill: transparent;
  stroke: transparent;
  cursor: crosshair;
}
.trend-hit:hover,
.trend-hit:focus {
  fill: rgba(66, 201, 106, 0.16);
  stroke: rgba(66, 201, 106, 0.72);
  stroke-width: 1;
}

/* Bar chart month labels */
.bar-labels {
  display: flex;
  gap: 6px;
  margin-top: 5px;
}
.bar-labels span {
  flex: 1;
  text-align: center;
  font-size: 0.5rem;
  color: rgba(247, 248, 248, 0.22);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
}
.bar-label--forecast { color: rgba(247, 248, 248, 0.38); }

/* Game table */
.mockup__bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.75fr);
  gap: 12px;
  margin-top: 12px;
}
.mockup__bottom-grid--profit,
.mockup__bottom-grid--ads {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
}
.mockup__game-table {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
}
.game-row {
  display: grid;
  grid-template-columns: 7px 1fr auto auto auto;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background .18s ease, transform .18s ease;
  cursor: default;
}
.game-row:hover,
.game-row.is-highlighted {
  background: rgba(255, 255, 255, 0.045);
  transform: translateX(3px);
}
.game-row:last-child { border-bottom: none; }
.game-row__color {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.game-row__name {
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(247, 248, 248, 0.72);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.game-row__metric,
.game-row__roas {
  font-size: 0.625rem;
  color: rgba(247, 248, 248, 0.45);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.game-row__trend {
  font-size: 0.5625rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  transition: transform .18s ease, filter .18s ease;
}
.game-row:hover .game-row__trend,
.game-row.is-highlighted .game-row__trend {
  transform: scale(1.04);
  filter: brightness(1.15);
}
.game-row__trend--up   { background: rgba(66, 201, 106, 0.12); color: #6FE093; }
.game-row__trend--down { background: rgba(240, 108, 94, 0.12); color: #F89A91; }

.mockup__action-list {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}
.mockup__action-list .chart__title {
  margin-bottom: 9px;
}
.mockup__action-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  padding: 8px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.mockup__action-item span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(84, 168, 255, 0.14);
  color: #7BC0FF;
  font-size: 0.5625rem;
  font-weight: 800;
}
.mockup__action-item p {
  color: rgba(247, 248, 248, 0.68);
  font-size: 0.6875rem;
  line-height: 1.45;
}

/* Games view */
.portfolio-head,
.matrix-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.portfolio-title {
  color: rgba(247, 248, 248, 0.88);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.012em;
}
.portfolio-period {
  margin-left: 6px;
  color: rgba(247, 248, 248, 0.42);
  font-size: 0.6875rem;
}
.portfolio-meta {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(247, 248, 248, 0.48);
  font-size: 0.625rem;
  white-space: nowrap;
}
.portfolio-profit { color: #6FE093; font-weight: 700; }
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.status-dot--green { background: var(--packet-2); }
.status-dot--orange { background: var(--packet-3); }
.status-dot--red { background: var(--packet-4); }
.portfolio-tabs {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 12px;
}
.portfolio-tabs span {
  padding: 4px 7px;
  border-radius: 4px;
  color: rgba(247, 248, 248, 0.44);
  font-size: 0.625rem;
  font-weight: 600;
}
.portfolio-tabs .is-selected {
  color: #fff;
  background: rgba(216, 91, 126, 0.9);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.portfolio-card {
  min-height: 112px;
  padding: 9px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(242, 169, 106, 0.42);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.portfolio-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.045);
}
.portfolio-card--ok { border-color: rgba(111, 224, 147, 0.38); }
.portfolio-card--warn { border-color: rgba(242, 169, 106, 0.52); }
.app-icon {
  width: 18px;
  height: 18px;
  display: inline-grid;
  place-items: center;
  margin-right: 6px;
  border-radius: 5px;
  background: linear-gradient(135deg, #F89A91, #F4C763);
  color: rgba(10, 10, 10, 0.78);
  font-size: 0.5rem;
  font-weight: 800;
  vertical-align: middle;
}
.app-icon--blue { background: linear-gradient(135deg, #54A8FF, #6FE093); }
.app-icon--green { background: linear-gradient(135deg, #6FE093, #F4C763); }
.app-icon--cyan { background: linear-gradient(135deg, #57D4E5, #54A8FF); }
.app-icon--yellow { background: linear-gradient(135deg, #F4C763, #F89A91); }
.app-icon--gray { background: linear-gradient(135deg, #E5E7EB, #9CA3AF); }
.portfolio-card strong {
  color: rgba(247, 248, 248, 0.9);
  font-size: 0.6875rem;
  vertical-align: middle;
}
.portfolio-card dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2px 8px;
  margin-top: 8px;
}
.portfolio-card dt,
.portfolio-card dd {
  font-size: 0.5625rem;
  line-height: 1.22;
}
.portfolio-card dt { color: rgba(247, 248, 248, 0.42); }
.portfolio-card dd {
  color: rgba(247, 248, 248, 0.72);
  font-weight: 700;
}
.portfolio-card .is-good { color: #6FE093; }
.portfolio-card .is-risk { color: #F06C5E; }

.mockup__profit-bridge,
.mockup__ad-table {
  min-width: 0;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}
.profit-bridge-bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 10px;
  height: 112px;
  padding-top: 8px;
}
.profit-bridge-bar {
  position: relative;
  min-height: 28px;
  border-radius: 6px 6px 3px 3px;
  background: rgba(255, 255, 255, 0.08);
}
.profit-bridge-bar--base,
.profit-bridge-bar--final { background: rgba(84, 168, 255, 0.42); }
.profit-bridge-bar--up { background: rgba(111, 224, 147, 0.46); }
.profit-bridge-bar--down { background: rgba(240, 108, 94, 0.44); }
.profit-bridge-bar span {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  color: rgba(247, 248, 248, 0.44);
  font-size: 0.5625rem;
  white-space: nowrap;
}

/* Campaigns view */
.matrix-alert {
  margin-left: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(240, 108, 94, 0.14);
  color: #F89A91;
  font-size: 0.625rem;
  font-weight: 700;
}
.campaign-matrix {
  position: relative;
  height: 244px;
  overflow: hidden;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(90deg, rgba(240, 108, 94, 0.05) 0 50%, rgba(66, 201, 106, 0.05) 50% 100%),
    linear-gradient(180deg, rgba(244, 199, 99, 0.05) 0 50%, transparent 50% 100%);
}
.campaign-matrix::before,
.campaign-matrix::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
}
.campaign-matrix::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
}
.campaign-matrix::after {
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
}
.matrix-zone {
  position: absolute;
  width: 50%;
  height: 50%;
  pointer-events: none;
}
.matrix-zone--question { left: 0; top: 0; background: rgba(126, 104, 255, 0.06); }
.matrix-zone--stars { right: 0; top: 0; background: rgba(244, 199, 99, 0.05); }
.matrix-zone--dogs { left: 0; bottom: 0; background: rgba(240, 108, 94, 0.05); }
.matrix-zone--cash { right: 0; bottom: 0; background: rgba(66, 201, 106, 0.05); }
.matrix-caption {
  position: absolute;
  z-index: 1;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 248, 248, 0.5);
  font-size: 0.5625rem;
  font-weight: 700;
  pointer-events: none;
}
.matrix-caption--q { left: 12px; top: 30px; }
.matrix-caption--scale { right: 12px; top: 30px; }
.matrix-caption--cut { left: 12px; bottom: 30px; }
.matrix-caption--keep { right: 12px; bottom: 30px; }
.matrix-axis {
  position: absolute;
  z-index: 1;
  color: rgba(247, 248, 248, 0.38);
  font-size: 0.5625rem;
  font-weight: 600;
  pointer-events: none;
}
.matrix-axis--y { left: 10px; top: 8px; }
.matrix-axis--x { left: 50%; bottom: 8px; transform: translateX(-50%); white-space: nowrap; }
.bubble {
  --size: 30px;
  position: absolute;
  z-index: 2;
  width: var(--size);
  height: var(--size);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: rgba(20, 20, 20, 0.82);
  font-size: 0.6875rem;
  font-weight: 800;
  border: 2px solid currentColor;
  transform: translate(-50%, -50%);
  cursor: crosshair;
  transition: transform .18s ease, filter .18s ease;
}
.bubble:hover {
  transform: translate(-50%, -50%) scale(1.12);
  filter: brightness(1.12);
}
.bubble--yellow { background: rgba(244, 199, 99, 0.84); color: #E38A2E; }
.bubble--green { background: rgba(111, 224, 147, 0.78); color: #45A85D; }
.bubble--red { background: rgba(240, 108, 94, 0.78); color: #D94D45; }
.bubble--purple { background: rgba(139, 118, 255, 0.78); color: #F06C5E; }
.bubble--gray { background: rgba(209, 213, 219, 0.46); color: #9CA3AF; }

.ad-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3px 10px;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.ad-row strong {
  color: rgba(247, 248, 248, 0.78);
  font-size: 0.6875rem;
}
.ad-row span {
  color: rgba(247, 248, 248, 0.46);
  font-size: 0.625rem;
  grid-column: 1;
}
.ad-row em {
  align-self: center;
  grid-row: 1 / span 2;
  grid-column: 2;
  padding: 3px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 248, 248, 0.72);
  font-size: 0.5625rem;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}
.ad-row--danger em {
  background: rgba(240, 108, 94, 0.14);
  color: #F89A91;
}
.ad-row--good em {
  background: rgba(111, 224, 147, 0.12);
  color: #6FE093;
}

/* Callout chips */
.callout-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.callout-chip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 16px 18px;
  cursor: pointer;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.callout-chip:hover,
.callout-chip:focus-visible,
.callout-chip.is-active {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}
.callout-chip__accent {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.callout-chip__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.014em;
}
.callout-chip__sub {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  line-height: 1.5;
}
.mockup-tooltip {
  position: absolute;
  z-index: 5;
  min-width: 160px;
  max-width: 240px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(12, 13, 14, 0.94);
  color: rgba(247, 248, 248, 0.88);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.38);
  font-size: 0.6875rem;
  line-height: 1.35;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(-100% - 12px)) scale(0.96);
  transition: opacity .14s ease, transform .14s ease;
}
.mockup-tooltip.is-visible {
  opacity: 1;
  transform: translate(-50%, calc(-100% - 16px)) scale(1);
}
.meeting-result {
  display: grid;
  grid-template-columns: minmax(220px, 0.78fr) minmax(0, 1.8fr);
  gap: 20px;
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(47, 164, 255, 0.06), transparent 42%),
    var(--card-bg);
}
.meeting-result__intro span {
  display: block;
  margin-bottom: 10px;
  color: var(--text-tertiary);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.meeting-result__intro strong {
  display: block;
  color: var(--text-primary);
  font-size: 1.0625rem;
  line-height: 1.35;
  letter-spacing: -0.02em;
}
.meeting-result__intro p {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 0.8125rem;
  line-height: 1.6;
}
.meeting-result__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg);
}
.meeting-action {
  min-width: 0;
  padding: 16px;
  border-right: 1px solid var(--border-subtle);
}
.meeting-action:last-child { border-right: none; }
.meeting-action--strong {
  background: rgba(240, 108, 94, 0.055);
}
.meeting-action span {
  display: block;
  margin-bottom: 9px;
  color: var(--text-tertiary);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}
.meeting-action strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.875rem;
  line-height: 1.35;
  letter-spacing: -0.016em;
}
.meeting-action p {
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  line-height: 1.55;
}
.meeting-action em {
  display: inline-flex;
  margin-top: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--bg-elevated);
  color: var(--text-tertiary);
  font-size: 0.625rem;
  font-style: normal;
  font-weight: 700;
}
.dashboard-mockup.is-refreshing .mockup__main {
  animation: mockupRefresh 420ms ease;
}
@keyframes mockupRefresh {
  0%   { opacity: 0.72; transform: translateY(3px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1120px) {
  .meeting-proof__board {
    grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  }
  .meeting-proof__board .meeting-result__items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .meeting-scene {
    aspect-ratio: 24 / 9;
  }
}

@media (max-width: 768px) {
  .meeting-proof__header {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }
  .meeting-proof__board {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .meeting-proof__board .preview-flow,
  .meeting-scene {
    grid-column: auto;
    grid-row: auto;
  }
  .meeting-scene {
    aspect-ratio: 16 / 9;
  }
  .meeting-proof__board .meeting-result__items {
    grid-template-columns: 1fr;
  }
  .decision-grid   { grid-template-columns: 1fr; }
  .preview-flow    { grid-template-columns: 1fr; }
  .impact-strip    { grid-template-columns: 1fr; }
  .impact-item     { justify-content: flex-start; }
  .preview-stage   { margin-top: 30px; }
  .mockup__kpi-row { grid-template-columns: repeat(2, 1fr); }
  .mockup__summary { grid-template-columns: 1fr; }
  .mockup__summary-score { min-width: 0; }
  .mockup__decision-row { grid-template-columns: 1fr; }
  .mockup__charts  { grid-template-columns: 1fr; }
  .mockup__bottom-grid { grid-template-columns: 1fr; }
  .portfolio-head,
  .matrix-head { align-items: flex-start; flex-direction: column; }
  .portfolio-meta { flex-wrap: wrap; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .campaign-matrix { height: 260px; }
  .mockup__sidebar { display: none; }
  .mockup__main    { padding: 14px; }
  .preview-view    { min-height: 0; }
  .callout-chips   { grid-template-columns: 1fr; }
  .meeting-result  { grid-template-columns: 1fr; }
  .meeting-result__items { grid-template-columns: 1fr; }
  .meeting-action { border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .meeting-action:last-child { border-bottom: none; }
  .game-row        { grid-template-columns: 7px 1fr auto auto; }
  .game-row__roas  { display: none; }
  .mockup-tooltip  { display: none; }
}


/* ═══════════════════════════════════════
   INDUSTRIES + RESOURCES
═══════════════════════════════════════ */
.industry-grid,
.resource-grid {
  display: grid;
  gap: 14px;
  margin-top: 48px;
}
.industry-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.industry-card {
  grid-column: span 2;
}
.industry-card:nth-child(4) {
  grid-column: 2 / span 2;
}
.industry-card:nth-child(5) {
  grid-column: 4 / span 2;
}
.resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.resource-card {
  display: grid;
  gap: 16px;
}
.resource-card p {
  font-size: 1rem;
  color: var(--text-primary);
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: -0.018em;
}

@media (max-width: 1100px) {
  .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-card,
  .industry-card:nth-child(4),
  .industry-card:nth-child(5) { grid-column: auto; }
}
@media (max-width: 900px) {
  .resource-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .industry-grid,
  .resource-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════
   CASE STUDY
═══════════════════════════════════════ */
.case-card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 48px;
}
.case-card__main {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.case-card__tag {
  display: inline-flex;
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  width: fit-content;
}
.case-card__company {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
.case-card__quote {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.55;
  font-style: normal;
  border-left: 2px solid var(--border-default);
  padding-left: 16px;
  font-weight: 400;
}
.case-card__details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.case-card__details div {
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  padding: 14px 16px;
  background: var(--bg);
}
.case-card__details span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.case-card__details p {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.case-card__stats {
  background: var(--bg-elevated);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--border-subtle);
}
.case-stat {
  padding: 24px 32px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.case-stat:last-child { border-bottom: none; }
.stat__num {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text-primary);
}
.stat__label {
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

@media (max-width: 768px) {
  .case-card { grid-template-columns: 1fr; }
  .case-card__main { padding: 36px 28px; }
  .case-card__details { grid-template-columns: 1fr; }
  .case-card__stats { border-left: none; border-top: 1px solid var(--border-subtle); flex-direction: row; }
  .case-stat { flex: 1; border-bottom: none; border-right: 1px solid var(--border-subtle); padding: 20px 16px; align-items: center; text-align: center; }
  .case-stat:last-child { border-right: none; }
}


/* ═══════════════════════════════════════
   PRICING
═══════════════════════════════════════ */
.diagnosis-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  padding: 22px;
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(66, 201, 106, 0.06), transparent 45%),
    var(--card-bg);
}
.diagnosis-preview__source,
.diagnosis-preview__result {
  min-width: 0;
}
.diagnosis-preview__chrome {
  display: flex;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid var(--border-subtle);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  background: var(--bg-elevated);
}
.diagnosis-preview__chrome span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-strong);
}
.diagnosis-sheet {
  padding: 18px;
  border: 1px solid var(--border-subtle);
  border-radius: 0 0 10px 10px;
  background: var(--bg);
}
.diagnosis-sheet__head span,
.diagnosis-preview__result > span {
  display: block;
  margin-bottom: 7px;
  color: var(--text-tertiary);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.diagnosis-sheet__head strong,
.diagnosis-preview__result > strong {
  display: block;
  color: var(--text-primary);
  font-size: 1rem;
  letter-spacing: -0.018em;
}
.diagnosis-sheet__rows {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}
.diagnosis-sheet__rows span {
  height: 12px;
  border-radius: 4px;
  background: var(--bg-elevated);
}
.diagnosis-sheet__rows span:nth-child(4n + 1) { background: rgba(47, 164, 255, 0.18); }
.diagnosis-sheet__rows span:nth-child(4n + 2) { background: rgba(66, 201, 106, 0.16); }
.diagnosis-sheet__rows span:nth-child(4n + 3) { background: rgba(240, 182, 62, 0.16); }
.diagnosis-preview__arrow {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  color: var(--text-tertiary);
  background: var(--bg);
}
.diagnosis-preview__result {
  padding: 20px;
  border-radius: 12px;
  background: var(--bg-feature);
  color: #F7F8F8;
}
.diagnosis-preview__result > span {
  color: rgba(247, 248, 248, 0.42);
}
.diagnosis-preview__result > strong {
  color: #FFFFFF;
}
.diagnosis-preview__result ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.diagnosis-preview__result li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(247, 248, 248, 0.74);
  font-size: 0.8125rem;
}
.diagnosis-preview__result svg {
  width: 15px;
  height: 15px;
  color: #F7F8F8;
  flex-shrink: 0;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 36px;
}
.pricing-card--accent {
  background: var(--bg-feature);
  color: #F7F8F8;
  border-color: rgba(255, 255, 255, 0.08);
}
.pricing-card__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
  margin-bottom: 16px;
}
.pricing-card--accent .pricing-card__label { color: rgba(247, 248, 248, 0.42); }
.pricing-card__price {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  line-height: 1;
  color: var(--text-primary);
}
.pricing-card--accent .pricing-card__price { color: #FFFFFF; }
.pricing-card__price .price-unit {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-tertiary);
}
.pricing-card--accent .price-unit { color: rgba(247, 248, 248, 0.42); }
.pricing-card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 28px;
}
.pricing-card--accent p { color: rgba(247, 248, 248, 0.62); }

.pricing-card__items { display: flex; flex-direction: column; gap: 10px; }
.pricing-card__items li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.pricing-card--accent .pricing-card__items li { color: rgba(247, 248, 248, 0.75); }
.pricing-card__items svg {
  width: 16px; height: 16px;
  color: var(--text-primary);
  flex-shrink: 0;
  stroke-width: 2.2;
}
.pricing-card--accent .pricing-card__items svg { color: rgba(247, 248, 248, 0.85); }

.pricing-note {
  text-align: center;
  margin-top: 28px;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.pricing-action {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

@media (max-width: 768px) {
  .diagnosis-preview { grid-template-columns: 1fr; padding: 18px; }
  .diagnosis-preview__arrow { transform: rotate(90deg); margin: 0 auto; }
  .diagnosis-preview__result ul { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════
   CTA BAND
═══════════════════════════════════════ */
.cta-band {
  background: var(--bg-feature);
  color: #F7F8F8;
  padding: 96px 0;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #FFFFFF;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: balance;
}
.cta-band p {
  font-size: 1.0625rem;
  color: rgba(247, 248, 248, 0.6);
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  word-break: keep-all;
  overflow-wrap: break-word;
  text-wrap: pretty;
}
.cta-band .btn--primary {
  background: #FFFFFF;
  color: #08090A;
}
.cta-band .btn--primary:hover { background: rgba(255, 255, 255, 0.92); }
.cta-band__email {
  margin-top: 20px;
  font-size: 0.8125rem;
  color: rgba(247, 248, 248, 0.35);
}


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border-subtle);
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__brand { display: flex; align-items: center; gap: 16px; }
.footer__logo {
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}
.footer__copy {
  font-size: 0.8125rem;
  color: var(--text-quaternary);
}
.footer__nav { margin-left: auto; display: flex; gap: 24px; }
.footer__nav a {
  font-size: 0.8125rem;
  color: var(--text-quaternary);
}
.footer__nav a:hover { color: var(--text-secondary); }

@media (max-width: 768px) {
  .footer__inner { flex-direction: column; gap: 16px; }
  .footer__brand { flex-direction: column; gap: 4px; text-align: center; }
  .footer__nav { margin-left: 0; flex-wrap: wrap; justify-content: center; }
}


/* ═══════════════════════════════════════
   ISOMETRIC SECTION ANIMATIONS
═══════════════════════════════════════ */

/* ── Hero Stage 3: bars grow from baseline ── */
.iso-bar {
  transform-box: fill-box;
  transform-origin: center bottom;
  animation: isoBarGrow 4.8s ease-in-out infinite;
}
.iso-bar-1 { animation-delay: 0ms;   }
.iso-bar-2 { animation-delay: 360ms; }
.iso-bar-3 { animation-delay: 720ms; }
.iso-bar-4 { animation-delay: 1080ms; }
@keyframes isoBarGrow {
  0%, 10%   { transform: scaleY(0.45); opacity: 0.36; }
  30%       { transform: scaleY(1.04); opacity: 0.9; }
  58%, 84%  { transform: scaleY(1); opacity: 0.82; }
  100%      { transform: scaleY(0.62); opacity: 0.46; }
}

/* ── Hero Stage 3: trend line draws itself ── */
.iso-trend {
  stroke-dasharray: 145;
  stroke-dashoffset: 145;
  animation: isoTrendDraw 4.8s ease-out infinite;
  animation-delay: 900ms;
}
@keyframes isoTrendDraw {
  0%, 10%   { stroke-dashoffset: 145; opacity: 0; }
  20%       { opacity: 0.75; }
  58%, 86%  { stroke-dashoffset: 0; opacity: 0.82; }
  100%      { stroke-dashoffset: 0; opacity: 0.38; }
}
.iso-trend-dot {
  transform-box: fill-box;
  transform-origin: center;
  animation: isoTrendDot 4.8s ease-out infinite;
  animation-delay: 1800ms;
}
@keyframes isoTrendDot {
  0%, 18%   { transform: scale(0.75); opacity: 0; }
  36%       { transform: scale(1.25); opacity: 0.92; }
  58%, 86%  { transform: scale(1); opacity: 0.85; }
  100%      { transform: scale(0.9); opacity: 0.42; }
}

/* ── FIG 0.1: sync particle travels left → right ── */
.sync-particle {
  transform-box: fill-box;
  transform-origin: center;
  animation: syncTravel 1.65s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}
.sync-p2 { animation-delay: 180ms; }
.sync-p3 { animation-delay: 360ms; }
@keyframes syncTravel {
  0%   { transform: translateX(-8px) scale(0.6); opacity: 0; }
  12%  { opacity: 1; }
  52%  { transform: translateX(24px) scale(1.2); opacity: 1; }
  88%  { opacity: 1; }
  100% { transform: translateX(58px) scale(0.75); opacity: 0; }
}

/* ── FIG 0.1: dashboard card receives data → pulse ── */
.sync-receive {
  transform-box: fill-box;
  transform-origin: center;
  animation: syncReceive 1.65s ease-out infinite;
  animation-delay: 760ms;
}
@keyframes syncReceive {
  0%, 100% { transform: scale(1); stroke-opacity: 0.42; fill-opacity: 0.05; }
  14%      { transform: scale(1); stroke-opacity: 1; fill-opacity: 0.11; }
  34%      { transform: scale(1); stroke-opacity: 0.9; fill-opacity: 0.08; }
  68%      { transform: scale(1); stroke-opacity: 0.52; fill-opacity: 0.06; }
}

/* ── FIG 0.2: anomaly cube color overlay flash ── */
.anomaly-overlay,
.anomaly-overlay-r,
.anomaly-overlay-l {
  transform-box: fill-box;
  transform-origin: center;
  animation: anomalyFlash 1.9s ease-in-out infinite;
}
.anomaly-overlay-r { animation-delay: 70ms; }
.anomaly-overlay-l { animation-delay: 35ms; }
@keyframes anomalyFlash {
  0%, 16%   { transform: translateY(0) scale(1); fill-opacity: 0; }
  34%       { transform: translateY(-3px) scale(1.18); fill-opacity: 1; }
  54%       { transform: translateY(-1px) scale(1.08); fill-opacity: 0.82; }
  82%, 100% { transform: translateY(0) scale(1); fill-opacity: 0; }
}

/* ── FIG 0.2: anomaly ripple expand ── */
.anomaly-ripple {
  transform-box: fill-box;
  transform-origin: center;
  animation: anomalyRipple 1.9s ease-out infinite;
  stroke-opacity: 0;
}
.anomaly-ripple-2 { animation-delay: 430ms; }
.anomaly-ripple-3 { animation-delay: 860ms; }
@keyframes anomalyRipple {
  0%   { transform: scale(0.35); stroke-opacity: 0.95; stroke-width: 2.6; }
  58%  { stroke-opacity: 0.35; }
  100% { transform: scale(5.2); stroke-opacity: 0; stroke-width: 0.8; }
}

/* ── FIG 0.3: exec / ops screen alternate glow ── */
.exec-screen,
.ops-screen,
.exec-content,
.ops-content {
  transform-box: fill-box;
  transform-origin: center;
}
.exec-screen { animation: screenHighlight 3.2s ease-in-out infinite; }
.ops-screen  { animation: screenHighlight 3.2s ease-in-out infinite; animation-delay: 1600ms; }
@keyframes screenHighlight {
  0%, 14%, 76%, 100% { transform: translateY(0) scale(1); stroke-opacity: 0.42; fill-opacity: 0.05; }
  30%, 58%           { transform: translateY(0) scale(1); stroke-opacity: 1; fill-opacity: 0.16; }
}
.exec-content { animation: contentReveal 3.2s ease-in-out infinite; }
.ops-content  { animation: contentReveal 3.2s ease-in-out infinite; animation-delay: 1600ms; }
@keyframes contentReveal {
  0%, 14%, 76%, 100% { transform: translateY(4px); opacity: 0.28; }
  30%, 58%           { transform: translateY(-2px); opacity: 1; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .iso-bar, .iso-trend, .iso-trend-dot,
  .sync-particle, .sync-receive,
  .anomaly-overlay, .anomaly-overlay-r, .anomaly-overlay-l, .anomaly-ripple,
  .exec-screen, .ops-screen, .exec-content, .ops-content {
    animation: none !important;
  }
  .iso-bar   { transform: scaleY(1); opacity: 0.85; }
  .iso-trend { stroke-dashoffset: 0; opacity: 0.9; }
  .sync-p2, .sync-p3 { opacity: 0; }
  .anomaly-overlay, .anomaly-overlay-r, .anomaly-overlay-l { fill-opacity: 0.45; }
}
