:root {
  /* Monochrome palette anchored to black logo (#0f0f0f) */
  --ink: #0f0f0f;
  --on-accent: #ffffff;

  --bg-void: #eeede8;
  --bg-deep: #f5f4f0;
  --bg: #faf9f6;
  --surface: #ffffff;
  --surface-elevated: #ffffff;
  --border: rgba(15, 15, 15, 0.1);
  --border-active: rgba(15, 15, 15, 0.24);

  --navy: var(--bg);
  --navy-deep: var(--bg-deep);
  --navy-card: var(--surface);
  --navy-border: var(--border);

  --coral: var(--ink);
  --coral-bright: #2a2a2a;
  --orange: var(--ink);
  --orange-soft: rgba(15, 15, 15, 0.07);

  --steel: #8a8a8a;
  --cyan: #5c5c5c;
  --cyan-soft: rgba(15, 15, 15, 0.05);
  --cyan-glow: rgba(15, 15, 15, 0.1);

  --white: #0f0f0f;
  --muted: #6e6e6e;
  --text: #2e2e2e;

  --gradient-brand: linear-gradient(135deg, #3a3a3a 0%, #0f0f0f 100%);
  --gradient-surface: linear-gradient(160deg, rgba(15, 15, 15, 0.03) 0%, transparent 55%);

  --shadow-soft: 0 20px 50px rgba(15, 15, 15, 0.08);
  --shadow-card: 0 12px 32px rgba(15, 15, 15, 0.06);

  --font: "Times New Roman", Times, serif;
  --font-display: "Times New Roman", Times, serif;
  --font-mono: "JetBrains Mono", "Consolas", monospace;
  --max: 1200px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --spot-x: 50%;
  --spot-y: 40%;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(var(--max), 100% - 48px);
  margin-inline: auto;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.nav--scrolled {
  background: rgba(250, 249, 246, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--navy-border);
  box-shadow: 0 1px 0 rgba(15, 15, 15, 0.04);
}

.nav__inner {
  width: min(var(--max), 100% - 48px);
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__brand { flex-shrink: 0; }

.logo-plate {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.logo-plate--nav {
  background: transparent;
  padding: 0;
}

.logo-plate--nav img {
  height: 32px;
  width: auto;
  transition: opacity 0.2s var(--ease);
}

.nav__brand:hover .logo-plate--nav img { opacity: 0.72; }

.logo-plate--hero {
  flex-direction: column;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.logo-plate--hero::before {
  display: none;
}

.logo-plate--hero img {
  width: min(440px, 72vw);
  filter: none;
  image-rendering: auto;
}

.logo-plate--footer {
  background: transparent;
  padding: 0;
}

.logo-plate--footer img {
  height: 26px;
  width: auto;
  opacity: 0.85;
}

.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav__links a:hover { color: var(--white); }

.nav__lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  flex-shrink: 0;
  padding: 4px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface);
}

.nav__lang-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  padding: 7px 10px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.nav__lang-btn.is-active {
  background: var(--ink);
  color: var(--on-accent);
}

.nav__lang-btn:hover:not(.is-active) {
  color: var(--white);
}

.nav__lang-sep {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--border-active);
  user-select: none;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background 0.2s, border-color 0.2s;
}

.btn:active { transform: scale(0.98); }

.btn--primary {
  background: var(--ink);
  color: var(--on-accent);
}

.btn--primary:hover {
  background: #2a2a2a;
  box-shadow: 0 8px 24px rgba(15, 15, 15, 0.18);
}

.btn--ghost {
  border-color: var(--navy-border);
  color: var(--ink);
  background: transparent;
}

.btn--ghost:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(15, 15, 15, 0.04);
}

.btn--lg { padding: 16px 32px; font-size: 16px; }

/* Hero */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(15, 15, 15, 0.04), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 80%, rgba(15, 15, 15, 0.03), transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  padding-block: 80px 64px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 16px;
}

.hero__gou-lines {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  width: 100%;
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2.5vw, 22px);
}

.hero__gou-line {
  display: grid;
  grid-template-columns: clamp(2rem, 4.5vw, 3rem) 1fr;
  gap: 0.5em 0.75em;
  align-items: baseline;
  margin: 0;
}

.hero__gou-key {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--white);
}

.hero__gou-text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: var(--text);
  text-wrap: balance;
}

