/*
 * itsaryan — editorial redesign
 * Finance-paper palette kept intact: warm white, ink, electric blue, market red.
 * Everything else (layout, depth, motion, type) rebuilt.
 */

:root {
  --paper: #f5f2ea;
  --paper-2: #ffffff;
  --paper-3: #efe9dc;
  --ink: #0d1726;
  --ink-soft: #243047;
  --muted: #5c6675;
  --muted-2: #828c9c;
  --line: rgba(13, 23, 38, 0.12);
  --line-strong: rgba(13, 23, 38, 0.22);
  --blue: #0a6bf0;
  --blue-2: #0a55c4;
  --blue-ink: #052a63;
  --blue-soft: rgba(10, 107, 240, 0.12);
  --red: #e8443d;
  --red-soft: rgba(232, 68, 61, 0.12);
  --green: #16a06a;
  --amber: #e8a23d;
  --shadow-sm: 0 4px 18px rgba(13, 23, 38, 0.08);
  --shadow: 0 24px 60px rgba(13, 23, 38, 0.14);
  --shadow-lg: 0 40px 110px rgba(13, 23, 38, 0.22);
  --shadow-blue: 0 22px 50px rgba(10, 107, 240, 0.28);
  --font-main: "Inter", "Outfit", sans-serif;
  --font-display: "Instrument Serif", Georgia, serif;
  --font-mono: "JetBrains Mono", monospace;
  --maxw: 1200px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { background: var(--paper); scroll-behavior: smooth; }

body.its-redesign {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Kill legacy dark-theme layers if any page still ships them */
body.its-redesign .bg-aurora,
body.its-redesign #three-canvas,
body.its-redesign .grid-floor,
body.its-redesign .bg-noise,
body.its-redesign .avatar-deck,
body.its-redesign .loader {
  display: none !important;
}

body.its-redesign::selection { background: var(--blue); color: #fff; }
body.its-redesign img::selection { background: transparent; }

a { color: inherit; text-decoration: none; }
body.its-redesign em { font-style: italic; color: inherit; font-weight: inherit; }
body.its-redesign strong { color: var(--ink); font-weight: 700; }

/* ── BACKDROP LAYERS ───────────────────────────────── */
.paper-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    linear-gradient(rgba(13, 23, 38, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 23, 38, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 46px 46px, 46px 46px, auto;
}

.blue-wash {
  position: fixed;
  inset: auto -14vw -22vh auto;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 107, 240, 0.16), transparent 60%);
  filter: blur(20px);
  z-index: -2;
  pointer-events: none;
  will-change: transform;
}

.blue-wash::after {
  content: "";
  position: fixed;
  inset: -30vh auto auto -18vw;
  width: 46vw;
  height: 46vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 68, 61, 0.08), transparent 62%);
}

/* ── SCROLL PROGRESS ───────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--blue), var(--red));
  z-index: 200;
  box-shadow: 0 0 14px rgba(10, 107, 240, 0.5);
}

/* ── NAV ───────────────────────────────────────────── */
body.its-redesign .nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 120;
  background: rgba(245, 242, 234, 0.6);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
  padding: 1.05rem 0;
}

body.its-redesign .nav.scrolled {
  background: rgba(245, 242, 234, 0.92);
  border-bottom: 1px solid var(--line);
  padding: 0.65rem 0;
  box-shadow: 0 10px 40px rgba(13, 23, 38, 0.06);
}

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 900;
  font-size: 1.06rem;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.brand-logo { width: 26px; height: 26px; display: block; flex: 0 0 auto; }

.brand-by {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--muted-2);
}

@media (max-width: 540px) { .brand-by { display: none; } }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.9rem;
}

.nav-links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(13, 23, 38, 0.6);
  transition: color 0.25s;
}

.nav-links a:not(.nav-cta):hover,
.nav-links a.active { color: var(--ink); }

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
  transition: width 0.3s var(--ease);
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--ink);
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(13, 23, 38, 0.22);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
}

.nav-cta:hover { transform: translateY(-2px); background: var(--blue); box-shadow: var(--shadow-blue); }

.nav-toggle {
  display: none;
  width: 30px; height: 22px;
  background: none; border: none; cursor: pointer;
  position: relative; z-index: 130;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  width: 100%; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: 0.35s var(--ease);
}

.nav-toggle span:first-child { top: 4px; }
.nav-toggle span:last-child { bottom: 4px; }
.nav-toggle.active span:first-child { top: 10px; transform: rotate(45deg); }
.nav-toggle.active span:last-child { bottom: 10px; transform: rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 119;
  background: rgba(244, 240, 231, 0.98);
  backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s var(--ease);
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--ink);
}

.mobile-menu a.active { color: var(--blue); }

