/* ──────────────────────────────────────────────────────────────────
   LexSuite — Dark editorial redesign (2026-05-08)
   Aesthetic ported from lexpocket.io: near-black bg, neon magenta
   accent, Fraunces variable italic + Poppins 300, JetBrains Mono
   chips, generous whitespace, grain overlay, cursor blob.
   ────────────────────────────────────────────────────────────────── */

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

:root {
  --bg:           #050608;
  --bg-elev:      #0c0d11;
  --bg-card:      #101117;
  --bg-hover:     #15161d;
  --border:       #1a1b22;
  --border-soft:  #23252d;

  --text:         #f4f4f5;
  --text-dim:     #a1a1aa;
  --text-quiet:   #6b6b74;

  --pink:         #ff74f3;
  --pink-deep:    #d946ef;
  --pink-glow:    rgba(255, 116, 243, 0.20);
  --pink-soft:    rgba(255, 116, 243, 0.08);

  --teal:         #5eead4;
  --amber:        #fcd34d;
  --violet:       #a78bfa;

  --serif:        'Fraunces', 'Times New Roman', serif;
  --sans:         'Poppins', system-ui, -apple-system, sans-serif;
  --mono:         'JetBrains Mono', 'SF Mono', ui-monospace, monospace;

  --max:          1280px;
  --gutter:       clamp(20px, 5vw, 64px);
  --section-pad:  clamp(56px, 7vw, 96px);
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
}

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: var(--pink); color: #000; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--pink); outline-offset: 3px; border-radius: 4px; }

/* ─── Grain overlay (subtle film texture) ─── */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ─── Cursor blob ─── */
.cursor-blob {
  position: fixed; top: 0; left: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--pink);
  border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), background 0.25s var(--ease);
  mix-blend-mode: difference;
}
.cursor-blob.is-hover {
  width: 72px; height: 72px;
  background: var(--pink); border-color: transparent;
}
@media (pointer: coarse) { .cursor-blob { display: none; } }

/* ─── Container ─── */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── Section label (§ XX — title — ───) ─── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-quiet);
  margin: 0 0 28px;
}
.section-label .mark {
  color: var(--pink);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1;
  font-variation-settings: 'SOFT' 100, 'WONK' 1, 'opsz' 36;
}
.section-label .line {
  width: 56px; height: 1px;
  background: var(--border-soft);
}

/* ─── Headings ─── */
h1, h2, h3, h4 { letter-spacing: -0.02em; font-weight: 300; }
h1 {
  font-family: var(--sans);
  font-size: clamp(44px, 8.4vw, 124px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  color: var(--text);
  font-weight: 300;
}
h1 em, .accent {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
  font-variation-settings: 'SOFT' 100, 'WONK' 1, 'opsz' 144;
  white-space: nowrap;
}
h2 {
  font-family: var(--sans);
  font-size: clamp(32px, 5vw, 64px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--text);
  font-weight: 300;
}
h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--pink);
  font-variation-settings: 'SOFT' 100, 'WONK' 1, 'opsz' 96;
}
h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.1;
  font-variation-settings: 'SOFT' 80, 'opsz' 36;
  color: var(--text);
}
h3 em {
  color: var(--pink);
  font-variation-settings: 'SOFT' 100, 'WONK' 1, 'opsz' 48;
}
h4 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 19px;
  letter-spacing: -0.01em;
}

p { color: var(--text-dim); max-width: 60ch; }
p.lead {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 56ch;
  font-weight: 300;
}

