/* ─────────────────────────────────────────────────────────────
   KINETIX AI SYSTEMS — Tokens, base, glass, juicy CTAs
   ───────────────────────────────────────────────────────────── */

:root {
  --bg: #FBFAF7;             /* off-white, paper warmth */
  --bg-pure: #FFFFFF;
  --grid-line: rgba(15, 23, 42, 0.05);
  --chrome-1: #C7D9F0;
  --chrome-2: #7DB9FF;
  --chrome-3: #2E6BFF;
  --chrome-4: #0B3A8C;
  --ink: #06080F;            /* near-black for cut-glass contrast */
  --ink-soft: #1A2030;
  --ink-mute: #50596B;
  --ice: rgba(255, 255, 255, 0.6);
  --accent-cool: #5B8DEF;
  --accent-glow: #E8F1FF;
  --line: rgba(11, 58, 140, 0.10);
  --line-2: rgba(11, 58, 140, 0.06);
  --hairline: rgba(6, 8, 15, 0.08);

  --font-display: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", system-ui, sans-serif;
  --font-serif: "Instrument Serif", "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", "SF Mono", ui-monospace, monospace;

  --shadow-card: 0 1px 0 rgba(255,255,255,0.6) inset, 0 12px 40px rgba(15, 23, 42, 0.06), 0 2px 8px rgba(15, 23, 42, 0.04);
  --shadow-cta: 0 8px 24px rgba(46,107,255,0.35), 0 2px 6px rgba(11,58,140,0.25), inset 0 -2px 0 rgba(11,58,140,0.35), inset 0 1px 0 rgba(255,255,255,0.45);
  --shadow-cta-hover: 0 14px 36px rgba(46,107,255,0.45), 0 4px 10px rgba(11,58,140,0.30), inset 0 -2px 0 rgba(11,58,140,0.4), inset 0 1px 0 rgba(255,255,255,0.55);
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body { min-height: 100vh; }

/* Custom cursor disabled — system cursor takes over for smoothness */

/* Headings */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.02;
  text-wrap: balance;
}

p { text-wrap: pretty; color: var(--ink-soft); }

::selection { background: var(--chrome-3); color: #fff; }

/* ─────────────────────────────────────────────────────────────
   Background layers (fixed, behind everything)
   ───────────────────────────────────────────────────────────── */

.bg-stack {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Chrome wallpaper — multi-layer composition (3 images blended) */
.bg-chrome {
  position: absolute;
  inset: -15%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform, filter;
  transform-origin: center;
  pointer-events: none;
}

/* Base layer — silver, full coverage, soft */
.bg-chrome.layer-1 {
  background-image: url("images/chrome-silver.png");
  filter: contrast(1.05) saturate(0.82) brightness(1.06);
  opacity: 0.62;
  -webkit-mask-image: radial-gradient(ellipse 110% 90% at 50% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.3) 80%, transparent 100%);
          mask-image: radial-gradient(ellipse 110% 90% at 50% 50%, rgba(0,0,0,1) 0%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,0.3) 80%, transparent 100%);
  transform: scale(1.15);
}

/* Second layer — bubble/glass, larger, slight rotation, blends as overlay */
.bg-chrome.layer-2 {
  background-image: url("images/chrome-bubble.png");
  filter: contrast(1.10) saturate(0.78) brightness(1.08);
  opacity: 0.40;
  mix-blend-mode: overlay;
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 45% 45%, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 50%, transparent 95%);
          mask-image: radial-gradient(ellipse 90% 90% at 45% 45%, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 50%, transparent 95%);
  transform: scale(1.30);
}

/* Third layer — dark chrome, offset, multiplies for depth */
.bg-chrome.layer-3 {
  background-image: url("images/chrome-dark.png");
  filter: contrast(1.12) saturate(0.72) brightness(1.18);
  opacity: 0.22;
  mix-blend-mode: multiply;
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 60% 55%, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.40) 55%, transparent 90%);
          mask-image: radial-gradient(ellipse 85% 80% at 60% 55%, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.40) 55%, transparent 90%);
  transform: scale(1.40);
}

/* Click ripple — short scale pulse on all layers */
.bg-chrome.pulse {
  animation: chromePulse 700ms cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes chromePulse {
  0%   { transform: var(--base-transform); }
  40%  { transform: var(--base-transform) scale(1.018); }
  100% { transform: var(--base-transform); }
}

/* A subtle iridescent bloom that drifts to give the surface life */
.bg-chrome-bloom {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(125, 185, 255, 0.20), transparent 70%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(255, 200, 215, 0.12), transparent 70%),
    radial-gradient(ellipse 40% 35% at 50% 90%, rgba(190, 220, 255, 0.14), transparent 75%);
  mix-blend-mode: screen;
  animation: chromeShift 24s ease-in-out infinite;
}
@keyframes chromeShift {
  0%, 100% { transform: translate(0, 0); }
  50%      { transform: translate(-3%, 3%); }
}