.hero__gou-lines li:last-child {
  margin-bottom: 0;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 24px;
}

.hero__accent {
  color: var(--orange);
}

.hero__lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 52ch;
  margin: 0 0 32px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
  padding-top: 28px;
  border-top: 1px solid var(--navy-border);
  width: 100%;
}

.hero__stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.hero__stats span {
  font-size: 13px;
  color: var(--muted);
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__logo-wrap {
  position: relative;
  z-index: 2;
}

.hero__logo {
  display: block;
}

.hero__tagline {
  margin: 18px 0 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-align: center;
  max-width: 320px;
}

.orbit {
  position: absolute;
  inset: -20%;
  pointer-events: none;
}

.orbit__ring {
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(15, 15, 15, 0.2);
  border-radius: 50%;
  animation: spin 24s linear infinite;
}

.orbit__dot {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin-left: -6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--orange);
  animation: spin 24s linear infinite;
  transform-origin: 50% 420%;
}

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

/* Sections */
.section {
  padding: 100px 0;
}

.section--dark {
  background: var(--navy);
}

.section--lines {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.section--proof {
  background: var(--navy-deep);
}

.section__head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin: 0 0 16px;
}

.section__sub {
  color: var(--muted);
  font-size: 18px;
  margin: 0;
  line-height: 1.6;
}

/* Lines */
.lines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.line-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
}

.line-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 15, 15, 0.35);
}

.line-card__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.8;
}

.line-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.line-card p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  line-height: 1.55;
}

.line-card ul {
  flex: 1;
  padding-top: 8px;
}

.line-card li {
  font-size: 14px;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--navy-border);
}

.line-card li::before {
  content: "→ ";
  color: var(--orange);
}

.line-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
}

.line-card__tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
  background: var(--orange-soft);
  color: var(--orange);
}

/* Brands */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.brand {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  padding: 24px 18px;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}

.brand:hover {
  border-color: rgba(15, 15, 15, 0.4);
  background: rgba(15, 15, 15, 0.05);
}

.brand h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--orange);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.brand p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

/* Flow */
.flow {
  display: grid;
  grid-template-columns: 1fr auto 1.2fr auto 1fr auto 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
}

.flow__step {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  padding: 24px 20px;
  height: 100%;
}

.flow__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.flow__step li {
  font-size: 14px;
  padding: 6px 0;
  color: var(--text);
}

.flow__arrow {
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  position: relative;
}

.flow__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  border: 5px solid transparent;
  border-left-color: var(--orange);
}

.flow__core {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.flow__core img {
  margin-inline: auto;
  margin-bottom: 8px;
}

.flow__core strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--navy);
}

.flow__core span {
  font-size: 12px;
  color: var(--muted);
}

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

.process span {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--navy-border);
  color: var(--muted);
}

.process span:not(:last-child)::after {
  content: "→";
  margin-left: 12px;
  color: var(--orange);
  font-weight: 400;
}

/* Proof */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.proof-card {
  padding: 28px 24px;
  border-left: 3px solid var(--orange);
  background: var(--navy-card);
  border-radius: 0 16px 16px 0;
}

.proof-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.proof-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Roadmap */
.road-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.road {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  padding: 32px 28px;
  border-top: 4px solid var(--orange);
}

.road__phase {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.road h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin: 8px 0 20px;
}

.road li {
  font-size: 15px;
  padding: 10px 0;
  border-bottom: 1px solid var(--navy-border);
  color: var(--text);
}

.road li::before {
  content: "→ ";
  color: var(--orange);
}

/* CTA */
.section--cta {
  padding: 120px 0;
  background:
    radial-gradient(ellipse at center, rgba(15, 15, 15, 0.04), transparent 60%),
    var(--bg-deep);
}

.cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 28px;
  padding: 56px 48px;
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 12px;
}

.cta p {
  color: var(--muted);
  margin: 0;
  max-width: 48ch;
}

.cta__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