/* ─── Header (fixed, blurred) ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px var(--gutter);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease);
}
@media (max-width: 879px) {
  .header-actions .btn-ghost { display: none; }
  .header-actions { gap: 12px; }
  .lang { margin-left: 8px; }
}
.site-header.scrolled { border-bottom-color: var(--border); }

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-weight: 500; font-size: 19px; letter-spacing: -0.02em;
  color: var(--text);
  transition: transform 0.4s var(--ease);
}
.brand:hover { transform: translateY(-1px); }
.brand .brand-mark {
  width: 28px; height: 28px;
  filter: drop-shadow(0 0 12px rgba(255, 116, 243, 0.45));
  animation: lex-glow 4.5s ease-in-out infinite;
  transition: transform 0.5s var(--ease);
}
.brand:hover .brand-mark {
  animation: none;
  filter: drop-shadow(0 0 18px rgba(255, 116, 243, 0.85));
  transform: rotate(60deg);
}
.brand:hover .lex-tri { animation: none; opacity: 1; transform: scale(1) rotate(0); }
.brand:hover .lex-xcut { animation: none; stroke-dashoffset: 0; }
.brand .brand-name { line-height: 1; }

/* assembly loop — 6 triangles pop in, X cut draws, hold, fade out, repeat */
.lex-tri {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  opacity: 0;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lex-tri-0 { animation-name: lex-tri-0; }
.lex-tri-1 { animation-name: lex-tri-1; }
.lex-tri-2 { animation-name: lex-tri-2; }
.lex-tri-3 { animation-name: lex-tri-3; }
.lex-tri-4 { animation-name: lex-tri-4; }
.lex-tri-5 { animation-name: lex-tri-5; }
.lex-xcut {
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation-duration: 5s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.65, 0, 0.35, 1);
}
.lex-xcut-a { animation-name: lex-xcut-a; }
.lex-xcut-b { animation-name: lex-xcut-b; }

@keyframes lex-tri-0 {
  0%   { opacity: 0; transform: scale(0) rotate(-90deg); }
  4%   { opacity: 1; transform: scale(1.08) rotate(0); }
  6%   { opacity: 1; transform: scale(1) rotate(0); }
  85%  { opacity: 1; transform: scale(1) rotate(0); }
  95%  { opacity: 0; transform: scale(0.9) rotate(0); }
  100% { opacity: 0; transform: scale(0) rotate(-90deg); }
}
@keyframes lex-tri-1 {
  0%, 5%   { opacity: 0; transform: scale(0) rotate(-90deg); }
  9%       { opacity: 1; transform: scale(1.08) rotate(0); }
  11%      { opacity: 1; transform: scale(1) rotate(0); }
  85%      { opacity: 1; transform: scale(1) rotate(0); }
  95%      { opacity: 0; transform: scale(0.9) rotate(0); }
  100%     { opacity: 0; transform: scale(0) rotate(-90deg); }
}
@keyframes lex-tri-2 {
  0%, 10%  { opacity: 0; transform: scale(0) rotate(-90deg); }
  14%      { opacity: 1; transform: scale(1.08) rotate(0); }
  16%      { opacity: 1; transform: scale(1) rotate(0); }
  85%      { opacity: 1; transform: scale(1) rotate(0); }
  95%      { opacity: 0; transform: scale(0.9) rotate(0); }
  100%     { opacity: 0; transform: scale(0) rotate(-90deg); }
}
@keyframes lex-tri-3 {
  0%, 15%  { opacity: 0; transform: scale(0) rotate(-90deg); }
  19%      { opacity: 1; transform: scale(1.08) rotate(0); }
  21%      { opacity: 1; transform: scale(1) rotate(0); }
  85%      { opacity: 1; transform: scale(1) rotate(0); }
  95%      { opacity: 0; transform: scale(0.9) rotate(0); }
  100%     { opacity: 0; transform: scale(0) rotate(-90deg); }
}
@keyframes lex-tri-4 {
  0%, 20%  { opacity: 0; transform: scale(0) rotate(-90deg); }
  24%      { opacity: 1; transform: scale(1.08) rotate(0); }
  26%      { opacity: 1; transform: scale(1) rotate(0); }
  85%      { opacity: 1; transform: scale(1) rotate(0); }
  95%      { opacity: 0; transform: scale(0.9) rotate(0); }
  100%     { opacity: 0; transform: scale(0) rotate(-90deg); }
}
@keyframes lex-tri-5 {
  0%, 25%  { opacity: 0; transform: scale(0) rotate(-90deg); }
  29%      { opacity: 1; transform: scale(1.08) rotate(0); }
  31%      { opacity: 1; transform: scale(1) rotate(0); }
  85%      { opacity: 1; transform: scale(1) rotate(0); }
  95%      { opacity: 0; transform: scale(0.9) rotate(0); }
  100%     { opacity: 0; transform: scale(0) rotate(-90deg); }
}
@keyframes lex-xcut-a {
  0%, 35%  { stroke-dashoffset: 260; }
  47%      { stroke-dashoffset: 0; }
  90%      { stroke-dashoffset: 0; }
  100%     { stroke-dashoffset: 260; }
}
@keyframes lex-xcut-b {
  0%, 40%  { stroke-dashoffset: 260; }
  52%      { stroke-dashoffset: 0; }
  90%      { stroke-dashoffset: 0; }
  100%     { stroke-dashoffset: 260; }
}
@keyframes lex-glow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(255,116,243,0.5)); }
  50%      { filter: drop-shadow(0 0 18px rgba(255,116,243,0.95)); }
}