/* Soft tint vignette (replaces removed chrome layers) */
.bg-haze {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 0%, rgba(125, 185, 255, 0.10), transparent 70%),
    radial-gradient(ellipse 60% 50% at 90% 100%, rgba(46, 107, 255, 0.06), transparent 70%);
}

.bg-grid {
  position: absolute;
  inset: -20px;
  background-image:
    linear-gradient(to right, var(--grid-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridDrift 14s linear infinite;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 50%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 30%, #000 50%, transparent 100%);
  will-change: background-position;
}

/* Cursor light — soft blue spotlight that follows the pointer. */
.cursor-light {
  position: absolute;
  top: 0; left: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(125, 185, 255, 0.30) 0%,
    rgba(46, 107, 255, 0.10) 30%,
    rgba(46, 107, 255, 0.03) 55%,
    transparent 75%
  );
  filter: blur(14px);
  transform: translate3d(-9999px, -9999px, 0);
  will-change: transform;
  opacity: 0;
  transition: opacity 450ms ease;
  mix-blend-mode: multiply;
}
.cursor-light.on { opacity: 0.55; }

@keyframes gridDrift {
  0%   { transform: translate(0, 0); }
  100% { transform: translate(48px, 48px); }
}

/* Vignette + central content shield to keep hero text clean */
.bg-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 32%, rgba(255,255,255,0.55), rgba(255,255,255,0.20) 50%, transparent 80%),
    radial-gradient(ellipse 60% 50% at 80% 8%, rgba(125, 185, 255, 0.07), transparent 70%),
    radial-gradient(ellipse 50% 40% at 10% 80%, rgba(46, 107, 255, 0.05), transparent 70%);
}

/* ─────────────────────────────────────────────────────────────
   Chrome pieces — real reference images, treated as sculptures
   ───────────────────────────────────────────────────────────── */

.chrome-piece {
  position: relative;
  display: block;
  isolation: isolate;
}
.chrome-piece img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  filter: contrast(1.06) saturate(0.92) brightness(1.02);
}
.chrome-piece__glow {
  position: absolute;
  inset: -40px;
  border-radius: inherit;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(46,107,255,0.10), transparent 60%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}
.chrome-piece--hero {
  position: absolute;
  top: 0; right: -4%;
  width: 38%;
  aspect-ratio: 380 / 742;
  border-radius: 999px;
  overflow: hidden;
  box-shadow:
    0 60px 120px -30px rgba(20, 30, 50, 0.30),
    0 24px 60px -16px rgba(20, 30, 50, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.6);
  animation: chromeFloat 9s ease-in-out infinite;
}

@keyframes chromeFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.chrome-piece--orb {
  position: absolute;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 30px 60px -15px rgba(20, 30, 50, 0.30),
    inset 0 1px 0 rgba(255,255,255,0.5);
}

.chrome-piece--inline {
  border-radius: 999px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 380 / 742;
  box-shadow:
    0 40px 100px -25px rgba(20, 30, 50, 0.35),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

/* ─────────────────────────────────────────────────────────────
   Cursor
   ───────────────────────────────────────────────────────────── */

.cursor-dot, .cursor-halo {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  will-change: transform;
}

.cursor-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--chrome-3);
  transform: translate3d(-50%, -50%, 0);
}

.cursor-halo {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--chrome-3);
  background: rgba(46, 107, 255, 0.06);
  transition: width 220ms ease, height 220ms ease, border-color 220ms ease, background 220ms ease;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-halo.is-magnet {
  width: 64px; height: 64px;
  background: rgba(46,107,255,0.12);
  border-color: rgba(46,107,255,0.65);
}

.cursor-halo.is-ripple {
  animation: ripple 0.35s ease-out;
}

@keyframes ripple {
  0%   { box-shadow: 0 0 0 0 rgba(46,107,255,0.45); }
  100% { box-shadow: 0 0 0 28px rgba(46,107,255,0); }
}

@media (pointer: coarse) {
  .cursor-dot, .cursor-halo { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   Layout helpers
   ───────────────────────────────────────────────────────────── */

.shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 720px) {
  .shell { padding: 0 20px; }
}

section { position: relative; z-index: 1; }

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--chrome-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 18px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.metal-text {
  background: linear-gradient(135deg, #0B3A8C 0%, #2E6BFF 35%, #7DB9FF 65%, #0B3A8C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 200% 200%;
  animation: metalShift 8s ease-in-out infinite;
}

@keyframes metalShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* ─────────────────────────────────────────────────────────────
   Glass panel
   ───────────────────────────────────────────────────────────── */

.glass {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-card);
  border-radius: 22px;
  position: relative;
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(125,185,255,0.25) 40%, rgba(46,107,255,0.0) 70%, rgba(255,255,255,0.6));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* ─────────────────────────────────────────────────────────────
   Juicy Button
   ───────────────────────────────────────────────────────────── */

.juicy {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  color: #fff;
  background: linear-gradient(135deg, #2E6BFF 0%, #5B8DEF 55%, #7DB9FF 100%);
  box-shadow: var(--shadow-cta);
  overflow: hidden;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 240ms ease;
  isolation: isolate;
  text-decoration: none;
  white-space: nowrap;
}

.juicy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 750ms ease-out;
  z-index: 1;
}

.juicy > * { position: relative; z-index: 2; }

.juicy:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: var(--shadow-cta-hover);
}

