/* ============================================================
   H&C · AI Automation — Landing
   Design system: dark, metallic, electric-cyan circuit accents
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700&family=IBM+Plex+Sans:wght@300;400;500;600&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  /* surfaces */
  --bg:          #04060c;
  --bg-soft:     #070b14;
  --surface:     #0a1019;
  --surface-2:   #0e1727;
  --line:        rgba(130,185,225,0.12);
  --line-strong: rgba(130,195,235,0.24);

  /* accent (overridable by Tweaks) */
  --cyan:        #36cdf2;
  --cyan-bright: #74e3ff;
  --cyan-deep:   #1c7fd6;
  --accent:      var(--cyan);
  --glow:        rgba(54,205,242,0.55);
  --glow-soft:   rgba(54,205,242,0.16);

  /* text */
  --text:        #e9eff7;
  --text-dim:    #a3b3c6;
  --text-mute:   #6c7d93;

  /* metallic chrome gradient for display text */
  --chrome: linear-gradient(176deg,#ffffff 0%,#e3eaf2 30%,#a9b6c6 52%,#f4f7fb 70%,#b7c3d2 100%);

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ambient field: portal glow + faint grid + vignette */
.field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.field::before {
  /* top portal glow */
  content: "";
  position: absolute;
  top: -22vh; left: 50%;
  transform: translateX(-50%);
  width: 120vw; height: 90vh;
  background:
    radial-gradient(60% 55% at 50% 0%, var(--glow-soft), transparent 70%);
  opacity: .9;
}
.field::after {
  /* grid */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(80% 65% at 50% 30%, #000 0%, transparent 78%);
          mask-image: radial-gradient(80% 65% at 50% 30%, #000 0%, transparent 78%);
  opacity: .5;
}

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

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }
section { position: relative; padding-block: clamp(72px, 11vh, 140px); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.eyebrow .idx { color: var(--text-mute); }

h2.title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-top: 22px;
  color: var(--text);
  text-wrap: balance;
}
.lead {
  color: var(--text-dim);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 62ch;
}

.chrome-text {
  background: var(--chrome);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.accent-text { color: var(--accent); }

/* glowing divider line, like the logo */
.glowline {
  position: relative;
  height: 1px;
  width: min(560px, 80%);
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--line-strong) 18%, var(--accent) 50%, var(--line-strong) 82%, transparent);
}
.glowline::after {
  content: "";
  position: absolute; inset: -7px 0;
  background: radial-gradient(40% 100% at 50% 50%, var(--glow-soft), transparent 70%);
}
.glowline.node::before {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 6px; height: 6px; border-radius: 50%;
  transform: translate(-50%,-50%);
  background: var(--cyan-bright);
  box-shadow: 0 0 10px 2px var(--glow);
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
}
.btn .ar { transition: transform .25s ease; }
.btn:hover .ar { transform: translateX(4px); }
.btn-primary {
  color: #03121c;
  background: linear-gradient(180deg, var(--cyan-bright), var(--accent));
  box-shadow: 0 0 0 1px rgba(255,255,255,.08) inset, 0 8px 30px -8px var(--glow);
  font-weight: 500;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 0 1px rgba(255,255,255,.12) inset, 0 14px 40px -8px var(--glow); }
.btn-ghost {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255,255,255,0.015);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--cyan-bright); background: rgba(54,205,242,0.05); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5,7,13,0.72);
  backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }

/* CSS wordmark (nav + footer) */
.mark { display: inline-flex; align-items: baseline; gap: 2px; text-decoration: none; }
.mark .hc {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  background: var(--chrome);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.mark .amp { color: var(--accent); -webkit-text-fill-color: var(--accent); }
.mark .sub {
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: .26em;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-left: 8px;
  align-self: center;
}

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .08em;
  color: var(--text-dim);
  text-decoration: none;
  text-transform: uppercase;
  transition: color .2s ease;
  position: relative;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  height: 1px; width: 0; background: var(--accent);
  transition: width .25s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--text); }
