/* === LION CRM — base system === */

:root {
  --ink-900: #050917;
  --ink-800: #0A1024;
  --ink-700: #111A36;
  --ink-600: #1A2548;
  --ink-500: #2A3866;
  --ink-400: #4C5C8E;
  --ink-300: #8290B8;
  --ink-200: #C7CFE5;
  --ink-100: #E8ECF6;
  --paper:   #F5F3EE;
  --paper-warm: #EDE8DC;

  --blue-700: #1B3FD8;
  --blue-500: #3D6FFF;
  --blue-400: #5E89FF;
  --azure:   #4FB7FF;
  --cyan:    #8DE0FF;
  --magenta: #C254FF;
  --coral:   #FF6A4D;
  --lime:    #C4F060;
  --gold:    #F1B842;

  --grad-hero: radial-gradient(120% 80% at 70% 0%, #1E2E78 0%, #0A1024 55%, #050917 100%);
  --grad-aurora: linear-gradient(120deg, #3D6FFF 0%, #4FB7FF 35%, #C254FF 75%, #FF6A4D 100%);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --font-sans: "Geist", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Geist Mono", ui-monospace, monospace;
  --font-serif: "Instrument Serif", "Times New Roman", serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--ink-900);
  color: var(--ink-100);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

button { font-family: inherit; cursor: pointer; border: none; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { width: min(1280px, 92vw); margin: 0 auto; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-300);
}
.eyebrow-dot::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--azure);
  border-radius: 99px;
  margin-right: 10px;
  vertical-align: middle;
  box-shadow: 0 0 18px var(--azure);
}