.juicy:hover::before { transform: translateX(120%); }

.juicy:active { transform: scale(0.97); }

.juicy .arrow { display: inline-block; transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1); }
.juicy:hover .arrow { transform: translate(2px, -2px); }

.juicy.ghost {
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  color: var(--chrome-4);
  border: 1px solid rgba(46,107,255,0.30);
  box-shadow: 0 6px 18px rgba(15,23,42,0.05), inset 0 1px 0 rgba(255,255,255,0.8);
}

.juicy.ghost:hover {
  background: rgba(255,255,255,0.8);
  border-color: rgba(46,107,255,0.55);
  box-shadow: 0 10px 26px rgba(15,23,42,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
}

.juicy.wide { width: 100%; justify-content: center; padding: 20px 30px; font-size: 17px; }

/* ─────────────────────────────────────────────────────────────
   Nav
   ───────────────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 32px);
  max-width: 1180px;
  padding: 12px 14px 12px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(24px) saturate(180%) brightness(1.05);
  -webkit-backdrop-filter: blur(24px) saturate(180%) brightness(1.05);
  border: 1px solid rgba(11,58,140,0.08);
  transition: padding 240ms ease, box-shadow 240ms ease, top 240ms ease;
}

.nav.scrolled {
  top: 10px;
  padding: 8px 10px 8px 18px;
  box-shadow: 0 8px 32px rgba(15,23,42,0.08);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-mark {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
}

.foot-logo {
  display: block;
  height: 32px;
  width: auto;
  margin-bottom: 16px;
  /* Logo is on white BG — keep colors as-is */
}

@keyframes dotPulse {
  0%, 100% { transform: scale(1); filter: hue-rotate(0deg); }
  50%      { transform: scale(1.18); filter: hue-rotate(-10deg); }
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  color: var(--ink-soft);
  text-decoration: none;
  border-radius: 999px;
  transition: color 200ms ease, background 200ms ease;
}

.nav-links a:hover { color: var(--ink); background: rgba(46,107,255,0.07); }

@media (max-width: 880px) {
  .nav-links { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   Hero
   ───────────────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────────────
   Hero — full bleed, chrome sculpture as ornament
   ───────────────────────────────────────────────────────────── */

.hero {
  padding: 170px 0 100px;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-shell {
  position: relative;
  width: 100%;
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.hero h1 {
  font-size: clamp(2.4rem, 7.2vw, 6.6rem);
  margin: 26px 0 32px;
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 600;
  max-width: 18ch;
}

.hero h1 .em { color: var(--ink); }
.hero h1 .metal {
  background: linear-gradient(135deg, #0B3A8C, #2E6BFF 40%, #7DB9FF 75%, #0B3A8C);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.hero h1 .serif.soft {
  color: var(--ink-mute);
}

.hero .sub strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-top: 10px;
}

.hero .sub {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink-soft);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-micro {
  display: flex;
  gap: 26px;
  margin-top: 36px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.hero-micro span::before {
  content: "✓";
  display: inline-block;
  margin-right: 8px;
  color: var(--chrome-3);
  font-weight: 600;
}

/* Hero ornaments — real chrome reference images */
.hero-ornament {
  position: absolute;
  top: -40px;
  right: -60px;
  width: 540px;
  max-width: 42vw;
  aspect-ratio: 380 / 742;
  border-radius: 999px;
  overflow: hidden;
  z-index: 1;
  box-shadow:
    0 80px 160px -40px rgba(20, 30, 50, 0.30),
    0 30px 70px -16px rgba(20, 30, 50, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.7);
  animation: chromeFloat 9s ease-in-out infinite;
  pointer-events: none;
}
.hero-ornament img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.08) saturate(0.92);
}

.hero-ornament-2 {
  position: absolute;
  bottom: -10px;
  right: 38%;
  width: 180px;
  max-width: 20vw;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  z-index: 1;
  box-shadow:
    0 40px 80px -20px rgba(20, 30, 50, 0.30),
    inset 0 1px 0 rgba(255,255,255,0.6);
  animation: chromeFloat 11s ease-in-out infinite reverse;
  pointer-events: none;
  opacity: 0.95;
}
.hero-ornament-2 img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.1) saturate(0.88);
}

@media (max-width: 960px) {
  .hero { padding: 130px 0 60px; }
  .hero h1 { font-size: clamp(2.4rem, 9vw, 4.2rem); max-width: none; }
  .hero-ornament {
    position: relative;
    top: auto; right: auto;
    width: 75vw;
    margin: 40px auto -40px;
    max-width: 380px;
  }
  .hero-ornament-2 { display: none; }
}

/* ─────────────────────────────────────────────────────────────
   Section common
   ───────────────────────────────────────────────────────────── */

.section { padding: 120px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 14px 0 16px;
}
.section-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--ink-soft);
}

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

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 720px) { .stats { grid-template-columns: 1fr; } }