.nav-links a.active::after { width: 100%; }
.nav .btn { padding: 11px 20px; }
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 96px;
  padding-bottom: 60px;
}
.hero .eyebrow { margin-bottom: 30px; }
.hero .eyebrow::before { display: none; }
.hero-mark {
  width: min(620px, 86vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 60px rgba(0,0,0,0.6));
}
.hero .glowline { margin-top: 14px; margin-bottom: 30px; }
.tagline {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 2.4vw, 26px);
  letter-spacing: -0.01em;
}
.tagline b { color: var(--text); font-weight: 600; }
.tagline span { color: var(--text-mute); }
.tagline em { color: var(--accent); font-style: normal; }
.hero-sub {
  margin-top: 26px;
  max-width: 56ch;
  color: var(--text-dim);
  font-size: clamp(15px, 1.5vw, 18px);
}
.hero-cta { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.scroll-cue {
  margin-top: 56px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--text-mute);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue .line { width: 1px; height: 38px; background: linear-gradient(var(--accent), transparent); position: relative; overflow: hidden; }
.scroll-cue .line::after {
  content: ""; position: absolute; left: 0; top: -50%;
  width: 1px; height: 50%; background: var(--cyan-bright);
  animation: cue 2.4s ease-in-out infinite;
}
@keyframes cue { 0%{ transform: translateY(-100%);} 60%,100%{ transform: translateY(300%);} }

/* ============================================================
   QUIÉNES SOMOS
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}
.about-grid .lead { margin-top: 26px; }
.about-grid p + p { margin-top: 18px; }
.pullquote {
  margin-top: 30px;
  padding: 26px 30px;
  border-left: 2px solid var(--accent);
  background: linear-gradient(90deg, rgba(54,205,242,0.06), transparent);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.4;
  color: var(--text);
}
.pullquote em { color: var(--accent); font-style: normal; }

/* ============================================================
   PROCESO (timeline)
   ============================================================ */
.proc-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; flex-wrap: wrap; margin-bottom: 56px; }
.steps { position: relative; display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: clamp(20px, 4vw, 52px);
  padding: 30px 0;
  border-top: 1px solid var(--line);
  position: relative;
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step .num {
  font-family: var(--font-mono);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-strong);
  transition: -webkit-text-stroke-color .35s ease, color .35s ease;
}
.step:hover .num { color: var(--accent); -webkit-text-stroke-color: var(--accent); }
.step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(19px, 2vw, 24px);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.step p { color: var(--text-dim); max-width: 62ch; }
.step .dot {
  position: absolute; left: -1px; top: 30px;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  transform: translateX(-50%);
  transition: all .35s ease;
}
.step:hover .dot { background: var(--cyan-bright); border-color: var(--accent); box-shadow: 0 0 10px 2px var(--glow); }
.proc-foot {
  margin-top: 34px;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--text);
}
.proc-foot .accent-text { font-weight: 500; }

/* ============================================================
   CAPACIDADES (cards)
   ============================================================ */
.cap-grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 640px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cap-grid { grid-template-columns: repeat(3, 1fr); } }
.cap.feature { grid-column: span 2; }
@media (max-width: 639px) { .cap.feature { grid-column: span 1; } }
.cap.feature h3 { font-size: 22px; }
.cap.feature p { font-size: 16px; max-width: 46ch; }
.cap.feature .ic { width: 48px; height: 48px; }
.cap.feature .ic svg { width: 25px; height: 25px; }
.cap {
  background: var(--bg-soft);
  padding: 34px 30px 38px;
  position: relative;
  transition: background .3s ease;
  overflow: hidden;
}
.cap::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity .3s ease;
}
.cap:hover { background: var(--surface); }
.cap:hover::before { opacity: 1; }
.cap .ic {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 3px;
  color: var(--accent);
  margin-bottom: 22px;
  transition: border-color .3s ease, box-shadow .3s ease;
}
.cap:hover .ic { border-color: var(--accent); box-shadow: 0 0 18px -4px var(--glow); }
.cap .ic svg { width: 22px; height: 22px; }
.cap h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.cap p { color: var(--text-dim); font-size: 15px; }