h1, h2, h3 { font-weight: 600; letter-spacing: -0.02em; margin: 0; line-height: 1.02; }
p { margin: 0; line-height: 1.55; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  border-radius: 99px;
  background: linear-gradient(180deg, #5E89FF 0%, #3D6FFF 100%);
  color: white;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -2px 0 rgba(0,0,0,0.18),
    0 8px 30px rgba(61, 111, 255, 0.45),
    0 2px 0 rgba(0,0,0,0.2);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn-primary:hover { transform: translateY(-1px); box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    inset 0 -2px 0 rgba(0,0,0,0.18),
    0 12px 40px rgba(61, 111, 255, 0.65),
    0 2px 0 rgba(0,0,0,0.2); }
.btn-primary .arrow {
  width: 22px; height: 22px;
  border-radius: 99px;
  background: white;
  color: var(--blue-700);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: 99px;
  background: rgba(255,255,255,0.06);
  color: white;
  font-weight: 500;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  transition: background .15s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* ----------- NAV ----------- */
.nav {
  position: fixed; top: 20px; left: 0; right: 0;
  z-index: 100;
  display: flex; justify-content: center;
  pointer-events: none;
}
.nav-inner {
  pointer-events: auto;
  display: flex; align-items: center; gap: 28px;
  padding: 10px 12px 10px 22px;
  border-radius: 99px;
  background: rgba(10, 16, 36, 0.65);
  backdrop-filter: blur(20px) saturate(140%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.nav-brand { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.02em; font-size: 16px; }
.nav-brand .mark {
  width: 26px; height: 26px;
  background: var(--grad-aurora);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2), inset 0 1px 0 rgba(255,255,255,0.5);
}
.nav-brand .mark::after {
  content: ""; position: absolute; inset: 5px;
  background: var(--ink-900);
  border-radius: 4px;
}
.nav-brand .mark::before {
  content: ""; position: absolute; inset: 9px;
  background: var(--azure);
  border-radius: 2px;
  z-index: 2;
  box-shadow: 0 0 10px var(--azure);
}
.nav-links { display: flex; gap: 22px; font-size: 14px; color: var(--ink-200); }
.nav-links a:hover { color: white; }

/* ----------- HERO ----------- */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  background: var(--grad-hero);
  overflow: hidden;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(125, 155, 220, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 155, 220, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(80% 60% at 50% 30%, black 30%, transparent 80%);
}
.hero-orb {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  pointer-events: none;
}
.orb-blue { background: var(--blue-500); top: -150px; left: -100px; }
.orb-magenta { background: var(--magenta); bottom: -200px; right: -100px; opacity: 0.35; }
.orb-cyan { background: var(--azure); top: 30%; right: 20%; width: 300px; height: 300px; opacity: 0.4; }

.hero-content { position: relative; z-index: 5; text-align: center; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 6px 6px 16px;
  border-radius: 99px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 13px;
  color: var(--ink-200);
  backdrop-filter: blur(10px);
}
.hero-pill .new {
  background: var(--azure); color: var(--ink-900);
  padding: 4px 10px; border-radius: 99px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
}
/* .hero h1 — replaced by .hero-pacta-title for Pacta rebrand */
.hero-cta-row { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }
.hero-trust {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-400);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== PACTA REBRAND — Hero typography ===== */
.hero-pacta-title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(64px, 8vw, 120px);
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin: 20px 0 4px;
  background: var(--grad-aurora);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-pacta-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 4.5vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 18px;
  color: var(--ink-300);
  opacity: 0.85;
}

.hero-pacta-divider {
  width: 60px;
  height: 2px;
  background: var(--grad-aurora);
  border: none;
  border-radius: 2px;
  margin: 0 auto 28px;
}

.hero-pacta-body {
  font-family: var(--font-sans);
  font-size: clamp(17px, 1.4vw, 21px);
  color: var(--ink-200);
  max-width: 560px;
  margin: 0 auto 38px;
  line-height: 1.55;
}

/* ===== 3D Floating Dashboard Mock ===== */
.stage3d {
  perspective: 1800px;
  margin: 80px auto 0;
  width: min(1400px, 95vw);
  position: relative;
  height: 580px;
}
.dash {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transform: rotateX(18deg) rotateY(-2deg) scale(0.95);
  animation: dashFloat 8s ease-in-out infinite;
}
@keyframes dashFloat {
  0%, 100% { transform: rotateX(18deg) rotateY(-2deg) scale(0.95) translateY(0); }
  50% { transform: rotateX(15deg) rotateY(0deg) scale(0.95) translateY(-10px); }
}
.dash-main {
  position: absolute; inset: 0;
  background: linear-gradient(170deg, #131C40 0%, #0A1024 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  box-shadow:
    0 60px 120px -20px rgba(0,0,0,0.7),
    0 30px 60px -30px rgba(61, 111, 255, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
  transform: translateZ(0);
}
.dash-topbar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
}
.dash-topbar .dot { width: 11px; height: 11px; border-radius: 99px; background: rgba(255,255,255,0.15); }
.dash-topbar .url {
  margin-left: 14px;
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-400);
  padding: 4px 12px; border-radius: 99px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
}
.dash-body { display: grid; grid-template-columns: 200px 1fr; height: calc(100% - 44px); }
.dash-side {
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 16px 12px;
  display: flex; flex-direction: column; gap: 4px;
  background: rgba(255,255,255,0.015);
}
.dash-side-item {
  font-size: 12px; color: var(--ink-300);
  padding: 8px 12px;
  border-radius: 8px;
  display: flex; align-items: center; gap: 10px;
}
.dash-side-item .pip { width: 14px; height: 14px; border-radius: 4px; background: rgba(255,255,255,0.08); }
.dash-side-item.active { background: rgba(94, 137, 255, 0.18); color: white; }
.dash-side-item.active .pip { background: var(--azure); box-shadow: 0 0 10px var(--azure); }
.dash-side-section { font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.15em; color: var(--ink-400); text-transform: uppercase; margin: 14px 12px 6px; }

.dash-content { padding: 22px; display: grid; grid-template-rows: auto 1fr; gap: 18px; min-width: 0; }
.dash-header { display: flex; align-items: center; justify-content: space-between; }
.dash-header h3 { font-size: 18px; color: white; }
.dash-header .meta { font-family: var(--font-mono); font-size: 11px; color: var(--ink-300); }

.dash-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.kpi {
  padding: 12px;
  border-radius: 12px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
}
.kpi .label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-400); font-family: var(--font-mono); }
.kpi .val { font-size: 22px; font-weight: 600; color: white; margin-top: 4px; letter-spacing: -0.02em; }
.kpi .delta { font-size: 10px; font-family: var(--font-mono); margin-top: 2px; }
.kpi.up .delta { color: var(--lime); }
.kpi.dn .delta { color: var(--coral); }

.dash-graph {
  position: relative;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(94,137,255,0.04) 0%, transparent 100%);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 16px;
  min-height: 0;
}
.dash-graph svg { width: 100%; height: 100%; }