.mobile-cta {
  margin-top: 0.5rem;
  padding: 0.7rem 2rem;
  border-radius: 999px;
  background: var(--blue);
  color: #fff !important;
  font-family: var(--font-main) !important;
  font-size: 1.05rem !important;
  font-weight: 700;
}

/* ── SHARED TYPE ───────────────────────────────────── */
.site-main { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--blue);
}

.display-h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.9rem, 7vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.display-h1 em { color: var(--blue); font-style: italic; }

.display-h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.display-h2 em { color: var(--blue); font-style: italic; }

.ink-line {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}

.ink-line::after {
  content: "";
  position: absolute;
  left: -2px; right: -2px;
  bottom: 0.08em;
  height: 0.42em;
  background: var(--red-soft);
  z-index: -1;
  transform: skewX(-9deg);
}

.hero-amp {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--muted-2);
  padding: 0 0.1em;
}

.lead {
  max-width: 620px;
  margin: 1.6rem 0 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.lead a {
  color: var(--blue);
  font-weight: 600;
  border-bottom: 1.5px solid var(--blue-soft);
  transition: border-color 0.25s;
}
.lead a:hover { border-color: var(--blue); }

.section-head { max-width: 760px; margin: 0 auto 3rem; }
.section-sub { margin-top: 1.1rem; font-size: 1.08rem; color: var(--muted); max-width: 640px; }

/* ── BUTTONS ───────────────────────────────────────── */
.btn-primary, .btn-secondary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.94rem;
  font-weight: 700;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
  will-change: transform;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 28px 60px rgba(10, 107, 240, 0.4); }
.btn-primary svg { transition: transform 0.3s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-secondary {
  background: var(--paper-2);
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: var(--shadow); }

.btn-ghost {
  padding-left: 0.4rem;
  color: var(--muted);
  background: none;
}
.btn-ghost:hover { color: var(--blue); }

/* ════════════════════════════════════════════════════
   HERO v2
   ════════════════════════════════════════════════════ */
.hero-v2 {
  position: relative;
  padding: 9.5rem 0 4rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  align-self: flex-start;
  padding: 0.45rem 0.9rem;
  margin-bottom: 2rem;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}

.pulse-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(22, 160, 106, 0.5);
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(22, 160, 106, 0.5); }
  70% { box-shadow: 0 0 0 8px rgba(22, 160, 106, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 160, 106, 0); }
}

.hero-status-time { color: var(--blue); font-weight: 700; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-copy { position: relative; z-index: 2; }
.hero-copy .display-h1 { margin-bottom: 0.4rem; }

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 2rem;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
}

.tag-chip em { color: var(--ink); font-style: italic; }

.dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.dot-blue { background: var(--blue); }
.dot-red { background: var(--red); }
.dot-paper { background: var(--amber); }

/* ── HERO STAGE (right side) ───────────────────────── */
.hero-stage {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}

/* No plate behind cutouts — manual transparent PNGs */
.hero-stage::before {
  content: none;
}

/* Main cutout figure — transparent, no plate */
.hero-cutout {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 440px;
  object-fit: contain;
  filter: drop-shadow(0 38px 48px rgba(13, 23, 38, 0.26));
  pointer-events: none;
  will-change: transform;
}

/* Live video bubble — cropped tight to the face, reads as an intentional badge */
.hero-live {
  position: absolute;
  z-index: 4;
  top: 4%;
  left: -3%;
  width: clamp(132px, 17vw, 196px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, #1f6bff 0%, #0a4ec8 70%, #052a78 100%);
  border: 5px solid var(--paper-2);
  box-shadow:
    0 2px 0 rgba(13, 23, 38, 0.05),
    0 24px 50px rgba(10, 60, 160, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.15);
  will-change: transform;
}

/* Soft glow ring around the bubble */
.hero-live::after {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 107, 240, 0.25), transparent 70%);
  z-index: -1;
  pointer-events: none;
  filter: blur(10px);
}

.hero-live video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 8%;
  transform: scale(2.95);
  transform-origin: 50% 12%;
  filter: saturate(1.1) contrast(1.05);
  mix-blend-mode: normal;
}

.hero-live-tag {
  position: absolute;
  left: 50%;
  top: 6%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  background: rgba(5, 12, 25, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.rec-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  animation: blink-rec 1.4s steps(2) infinite;
}

@keyframes blink-rec { 50% { opacity: 0.25; } }

/* Sticky-note stickers */
.sticker {
  position: absolute;
  z-index: 4;
  padding: 0.85rem 1rem;
  border-radius: 4px;
  transform: rotate(var(--rot, 0deg));
  box-shadow: var(--shadow);
  will-change: transform;
  max-width: 200px;
}

.sticker-eyebrow {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin-bottom: 0.3rem;
  opacity: 0.7;
}

.sticker strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.1;
}

.sticker strong i { font-style: italic; color: var(--blue); }