/* Footer */
.footer {
  padding: 48px 0;
  border-top: 1px solid var(--navy-border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer__inner img {
  display: block;
}

.footer__inner p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.footer__copy {
  font-size: 12px;
  color: rgba(15, 15, 15, 0.45);
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal--delay { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Home paths ── */
.hero--home { min-height: min(92dvh, 900px); }
.hero__grid--home {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(32px, 5vw, 72px);
  padding-block: clamp(72px, 10vh, 100px) clamp(48px, 6vh, 64px);
  align-items: center;
}

.hero--home .hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

.hero--home .hero__visual {
  align-self: stretch;
  min-height: clamp(240px, 38vh, 420px);
}

.hero--home .hero__logo-wrap img,
.hero--home .hero__logo {
  width: min(100%, 420px);
  height: auto;
}
.section--paths { padding-top: 60px; }
.section__head--center { text-align: center; margin-inline: auto; }

.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.path-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 32px 28px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 20px;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
  min-height: 280px;
}

.path-card:not([data-tilt]):hover {
  transform: translateY(-6px);
  border-color: rgba(15, 15, 15, 0.45);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.path-card__label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
}

.path-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin: 0;
}

.path-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
  flex: 1;
  margin: 0;
}

.path-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  margin-top: auto;
}

.path-card--talento { border-top: 3px solid var(--orange); }
.path-card--startup { border-top: 3px solid #4a87ff; }
.path-card--empresa { border-top: 3px solid #8b6fff; }

.brands-grid--compact .brand { min-height: 120px; }

.btn--sm { padding: 10px 18px; font-size: 13px; }

/* ── Page hero (subpages) ── */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--nav-h) + 64px) 0 48px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero[data-spotlight] {
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(15, 15, 15, 0.1), transparent 45%),
    linear-gradient(180deg, var(--bg-void) 0%, var(--bg) 100%);
}

.page-hero .tech-canvas {
  opacity: 0.55;
}

.page-hero > .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}

.page-hero__lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 60ch;
  margin: 0;
  line-height: 1.65;
}

/* ── Info cards ── */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.info-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  padding: 28px 24px;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin: 0 0 10px;
}

.info-card p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Skills ── */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.skills-grid div {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 20px 18px;
}

.skills-grid strong {
  display: block;
  color: var(--orange);
  font-size: 14px;
  margin-bottom: 6px;
}

.skills-grid span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* ── Board oportunidades ── */
.board-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.board-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.board-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.board-card__marca {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--orange);
}

.board-card__status {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.board-card__status--open {
  background: rgba(0, 200, 120, 0.15);
  color: #4ade80;
}

.board-card__status--soon {
  background: rgba(74, 135, 255, 0.15);
  color: #93c5fd;
}

.board-card__status--closed {
  background: rgba(139, 163, 199, 0.12);
  color: var(--muted);
}

.board-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin: 0;
  line-height: 1.3;
}

.board-card__desc {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
  flex: 1;
}

.board-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--text);
}

.board-card__meta span {
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 6px;
}

.board-card__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.board-card__skills span {
  font-size: 11px;
  padding: 4px 8px;
  background: var(--orange-soft);
  color: var(--orange);
  border-radius: 4px;
}

.board-card__cta { align-self: flex-start; margin-top: 8px; }
.board-card__muted { font-size: 13px; color: var(--muted); margin-top: 8px; }
.board-empty { color: var(--muted); text-align: center; padding: 40px; }

/* ── Forms ── */
.form {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group span {
  font-size: 13px;
  font-weight: 600;
  color: var(--light);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font);
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--navy-border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-notice {
  font-size: 14px;
  color: var(--orange);
  margin: 0;
}

/* ── Startups expect ── */
.expect-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.expect-box {
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--navy-border);
}

.expect-box--yes {
  background: rgba(0, 200, 120, 0.06);
  border-color: rgba(0, 200, 120, 0.25);
}

.expect-box--no {
  background: rgba(15, 15, 15, 0.06);
  border-color: rgba(15, 15, 15, 0.2);
}

.expect-box h2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin: 0 0 20px;
}

.expect-box li {
  font-size: 15px;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--navy-border);
  line-height: 1.45;
}

.expect-box li:last-child { border-bottom: none; }

/* ── Modes ── */
.modes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mode-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  padding: 28px 24px;
}

.mode-card--featured {
  border-color: var(--orange);
  box-shadow: 0 0 40px var(--orange-soft);
}

.mode-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin: 0 0 8px;
}

.mode-card__for {
  font-size: 13px;
  color: var(--orange);
  margin: 0 0 16px;
}