.stat {
  padding: 44px 38px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  border-radius: 22px;
  min-height: 260px;
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
}
.stat:hover { transform: translateY(-4px); }

.stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.045em;
  background: linear-gradient(135deg, #0B3A8C, #2E6BFF 45%, #7DB9FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.stat-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid var(--hairline);
}

.stat-label {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.stat-src {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.08em;
  color: var(--ink-mute);
  text-transform: uppercase;
}

@media (max-width: 540px) {
  .stat { padding: 32px 26px; min-height: 220px; }
  .stat-num { font-size: clamp(2.8rem, 14vw, 4rem); }
}

.bridge {
  text-align: center;
  max-width: 640px;
  margin: 80px auto 0;
  font-size: 19px;
  color: var(--ink-soft);
}
.bridge em { color: var(--ink); font-style: normal; font-weight: 500; }

/* ─────────────────────────────────────────────────────────────
   Manifesto — En Kinetix AI Systems · ejemplos en directo
   ───────────────────────────────────────────────────────────── */

.manifesto-lead {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
@media (max-width: 880px) {
  .manifesto-lead { grid-template-columns: 1fr; gap: 28px; }
}

.manifesto-lead h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  letter-spacing: -0.03em;
  line-height: 1.05;
  max-width: 16ch;
}
.manifesto-lead h2 .serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-mute);
}

.manifesto-lead p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 56ch;
}
.manifesto-lead p strong { color: var(--ink); font-weight: 500; }

.examples-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 720px) {
  .examples-grid { grid-template-columns: 1fr; }
}

.example {
  position: relative;
  padding: 28px 30px 28px 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
  transition: transform 480ms cubic-bezier(0.16, 1, 0.3, 1);
}
.example:hover { transform: translateY(-3px); }

.example-stamp {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.example-stamp .num {
  color: var(--chrome-3);
  font-weight: 600;
  letter-spacing: 0.10em;
}
.example-stamp .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--chrome-3);
  box-shadow: 0 0 8px rgba(46,107,255,0.7);
  animation: dotPulse 2.6s ease-in-out infinite;
}
.example-stamp .time {
  margin-left: auto;
  color: var(--ink-soft);
  font-weight: 500;
}

.example h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
  max-width: 22ch;
}
.example h3 .metal {
  background: linear-gradient(135deg, #0B3A8C, #2E6BFF 45%, #7DB9FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.example p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  max-width: 38ch;
  margin-top: auto;
}

.manifesto-foot {
  margin-top: 40px;
  text-align: center;
  font-size: 16px;
  color: var(--ink-soft);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 22px 28px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.manifesto-foot strong {
  color: var(--ink);
  font-weight: 500;
  background: linear-gradient(135deg, #0B3A8C, #2E6BFF 50%, #7DB9FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* keep dotPulse keyframes for eyebrow-dot + example-stamp */
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.25); opacity: 0.7; }
}

.manifesto-foot {
  text-align: center;
  max-width: 640px;
  margin: 60px auto 0;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.niches {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1080px) { .niches { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .niches { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px)  { .niches { grid-template-columns: 1fr; } }

.niche {
  position: relative;
  padding: 24px;
  border-radius: 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 420ms ease;
}
.niche:hover { transform: translateY(-8px); }

.niche-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #E8F1FF, #FFFFFF);
  border: 1px solid var(--line);
  color: var(--chrome-3);
  transition: transform 480ms ease, color 320ms ease, box-shadow 320ms ease;
}
.niche:hover .niche-icon { transform: rotate(6deg); color: var(--chrome-4); box-shadow: 0 8px 24px rgba(46,107,255,0.20); }

.niche h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.niche-sub { font-size: 13.5px; color: var(--ink-soft); line-height: 1.5; }

.niche-reveal {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 13px;
  color: var(--ink-soft);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 420ms ease, opacity 320ms ease;
}
.niche:hover .niche-reveal { max-height: 160px; opacity: 1; }

.niche-reveal span::before {
  content: "—";
  margin-right: 8px;
  color: var(--chrome-3);
}

.niche-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(circle at 70% 0%, rgba(125,185,255,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}
.niche:hover .niche-glow { opacity: 1; }

.niche-cta {
  grid-column: 1 / -1;
  border: 1px solid rgba(46,107,255,0.25);
  background: transparent;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.niche-cta p { margin: 0; }
.niche-cta strong { color: var(--ink); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────
   Services — coverflow carousel
   ───────────────────────────────────────────────────────────── */

.svc-carousel {
  position: relative;
  height: 460px;
  perspective: 1400px;
  margin: 0 auto;
  max-width: 1100px;
}

.svc-track {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.svc-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(520px, 70vw);
  height: 420px;
  margin-left: calc(min(520px, 70vw) / -2);
  margin-top: -210px;
  padding: 44px 44px 40px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
              opacity 480ms ease,
              box-shadow 480ms ease,
              border-color 480ms ease;
  will-change: transform, opacity;
  cursor: pointer;
  user-select: none;
}

/* Glow ring around active card */
.svc-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(46,107,255,0.6), rgba(125,185,255,0.0) 35%, rgba(46,107,255,0.0) 65%, rgba(46,107,255,0.6));
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 480ms ease;
  pointer-events: none;
  animation: svcGlow 4s linear infinite;
}

@keyframes svcGlow {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.svc-card[data-pos="0"]::before { opacity: 1; }

/* Position transforms — 5 visible positions, rest hidden */
.svc-card[data-pos="0"]  { transform: translate3d(0, 0, 0) scale(1);        z-index: 5; opacity: 1; box-shadow: 0 40px 90px -20px rgba(15, 23, 42, 0.25), 0 12px 30px rgba(15, 23, 42, 0.08); }
.svc-card[data-pos="-1"] { transform: translate3d(-58%, 18px, 0) scale(0.82); z-index: 3; opacity: 0.55; }
.svc-card[data-pos="1"]  { transform: translate3d(58%, 18px, 0)  scale(0.82); z-index: 3; opacity: 0.55; }
.svc-card[data-pos="-2"] { transform: translate3d(-100%, 36px, 0) scale(0.66); z-index: 1; opacity: 0; pointer-events: none; }
.svc-card[data-pos="2"]  { transform: translate3d(100%, 36px, 0)  scale(0.66); z-index: 1; opacity: 0; pointer-events: none; }
.svc-card[data-pos="far"]{ transform: translate3d(0, 0, 0) scale(0.5);       z-index: 0; opacity: 0; pointer-events: none; }

.svc-card-num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--chrome-3);
}

.svc-card-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 4px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-block;
  width: max-content;
}

.svc-card h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}

.svc-card p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1 1 auto;
}