.sticker-blue { background: var(--blue); color: #fff; }
.sticker-blue .sticker-eyebrow { color: rgba(255, 255, 255, 0.85); }

.sticker-red { background: var(--red); color: #fff; }
.sticker-red .sticker-eyebrow { color: rgba(255, 255, 255, 0.85); }
.sticker-red strong i { color: #fff; text-decoration: underline; }

.sticker-paper {
  background: var(--paper-2);
  color: var(--ink);
  border: 1px solid var(--line);
}
.sticker-paper .sticker-num {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.2rem;
}
.sticker-paper p { font-size: 0.82rem; color: var(--muted); line-height: 1.45; }

/* Wax seal */
.seal-badge {
  position: absolute;
  top: 38%; left: -7%;
  width: 110px; height: 110px;
  z-index: 5;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.seal-text {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: spin-seal 18s linear infinite;
}

@keyframes spin-seal { to { transform: rotate(360deg); } }

.seal-core {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  box-shadow: var(--shadow);
}

/* ── MARQUEE ───────────────────────────────────────── */
.marquee {
  position: relative;
  margin: 1rem 0 5rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--ink);
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--paper);
}

.marquee-track i { color: var(--blue); font-style: normal; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════
   DESK / LANES
   ════════════════════════════════════════════════════ */
.desk-section { padding: 5rem 0; }

.product-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.lane-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  min-height: 380px;
  border-radius: 16px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  will-change: transform;
}

.lane-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.5s var(--ease);
}

.lane-finance::before { background: var(--blue); }
.lane-zypheria::before { background: var(--red); }
.lane-dispatch::before { background: var(--amber); }

.lane-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}
.lane-card:hover::before { transform: scaleX(1); }

.lane-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.card-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.lane-arrow {
  font-size: 1.2rem;
  color: var(--muted-2);
  transition: transform 0.4s var(--ease), color 0.4s;
}
.lane-card:hover .lane-arrow { transform: translate(4px, -4px); color: var(--ink); }

.lane-card h3 {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}

.lane-card p { color: var(--muted); font-size: 0.96rem; line-height: 1.6; }

.lane-bullets {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.55rem;
}
.lane-bullets li {
  font-size: 0.86rem;
  color: var(--ink-soft);
  padding-left: 1.1rem;
  position: relative;
}
.lane-bullets li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}
.lane-bullets strong { color: var(--ink); }

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.4rem;
  height: 70px;
  margin-top: auto;
  padding-top: 1.2rem;
}
.mini-chart i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--blue-soft);
  position: relative;
}
.mini-chart i::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: var(--h, 40%);
  border-radius: inherit;
  background: var(--blue);
  transition: height 0.6s var(--ease);
}
.mini-chart i:nth-child(1)::after { --h: 34%; }
.mini-chart i:nth-child(2)::after { --h: 58%; background: var(--red); }
.mini-chart i:nth-child(3)::after { --h: 44%; }
.mini-chart i:nth-child(4)::after { --h: 72%; }
.mini-chart i:nth-child(5)::after { --h: 52%; background: var(--red); }
.mini-chart i:nth-child(6)::after { --h: 88%; }
.mini-chart i:nth-child(7)::after { --h: 64%; }
.mini-chart i:nth-child(8)::after { --h: 96%; }

.dispatch-mini {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  line-height: 1.9;
  color: var(--ink-soft);
}
.dispatch-mini span { color: var(--amber); font-weight: 700; margin-right: 0.4rem; }

.lane-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--muted);
}
.lane-foot strong { color: var(--ink); font-family: var(--font-main); font-size: 0.82rem; }

/* ════════════════════════════════════════════════════
   NUMBERS STRIP
   ════════════════════════════════════════════════════ */
.numbers-strip { padding: 5rem 0; }
.numbers-head { text-align: center; margin-bottom: 3rem; }
.numbers-head .eyebrow { justify-content: center; }
.numbers-head .eyebrow::before { display: none; }

.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.num-item {
  padding: 1.8rem 1.4rem;
  border-radius: 16px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  text-align: left;
  will-change: transform;
}

.num-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1;
  color: var(--blue);
  letter-spacing: -0.02em;
}

.num-item span {
  display: block;
  margin-top: 0.6rem;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--ink);
}

.num-item small {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.45;
}

.num-item:nth-child(2) strong,
.num-item:nth-child(4) strong { color: var(--red); }

/* ════════════════════════════════════════════════════
   CINEMA BAND
   ════════════════════════════════════════════════════ */
.cinema-band {
  position: relative;
  margin: 2rem 0;
  border-radius: 22px;
  overflow: hidden;
  min-height: 440px;
  display: grid;
  place-items: center;
  background: #060d1a;
  box-shadow: var(--shadow-lg);
}

.cinema-band-video {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cinema-band-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05) brightness(0.7);
}

.cinema-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 50%, transparent 30%, rgba(5, 10, 22, 0.7)),
    linear-gradient(180deg, rgba(5, 10, 22, 0.45), rgba(5, 10, 22, 0.65));
}