.mode-card li {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid var(--navy-border);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.showcase-card {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  padding: 24px 20px;
}

.showcase-card strong {
  display: block;
  color: var(--white);
  margin-bottom: 8px;
}

.showcase-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* ── Empresas ── */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.outcome {
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  padding: 28px 24px;
}

.outcome__brand {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--orange);
}

.outcome h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  margin: 8px 0 10px;
}

.outcome p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.process-client {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 640px;
}

.process-client__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--navy-border);
  border-radius: 12px;
  padding: 18px 20px;
}

.process-client__step span {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  border-radius: 8px;
  font-size: 14px;
}

.process-client__step strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
}

.process-client__step p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.case-card {
  padding: 28px 24px;
  background: var(--navy-card);
  border-left: 3px solid var(--orange);
  border-radius: 0 14px 14px 0;
}

.case-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}

.case-card p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* Phase 2 — trust, casos, demos, forms */
.trust-strip {
  padding: 32px 0;
  border-block: 1px solid var(--navy-border);
  background: rgba(15, 15, 15, 0.03);
}

.trust-strip__label {
  margin: 0 0 20px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.trust-strip__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 28px 40px;
}

.trust-strip__logos img {
  height: 28px;
  width: auto;
  opacity: 0.82;
  filter: grayscale(20%);
  transition: opacity 0.2s;
}

.trust-strip__logos img:hover {
  opacity: 1;
  filter: none;
}

.casos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.case-study {
  padding: 28px 24px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.case-study__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.case-study__client {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

.case-study__status {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.case-study__status--done {
  background: rgba(72, 187, 120, 0.15);
  color: #7dcea0;
}

.case-study__status--demo {
  background: rgba(15, 15, 15, 0.15);
  color: var(--orange);
}

.case-study__status--active {
  background: rgba(120, 150, 190, 0.15);
  color: var(--muted);
}

.case-study__marca {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.case-study h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--white);
  line-height: 1.25;
}

.case-study p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.case-study__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.case-study__stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.case-study__stack span {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 6px;
  background: rgba(11, 13, 24, 0.5);
  color: var(--muted);
}

.case-study__link {
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

.case-study__link:hover {
  color: #f57f5e;
}

.metric-chip {
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
}

.metric-chip--sm {
  font-size: 11px;
  padding: 4px 8px;
}

.demo-section__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 32px;
  align-items: start;
}

.demo-embed__frame {
  position: relative;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--navy-border);
  background: #000;
}

.demo-embed__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.demo-embed__caption {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.demo-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.demo-link-card {
  padding: 20px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
}

.demo-link-card strong {
  display: block;
  color: var(--white);
  margin-bottom: 6px;
}

.demo-link-card p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
}

.showcase-card--rich {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}

.showcase-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.showcase-card__tipo {
  font-size: 11px;
  font-weight: 600;
  color: var(--orange);
  white-space: nowrap;
}

.showcase-card__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.showcase-card__foot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
}

.showcase-card__estado {
  font-size: 11px;
  color: var(--muted);
}

.showcase-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.contact-actions .btn--ghost {
  border-color: rgba(139, 163, 199, 0.35);
}

.form-notice--success {
  color: #7dcea0;
}

.form-notice--error {
  color: #f5a082;
}

.form button[type="submit"]:disabled {
  opacity: 0.65;
  cursor: wait;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.footer__legal {
  font-size: 11px;
  color: rgba(139, 163, 199, 0.45);
  max-width: 42ch;
  line-height: 1.4;
}

/* ── Hub interno ── */
.hub-body { background: var(--navy-deep); }

.hub {
  min-height: 100dvh;
  padding: 80px 0;
}

.hub__inner {
  max-width: 900px;
  text-align: center;
}

.hub__badge {
  display: inline-block;
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  padding: 6px 14px;
  border: 1px solid rgba(15, 15, 15, 0.35);
  border-radius: 999px;
}

.hub h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--white);
  margin: 20px 0 12px;
}

.hub__lead {
  color: var(--muted);
  margin-bottom: 48px;
}

.hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
  margin-bottom: 56px;
}

.hub-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 20px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 14px;
  transition: border-color 0.2s, transform 0.2s;
}

.hub-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.hub-card strong {
  color: var(--white);
  font-size: 16px;
}

.hub-card span {
  font-size: 13px;
  color: var(--muted);
}