/* Floating 3D cards around dashboard */
.float-card {
  position: absolute;
  background: linear-gradient(160deg, rgba(20,28,60,0.95), rgba(10,16,36,0.95));
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 14px 16px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform-style: preserve-3d;
  animation: cardFloat 6s ease-in-out infinite;
}
@keyframes cardFloat {
  0%, 100% { transform: translateZ(60px) translateY(0); }
  50% { transform: translateZ(60px) translateY(-8px); }
}
.float-card-1 {
  top: 10%; left: -4%;
  width: 230px;
  animation-delay: -1s;
}
.float-card-2 {
  bottom: 8%; right: -4%;
  width: 280px;
  animation-delay: -3s;
}
.float-card-3 {
  top: 38%; right: -7%;
  width: 200px;
  animation-delay: -5s;
}
.fc-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--azure); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.fc-label::before { content: ""; width: 6px; height: 6px; border-radius: 99px; background: var(--azure); box-shadow: 0 0 8px var(--azure); }
.fc-body { font-size: 13px; color: white; line-height: 1.4; }
.fc-meta { font-size: 11px; color: var(--ink-400); margin-top: 8px; font-family: var(--font-mono); }

/* ===== ORIGIN / MANIFESTO ===== */
.origin {
  background: linear-gradient(180deg, var(--ink-900) 0%, #060D24 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.origin::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(closest-side, rgba(61,111,255,0.12), transparent 70%);
  pointer-events: none;
}
.origin-eyebrow { color: var(--ink-300); }

.origin-content {
  max-width: 780px;
  margin: 40px auto 0;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.origin-visible {
  opacity: 1;
  transform: translateY(0);
}

.origin-quote-block {
  text-align: center;
  margin-bottom: 48px;
}
.origin-lede {
  font-size: 16px;
  color: var(--ink-300);
  margin-bottom: 16px;
}
.origin-latin {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(42px, 6vw, 80px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--blue-400);
  margin: 0 0 8px;
  border: none;
  padding: 0;
}
.origin-translation {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--ink-300);
  margin: 0;
  opacity: 0.8;
}

.origin-body {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.origin-body p {
  font-size: 17px;
  color: var(--ink-200);
  line-height: 1.6;
  margin: 0;
}

.origin-conclusion {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.origin-conclusion p {
  font-size: 17px;
  color: var(--ink-100);
  line-height: 1.6;
  margin: 0;
}
.origin-punch {
  font-weight: 600;
  color: white !important;
  font-size: 18px !important;
  letter-spacing: -0.01em;
}

/* ===== PAIN SECTION ===== */
.pain {
  background: var(--paper);
  color: var(--ink-900);
  padding: 140px 0 160px;
  position: relative;
  overflow: hidden;
}
.pain-eyebrow { color: var(--ink-500); }
.pain-headline {
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: -0.035em;
  font-weight: 500;
  max-width: 1100px;
  margin: 24px 0 60px;
  color: var(--ink-900);
  line-height: 1.0;
}
.pain-headline .strike {
  position: relative;
  display: inline-block;
  color: var(--ink-400);
}
.pain-headline .strike::after {
  content: ""; position: absolute;
  left: -2%; right: -2%;
  top: 55%; height: 8px;
  background: var(--coral);
  border-radius: 99px;
  transform: rotate(-1.5deg);
}
.pain-headline em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--blue-700);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 50px;
}
.pain-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow:
    0 1px 0 rgba(0,0,0,0.04),
    0 20px 40px -20px rgba(10,16,36,0.15);
  position: relative;
  overflow: hidden;
  transition: transform .25s ease;
}
.pain-card:hover { transform: translateY(-4px); }
.pain-card-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ink-400);
}
.pain-card h3 {
  font-size: 22px;
  color: var(--ink-900);
  margin: 12px 0 10px;
  letter-spacing: -0.02em;
}
.pain-card p { font-size: 14px; color: var(--ink-500); }
.pain-card .quote {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--ink-200);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-700);
}
.pc-1 { grid-column: span 5; }
.pc-2 { grid-column: span 4; }
.pc-3 { grid-column: span 3; }
.pc-4 { grid-column: span 4; }
.pc-5 { grid-column: span 4; }
.pc-6 { grid-column: span 4; }

.pain-card .visual {
  margin-top: 18px;
  height: 90px;
  border-radius: 12px;
  background: var(--paper-warm);
  position: relative;
  overflow: hidden;
}