/* ============================================================
   PRINCIPIOS
   ============================================================ */
.prin-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px 48px;
}
.prin {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.prin .pn {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: .1em;
  padding-top: 4px;
}
.prin h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 7px;
  letter-spacing: -0.01em;
}
.prin p { color: var(--text-dim); font-size: 15px; }

/* ============================================================
   CIERRE
   ============================================================ */
.closer { text-align: center; }
.closer .statement {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 3.6vw, 44px);
  line-height: 1.22;
  letter-spacing: -0.02em;
  max-width: 20ch;
  margin: 28px auto 0;
  text-wrap: balance;
}
.closer .statement em { color: var(--accent); font-style: normal; }
.closer .cta { margin-top: 44px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.closer-frame {
  border: 1px solid var(--line);
  background:
    radial-gradient(80% 120% at 50% 0%, rgba(54,205,242,0.06), transparent 60%),
    var(--bg-soft);
  padding: clamp(56px, 9vw, 110px) var(--pad);
  position: relative;
}
.closer-frame::before, .closer-frame::after {
  content: ""; position: absolute; width: 14px; height: 14px;
  border: 1px solid var(--accent); opacity: .55;
}
.closer-frame::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.closer-frame::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { border-top: 1px solid var(--line); padding-block: 56px; }
.foot-grid { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.foot-tag { color: var(--text-mute); font-size: 14px; margin-top: 14px; max-width: 34ch; }
.foot-tag b { color: var(--text-dim); font-weight: 500; }
.foot-meta { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; color: var(--text-mute); text-transform: uppercase; text-align: right; }
.foot-meta a { color: var(--text-dim); text-decoration: none; }
.foot-meta a:hover { color: var(--accent); }
.foot-nav { display: flex; flex-direction: column; gap: 10px; }
.foot-nav .foot-h { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 4px; }
.foot-nav a { font-size: 14px; color: var(--text-dim); text-decoration: none; transition: color .2s ease; }
.foot-nav a:hover { color: var(--accent); }

/* ============================================================
   reveal animation
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
  [data-reveal].in { opacity: 1; transform: none; }
  [data-reveal][data-delay="1"] { transition-delay: .08s; }
  [data-reveal][data-delay="2"] { transition-delay: .16s; }
  [data-reveal][data-delay="3"] { transition-delay: .24s; }
  [data-reveal][data-delay="4"] { transition-delay: .32s; }
}
body.no-motion [data-reveal] { opacity: 1 !important; transform: none !important; }
body.no-motion .scroll-cue .line::after { animation: none; }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav .btn { display: none; }
}
@media (max-width: 560px) {
  .step { grid-template-columns: 64px 1fr; gap: 18px; }
  .step .num { font-size: 30px; }
  .foot-meta { text-align: left; }
}

/* ============================================================
   PLATAFORMA (3 layers)  — home + reusable
   ============================================================ */
.plat-intro { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px,5vw,72px); align-items: end; margin-bottom: 52px; }
.plat-tag {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(17px,1.8vw,20px); color: var(--text); margin-top: 22px;
}
.plat-tag .accent-text { color: var(--accent); }
.layers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.layer { background: var(--bg-soft); padding: 34px 30px 36px; position: relative; transition: background .3s ease; }
.layer:hover { background: var(--surface); }
.layer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--accent), transparent); opacity: 0; transition: opacity .3s ease; }
.layer:hover::before { opacity: 1; }
.layer .ln {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em;
  color: var(--accent); margin-bottom: 18px; display: block;
}
.layer h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; letter-spacing: -0.01em; margin-bottom: 14px; line-height: 1.2; }
.layer ul { list-style: none; display: grid; gap: 11px; }
.layer li { position: relative; padding-left: 20px; color: var(--text-dim); font-size: 14.5px; line-height: 1.5; }
.layer li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 1px; background: var(--accent); }
.layer li b { color: var(--text); font-weight: 500; }