.cinema-tape {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  gap: 2.5rem;
  padding: 0.6rem 0;
  background: rgba(5, 10, 22, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  overflow: hidden;
}
.cinema-tape span { flex: 0 0 auto; padding-left: 2.5rem; }

.cinema-quote {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 3rem 2rem;
  text-align: center;
}

.cinema-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3.4rem);
  line-height: 1.12;
  color: #fff;
}
.cinema-quote em { color: var(--blue); font-style: italic; }

.cinema-quote cite {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-style: normal;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
}

/* ════════════════════════════════════════════════════
   PRINCIPLES
   ════════════════════════════════════════════════════ */
.principles { padding: 5rem 0; }

.principle-list {
  list-style: none;
  counter-reset: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.principle-list li {
  display: grid;
  grid-template-columns: 4.5rem 1fr;
  column-gap: 1.5rem;
  row-gap: 0.5rem;
  align-items: baseline;
  padding: 1.8rem 0.5rem;
  border-bottom: 1px solid var(--line);
  transition: background 0.35s var(--ease), padding 0.35s var(--ease);
}

.principle-list li:hover {
  background: var(--paper-2);
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}

.p-num {
  grid-row: span 2;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--blue);
}

.principle-list h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.principle-list p { color: var(--muted); font-size: 0.98rem; line-height: 1.6; max-width: 720px; }

/* ════════════════════════════════════════════════════
   BOOK COMING SOON
   ════════════════════════════════════════════════════ */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.book-section {
  position: relative;
  margin: 4rem 0;
  padding: clamp(2.4rem, 5vw, 4.5rem) clamp(1.5rem, 4vw, 3.5rem);
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 18%, rgba(10, 107, 240, 0.10), transparent 55%),
    radial-gradient(circle at 88% 84%, rgba(232, 68, 61, 0.08), transparent 55%),
    var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.book-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(13, 23, 38, 0.012) 0 10px, transparent 10px 20px);
  pointer-events: none;
}

.book-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.85fr) 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.book-cover-wrap {
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1400px;
}

.book-cover {
  position: relative;
  width: clamp(220px, 22vw, 290px);
  aspect-ratio: 5 / 7;
  transform: rotate(-5deg);
  transform-style: preserve-3d;
  transition: transform 0.7s var(--ease);
  will-change: transform;
  filter: drop-shadow(0 30px 50px rgba(13, 23, 38, 0.35));
}

.book-cover-wrap:hover .book-cover {
  transform: rotate(0deg) translateY(-6px) rotateY(-6deg);
}

.book-cover-face,
.book-cover-bg {
  position: absolute;
  inset: 0;
  border-radius: 4px 10px 10px 4px;
}

.book-cover-bg {
  background:
    radial-gradient(circle at 30% 30%, #1e3a78, #0a1d4a 65%, #061233 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 8px 0 14px -10px rgba(0, 0, 0, 0.55);
}

.book-cover-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(255, 255, 255, 0.06), transparent 55%);
  border-radius: inherit;
}

.book-cover-face {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  padding: 1.4rem 1.3rem;
  color: #f3eedf;
  z-index: 2;
}

.book-mark {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
}

.book-pub {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.54rem;
  letter-spacing: 0.22em;
  color: rgba(243, 238, 223, 0.6);
}

.book-title {
  align-self: end;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 0.96;
  letter-spacing: -0.01em;
  color: #fff;
  margin: 1.2rem 0 0;
}

.book-title em { color: #ffc16d; font-style: italic; }

.book-byline {
  display: block;
  margin-top: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: rgba(243, 238, 223, 0.78);
}

.book-no {
  position: absolute;
  bottom: 1.2rem;
  right: 1.3rem;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  color: rgba(243, 238, 223, 0.4);
}

.book-cover-spine {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 10px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.35), transparent);
  border-radius: 4px 0 0 4px;
  z-index: 3;
}

.book-stamp {
  position: absolute;
  top: -10px;
  right: -8px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--red);
  color: #fff;
  transform: rotate(12deg);
  box-shadow: 0 14px 28px rgba(232, 68, 61, 0.35);
  z-index: 5;
}

.book-stamp::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px dashed rgba(255, 255, 255, 0.55);
  border-radius: 50%;
}

.book-stamp span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.book-stamp strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  color: #fff;
}

.book-copy { position: relative; }
.book-copy .display-h2 { margin-top: 0.6rem; max-width: 520px; }
.book-lead { margin: 1.4rem 0 1.8rem; font-size: 1.06rem; line-height: 1.7; color: var(--ink-soft); max-width: 540px; }

.book-meta {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin: 1.6rem 0 2rem;
  padding: 1.2rem 1.4rem;
  border-radius: 12px;
  background: var(--paper-3);
  border: 1px dashed var(--line-strong);
}