/* ===== SALES SECTION ===== */
.sales {
  background: var(--ink-900);
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}
.sales::before {
  content: "";
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(closest-side, rgba(61,111,255,0.25), transparent 70%);
  pointer-events: none;
}
.sec-head {
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: end;
  margin-bottom: 60px;
  position: relative;
}
.sec-head h2 {
  font-size: clamp(42px, 5.5vw, 76px);
  letter-spacing: -0.035em;
  max-width: 900px;
  font-weight: 500;
}
.sec-head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--azure);
  font-weight: 400;
}
.sec-head p { color: var(--ink-200); max-width: 380px; font-size: 16px; }

.sales-product {
  background: linear-gradient(180deg, #0F1738 0%, #0A1024 100%);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 40px;
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
  box-shadow: 0 50px 100px rgba(0,0,0,0.4);
  overflow: hidden;
}
.sales-product .tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 99px;
  background: rgba(94,137,255,0.15);
  color: var(--blue-400);
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(94,137,255,0.3);
}
.sales-product h3 {
  font-size: 42px; letter-spacing: -0.03em;
  margin: 18px 0 16px;
  color: white;
}
.sales-product .lede { font-size: 17px; color: var(--ink-200); margin-bottom: 26px; }
.feat-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.feat-list li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 15px; color: var(--ink-100);
}
.feat-list .marker {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: linear-gradient(160deg, var(--blue-400), var(--blue-700));
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 6px 16px rgba(61,111,255,0.4), inset 0 1px 0 rgba(255,255,255,0.3);
}
.feat-list .marker::after {
  content: ""; position: absolute;
  width: 10px; height: 5px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  top: 8px; left: 8px;
  transform: rotate(-45deg);
}
.feat-list strong { color: white; font-weight: 600; }