/* ============================================================
   PRODUCTOS (home grid)
   ============================================================ */
.prod-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.prod {
  --pa: var(--cyan);
  display: flex; flex-direction: column;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 34px 34px 30px;
  text-decoration: none; color: inherit;
  position: relative; overflow: hidden;
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.prod::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--pa); opacity: .6; transition: opacity .3s ease; }
.prod:hover { border-color: color-mix(in oklab, var(--pa) 55%, transparent); transform: translateY(-3px); background: var(--surface); }
.prod:hover::after { opacity: 1; }
.prod.featured { grid-column: span 2; flex-direction: row; gap: 40px; align-items: center; }
.prod.featured .prod-body { flex: 1; }
.prod.featured .prod-visual { flex: 0 0 38%; }
.prod-tag {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  color: var(--pa); display: inline-flex; align-items: center; gap: 9px; margin-bottom: 16px;
}
.prod-tag::before { content: ""; width: 18px; height: 1px; background: var(--pa); }
.prod h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px,2.6vw,32px); letter-spacing: -0.02em; margin-bottom: 8px; }
.prod h3 .chrome-text { display: inline; }
.prod .sub { color: var(--text); font-size: 15.5px; font-weight: 400; margin-bottom: 14px; }
.prod p { color: var(--text-dim); font-size: 14.5px; max-width: 56ch; }
.prod .chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.prod .chip { font-family: var(--font-mono); font-size: 11px; letter-spacing: .05em; color: var(--text-mute); border: 1px solid var(--line); padding: 5px 10px; border-radius: 2px; }
.prod .go { margin-top: 22px; font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--pa); display: inline-flex; align-items: center; gap: 9px; }
.prod .go .ar { transition: transform .25s ease; }
.prod:hover .go .ar { transform: translateX(5px); }
.prod-visual {
  align-self: stretch; min-height: 190px; border: 1px solid var(--line);
  background:
    radial-gradient(120% 120% at 80% 0%, color-mix(in oklab, var(--pa) 14%, transparent), transparent 60%),
    repeating-linear-gradient(0deg, transparent 0 22px, var(--line) 22px 23px),
    repeating-linear-gradient(90deg, transparent 0 22px, var(--line) 22px 23px),
    var(--surface);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
}
.prod-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.prod.featured:hover .prod-visual img { transform: scale(1.04); }
.prod-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 55%, color-mix(in oklab, var(--pa) 16%, transparent)); pointer-events: none; }

/* thumbnail banner on the regular product cards */
.prod-thumb { margin: -34px -34px 24px; height: 200px; overflow: hidden; position: relative; border-bottom: 1px solid var(--line); background: var(--surface); }
.prod-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .5s ease; }
.prod:hover .prod-thumb img { transform: scale(1.05); }
.prod-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(4,6,12,0.6)); pointer-events: none; }
.prod-visual .vmark { font-family: var(--font-display); font-weight: 700; font-size: 30px; color: color-mix(in oklab, var(--pa) 80%, white); opacity: .9; letter-spacing: -0.02em; }
.prod-visual .vmark span { color: var(--text-mute); font-weight: 400; font-size: 13px; display: block; letter-spacing: .2em; text-transform: uppercase; margin-top: 6px; }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.crumb { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-mute); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; }
.crumb:hover { color: var(--accent); }
.nav .crumb .ar { transform: rotate(180deg); }

.phero { min-height: 78svh; display: flex; flex-direction: column; justify-content: center; padding-top: 130px; padding-bottom: 70px; }
.phero .eyebrow { margin-bottom: 26px; }
.phero h1 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(46px, 8vw, 104px); line-height: .98; letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.phero .ph-sub { font-family: var(--font-display); font-weight: 500; font-size: clamp(19px,2.4vw,28px); color: var(--text); letter-spacing: -0.01em; max-width: 24ch; line-height: 1.25; }
.phero .ph-sub em { color: var(--accent); font-style: normal; }
.phero .ph-intro { margin-top: 24px; color: var(--text-dim); font-size: clamp(16px,1.5vw,18px); max-width: 58ch; }
.phero .ph-intro b { color: var(--text); font-weight: 500; }
.phero .ph-intro em { color: var(--accent); font-style: normal; }
.phero .hero-cta { justify-content: flex-start; margin-top: 36px; }