.hub-roadmap {
  text-align: left;
  margin-top: 40px;
}

.hub-roadmap h2 {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--white);
  margin-bottom: 24px;
}

.hub__back {
  margin-top: 40px;
}

.hub__back a {
  color: var(--orange);
  font-size: 14px;
}

.nav__links a[aria-current="page"] {
  color: var(--orange);
}

/* Responsive */
/* ── Tech surface & palette enhancements ── */
body.tech-surface {
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(15, 15, 15, 0.04), transparent 50%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(15, 15, 15, 0.03), transparent 45%);
}

.text-gradient {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--ink);
}

.eyebrow--tech {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 0 rgba(15, 15, 15, 0.35);
  animation: pulse-dot 2.4s ease-out infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(15, 15, 15, 0.3); }
  70% { box-shadow: 0 0 0 7px rgba(15, 15, 15, 0); }
  100% { box-shadow: 0 0 0 0 rgba(15, 15, 15, 0); }
}

.tech-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero[data-spotlight] .hero__bg {
  z-index: 0;
  background:
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(15, 15, 15, 0.06), transparent 42%),
    radial-gradient(ellipse 70% 55% at 75% 15%, rgba(15, 15, 15, 0.04), transparent 50%),
    radial-gradient(ellipse 50% 45% at 5% 85%, rgba(15, 15, 15, 0.03), transparent 45%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
}

.hero__gridlines {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(15, 15, 15, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 15, 15, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black, transparent);
}

.hero__grid,
.hero__copy,
.hero__visual {
  position: relative;
  z-index: 2;
}

.hero__stats--live {
  border-top-color: var(--border);
}

.hero__stats--live strong {
  color: var(--cyan);
  text-shadow: 0 0 24px var(--cyan-soft);
}

.tech-orbit {
  position: absolute;
  inset: -15%;
  pointer-events: none;
}

.tech-orbit__ring {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(15, 15, 15, 0.2);
  border-radius: 50%;
  animation: spin 20s linear infinite;
}

.tech-orbit__ring--2 {
  inset: 18%;
  border-color: rgba(15, 15, 15, 0.18);
  animation-duration: 28s;
  animation-direction: reverse;
}

.tech-orbit__dot {
  position: absolute;
  top: 8%;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--cyan-glow);
  animation: spin 20s linear infinite;
  transform-origin: 50% 450%;
}

.logo-plate--glow img {
  filter: none;
  transition: transform 0.4s var(--ease);
}

.logo-plate--glow:hover img {
  transform: scale(1.01);
}

.btn--primary {
  background: var(--ink);
  color: var(--on-accent);
  font-weight: 700;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn--primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s var(--ease);
}

.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(15, 15, 15, 0.2), 0 4px 16px rgba(15, 15, 15, 0.15);
}

.btn--primary:hover::after {
  transform: translateX(100%);
}

.nav--scrolled {
  background: rgba(250, 249, 246, 0.92);
  border-bottom-color: var(--border);
}

.nav__links a.is-lit {
  color: var(--white);
}

.path-card {
  position: relative;
  overflow: hidden;
  background: var(--gradient-surface), var(--surface);
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
  will-change: transform;
}

.path-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.35), transparent 50%, rgba(15, 15, 15, 0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.path-card:hover::before,
.path-card:focus-visible::before {
  opacity: 1;
}

.path-card[data-tilt]:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 40px rgba(15, 15, 15, 0.08);
}

.path-card__icon {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--cyan);
  opacity: 0.7;
}

.path-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  padding-top: 8px;
}

.path-card__tags span {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--cyan-soft);
  color: var(--cyan);
  border: 1px solid rgba(15, 15, 15, 0.15);
}

.section--tech {
  padding: 80px 0;
  background: var(--bg-deep);
  border-block: 1px solid var(--border);
}

.tech-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.tech-terminal {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #020617;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(15, 15, 15, 0.06);
}

.tech-terminal__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(15, 15, 15, 0.8);
  border-bottom: 1px solid var(--border);
}

.tech-terminal__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(122, 148, 184, 0.35);
}