/* Pipeline mock */
.pipeline {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 20px;
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg);
}
.pipeline-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.pipeline-header h4 { font-size: 14px; font-weight: 600; color: white; }
.pipeline-header .filter { font-family: var(--font-mono); font-size: 10px; color: var(--ink-400); padding: 4px 8px; border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; }
.pipeline-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pipe-col {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 8px;
  min-height: 280px;
}
.pipe-col-head { display: flex; justify-content: space-between; font-size: 10px; font-family: var(--font-mono); color: var(--ink-400); text-transform: uppercase; letter-spacing: 0.1em; }
.pipe-col-head .count { background: rgba(255,255,255,0.06); padding: 1px 6px; border-radius: 99px; }
.deal {
  background: linear-gradient(160deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 10px;
  position: relative;
}
.deal .company { font-size: 12px; font-weight: 600; color: white; }
.deal .value { font-family: var(--font-mono); font-size: 11px; color: var(--lime); margin-top: 4px; }
.deal .owner {
  position: absolute; top: 8px; right: 8px;
  width: 18px; height: 18px; border-radius: 99px;
  background: var(--magenta);
  font-size: 9px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  color: white;
}
.deal.hot {
  border-color: var(--coral);
  box-shadow: 0 0 0 1px var(--coral), 0 8px 20px rgba(255,106,77,0.25);
}
.deal.hot::before {
  content: "HOT";
  position: absolute; top: -6px; left: 8px;
  background: var(--coral);
  color: white; font-family: var(--font-mono);
  font-size: 8px; font-weight: 700; padding: 2px 5px;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

/* ===== DELIVERY (isometric kanban) ===== */
.delivery {
  background: var(--paper);
  color: var(--ink-900);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.delivery-sec-head h2 { color: var(--ink-900); }
.delivery-sec-head h2 em { color: var(--blue-700); }
.delivery-sec-head p { color: var(--ink-500); }

.iso-scene {
  margin-top: 60px;
  height: 560px;
  position: relative;
  perspective: 1600px;
}
.iso-board {
  position: absolute;
  inset: 0;
  transform: rotateX(50deg) rotateZ(-32deg);
  transform-style: preserve-3d;
}
.iso-floor {
  position: absolute; inset: 50px;
  background:
    linear-gradient(rgba(10,16,36,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,16,36,0.06) 1px, transparent 1px),
    var(--paper-warm);
  background-size: 40px 40px;
  border-radius: 24px;
  box-shadow: 0 50px 100px rgba(10,16,36,0.15);
}

.iso-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 30px rgba(10,16,36,0.18);
  padding: 14px;
  transform-style: preserve-3d;
}
.iso-card::before {
  content: ""; position: absolute;
  inset: 0; bottom: -10px;
  transform: translateZ(-10px);
  background: rgba(10,16,36,0.4);
  filter: blur(5px);
  border-radius: 12px;
  z-index: -1;
}
.iso-card.col {
  width: 240px;
  background: linear-gradient(180deg, white, #FAF8F2);
  padding: 0;
  overflow: hidden;
}
.iso-card.col .col-head {
  padding: 14px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-500);
  border-bottom: 1px solid var(--ink-100);
  display: flex; justify-content: space-between;
}
.iso-card.col .col-head .pill { background: var(--ink-100); color: var(--ink-700); padding: 1px 8px; border-radius: 99px; }
.iso-card.col .col-body { padding: 10px; display: flex; flex-direction: column; gap: 8px; }
.iso-task {
  background: var(--paper-warm);
  border-radius: 8px;
  padding: 10px;
  font-size: 12px;
  color: var(--ink-700);
}
.iso-task .meta { display: flex; justify-content: space-between; margin-top: 6px; font-size: 10px; color: var(--ink-400); }
.iso-task .team {
  display: flex; gap: -4px;
}
.iso-task .av {
  width: 18px; height: 18px; border-radius: 99px;
  border: 2px solid white;
  margin-left: -6px;
}
.iso-task .av:first-child { margin-left: 0; }

.iso-card.tag-card {
  padding: 12px 16px;
  font-size: 12px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-700);
  background: white;
  border: 1px solid var(--blue-500);
  display: flex; align-items: center; gap: 8px;
}
.iso-card.tag-card::after {
  content: ""; width: 6px; height: 6px;
  background: var(--blue-500); border-radius: 99px;
  box-shadow: 0 0 8px var(--blue-500);
}

.delivery-list {
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.del-item {
  padding-top: 24px;
  border-top: 1px solid var(--ink-200);
}
.del-item .num { font-family: var(--font-mono); font-size: 12px; color: var(--ink-500); letter-spacing: 0.1em; }
.del-item h4 { font-size: 22px; margin: 14px 0 10px; color: var(--ink-900); font-weight: 500; letter-spacing: -0.02em; }
.del-item p { font-size: 14px; color: var(--ink-500); }

/* ===== AI COACH ===== */
.aicoach {
  background: var(--ink-900);
  background-image:
    radial-gradient(60% 50% at 80% 10%, rgba(194, 84, 255, 0.18), transparent),
    radial-gradient(50% 50% at 10% 90%, rgba(79, 183, 255, 0.18), transparent);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.aicoach .label-aurora {
  background: var(--grad-aurora);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.aicoach .sec-head h2 em { background: var(--grad-aurora); -webkit-background-clip: text; background-clip: text; color: transparent; font-family: var(--font-serif); font-style: italic; }

.coach-stage {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  margin-top: 40px;
}

.coach-console {
  background: linear-gradient(180deg, rgba(15, 23, 56, 0.9), rgba(10,16,36,0.95));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.coach-console::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--magenta), var(--azure), transparent);
  opacity: 0.7;
}
.coach-head {
  display: flex; gap: 14px; align-items: center;
  margin-bottom: 22px;
}
.coach-avatar {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad-aurora);
  position: relative;
  box-shadow: 0 0 30px rgba(194,84,255,0.4);
}
.coach-avatar::after {
  content: ""; position: absolute; inset: 5px;
  background: var(--ink-900);
  border-radius: 8px;
}
.coach-avatar::before {
  content: ""; position: absolute;
  width: 14px; height: 14px; left: 15px; top: 15px;
  background: white;
  z-index: 2;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(255,255,255,0.6);
}
.coach-id .name { font-weight: 600; color: white; }
.coach-id .role { font-family: var(--font-mono); font-size: 11px; color: var(--ink-300); }

.deal-context {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 18px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.dctx { font-size: 12px; }
.dctx .lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-400); }
.dctx .val { color: white; margin-top: 4px; font-weight: 500; }