.book-meta li {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: baseline;
  gap: 1rem;
  font-size: 0.92rem;
}

.book-meta span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.book-meta strong { color: var(--ink); font-weight: 600; }

.book-form {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding: 0.4rem;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-sm);
  max-width: 480px;
}

.book-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.7rem 1rem;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  min-width: 0;
}

.book-form input::placeholder { color: var(--muted-2); }

.book-form button {
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s;
  white-space: nowrap;
}

.book-form button:hover { background: var(--blue); transform: translateY(-1px); }
.book-form.is-sent button { background: var(--green); }

.book-note {
  margin-top: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════
   NEWSLETTER
   ════════════════════════════════════════════════════ */
.newsletter {
  position: relative;
  margin: 5rem 0 3rem;
  padding: clamp(2.4rem, 5vw, 4rem);
  border-radius: 24px;
  background:
    linear-gradient(135deg, #0a1124 0%, #0d1d4a 55%, #0a2a78 100%);
  color: var(--paper);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.newsletter::before {
  content: "";
  position: absolute;
  inset: -2px;
  background:
    radial-gradient(circle at 18% 12%, rgba(10, 107, 240, 0.55), transparent 50%),
    radial-gradient(circle at 88% 90%, rgba(232, 68, 61, 0.28), transparent 55%);
  pointer-events: none;
  opacity: 0.7;
}

.newsletter::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
  opacity: 0.4;
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.newsletter-copy .eyebrow { color: var(--sky, #7CC5FF); }
.newsletter-copy .eyebrow::before { background: var(--sky, #7CC5FF); }
.newsletter-copy .display-h2 { color: #fff; }
.newsletter-copy .display-h2 em { color: var(--sky, #7CC5FF); }
.newsletter-copy p { margin: 1.2rem 0; color: rgba(255, 255, 255, 0.78); font-size: 1.04rem; line-height: 1.7; max-width: 520px; }

.newsletter-bullets {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.newsletter-bullets li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.94rem;
  color: rgba(255, 255, 255, 0.85);
}

.newsletter-bullets li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--sky, #7CC5FF);
  font-weight: 700;
}

.newsletter-form {
  display: grid;
  gap: 0.8rem;
  padding: 1.6rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.newsletter-field {
  display: grid;
  gap: 0.4rem;
}

.newsletter-field label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.newsletter-field input {
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.98rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
}

.newsletter-field input:focus {
  border-color: var(--blue);
  background: rgba(0, 0, 0, 0.32);
}

.newsletter-field input::placeholder { color: rgba(255, 255, 255, 0.4); }

.newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.2rem;
  border-radius: 12px;
  border: none;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 0.96rem;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s;
  box-shadow: 0 14px 30px rgba(10, 107, 240, 0.45);
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 40px rgba(10, 107, 240, 0.55);
}

.newsletter-form button svg { transition: transform 0.3s var(--ease); }
.newsletter-form button:hover svg { transform: translateX(4px); }

.newsletter-form.is-sent button { background: var(--green); }

.newsletter-trust {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-top: 0.2rem;
}

/* ════════════════════════════════════════════════════
   CHARACTER STRIP (cutout images, no plates)
   ════════════════════════════════════════════════════ */
.character-strip {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.4fr 0.8fr;
  align-items: center;
  gap: 1rem;
  padding: 4rem 0;
  min-height: 460px;
}

.char-cutout {
  width: 100%;
  max-width: none;
  object-fit: contain;
  filter: drop-shadow(0 26px 36px rgba(13, 23, 38, 0.28));
  will-change: transform;
}

.char-left { align-self: flex-end; transform-origin: bottom center; }
.char-right { align-self: flex-end; }

.char-copy { text-align: center; padding: 0 0.5rem; }
.char-copy .eyebrow { justify-content: center; }
.char-copy .eyebrow::before { display: none; }
.char-copy p { margin: 1.4rem auto 2rem; max-width: 480px; color: var(--muted); font-size: 1.04rem; line-height: 1.7; }
.char-copy strong { color: var(--ink); }

/* ════════════════════════════════════════════════════
   CONTACT BAR
   ════════════════════════════════════════════════════ */
.contact-bar {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin: 3rem 0 5rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 24px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-bar::after {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 50%; height: 160%;
  background: radial-gradient(circle, rgba(10, 107, 240, 0.35), transparent 60%);
  pointer-events: none;
}

.contact-bar .eyebrow { color: var(--blue); }
.contact-bar .eyebrow::before { background: var(--blue); }
.contact-bar .display-h2 { color: #fff; }
.contact-bar .display-h2 em { color: var(--blue); }

.contact-arrow { display: inline-block; animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 50% { transform: translateY(6px); } }

.contact-cards { display: grid; gap: 0.8rem; position: relative; z-index: 1; }

.contact-card {
  display: grid;
  gap: 0.2rem;
  padding: 1.1rem 1.3rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
  will-change: transform;
}
.contact-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(10, 107, 240, 0.5);
}
.contact-card span { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--blue); }
.contact-card strong { font-size: 1.15rem; color: #fff; }
.contact-card small { font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); }

/* ── FOOTER ────────────────────────────────────────── */
body.its-redesign .footer {
  border-top: 1px solid var(--line);
  background: var(--paper-3);
  padding: 2.5rem 0;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-meta { display: flex; flex-direction: column; gap: 0.2rem; }
.footer-meta span:first-child { font-weight: 700; }
.footer-loc { font-family: var(--font-mono); font-size: 0.72rem; color: var(--muted); }

.footer-links { display: flex; gap: 1.4rem; }
.footer-links a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.25s;
}
.footer-links a:hover { color: var(--blue); }

/* ════════════════════════════════════════════════════
   INNER PAGES — shared
   ════════════════════════════════════════════════════ */
.inner-hero {
  padding: 9.5rem 0 3rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: 86vh;
}

.inner-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 6.5vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.inner-hero h1 em { color: var(--blue); font-style: italic; }

/* Cutout figure — NO background plate */
.figure-cutout {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 420px;
}
.figure-cutout img {
  width: 100%;
  max-width: 480px;
  object-fit: contain;
  filter: drop-shadow(0 30px 44px rgba(13, 23, 38, 0.3));
  will-change: transform;
}

.figure-cutout::before {
  content: none;
}

/* Editorial duo (cutouts side by side, no plates) */
.cutout-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.cutout-duo figure {
  position: relative;
  display: grid;
  place-items: center;
  padding: 1rem;
  min-height: 320px;
  border-radius: 18px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  overflow: hidden;
}
.cutout-duo img {
  width: 100%;
  max-width: 340px;
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(13, 23, 38, 0.26));
  will-change: transform;
}

.inner-section { padding: 4rem 0; }

.panel {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

/* ════════════════════════════════════════════════════
   REVEAL ANIMATION
   ════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media (pointer: fine) {
  body.its-redesign,
  body.its-redesign a,
  body.its-redesign button { cursor: auto; }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════ */
@media (max-width: 1000px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }

  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stage { min-height: 480px; order: -1; }
  .product-grid-v2 { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-bar { grid-template-columns: 1fr; }
  .inner-hero { grid-template-columns: 1fr; }
  .figure-cutout { order: -1; min-height: 340px; }
  .book-grid { grid-template-columns: 1fr; }
  .book-cover-wrap { justify-self: center; }
  .newsletter-inner { grid-template-columns: 1fr; }
  .book-meta li { grid-template-columns: 1fr; gap: 0.1rem; }
}

@media (max-width: 600px) {
  .hero-v2 { padding-top: 8rem; }
  .hero-stage { min-height: 420px; }
  .hero-cutout { width: 64%; left: -4%; }
  .sticker { max-width: 150px; padding: 0.6rem 0.75rem; }
  .sticker strong { font-size: 0.95rem; }
  .seal-badge { width: 80px; height: 80px; left: -2%; }
  .seal-core { width: 40px; height: 40px; font-size: 0.7rem; }
  .numbers-grid { grid-template-columns: 1fr; }
  .character-strip { grid-template-columns: 1fr; }
  .char-left, .char-right { max-width: 240px; margin: 0 auto; }
  .principle-list li { grid-template-columns: 1fr; gap: 0.3rem; }
  .cutout-duo { grid-template-columns: 1fr; }
  .marquee-track span { font-size: 1.2rem; }
  .book-form { flex-direction: column; border-radius: 16px; padding: 0.6rem; }
  .book-form input { width: 100%; padding: 0.8rem 1rem; }
  .book-form button { width: 100%; padding: 0.85rem 1rem; }
}

/* ════════════════════════════════════════════════════
   INNER PAGE COMPONENTS
   ════════════════════════════════════════════════════ */

/* Pills / kickers used across inner pages */
.inner-hero .hero-actions { margin-top: 2rem; }

.kpi-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.8rem;
}
.kpi-chip {
  display: inline-flex;
  flex-direction: column;
  padding: 0.6rem 0.95rem;
  border-radius: 12px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.kpi-chip strong { font-family: var(--font-display); font-size: 1.5rem; line-height: 1; color: var(--blue); }
.kpi-chip span { font-size: 0.7rem; font-family: var(--font-mono); letter-spacing: 0.08em; color: var(--muted); text-transform: uppercase; margin-top: 0.25rem; }

/* Section header (left aligned for inner) */
.head-left { max-width: 760px; margin: 0 0 2.4rem; }

/* ── ROI CALCULATOR (Zypheria) ─────────────────────── */
.calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--paper-2);
}

.calc-panel { padding: 2rem; }
.calc-dials { border-right: 1px solid var(--line); background: var(--paper-3); }

.calc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.calc-head .live-dot {
  display: inline-flex; align-items: center; gap: 0.4rem; color: var(--green);
}
.calc-head .live-dot::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 0 rgba(22,160,106,0.5); animation: pulse-ring 2s infinite;
}

.dial-group { margin-bottom: 1.6rem; }
.dial-group:last-child { margin-bottom: 0; }
.dial-label-row {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.55rem;
}
.dial-label-row label { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.dial-readout { font-family: var(--font-mono); font-weight: 700; color: var(--blue); font-size: 0.86rem; }

.dial-select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: var(--paper-2);
  color: var(--ink);
  font-family: var(--font-main);
  font-size: 0.9rem;
}
.dial-select:focus { outline: none; border-color: var(--blue); }

.dial-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 6px;
  background: var(--blue-soft);
  outline: none;
}
.dial-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #fff;
  box-shadow: var(--shadow-blue);
  cursor: pointer;
  transition: transform 0.15s;
}
.dial-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.dial-slider::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%; background: var(--blue);
  border: 3px solid #fff; box-shadow: var(--shadow-blue); cursor: pointer;
}

.calc-out { display: grid; gap: 1.1rem; }
.calc-metric { border-bottom: 1px dashed var(--line); padding-bottom: 1rem; }
.calc-metric:last-child { border: none; padding-bottom: 0; }
.calc-metric span { display: block; font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.calc-metric strong { display: block; font-family: var(--font-display); font-size: 2.2rem; line-height: 1.1; color: var(--ink); margin-top: 0.2rem; }
.calc-metric.feature strong { color: var(--blue); }

/* ── INFO GRID (under the hood / receipts) ─────────── */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.4rem;
}
.info-card { padding: 1.8rem; border-radius: 18px; background: var(--paper-2); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.info-card.dark { background: var(--ink); color: var(--paper); }
.info-card h4 { font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 1.2rem; }
.info-card.dark h4 { color: var(--blue); }
.info-card ul { list-style: none; display: grid; gap: 0.9rem; }
.info-card li { font-size: 0.95rem; line-height: 1.55; color: var(--muted); padding-left: 1.4rem; position: relative; }
.info-card.dark li { color: rgba(255,255,255,0.7); }
.info-card li::before { content: "▹"; position: absolute; left: 0; color: var(--blue); font-weight: 700; }
.info-card strong { color: var(--ink); }
.info-card.dark strong { color: #fff; }

/* ── FEATURE LIST (ProspektLab) ────────────────────── */
.feature-rows { display: grid; gap: 0; margin-top: 1rem; border-top: 1px solid var(--line); }
.feature-rows li {
  list-style: none;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1.5rem;
  padding: 1.5rem 0.4rem;
  border-bottom: 1px solid var(--line);
  transition: padding 0.35s var(--ease), background 0.35s var(--ease);
}
.feature-rows li:hover { background: var(--paper-2); padding-left: 1rem; padding-right: 1rem; }
.feature-rows strong { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--ink); }
.feature-rows span { color: var(--muted); font-size: 0.96rem; line-height: 1.6; }

/* ── SIGNAL BOARD (ProspektLab ticker) ─────────────── */
.signal-board {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}
.board-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.6);
}
.board-top strong { color: var(--blue); }
.ticker-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(255,255,255,0.08); }
.ticker-cell { padding: 1.2rem; background: var(--ink); }
.ticker-cell span { display: block; font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.45); }
.ticker-cell strong { display: block; font-family: var(--font-display); font-size: 1.9rem; line-height: 1; margin: 0.35rem 0; color: #fff; }
.ticker-cell small { font-family: var(--font-mono); font-size: 0.72rem; }
.ticker-cell.up small { color: #4fe0a4; }
.ticker-cell.down small { color: #ff8088; }
.ticker-cell.flat small { color: rgba(255,255,255,0.5); }

/* ── CTA PANEL ─────────────────────────────────────── */
.cta-panel {
  position: relative;
  overflow: hidden;
  margin: 4rem 0;
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-panel::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 0%, rgba(255,255,255,0.18), transparent 50%);
  pointer-events: none;
}
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; margin-bottom: 0.8rem; }
.cta-panel p { max-width: 540px; margin: 0 auto 1.8rem; color: rgba(255,255,255,0.88); font-size: 1.04rem; line-height: 1.6; }
.cta-panel .btn-primary { background: #fff; color: var(--blue); border-color: #fff; }
.cta-panel .btn-primary:hover { box-shadow: 0 24px 50px rgba(0,0,0,0.25); }

/* ── TIMELINE (Journey) ────────────────────────────── */
.timeline { position: relative; margin: 2rem 0; padding-left: 2.4rem; }
.timeline::before {
  content: "";
  position: absolute; top: 6px; bottom: 6px; left: 7px;
  width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--line));
}
.tl-entry { position: relative; padding: 0 0 2.4rem; }
.tl-entry:last-child { padding-bottom: 0; }
.tl-entry::before {
  content: "";
  position: absolute; left: -2.4rem; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--paper);
  border: 3px solid var(--blue);
  box-shadow: 0 0 0 5px var(--blue-soft);
}
.tl-entry .tl-step { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; color: var(--blue); }
.tl-entry h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 1.05; margin: 0.4rem 0 0.6rem; }
.tl-entry p { color: var(--muted); font-size: 1rem; line-height: 1.65; max-width: 680px; }
.tl-entry.accent h3 { color: var(--blue); }