.tech-terminal__bar span:first-child { background: #6e6e6e; }
.tech-terminal__bar span:nth-child(2) { background: #9a9a9a; }
.tech-terminal__bar span:nth-child(3) { background: #c4c4c4; }

.tech-terminal__bar code {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

.tech-terminal__body {
  padding: 22px 20px 26px;
  min-height: 300px;
}

.tech-terminal__line {
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  margin: 0;
  min-height: 1.85em;
  white-space: pre-wrap;
  word-break: break-word;
}

.tech-terminal__line--cmd { color: #f2f2f2; }
.tech-terminal__line--ok { color: #9a9a9a; }
.tech-terminal__line--cyan { color: #b0b0b0; }
.tech-terminal__line--accent { color: #ffffff; font-weight: 500; }

.tech-terminal__line.is-active::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 1.05em;
  margin-left: 2px;
  vertical-align: text-bottom;
  background: #ffffff;
  animation: caret-blink 0.9s steps(1) infinite;
}

@keyframes caret-blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}

.tech-checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.tech-checklist li {
  font-size: 15px;
  color: var(--text);
  padding: 10px 0 10px 28px;
  position: relative;
  border-bottom: 1px solid var(--border);
}

.tech-checklist li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--cyan);
}

.tech-marquee {
  overflow: hidden;
  padding: 20px 0;
  background: var(--surface);
  border-block: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.tech-marquee__track {
  display: flex;
  gap: 12px;
  width: max-content;
  will-change: transform;
}

.tech-marquee__track span {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  color: var(--cyan);
  background: var(--cyan-soft);
  border: 1px solid rgba(15, 15, 15, 0.18);
}

.brands-grid--interactive .brand {
  position: relative;
  cursor: default;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.1s;
  will-change: transform;
}

.brands-grid--interactive .brand:hover,
.brands-grid--interactive .brand:focus-visible {
  border-color: var(--border-active);
  box-shadow: 0 0 30px rgba(15, 15, 15, 0.1);
}

.brand__dot {
  display: block;
  width: 6px;
  height: 6px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--coral);
  animation: pulse-dot 3s ease-out infinite;
}

.trust-strip {
  background: rgba(15, 15, 15, 0.5);
  border-color: var(--border);
}

.case-study:hover {
  border-color: var(--border-active);
  box-shadow: 0 0 40px rgba(15, 15, 15, 0.06);
}

.metric-chip {
  background: var(--cyan-soft);
  color: var(--cyan);
}

/* ════════════════════════════════════════════
   PREMIUM LAYER — chrome, cursor, micro-interactions
   ════════════════════════════════════════════ */

/* Page intro fade — solo versión moderna con premium.js */
html.js:not(.page-ready) body.tech-surface { opacity: 0; }
body {
  opacity: 1;
  transition: opacity 0.6s var(--ease);
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: 200;
  pointer-events: none;
  background: rgba(15, 15, 15, 0.08);
}

.scroll-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: 0 50%;
  transform: scaleX(0);
  background: var(--gradient-brand);
  box-shadow: 0 0 12px rgba(15, 15, 15, 0.5);
}

/* Custom cursor */
.has-cursor,
.has-cursor a,
.has-cursor button,
.has-cursor [data-tilt],
.has-cursor label,
.has-cursor input,
.has-cursor textarea,
.has-cursor select {
  cursor: none;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  pointer-events: none;
}

.cursor__dot,
.cursor__ring {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  will-change: transform;
}

.cursor__dot {
  width: 6px;
  height: 6px;
  background: var(--ink, #0f0f0f);
}

.cursor__ring {
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(15, 15, 15, 0.45);
  transition: width 0.25s var(--ease), height 0.25s var(--ease), border-color 0.25s, opacity 0.25s;
}

.cursor.is-active .cursor__ring {
  width: 54px;
  height: 54px;
  border-color: rgba(15, 15, 15, 0.85);
}

.cursor.is-down .cursor__ring {
  width: 24px;
  height: 24px;
  border-color: rgba(15, 15, 15, 0.7);
}

.cursor.is-hidden { opacity: 0; }

/* Back to top */
.to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 150;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--border-active);
  background: rgba(15, 15, 15, 0.85);
  backdrop-filter: blur(12px);
  color: var(--cyan);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s;
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.to-top:hover {
  box-shadow: 0 0 24px rgba(15, 15, 15, 0.3);
  background: rgba(21, 40, 72, 0.95);
}

/* Glare overlay for tilt cards */
[data-tilt] { position: relative; }
.glare {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 1;
}
[data-tilt]:hover .glare { opacity: 1; }
[data-tilt] > *:not(.glare) { position: relative; z-index: 2; }

/* Nav active link */
.nav__links a.is-current {
  color: var(--white);
}
.nav__links a.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gradient-brand);
  border-radius: 2px;
}
.nav__links a { position: relative; }

/* Selection */
::selection {
  background: rgba(15, 15, 15, 0.25);
  color: var(--white);
}

/* Scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 15, 15, 0.4) transparent;
}
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { background: var(--bg-void); }
*::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--cyan), var(--coral));
  border-radius: 6px;
  border: 2px solid var(--bg-void);
}

/* Section divider scanline */
.section + .section,
.section--tech + .tech-marquee {
  position: relative;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .has-cursor,
  .has-cursor a,
  .has-cursor button,
  .has-cursor [data-tilt],
  .has-cursor label,
  .has-cursor input,
  .has-cursor textarea,
  .has-cursor select {
    cursor: auto;
  }

  .cursor {
    display: none !important;
  }

  .tech-canvas,
  .tech-marquee,
  .pulse-dot,
  .tech-orbit__ring,
  .tech-orbit__dot {
    display: none !important;
  }
  .path-card[data-tilt],
  .brand[data-tilt],
  .logo-plate--glow[data-tilt] {
    transform: none !important;
  }
  html.js:not(.page-ready) body.tech-surface { opacity: 1; }
}

.board-card {
  transition: border-color 0.3s, box-shadow 0.3s;
  will-change: transform;
}

.board-card:hover {
  border-color: var(--border-active);
  box-shadow: 0 0 36px rgba(15, 15, 15, 0.08);
}

.showcase-card--rich:hover {
  border-color: var(--border-active);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__visual { order: -1; }
  .hero__logo-wrap { padding: 0; }
  .paths-grid, .info-grid, .skills-grid, .expect-grid, .modes-grid,
  .showcase-grid, .outcomes-grid, .cases-grid, .casos-grid, .hub-grid,
  .lines-grid, .road-grid { grid-template-columns: 1fr; }
  .brands-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .flow__arrow {
    width: 2px;
    height: 24px;
    margin-inline: auto;
    background: linear-gradient(180deg, transparent, var(--orange), transparent);
  }
  .flow__arrow::after {
    right: -4px;
    top: auto;
    bottom: 0;
    border: 5px solid transparent;
    border-top-color: var(--orange);
    border-left-color: transparent;
  }
  .cta { grid-template-columns: 1fr; text-align: center; }
  .cta__actions { align-items: center; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__lang { margin-left: auto; margin-right: 4px; }
  .nav__toggle { display: flex; margin-left: 0; }
  .nav--open {
    height: auto;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--navy-border);
    box-shadow: 0 8px 24px rgba(15, 15, 15, 0.06);
  }
  .nav--open .nav__inner {
    flex-wrap: wrap;
    align-content: flex-start;
    height: auto;
    min-height: var(--nav-h);
    padding-bottom: 20px;
  }
  .nav--open .nav__links {
    display: flex;
    flex-direction: column;
    order: 3;
    width: 100%;
    margin-left: 0;
    padding: 16px 0 8px;
    border-top: 1px solid var(--navy-border);
    margin-top: 8px;
    gap: 4px;
  }
  .nav--open .nav__links a {
    display: block;
    padding: 12px 4px;
    font-size: 16px;
    color: var(--ink);
  }
  .nav--open .nav__cta {
    display: inline-flex;
    order: 4;
    margin: 8px 0 0;
    width: 100%;
    justify-content: center;
  }
  .nav--open .nav__lang {
    order: 5;
    margin: 12px 0 0;
  }
  .hero__stats { grid-template-columns: 1fr; gap: 20px; }
  .hero__gou-line { grid-template-columns: clamp(1.75rem, 8vw, 2.5rem) 1fr; }
  .brands-grid { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: 1fr; }
  .demo-section__grid { grid-template-columns: 1fr; }
  .tech-showcase { grid-template-columns: 1fr; }
  .trust-strip__logos { gap: 20px 28px; }
  .trust-strip__logos img { height: 22px; }
}

/* Gou ecosystem flow */
.gou-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--white);
  margin: 0 0 16px;
}