.svc-card ul {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}
.svc-card li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  text-transform: uppercase;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,0.5);
}

.svc-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

/* Carousel controls */
.svc-controls {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 10;
}
.svc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--ink);
  pointer-events: auto;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.10);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.svc-arrow:hover {
  background: #fff;
  border-color: rgba(46,107,255,0.4);
  box-shadow: 0 12px 32px rgba(46,107,255,0.20);
  transform: translateY(-50%) scale(1.06);
}
.svc-arrow:active { transform: translateY(-50%) scale(0.96); }
.svc-arrow.prev { left: -16px; }
.svc-arrow.next { right: -16px; }

.svc-dots {
  position: absolute;
  bottom: -56px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}
.svc-dot {
  width: 24px;
  height: 4px;
  border-radius: 999px;
  background: var(--line);
  border: none;
  cursor: pointer;
  transition: background 240ms ease, width 240ms ease;
}
.svc-dot.active { background: linear-gradient(135deg, #2E6BFF, #7DB9FF); width: 40px; }

.svc-counter {
  position: absolute;
  top: -46px;
  right: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}
.svc-counter .cur { color: var(--chrome-3); font-weight: 600; }

@media (max-width: 720px) {
  .svc-carousel { height: 520px; }
  .svc-card { padding: 32px 28px; height: 460px; }
  .svc-arrow.prev { left: -4px; }
  .svc-arrow.next { right: -4px; }
}

/* ─────────────────────────────────────────────────────────────
   Process — Cuatro pasos, sección dedicada
   ───────────────────────────────────────────────────────────── */

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 960px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 8px 12px 28px;
  position: relative;
}

.process-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--chrome-3);
  margin-bottom: 14px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.06);
  position: relative;
  z-index: 2;
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  max-width: 16ch;
}

.process-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome-3);
  font-weight: 500;
}

.process-step p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 26ch;
}

/* Connector line behind the numbered circles */
.process-grid::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(46, 107, 255, 0.18) 12%,
    rgba(46, 107, 255, 0.28) 50%,
    rgba(46, 107, 255, 0.18) 88%,
    transparent 100%);
  z-index: 0;
}
@media (max-width: 960px) { .process-grid::before { display: none; } }

/* Eyebrow with dot variant */
.eyebrow-dot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 12px;
  border: 1px solid rgba(46, 107, 255, 0.30);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--chrome-3);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.eyebrow-dot::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--chrome-3);
  box-shadow: 0 0 8px rgba(46, 107, 255, 0.6);
  animation: dotPulse 3.2s ease-in-out infinite;
}

.process-title .soft { color: var(--ink-mute); }

/* ─────────────────────────────────────────────────────────────
   Manifesto — positioning section
   ───────────────────────────────────────────────────────────── */

.manifesto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 960px) { .manifesto-grid { grid-template-columns: 1fr; gap: 40px; } }