.chat-row { display: flex; gap: 12px; margin-bottom: 16px; }
.chat-row.user { justify-content: flex-end; }
.chat-bubble {
  max-width: 80%;
  padding: 14px 18px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.5;
}
.chat-row.ai .chat-bubble {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--ink-100);
  border-top-left-radius: 4px;
}
.chat-row.user .chat-bubble {
  background: rgba(94,137,255,0.18);
  border: 1px solid rgba(94,137,255,0.3);
  color: white;
  border-top-right-radius: 4px;
}
.chat-bubble .insight-tag {
  display: inline-block;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em;
  color: var(--magenta);
  margin-bottom: 6px; text-transform: uppercase;
}
.chat-bubble strong { color: white; }
.chat-input {
  margin-top: 18px;
  display: flex; gap: 8px; align-items: center;
  padding: 10px 14px;
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 99px;
}
.chat-input .ph { font-size: 13px; color: var(--ink-400); flex: 1; }
.chat-input .send {
  width: 32px; height: 32px;
  border-radius: 99px;
  background: var(--grad-aurora);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
}

.coach-side { display: flex; flex-direction: column; gap: 18px; }
.insight-card {
  background: linear-gradient(160deg, rgba(20,28,60,0.7), rgba(10,16,36,0.7));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 22px;
  position: relative;
  overflow: hidden;
}
.insight-card::after {
  content: "";
  position: absolute;
  top: -50%; right: -30%;
  width: 280px; height: 280px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.35;
  pointer-events: none;
}
.insight-card.psych::after { background: var(--magenta); }
.insight-card.lever::after { background: var(--azure); }
.insight-card.timing::after { background: var(--lime); }

.insight-card .ic-eyebrow {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.insight-card.psych .ic-eyebrow { color: var(--magenta); }
.insight-card.lever .ic-eyebrow { color: var(--azure); }
.insight-card.timing .ic-eyebrow { color: var(--lime); }
.insight-card .ic-eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 99px; background: currentColor; box-shadow: 0 0 8px currentColor; }

.insight-card h4 { font-size: 18px; color: white; letter-spacing: -0.02em; font-weight: 500; }
.insight-card p { font-size: 13px; color: var(--ink-200); margin-top: 8px; }
.insight-card .traits { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 6px; position: relative; z-index: 2; }
.insight-card .trait {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.08em;
  padding: 4px 10px; border-radius: 99px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  color: white; text-transform: uppercase;
}
.insight-card .bar-grp { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.bar-row { display: grid; grid-template-columns: 90px 1fr 36px; align-items: center; gap: 10px; font-size: 11px; color: var(--ink-200); }
.bar-track { height: 6px; background: rgba(255,255,255,0.08); border-radius: 99px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 99px; background: var(--grad-aurora); }
.bar-val { font-family: var(--font-mono); font-size: 11px; color: white; }

/* ===== ANALYTICS ===== */
.analytics {
  background: linear-gradient(180deg, var(--ink-900), #060B1F);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.kpi-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-top: 60px;
}
.kpi-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-lg);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.kpi-card .num {
  font-size: 64px; font-weight: 500; letter-spacing: -0.04em;
  font-family: var(--font-sans); color: white;
  line-height: 1;
}
.kpi-card .num .unit { font-size: 28px; color: var(--azure); margin-left: 4px; }
.kpi-card .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-300); margin-bottom: 14px; }
.kpi-card .desc { font-size: 13px; color: var(--ink-200); margin-top: 14px; max-width: 280px; }

.kc-1 { grid-column: span 4; }
.kc-2 { grid-column: span 5; }
.kc-3 { grid-column: span 3; }
.kc-4 { grid-column: span 6; }
.kc-5 { grid-column: span 6; }

.kpi-card .viz { margin-top: 18px; height: 90px; position: relative; }