.metricbar { display: flex; flex-wrap: wrap; gap: 0; margin-top: 46px; border: 1px solid var(--line); }
.metric { padding: 22px 30px; border-right: 1px solid var(--line); flex: 1; min-width: 180px; }
.metric:last-child { border-right: none; }
.metric .mv { font-family: var(--font-display); font-weight: 600; font-size: clamp(26px,3vw,38px); color: var(--accent); letter-spacing: -0.02em; line-height: 1; }
.metric .ml { font-size: 13.5px; color: var(--text-dim); margin-top: 8px; }

.prose-block { max-width: 70ch; }
.prose-block p { color: var(--text-dim); font-size: clamp(16px,1.5vw,18px); }
.prose-block p + p { margin-top: 18px; }
.prose-block b { color: var(--text); font-weight: 500; }

/* feature cards reused on product pages via .cap-grid / .cap */
.cap .kbd { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: .14em; display: block; margin-bottom: 14px; }

/* pillars (2x2) */
.pillars { margin-top: 52px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.pillar { background: var(--bg-soft); padding: 36px 36px 38px; transition: background .3s ease; }
.pillar:hover { background: var(--surface); }
.pillar .pi { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; display: block; }
.pillar h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(19px,2vw,23px); letter-spacing: -0.01em; margin-bottom: 12px; }
.pillar p { color: var(--text-dim); font-size: 15.5px; max-width: 50ch; }
.pillar p .accent-text { color: var(--accent); font-weight: 500; }
.pillar.wide { grid-column: span 2; }
@media (max-width: 920px) { .pillar.wide { grid-column: span 1; } }

/* numbered capability list on product pages */
.featlist { margin-top: 50px; display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.featitem { background: var(--bg-soft); padding: 30px 30px 32px; display: grid; grid-template-columns: auto 1fr; gap: 18px; transition: background .3s ease; }
.featitem:hover { background: var(--surface); }
.featitem .fn { font-family: var(--font-mono); font-size: 13px; color: color-mix(in oklab, var(--accent) 60%, var(--text-mute)); font-weight: 500; padding-top: 3px; letter-spacing: .08em; }
.featitem:hover .fn { color: var(--accent); }
.featitem.wide { grid-column: span 2; }
@media (max-width: 920px) { .featitem.wide { grid-column: span 1; } }
.featitem h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em; margin-bottom: 8px; line-height: 1.25; }
.featitem p { color: var(--text-dim); font-size: 14.5px; }

/* audience block */
.aud { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,64px); align-items: start; }

/* product screenshot slot */
.shot { margin-top: 50px; border: 1px solid var(--line); background: var(--bg-soft); padding: 14px; position: relative; }
.shot::before { content: attr(data-label); position: absolute; top: -1px; left: -1px; font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em; text-transform: uppercase; color: var(--text-mute); background: var(--bg); padding: 6px 12px; border: 1px solid var(--line); border-bottom: none; border-left: none; }
.shot image-slot { display: block; width: 100%; height: clamp(280px, 46vw, 560px); color: rgba(233,239,247,0.58); background: rgba(255,255,255,0.012); }

@media (max-width: 920px) {
  .layers { grid-template-columns: 1fr; }
  .plat-intro { grid-template-columns: 1fr; }
  .prod-grid { grid-template-columns: 1fr; }
  .prod.featured { grid-column: span 1; flex-direction: column; align-items: stretch; gap: 28px; }
  .prod.featured .prod-visual { flex: none; }
  .pillars { grid-template-columns: 1fr; }
  .featlist { grid-template-columns: 1fr; }
  .aud { grid-template-columns: 1fr; }
  .metric { border-right: none; border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: none; }
}