.gou-tagline {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  line-height: 1.65;
  color: var(--text);
  max-width: 42ch;
  margin: 0 auto;
  text-wrap: balance;
}

.gou-flow {
  max-width: 980px;
  margin: 48px auto 0;
  text-align: center;
}

.gou-flow__inputs {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0;
  padding: 12px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: inline-block;
  background: var(--surface);
}

.gou-flow__arrow {
  width: 2px;
  height: 28px;
  background: var(--border);
  margin: 0 auto;
  position: relative;
}

.gou-flow__arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
}

.gou-flow__arrow--up {
  height: 32px;
  margin: 4px auto;
}

.gou-flow__arrow--up::after {
  top: -2px;
  border-bottom-color: var(--muted);
}

.gou-flow__hub {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--white);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 20px 40px;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  display: inline-block;
  margin: 4px 0;
}

.gou-flow__pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 4px;
  text-align: left;
}

.gou-flow__audiences-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 28px 0 16px;
}

.gou-flow__audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  text-align: center;
}

.gou-audience {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.gou-audience .gou-flow__arrow {
  flex-shrink: 0;
  margin-top: 0;
}

.gou-audience h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--white);
  margin: 0 0 10px;
}

.gou-audience p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
  max-width: 22ch;
}

.gou-audience--more {
  justify-content: flex-start;
  border-style: dashed;
  min-height: 100%;
}