/* ===== WORKFLOW (path) ===== */
.workflow {
  background: var(--paper);
  color: var(--ink-900);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.workflow .sec-head h2 { color: var(--ink-900); }
.workflow .sec-head h2 em { color: var(--blue-700); }
.workflow .sec-head p { color: var(--ink-500); }

.wf-track {
  margin-top: 80px;
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.wf-track::before {
  content: "";
  position: absolute;
  top: 36px; left: 12.5%; right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--ink-300) 0 8px, transparent 8px 14px);
}
.wf-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  padding: 0 20px;
  position: relative;
}
.wf-step .node {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: white;
  border: 1px solid var(--ink-100);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  box-shadow: 0 14px 30px rgba(10,16,36,0.12);
  z-index: 2;
  margin-bottom: 24px;
}
.wf-step .node .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-400);
  position: absolute;
  top: 8px; right: 12px;
}
.wf-step .shape3d {
  width: 36px; height: 36px;
  background: linear-gradient(160deg, var(--blue-400), var(--blue-700));
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4), 0 4px 10px rgba(61,111,255,0.3);
}
.wf-step.s2 .shape3d { background: linear-gradient(160deg, var(--magenta), #7B2BB8); border-radius: 50%; }
.wf-step.s3 .shape3d { background: linear-gradient(160deg, var(--azure), var(--blue-500)); transform: rotate(45deg); }
.wf-step.s4 .shape3d { background: linear-gradient(160deg, var(--lime), #6FA628); border-radius: 8px; clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.wf-step h4 { font-size: 20px; font-weight: 500; letter-spacing: -0.02em; color: var(--ink-900); margin-bottom: 8px; }
.wf-step p { font-size: 14px; color: var(--ink-500); max-width: 220px; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: var(--ink-900);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.t-grid {
  margin-top: 60px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.t-card {
  background: linear-gradient(160deg, rgba(20,28,60,0.6), rgba(10,16,36,0.4));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 20px;
}
.t-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  line-height: 1.35;
  color: white;
  letter-spacing: -0.01em;
}
.t-quote::before {
  content: "";
  display: block;
  width: 40px; height: 3px;
  background: var(--grad-aurora);
  margin-bottom: 16px;
  border-radius: 99px;
}
.t-author { display: flex; gap: 12px; align-items: center; }
.t-photo {
  width: 44px; height: 44px;
  border-radius: 99px;
  background: linear-gradient(135deg, #2A3866, #4FB7FF);
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}
.t-photo::after {
  content: "";
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 28px; height: 16px;
  background: rgba(255,255,255,0.7);
  border-radius: 14px 14px 0 0;
}
.t-photo::before {
  content: "";
  position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  background: rgba(255,255,255,0.85);
  border-radius: 99px;
}
.t-name { font-weight: 600; color: white; font-size: 14px; }
.t-role { font-family: var(--font-mono); font-size: 11px; color: var(--ink-300); letter-spacing: 0.05em; }
.t-metric {
  background: rgba(94,137,255,0.12);
  border: 1px solid rgba(94,137,255,0.25);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.t-metric .v { font-size: 22px; font-weight: 500; color: white; letter-spacing: -0.02em; }
.t-metric .v .arrow { color: var(--lime); }
.t-metric .k { font-family: var(--font-mono); font-size: 11px; color: var(--ink-300); text-transform: uppercase; letter-spacing: 0.1em; }

/* ===== PRICING ===== */
.pricing {
  background: var(--paper);
  color: var(--ink-900);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.pricing .sec-head h2 { color: var(--ink-900); }
.pricing .sec-head h2 em { color: var(--blue-700); }
.pricing .sec-head p { color: var(--ink-500); }

.pricing-stage {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  align-items: stretch;
}
.price-card {
  background: linear-gradient(180deg, #0F1738 0%, #060B1F 100%);
  color: white;
  border-radius: var(--r-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(10,16,36,0.3);
}
.price-card::before {
  content: "";
  position: absolute;
  top: -200px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(closest-side, rgba(79,183,255,0.4), transparent);
  pointer-events: none;
}
.price-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 99px;
  background: rgba(255,255,255,0.08); color: white;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.12);
}
.price-card h3 { font-size: 36px; letter-spacing: -0.03em; margin: 20px 0 12px; font-weight: 500; }
.price-card .price-explain { color: var(--ink-200); font-size: 15px; margin-bottom: 30px; }

.seats {
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 24px;
}
.seats-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.seats-head .lbl { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-300); }
.seats-head .v { font-weight: 600; font-size: 18px; color: white; }
.seats-controls { display: flex; align-items: center; gap: 14px; }
.seats-btn {
  width: 40px; height: 40px;
  border-radius: 99px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 18px; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .15s ease;
}
.seats-btn:hover { background: rgba(255,255,255,0.15); }
.seats-bar { flex: 1; position: relative; height: 6px; background: rgba(255,255,255,0.08); border-radius: 99px; }
.seats-bar-fill { position: absolute; top: 0; left: 0; bottom: 0; background: var(--grad-aurora); border-radius: 99px; transition: width .25s ease; }
.seats-bar-marks {
  position: absolute; top: -4px; left: 0; right: 0;
  display: flex; justify-content: space-between;
}
.seats-bar-mark { width: 14px; height: 14px; border-radius: 99px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); }
.seats-info { margin-top: 14px; font-size: 13px; color: var(--ink-200); display: flex; justify-content: space-between; }
.seats-info .extra { font-family: var(--font-mono); color: var(--azure); }

.price-total {
  display: flex; align-items: flex-end; gap: 8px;
  margin: 6px 0 4px;
}
.price-total .num { font-size: 72px; font-weight: 500; letter-spacing: -0.04em; line-height: 1; }
.price-total .num .euro { font-size: 36px; vertical-align: top; line-height: 1; opacity: 0.7; margin-right: 4px; }
.price-total .per { color: var(--ink-300); font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 12px; }
.price-breakdown { font-size: 13px; color: var(--ink-300); margin-bottom: 28px; font-family: var(--font-mono); }

.price-cta {
  display: flex; gap: 12px; align-items: center;
  flex-wrap: wrap;
}
.price-card .reassure {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.05em;
  color: var(--ink-300);
}

.price-feats {
  background: white;
  border-radius: var(--r-xl);
  padding: 40px;
  border: 1px solid var(--ink-100);
  display: flex; flex-direction: column;
  box-shadow: 0 20px 40px rgba(10,16,36,0.08);
}
.price-feats h4 {
  font-size: 14px; color: var(--ink-500);
  text-transform: uppercase; letter-spacing: 0.12em;
  font-family: var(--font-mono); font-weight: 500;
  margin-bottom: 22px;
}
.price-feats ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.price-feats li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14px; color: var(--ink-700);
}
.price-feats li .mk {
  width: 22px; height: 22px; border-radius: 7px;
  background: var(--ink-900);
  position: relative;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.price-feats li .mk::after {
  content: ""; position: absolute;
  width: 8px; height: 4px;
  border-left: 2px solid var(--azure);
  border-bottom: 2px solid var(--azure);
  top: 7px; left: 6px;
  transform: rotate(-45deg);
}
.price-feats li strong { color: var(--ink-900); }

/* ===== FINAL CTA ===== */
.finalcta {
  background: var(--ink-900);
  position: relative;
  overflow: hidden;
  padding: 160px 0 100px;
}
.finalcta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 60% at 50% 60%, rgba(61,111,255,0.3), transparent),
    radial-gradient(50% 40% at 90% 30%, rgba(194,84,255,0.15), transparent);
  pointer-events: none;
}
.finalcta-content { position: relative; text-align: center; max-width: 900px; margin: 0 auto; }
.finalcta h2 {
  font-size: clamp(56px, 8vw, 120px);
  letter-spacing: -0.04em;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 28px;
}
.finalcta h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  background: var(--grad-aurora);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.finalcta p { color: var(--ink-200); font-size: 18px; margin-bottom: 38px; }

/* ===== FOOTER ===== */
footer {
  background: var(--ink-900);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0 40px;
  color: var(--ink-300);
  font-size: 13px;
}
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
.foot-brand { font-size: 16px; color: white; font-weight: 600; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.foot-col h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-200); margin: 0 0 14px; font-weight: 500; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-col a:hover { color: white; }
.foot-bottom { display: flex; justify-content: space-between; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.06); font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--ink-400); }

/* ===== UTILITIES & RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-pacta-title { font-size: 64px; }
  .stage3d { height: 380px; }
  .float-card-1, .float-card-2, .float-card-3 { display: none; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-card { grid-column: span 1 !important; }
  .sales-product { grid-template-columns: 1fr; padding: 24px; }
  .pipeline { transform: none; }
  .sec-head { grid-template-columns: 1fr; }
  .coach-stage { grid-template-columns: 1fr; }
  .kpi-grid > * { grid-column: span 12 !important; }
  .delivery-list { grid-template-columns: 1fr; }
  .t-grid { grid-template-columns: 1fr; }
  .wf-track { grid-template-columns: 1fr; gap: 30px; }
  .wf-track::before { display: none; }
  .pricing-stage { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .iso-scene { height: 380px; }
  .iso-board { transform: rotateX(35deg) rotateZ(-20deg) scale(0.6); }
}

/* placeholder image style */
.ph-img {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0 8px, rgba(255,255,255,0.06) 8px 16px),
    var(--ink-700);
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  color: var(--ink-300);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 12px;
}
.ph-img.light {
  background:
    repeating-linear-gradient(45deg, rgba(10,16,36,0.04) 0 8px, rgba(10,16,36,0.08) 8px 16px),
    var(--paper-warm);
  color: var(--ink-500);
}