/* Manifesto */
.manifesto {
  margin: 4rem 0;
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 24px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.manifesto .eyebrow { justify-content: center; color: var(--blue); }
.manifesto .eyebrow::before { display: none; }
.manifesto h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4.5vw, 3.4rem); line-height: 1.05; margin: 1rem auto; max-width: 800px; color: #fff; }
.manifesto h2 em { color: var(--blue); font-style: italic; }
.manifesto p { max-width: 640px; margin: 0 auto; color: rgba(255,255,255,0.7); font-size: 1.04rem; line-height: 1.7; }

/* ── REAL PHOTO (framed print) ─────────────────────── */
.real-photo-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: 4rem 0;
}

.photo-frame {
  position: relative;
  justify-self: center;
  width: min(360px, 100%);
  padding: 0.85rem 0.85rem 3.2rem;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-3deg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
  will-change: transform;
}
.photo-frame:hover { transform: rotate(0deg) translateY(-4px); box-shadow: 0 50px 120px rgba(13,23,38,0.28); }

.photo-frame img {
  width: 100%;
  display: block;
  border-radius: 3px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.photo-frame figcaption {
  position: absolute;
  left: 0; right: 0;
  bottom: 1rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--ink);
}
.photo-frame figcaption span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-top: 0.15rem;
}