.gou-audience--more h3 {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  margin: 0;
}

.gou-pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 18px;
  position: relative;
}

.gou-pillar::before {
  content: "";
  position: absolute;
  top: -32px;
  left: 50%;
  width: 2px;
  height: 28px;
  background: var(--border);
  transform: translateX(-50%);
}

.gou-pillar h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.04em;
  margin: 0 0 6px;
  color: var(--white);
}

.gou-pillar__role {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  margin: 0 0 12px;
}

.gou-pillar ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.gou-pillar li {
  font-size: 14px;
  color: var(--text);
  padding: 4px 0 4px 14px;
  position: relative;
}

.gou-pillar li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--ink);
}

.gou-pillar__product {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

.gou-pillar__product strong {
  color: var(--white);
  font-weight: 600;
}

.section--about {
  padding-top: 80px;
  padding-bottom: 80px;
}

/* Legacy content blocks (kept for retro compat) */
.forces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

.force-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
}

.force-card__n {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  display: block;
  margin-bottom: 12px;
}

.force-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0 0 8px;
  color: var(--white);
}

.brand-map {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
}

.brand-map h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 16px;
  color: var(--white);
}

.brand-map__list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.brand-map__list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 15px;
}

.brand-map__list li:last-child { border-bottom: none; }

.brand-map__note {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.section__cta-link {
  text-align: center;
  margin-top: 32px;
}

.section__cta-link a {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 22px;
  margin: 0;
}

.testimonial p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  margin: 0 0 16px;
}

.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial footer strong {
  font-size: 14px;
  color: var(--white);
}

.testimonial footer span {
  font-size: 13px;
  color: var(--muted);
}

.testimonial__marca {
  font-family: var(--font-mono);
  font-size: 11px !important;
  color: var(--ink) !important;
  opacity: 0.7;
}

.founder-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  max-width: 720px;
}

.founder-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 6px;
  color: var(--white);
}

.founder-card__role {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 16px;
}

.founder-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.criteria-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 640px;
}

.criteria-list li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 16px;
}

.criteria-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--ink);
}

.faq-list {
  max-width: 760px;
  margin-inline: auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  margin-bottom: 10px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 600;
  color: var(--white);
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  padding: 0 20px 18px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.mode-switch {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 200;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  border-radius: 8px;
  padding: 10px 14px;
}

.mode-switch__badge {
  font-family: var(--font-mono);
  font-size: 10px;
  margin: 0 0 6px;
  color: var(--ink);
}

.mode-switch a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
}

.mode-switch a:hover { color: var(--ink); }

.retro-surface .mode-switch__badge {
  font-family: var(--retro-pixel, var(--font-mono));
  font-size: 7px;
  animation: retro-blink 1.2s steps(2) infinite;
}

@media (max-width: 900px) {
  .forces-grid,
  .testimonials-grid,
  .gou-flow__audience-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .gou-flow__audience-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .mode-switch {
    left: 12px;
    right: 12px;
  }
}