.manifesto-text {
  max-width: 520px;
}

.manifesto h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 18px 0 24px;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
.manifesto h2 .accent {
  background: linear-gradient(135deg, #0B3A8C, #2E6BFF 45%, #7DB9FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.manifesto p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 18px;
}
.manifesto p strong { color: var(--ink); font-weight: 500; }

.manifesto-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.manifesto-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.manifesto-chip::before {
  content: "//";
  color: var(--chrome-3);
  font-weight: 600;
}
.manifesto-chip:hover {
  border-color: rgba(46, 107, 255, 0.40);
  box-shadow: 0 6px 18px rgba(46, 107, 255, 0.10);
  transform: translateY(-2px);
}

/* Blueprint card */
.blueprint {
  position: relative;
  padding: 28px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.blueprint-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.blueprint-head .badge {
  color: var(--chrome-3);
  font-weight: 500;
  padding: 4px 10px;
  border: 1px solid rgba(46, 107, 255, 0.30);
  border-radius: 999px;
}

.blueprint-svg {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: block;
}

/* Subtle inner grid texture inside the blueprint */
.blueprint::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(11, 58, 140, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 58, 140, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 90%);
}
.blueprint > * { position: relative; z-index: 1; }

.frontier-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.frontier-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid var(--line-2);
  border-radius: 10px;
  background: rgba(255,255,255,0.55);
}
.frontier-row .name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink);
  text-transform: uppercase;
  font-weight: 500;
}
.frontier-row .ver {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--chrome-3);
  font-weight: 500;
}
.frontier-foot {
  margin-top: 12px;
  font-size: 13px;
  color: var(--ink-mute);
  line-height: 1.5;
}
.frontier-foot strong { color: var(--ink); font-weight: 500; }

/* ─────────────────────────────────────────────────────────────
   Trust
   ───────────────────────────────────────────────────────────── */

.trust-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}
@media (max-width: 960px) { .trust-grid { grid-template-columns: 1fr; } }

.trust-card { padding: 32px; border-radius: 22px; }
.trust-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.trust-card p.muted { font-size: 14px; color: var(--ink-mute); margin-bottom: 20px; }

.stack-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.stack-grid .stack-item {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 8px 6px;
  text-align: center;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  background: rgba(255,255,255,0.55);
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}
.stack-grid .stack-item:hover {
  color: var(--chrome-4);
  border-color: rgba(46,107,255,0.35);
  background: rgba(232,241,255,0.6);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.timeline-step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}
.timeline-step .step-num {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E6BFF, #7DB9FF);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(46,107,255,0.30);
}
.timeline-step .step-text { font-size: 14px; color: var(--ink-soft); }
.timeline-step .step-text strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }

.compliance { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.compliance li {
  font-size: 14px;
  color: var(--ink-soft);
  display: flex; align-items: center; gap: 10px;
}
.compliance li::before {
  content: "✓";
  color: var(--chrome-3);
  font-weight: 700;
  width: 18px; height: 18px;
  display: inline-grid; place-items: center;
  border-radius: 50%;
  background: rgba(46,107,255,0.10);
  font-size: 11px;
}

/* ─────────────────────────────────────────────────────────────
   Founder — typographic layout (no photo)
   ───────────────────────────────────────────────────────────── */

.founder {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 80px;
  align-items: start;
  padding-top: 20px;
  position: relative;
}
.founder::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(0.7 / 1.7 * 100% + 32px);
  bottom: 60px;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--hairline) 12%,
    var(--hairline) 88%,
    transparent 100%);
}

@media (max-width: 880px) {
  .founder { grid-template-columns: 1fr; gap: 32px; }
  .founder::before { display: none; }
}

.founder-side { padding-right: 12px; }

.founder-side .eyebrow { margin-bottom: 28px; display: inline-flex; }

.founder-name h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 16px;
}

.founder-role {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chrome-3);
  font-weight: 500;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.founder-role .founder-loc {
  color: var(--ink-mute);
  font-weight: 400;
}

.founder-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.founder-body p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 58ch;
}

.founder-signature {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 14px;
}
.founder-signature svg { display: block; }
.founder-signature span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-mute);
}

.founder-socials {
  margin-top: 32px;
  display: flex;
  gap: 10px;
}
.founder-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-soft);
  text-decoration: none;
  background: rgba(255,255,255,0.6);
  transition: color 220ms ease, border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}
.founder-socials a:hover {
  color: var(--chrome-3);
  border-color: rgba(46,107,255,0.4);
  box-shadow: 0 0 0 6px rgba(46,107,255,0.08), 0 8px 20px rgba(46,107,255,0.16);
  transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────
   Time-close section
   ───────────────────────────────────────────────────────────── */

/* ─────────────────────────────────────────────────────────────
   Time-close section — manifesto layout
   ───────────────────────────────────────────────────────────── */

.time-close {
  text-align: center;
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}

.time-close .inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
}