.photo-frame::before {
  content: "";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%) rotate(2deg);
  width: 96px; height: 26px;
  background: rgba(10, 107, 240, 0.16);
  border: 1px solid rgba(10, 107, 240, 0.25);
  border-radius: 1px;
}

.photo-pin {
  position: absolute;
  top: -8px; right: 18px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 4px 10px rgba(232,68,61,0.45), inset 0 -2px 4px rgba(0,0,0,0.2);
  z-index: 2;
}

.real-photo-copy .eyebrow::before { background: var(--red); }
.real-photo-copy p { color: var(--muted); font-size: 1.06rem; line-height: 1.7; margin-top: 1rem; max-width: 520px; }
.real-photo-copy strong { color: var(--ink); }

@media (max-width: 1000px) {
  .real-photo-section { grid-template-columns: 1fr; }
}

/* ── DISPATCH (VisionCraft) ────────────────────────── */
.dispatch-layout { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 1.4rem; }

.dispatch-feed { display: grid; gap: 1rem; }
.dispatch-item {
  display: block;
  padding: 1.6rem;
  border-radius: 16px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.dispatch-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.dispatch-item .d-meta { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); }
.dispatch-item h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.7rem; line-height: 1.05; margin: 0.5rem 0 0.6rem; }
.dispatch-item p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