@media (prefers-reduced-motion: reduce) {
  .lex-tri, .lex-xcut, .brand .brand-mark { animation: none; }
  .lex-tri { opacity: 1; }
  .lex-xcut { stroke-dashoffset: 0; }
}

.nav {
  display: none;
  gap: 28px;
}
.nav a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.2s var(--ease);
}
.nav a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang {
  display: inline-flex; gap: 4px; align-items: center;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  color: var(--text-quiet);
}
.lang button {
  padding: 4px 8px;
  color: var(--text-quiet);
  font: inherit; letter-spacing: inherit;
  border-radius: 4px;
  background: transparent;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.lang button:hover { color: var(--text); }
.lang button.active {
  color: var(--pink);
  background: var(--pink-soft);
}
.lang .sep { color: var(--text-quiet); opacity: 0.5; }

@media (min-width: 880px) { .nav { display: flex; } }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 100px;
  font-family: var(--sans); font-size: 14px; font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease),
              color 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
  white-space: nowrap;
}
.btn-primary { background: var(--pink); color: #000; }
.btn-primary:hover { background: #fff; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--pink); color: var(--pink); }
.btn-text {
  display: inline-flex; gap: 6px; align-items: center;
  font-family: var(--sans);
  font-size: 14px; color: var(--text);
  padding: 6px 0;
  border-bottom: 1px solid var(--pink);
  border-radius: 0;
}
.btn-text::after {
  content: '↗';
  font-family: var(--serif); font-style: italic; font-size: 16px;
  color: var(--pink);
  transition: transform 0.2s var(--ease);
}
.btn-text:hover::after { transform: translate(2px, -2px); }

/* ─── Hero ─── */
.hero {
  padding: 140px var(--gutter) var(--section-pad);
  position: relative; overflow: hidden;
}
.hero::before {
  /* Atmospheric pink mesh in the background */
  content: ''; position: absolute; inset: -10% -10% auto auto;
  width: 80%; height: 90%;
  background: radial-gradient(ellipse at top right,
    var(--pink-glow) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }
.hero .badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 40px;
  background: var(--bg-elev);
}
.hero .badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 4px var(--pink-soft);
}
.hero h1 { margin-bottom: 36px; }
.hero p.lead { margin-bottom: 44px; }
.hero p.lead strong { color: var(--text); font-weight: 400; }
.hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  margin-top: 96px;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
}
.hero-stats .stat {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
}
.hero-stats .stat:nth-child(odd)  { padding-right: 24px; border-right: 1px solid var(--border); }
.hero-stats .stat:nth-child(even) { padding-left: 24px; }
.hero-stats .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 38px;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.03em;
  font-variation-settings: 'SOFT' 80, 'opsz' 48;
}
.hero-stats .num.accent { color: var(--pink); font-variation-settings: 'SOFT' 100, 'WONK' 1, 'opsz' 48; }
.hero-stats .stat-icon { width: 38px; height: 38px; display: block; color: var(--pink); }
.hero-stats .label {
  margin-top: 10px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-quiet);
}
@media (min-width: 720px) {
  .hero-stats { grid-template-columns: repeat(4, 1fr); }
  .hero-stats .stat { padding-left: 24px; padding-right: 24px; border-right: 1px solid var(--border); }
  .hero-stats .stat:first-child { padding-left: 0; }
  .hero-stats .stat:last-child { border-right: none; padding-right: 0; }
}