.time-eyebrow,
.time-signoff {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 11.5px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--chrome-3);
  margin-bottom: 36px;
}
.time-signoff {
  margin-top: 56px;
  margin-bottom: 0;
  color: var(--ink-mute);
}
.time-eyebrow .dash,
.time-signoff .dash {
  flex: 0 0 64px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.time-close h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 48px;
  font-weight: 600;
}
.time-close h2 .line-1 { color: var(--ink); }
.time-close h2 .line-2 {
  background: linear-gradient(135deg, #0B3A8C 0%, #2E6BFF 40%, #7DB9FF 75%, #0B3A8C 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: metalShift 8s ease-in-out infinite;
}

.time-close .lead {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 680px;
  margin: 0 auto 22px;
  line-height: 1.65;
}
.time-close .lead a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: color 200ms ease, border-color 200ms ease;
}
.time-close .lead a:hover { color: var(--chrome-3); border-color: var(--chrome-3); }
.time-close .lead strong { color: var(--ink); font-weight: 500; }

/* ─────────────────────────────────────────────────────────────
   Form + Cal embed
   ───────────────────────────────────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 960px) { .contact-grid { grid-template-columns: 1fr; } }

.form-card { padding: 36px; }
.form-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.form-card .muted { font-size: 14px; color: var(--ink-mute); margin-bottom: 28px; }

.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.75);
  color: var(--ink);
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease, background 200ms ease;
  width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--chrome-3);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(46,107,255,0.12);
}

.radios { display: flex; gap: 8px; flex-wrap: wrap; }
.radios label {
  flex: 1 1 auto;
  text-align: center;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
  cursor: pointer;
  transition: all 180ms ease;
  background: rgba(255,255,255,0.6);
}
.radios label.active {
  border-color: var(--chrome-3);
  color: var(--chrome-3);
  background: rgba(46,107,255,0.07);
  font-weight: 500;
}
.radios input { display: none; }

.form-success {
  padding: 36px 28px;
  text-align: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(232,241,255,0.6), rgba(255,255,255,0.6));
  border: 1px solid rgba(46,107,255,0.15);
}
.form-success .check {
  width: 56px; height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2E6BFF, #7DB9FF);
  color: #fff;
  display: grid; place-items: center;
  font-size: 26px;
  box-shadow: 0 12px 28px rgba(46,107,255,0.30);
}

/* ─────────────────────────────────────────────────────────────
   WhatsApp card (replaces Cal embed)
   ───────────────────────────────────────────────────────────── */

.wa-card {
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.wa-head {
  display: flex;
  align-items: center;
  gap: 16px;
}
.wa-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.30);
}
.wa-avatar svg { width: 28px; height: 28px; }
.wa-head strong {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}
.wa-head span {
  font-size: 13.5px;
  color: var(--ink-mute);
}

.wa-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 24px;
  border: 1px solid var(--hairline);
  border-radius: 16px;
  background: rgba(255,255,255,0.45);
}
.wa-info-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: baseline;
}
.wa-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--chrome-3);
  font-weight: 500;
}
.wa-value {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}

.wa-foot {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 4px;
}
.wa-foot strong {
  font-family: var(--font-mono);
  font-size: 18px;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-weight: 500;
}
.wa-foot span {
  font-size: 13px;
  color: var(--ink-mute);
}
.cal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; }
.cal-head .who { display: flex; align-items: center; gap: 10px; }
.cal-head .avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #C7D9F0, #2E6BFF 60%, #0B3A8C);
}
.cal-head .who-text strong { font-family: var(--font-display); font-size: 14px; display: block; }
.cal-head .who-text span { font-size: 12px; color: var(--ink-mute); }
.cal-head .badge {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--chrome-3);
  border: 1px solid rgba(46,107,255,0.3);
  padding: 4px 10px;
  border-radius: 999px;
}