.subscribe-panel {
  align-self: start;
  position: sticky;
  top: 6rem;
  padding: 1.8rem;
  border-radius: 18px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}
.subscribe-panel .eyebrow { color: var(--blue); }
.subscribe-panel .eyebrow::before { background: var(--blue); }
.subscribe-panel h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.9rem; line-height: 1.05; margin-bottom: 0.7rem; color: #fff; }
.subscribe-panel p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.6; margin-bottom: 1.4rem; }
.subscribe-form { display: grid; gap: 0.7rem; }
.subscribe-form input {
  padding: 0.85rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.92rem;
}
.subscribe-form input::placeholder { color: rgba(255,255,255,0.4); }
.subscribe-form input:focus { outline: none; border-color: var(--blue); }
.subscribe-form button {
  padding: 0.85rem;
  border-radius: 999px;
  border: none;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.94rem;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.subscribe-form button:hover { transform: translateY(-2px); box-shadow: var(--shadow-blue); }
.subscribe-note { display: block; margin-top: 1rem; font-family: var(--font-mono); font-size: 0.66rem; color: rgba(255,255,255,0.4); }

@media (max-width: 1000px) {
  .calc-layout { grid-template-columns: 1fr; }
  .calc-dials { border-right: none; border-bottom: 1px solid var(--line); }
  .info-grid { grid-template-columns: 1fr; }
  .feature-rows li { grid-template-columns: 1fr; gap: 0.4rem; }
  .dispatch-layout { grid-template-columns: 1fr; }
  .subscribe-panel { position: relative; top: 0; }
}