/* ─── Section ─── */
.section { padding: var(--section-pad) 0; position: relative; }
.section.tinted { background: var(--bg-elev); }
.section.bordered { border-top: 1px solid var(--border); }
.section-head { max-width: 760px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-head p.lead { margin-top: 22px; }

/* ─── Personas ─── */
.persona {
  display: grid;
  gap: 56px;
  padding: clamp(48px, 7vw, 88px) 0;
  border-top: 1px solid var(--border);
}
.persona:first-of-type { border-top: none; padding-top: 0; }

.persona .lead-side h3 { margin: 14px 0 18px; }
.persona .lead-side p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.55;
  font-variation-settings: 'SOFT' 50, 'opsz' 24;
  max-width: 38ch;
}
.persona .ctas { margin-top: 28px; display: flex; gap: 14px; flex-wrap: wrap; }

.persona .feats { list-style: none; padding: 0; margin: 0; }
.persona .feats li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: baseline;
}
.persona .feats li:last-child { border-bottom: none; }
.persona .feats li:hover .feat-title { color: var(--pink); }
.persona .feats .marker {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-quiet);
  letter-spacing: 0.04em;
  padding-top: 4px;
}
.persona .feats .feat-title {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
  transition: color 0.2s var(--ease);
}
.persona .feats .feat-desc {
  font-size: 13px;
  color: var(--text-quiet);
  line-height: 1.55;
}

@media (min-width: 920px) {
  .persona { grid-template-columns: 5fr 7fr; gap: 96px; }
}

/* ─── Feature grid (Tecnología) ─── */
.feature-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
@media (min-width: 720px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
.feature-cell {
  background: var(--bg-card);
  padding: 40px 36px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background 0.3s var(--ease);
}
.feature-cell:hover { background: var(--bg-hover); }
.feature-cell .num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--pink);
}
.feature-cell h4 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--text);
  font-variation-settings: 'SOFT' 80, 'opsz' 36;
  margin: 0;
}
.feature-cell p { font-size: 14px; color: var(--text-dim); margin: 0; max-width: 48ch; }

/* ─── Mobile section ─── */
.mobile-section .badges {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px;
}
.store-badge {
  position: relative;
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 22px;
  border-radius: 14px;
  background: var(--text); color: #000;
  font-weight: 500; font-size: 14px; line-height: 1.1;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.store-badge:hover { background: var(--pink); transform: translateY(-1px); }
.store-badge .small { font-size: 10px; opacity: 0.7; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400; }
.store-badge .big { font-family: var(--serif); font-style: italic; font-size: 16px; font-weight: 400; }

.mobile-features {
  list-style: none; padding: 0; margin: 36px 0 0;
  display: grid; gap: 14px;
}
.mobile-features li {
  display: grid; grid-template-columns: auto 1fr; gap: 14px;
  align-items: baseline; font-size: 15px; color: var(--text);
}
.mobile-features .em-dash { color: var(--pink); font-family: var(--serif); font-style: italic; font-size: 18px; }

.pocket-spread {
  display: grid;
  gap: 56px;
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .pocket-spread { grid-template-columns: 7fr 5fr; gap: 80px; }
}
.pocket-device { display: flex; justify-content: center; }
.iphone-frame {
  position: relative;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 9 / 19.5;
  background: #0a0a0d;
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 0 0 2px #2a2a32 inset,
    0 0 0 8px #0a0a0d,
    0 40px 80px -20px rgba(0,0,0,0.7),
    0 0 60px -20px rgba(255,116,243,0.25);
}
.iphone-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 32px;
}

/* ─── Pillars (RPA / Data / IA) ─── */
.pillars { display: grid; gap: 48px; }
@media (min-width: 880px) { .pillars { grid-template-columns: repeat(3, 1fr); gap: 56px; } }
.pillar {
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.pillar:hover { border-color: var(--pink-deep); background: var(--bg-hover); }
.pillar .num {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--pink); margin-bottom: 18px;
}
.pillar h4 {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(22px, 2.6vw, 28px);
  letter-spacing: -0.01em;
  margin: 0 0 14px; line-height: 1.15;
  color: var(--text);
  font-variation-settings: 'SOFT' 80, 'opsz' 36;
}
.pillar p { font-size: 14px; color: var(--text-dim); margin: 0; }
.pillar .metric {
  margin-top: 28px; padding-top: 20px;
  border-top: 1px solid var(--border);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-quiet);
}
.pillar .metric strong {
  display: block;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 30px; line-height: 1;
  color: var(--pink);
  letter-spacing: -0.02em; text-transform: none;
  margin-top: 6px;
  font-variation-settings: 'SOFT' 100, 'WONK' 1, 'opsz' 48;
}