.cal-month {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 22px;
}
.cal-dow {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-mute);
  text-align: center;
  padding: 8px 0;
}
.cal-day {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.5);
  border: 1px solid transparent;
  transition: all 180ms ease;
  cursor: pointer;
}
.cal-day.available { border-color: var(--line); color: var(--ink); background: rgba(232,241,255,0.5); }
.cal-day.available:hover { border-color: var(--chrome-3); background: rgba(46,107,255,0.10); }
.cal-day.selected { background: linear-gradient(135deg, #2E6BFF, #7DB9FF); color: #fff; border-color: transparent; box-shadow: 0 8px 20px rgba(46,107,255,0.30); }
.cal-day.muted { opacity: 0.4; }

.cal-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: auto;
}
.cal-slot {
  padding: 12px 8px;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12.5px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  transition: all 180ms ease;
  cursor: pointer;
}
.cal-slot:hover { border-color: var(--chrome-3); background: rgba(46,107,255,0.07); }
.cal-slot.selected { background: linear-gradient(135deg, #2E6BFF, #7DB9FF); color: #fff; border-color: transparent; }

.cal-foot { margin-top: 18px; font-size: 13px; color: var(--ink-mute); text-align: center; }

/* ─────────────────────────────────────────────────────────────
   Footer — minimal dark
   ───────────────────────────────────────────────────────────── */

footer.foot-mini {
  position: relative;
  z-index: 2;
  margin-top: 100px;
  background: #06080F;
  color: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 80px 80px -60px rgba(0,0,0,0.5);
}

.foot-mini-shell {
  padding: 56px 32px 30px;
}

.foot-mini-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  padding-bottom: 36px;
}

.foot-mini-summary {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  max-width: 46ch;
  margin: 0;
}

.foot-mini-middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 0 28px;
}

.foot-mini-legal {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
}
.foot-mini-legal a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 200ms ease;
}
.foot-mini-legal a:hover { color: #fff; }
.foot-mini-legal .sep {
  color: rgba(255, 255, 255, 0.25);
}

.foot-mini-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.foot-mini-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 200ms ease, border-color 200ms ease, background 200ms ease, transform 200ms ease;
}
.foot-mini-social a:hover {
  color: #fff;
  border-color: rgba(46, 107, 255, 0.55);
  background: rgba(46, 107, 255, 0.10);
  transform: translateY(-2px);
}
.foot-mini-social svg { width: 16px; height: 16px; }

.foot-mini-loc {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 640px) {
  .foot-mini-shell { padding: 40px 20px 24px; }
  .foot-mini-top { flex-direction: column; gap: 24px; padding-bottom: 24px; }
  .foot-mini-middle { flex-direction: column; align-items: flex-start; gap: 20px; padding: 20px 0; }
  .foot-mini-legal { gap: 10px; }
}

.foot-mini-logo {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  text-decoration: none;
  transition: opacity 200ms ease;
}
.foot-mini-logo:hover { opacity: 0.85; }

.foot-mini-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #C7D9F0, #2E6BFF 60%, #0B3A8C 100%);
  box-shadow: 0 0 12px rgba(46, 107, 255, 0.55);
  align-self: center;
  animation: dotPulse 3.2s ease-in-out infinite;
}

.foot-mini-wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1;
}

.foot-mini-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: -0.01em;
  line-height: 1;
}

.foot-mini-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.foot-mini-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2E6BFF 0%, #5B8DEF 55%, #7DB9FF 100%);
  color: #fff;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  box-shadow: 0 8px 22px rgba(46, 107, 255, 0.35), inset 0 1px 0 rgba(255,255,255,0.30);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 240ms ease;
}
.foot-mini-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(46, 107, 255, 0.50), inset 0 1px 0 rgba(255,255,255,0.40);
}
.foot-mini-cta .arrow { transition: transform 200ms ease; display: inline-flex; }
.foot-mini-cta:hover .arrow { transform: translate(2px, -2px); }

.foot-mini-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  padding: 6px 0;
  transition: color 200ms ease;
}
.foot-mini-link:hover { color: #fff; }
.foot-mini-link .arrow { display: inline-flex; transition: transform 200ms ease; opacity: 0.7; }
.foot-mini-link:hover .arrow { transform: translate(2px, -2px); opacity: 1; }

.foot-mini-line {
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(255, 255, 255, 0.10) 15%,
    rgba(255, 255, 255, 0.10) 85%,
    transparent 100%);
}

.foot-mini-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.50);
}
.foot-mini-bottom a {
  color: rgba(255, 255, 255, 0.60);
  text-decoration: none;
  transition: color 200ms ease;
}
.foot-mini-bottom a:hover { color: #fff; }

@media (max-width: 640px) {
  .foot-mini-top { flex-direction: column; align-items: flex-start; gap: 24px; padding-bottom: 28px; }
}

/* Floating socials (right-edge) */
.floating-socials {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 320ms cubic-bezier(0.16, 1, 0.3, 1), opacity 280ms ease;
}
.floating-socials.hidden { transform: translate(80px, -50%); opacity: 0; pointer-events: none; }
.floating-socials.visible { opacity: 1; }
.floating-socials a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--ink-soft);
  text-decoration: none;
  transition: all 240ms ease;
}
.floating-socials a:hover {
  color: var(--chrome-3);
  border-color: rgba(46,107,255,0.4);
  box-shadow: 0 0 0 6px rgba(46,107,255,0.10), 0 8px 20px rgba(46,107,255,0.20);
}

@media (max-width: 720px) { .floating-socials { display: none; } }

/* In-view reveal — use keyframes (transitions get stuck in some iframes) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
}
.reveal.in {
  opacity: 1;
  transform: none;
  animation: revealIn 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes revealIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .cursor-dot, .cursor-halo { display: none; }
  html, body { cursor: auto; }
}

.form-sent {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(46, 107, 255, 0.08);
  border: 1px solid rgba(46, 107, 255, 0.25);
  color: var(--chrome-4);
  font-size: 0.9rem;
  line-height: 1.5;
}