/* ─── CEO ─── */
.ceo-quote {
  font-family: var(--serif);
  font-style: italic; font-weight: 300;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  max-width: 22ch;
  margin: 0;
  font-variation-settings: 'SOFT' 100, 'WONK' 1, 'opsz' 96;
}
.ceo-quote::before { content: '“'; color: var(--pink); margin-right: 4px; }
.ceo-quote::after { content: '”'; color: var(--pink); margin-left: 2px; }
.ceo-attribution { margin-top: 36px; }
.ceo-attribution strong {
  display: block;
  font-family: var(--sans);
  font-weight: 500; font-size: 16px;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.ceo-attribution span {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-quiet);
}

/* ─── Form ─── */
.lead-form { display: grid; gap: 22px; max-width: 640px; }
.lead-form label {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-quiet);
  display: block; margin-bottom: 8px;
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--sans); font-size: 15px; font-weight: 300;
  color: var(--text);
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: var(--text-quiet); }
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--pink);
  background: var(--bg-card);
}
.lead-form select {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%23a1a1aa' stroke-width='1.5'><path d='M1 1.5L6 6L11 1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.lead-form textarea { min-height: 110px; resize: vertical; line-height: 1.5; }
.lead-form .row-2 { display: grid; gap: 22px; }
@media (min-width: 640px) { .lead-form .row-2 { grid-template-columns: 1fr 1fr; } }
.lead-form button[type="submit"] { justify-self: start; margin-top: 12px; }
.lead-status {
  font-family: var(--mono); font-size: 12px; margin-top: 12px;
}
.lead-status.success { color: var(--teal); }
.lead-status.error   { color: #f87171; }

.form-perks {
  list-style: none; padding: 0; margin: 32px 0 0;
  display: grid; gap: 10px;
  font-size: 13px; color: var(--text-dim);
}
.form-perks li::before {
  content: '— '; color: var(--pink);
  font-family: var(--serif); font-style: italic;
  margin-right: 6px;
}

/* ─── Footer ─── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 36px;
  background: var(--bg-elev);
}
.site-footer .wrap { display: grid; gap: 48px; }
.footer-cols {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 720px) { .footer-cols { grid-template-columns: repeat(4, 1fr); } }
.footer-cols h5 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-quiet);
  margin: 0 0 16px; font-weight: 500;
}
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-cols a {
  font-size: 13px; color: var(--text-dim);
  transition: color 0.2s var(--ease);
}
.footer-cols a:hover { color: var(--pink); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--text-quiet);
}
.footer-bottom .made { color: var(--text-dim); }
.footer-bottom .made .mark {
  color: var(--pink);
  font-family: var(--serif); font-style: italic;
  font-variation-settings: 'SOFT' 100, 'WONK' 1, 'opsz' 18;
}

/* ─── Reveal on scroll ─── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.9s var(--ease-out),
    transform 0.9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* Staggered hero entrance: each direct child of .hero .wrap fades in
   with a slight delay so the title, lead, ctas, mockup and stats land
   in sequence instead of all at once. */
.hero .wrap > .reveal:nth-child(1) { transition-delay: 0.05s; }
.hero .wrap > .reveal:nth-child(2) { transition-delay: 0.18s; }
.hero .wrap > .reveal:nth-child(3) { transition-delay: 0.32s; }
.hero .wrap > .reveal:nth-child(4) { transition-delay: 0.46s; }
.hero .wrap > .reveal:nth-child(5) { transition-delay: 0.60s; }
.hero .wrap > .reveal:nth-child(6) { transition-delay: 0.74s; }

/* Stagger feature cells inside the platform grid */
.feature-grid .feature-cell { transition: background 0.35s var(--ease), transform 0.4s var(--ease); }
.feature-grid .feature-cell:hover { transform: translateY(-2px); }

/* Smooth pillar lift */
.pillar { transition: border-color 0.45s var(--ease), background 0.45s var(--ease), transform 0.5s var(--ease); }
.pillar:hover { transform: translateY(-3px); }

/* Soft entrance for persona feature lists */
.persona .feats li {
  transition: padding 0.3s var(--ease), background 0.3s var(--ease);
}
.persona .feats li:hover {
  background: var(--bg-elev);
  padding-left: 12px;
  border-radius: 4px;
}

/* Smooth anchor scroll target offset for the sticky header */
:target { scroll-margin-top: 96px; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero .wrap > .reveal { transition-delay: 0s !important; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ─── Hero mockups (laptop + phone) ─── */
.hero-mockups {
  margin-top: 64px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
}
@media (min-width: 880px) {
  .hero-mockups { grid-template-columns: 1.6fr 0.6fr; gap: 48px; }
}
.mockup-frame {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.6),
              0 0 0 1px var(--border);
}
.mockup-frame.laptop { aspect-ratio: 1865 / 949; }
.mockup-frame.laptop img { object-fit: contain; background: var(--bg-card); }
.mockup-frame.phone {
  aspect-ratio: 9 / 18;
  border-radius: 28px;
  margin: 0 auto;
  max-width: 280px;
  border: 8px solid #1a1b22;
  box-shadow: 0 30px 60px -10px rgba(0,0,0,0.7);
}
.mockup-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Fallback placeholder UI when no real screenshot is set */
.mockup-frame .stub {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  background:
    linear-gradient(160deg, rgba(255,116,243,0.08), transparent 60%),
    var(--bg-card);
}
.mockup-frame.laptop .topbar {
  height: 28px;
  background: var(--bg-elev);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 6px; padding: 0 12px;
}
.mockup-frame.laptop .topbar::before,
.mockup-frame.laptop .topbar::after,
.mockup-frame.laptop .topbar .dot3 {
  content: ''; width: 10px; height: 10px; border-radius: 50%;
  background: var(--border-soft);
}
.mockup-frame .stub .body {
  flex: 1; padding: 24px;
  display: grid; gap: 12px;
}
.mockup-frame .stub .row {
  height: 12px; background: var(--border); border-radius: 4px;
}
.mockup-frame .stub .row.long { width: 70%; }
.mockup-frame .stub .row.short { width: 40%; background: var(--pink-soft); }
.mockup-frame .stub .row.med { width: 55%; }
.mockup-frame .stub .grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-top: 14px;
}
.mockup-frame .stub .card {
  height: 70px; background: var(--bg-elev);
  border: 1px solid var(--border-soft); border-radius: 8px;
}
.mockup-frame .stub .card.accent { border-color: var(--pink); }

/* ─── CEO photo ─── */
.ceo-spread {
  display: grid;
  gap: 48px;
  align-items: start;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .ceo-spread { grid-template-columns: 5fr 7fr; gap: 80px; }
}
.ceo-photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  aspect-ratio: 4 / 5;
  max-width: 380px;
}
.ceo-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: contrast(1.04) saturate(0.95);
  display: block;
}
.ceo-photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(5,6,8,0.55));
  pointer-events: none;
}
.ceo-photo .badge {
  position: absolute; left: 16px; bottom: 16px; z-index: 1;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text);
}
.ceo-photo .badge .role {
  display: block;
  color: var(--pink); margin-top: 4px;
  font-family: var(--serif); font-style: italic; font-size: 14px;
  text-transform: none; letter-spacing: 0;
  font-variation-settings: 'SOFT' 100, 'WONK' 1, 'opsz' 18;
}

.ceo-letter p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  font-weight: 300;
  margin-bottom: 18px;
  max-width: 56ch;
}
.ceo-letter p em {
  color: var(--pink);
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-variation-settings: 'SOFT' 100, 'WONK' 1, 'opsz' 24;
}
.ceo-letter .signature {
  margin-top: 32px;
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 28px; color: var(--pink);
  font-variation-settings: 'SOFT' 100, 'WONK' 1, 'opsz' 36;
}
.ceo-letter .role-tag {
  margin-top: 8px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-quiet);
}

/* ─── Utilities ─── */
.hr { height: 1px; background: var(--border); border: none; margin: 0; }
.measured { max-width: 60ch; }
.muted { color: var(--text-dim); }
.quiet { color: var(--text-quiet); }
.serif-italic {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-variation-settings: 'SOFT' 100, 'WONK' 1, 'opsz' 36;
}
