/* ============================================================
   ELI HIVE — Engineering Line Intelligence
   Investor-facing site · Seed 2026 · Austin, TX
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Surfaces — warm near-black, industrial */
  --bg: #0E0B08;
  --bg-2: #14100B;
  --bg-3: #1A130D;
  --surface: #1C1611;
  --surface-2: #241C15;
  --surface-3: #2C2319;
  --border: #33291F;
  --border-soft: #2A2118;

  /* Text */
  --text: #F5EFE3;
  --text-muted: #A89A8A;
  --text-faint: #6E6354;

  /* Brand accents */
  --coral: #E67E56;
  --coral-hover: #D26A42;
  --amber: #F5A623;
  --gold: #FFB347;
  --honey: #E8A33D;
  --teal: #4FB3A9;
  --teal-hover: #3C9A91;

  /* Semantic */
  --running: #4FB3A9;
  --ready: #6DAA45;
  --attention: #E67E56;
  --down: #DD6974;

  /* Gradients */
  --grad-honey: linear-gradient(100deg, #E67E56 0%, #F5A623 38%, #FFB347 62%, #4FB3A9 100%);
  --grad-honey-soft: linear-gradient(100deg, rgba(230,126,86,.16), rgba(245,166,35,.16), rgba(255,179,71,.16), rgba(79,179,169,.16));

  /* Type — Inter, matching elihive.io (weights 200–700; light weights on display) */
  --font-display: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  /* Scale */
  --fs-hero: clamp(2.8rem, 6.5vw, 5.4rem);
  --fs-h1: clamp(2.2rem, 4.6vw, 3.6rem);
  --fs-h2: clamp(1.7rem, 3vw, 2.4rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.6rem);
  --fs-body: 1.0625rem;
  --fs-sm: .9rem;
  --fs-xs: .78rem;

  /* Spacing & radius */
  --container: 1240px;
  --container-narrow: 920px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-glow: 0 0 60px rgba(230,126,86,.18);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: var(--fs-body);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: rgba(230,126,86,.3); color: var(--text); }

/* ---------- Honeycomb background canvas ---------- */
/* Base atmosphere layer (opaque) */
.bg-veil {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(230,126,86,.10), transparent 55%),
    radial-gradient(100% 70% at 100% 100%, rgba(79,179,169,.06), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-3) 60%, var(--bg) 100%);
}
/* Honeycomb canvas sits ABOVE the veil so the hex grid is visible */
#honeycomb {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: .32;
}

/* ---------- Demo carousel (cycling hero showcase) ---------- */
.carousel { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); background: var(--surface); box-shadow: 0 40px 120px rgba(0,0,0,.5); }
.carousel .stage { position: relative; aspect-ratio: 16/10; background: var(--bg-3); }
.carousel .slide { position: absolute; inset: 0; opacity: 0; transition: opacity .9s ease; }
.carousel .slide.active { opacity: 1; }
.carousel .slide img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.carousel .slide::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 55%, rgba(14,11,8,.55) 100%); pointer-events:none; }
.carousel .caption { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 1.1rem 1.4rem; display:flex; align-items:center; justify-content:space-between; gap:1rem; }
.carousel .caption .label { display:flex; align-items:center; gap:.6rem; font-size: var(--fs-sm); font-weight: 500; color: var(--text); }
.carousel .caption .label .num { font-family: var(--font-display); font-weight:600; color: var(--coral); font-size: .85rem; }
.carousel .caption .label .dot { width:6px;height:6px;border-radius:50%;background:var(--coral);box-shadow:0 0 8px var(--coral); }
.carousel .dots { display:flex; gap:.45rem; }
.carousel .dots button { width: 22px; height: 4px; border-radius: 2px; background: rgba(245,239,227,.2); transition: background .3s, width .3s; }
.carousel .dots button.active { background: var(--coral); width: 34px; }
.carousel .frame-tag { position: absolute; left: 20px; top: 20px; z-index: 3; }
.carousel .progress { position:absolute; top:0; left:0; height:2px; background: var(--coral); width:0; z-index:4; box-shadow: 0 0 8px var(--coral); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }
.wrap-narrow { max-width: var(--container-narrow); }
section { position: relative; z-index: 2; }
.stack-lg > * + * { margin-top: 4.5rem; }
.stack-md > * + * { margin-top: 2.5rem; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: .6em;
}
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  background: var(--coral);
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  display: inline-block;
}
.display {
  font-family: var(--font-display);
  font-weight: 200;
  line-height: 1.02;
  letter-spacing: -.02em;
}
.h1 { font-family: var(--font-display); font-weight: 300; font-size: var(--fs-h1); line-height: 1.06; letter-spacing: -.02em; }
.h2 { font-family: var(--font-display); font-weight: 300; font-size: var(--fs-h2); line-height: 1.1; letter-spacing: -.015em; }
.h3 { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-h3); line-height: 1.2; }
.lead { font-size: 1.2rem; line-height: 1.55; color: var(--text-muted); font-weight: 400; }
.muted { color: var(--text-muted); }
.faint { color: var(--text-faint); }
.accent { color: var(--coral); }
.gold { color: var(--gold); }
.teal { color: var(--teal); }
.mono { font-family: var(--font-body); font-feature-settings: "tnum"; letter-spacing: .02em; }

.gradient-text {
  background: var(--grad-honey);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-sm);
  letter-spacing: .02em;
  padding: .95em 1.6em;
  border-radius: var(--r-pill);
  transition: transform .25s cubic-bezier(.2,.7,.2,1), background .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
  cursor: pointer;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--coral);
  color: #1A0F08;
  box-shadow: 0 8px 30px rgba(230,126,86,.28);
}
.btn-primary:hover { background: var(--coral-hover); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(230,126,86,.4); }
.btn-ghost {
  background: rgba(245,239,227,.04);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--coral); background: rgba(230,126,86,.08); transform: translateY(-2px); }
.btn-line {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-line:hover { border-color: var(--coral); color: var(--coral); }
.btn-sm { padding: .6em 1.1em; font-size: var(--fs-xs); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(14,11,8,.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--border-soft);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; letter-spacing: .01em; }
.brand .hex-logo { width: 30px; height: 30px; flex: none; }
.brand .b-eli { color: var(--text); }
.brand .b-hive { color: var(--coral); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a { font-size: var(--fs-sm); font-weight: 500; color: var(--text-muted); transition: color .2s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--coral); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; width: 42px; height: 42px; align-items: center; justify-content: center; border: 1px solid var(--border); border-radius: var(--r-sm); }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after { content:""; display:block; width:18px; height:2px; background: var(--text); position: relative; transition: .3s; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav.open .nav-toggle span { background: transparent; }
.nav.open .nav-toggle span::before { transform: rotate(45deg); top: 0; }
.nav.open .nav-toggle span::after { transform: rotate(-45deg); top: 0; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 11rem 0 6rem; overflow: hidden; }
.hero .wrap { display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .65em;
  background: rgba(245,239,227,.04);
  border: 1px solid var(--border);
  padding: .5em 1.1em;
  border-radius: var(--r-pill);
  font-size: var(--fs-xs); font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-muted);
  backdrop-filter: blur(8px);
}
.hero-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 12px var(--coral); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }
.hero h1 { font-size: var(--fs-hero); margin: 1.6rem auto 0; max-width: 16ch; }
.hero-sub { margin: 1.8rem auto 0; max-width: 56ch; font-size: 1.22rem; color: var(--text-muted); line-height: 1.55; }
.hero-cta { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-meta { margin-top: 3.5rem; display: flex; flex-wrap: wrap; gap: 2.5rem; align-items: center; justify-content: center; }
.hero-meta .m { display: flex; flex-direction: column; gap: .2rem; }
.hero-meta .m .v { font-family: var(--font-display); font-weight: 600; font-size: 1.5rem; color: var(--text); }
.hero-meta .m .l { font-size: var(--fs-xs); letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); }

/* Hero visual frame */
.hero-frame {
  position: relative;
  margin-top: 0;
  aspect-ratio: 16 / 11;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 40px 120px rgba(0,0,0,.5);
}
.hero-frame img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 28%; filter: saturate(1.05) contrast(1.04); }
.hero-frame::after {
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(14,11,8,.16) 0%, transparent 28%, transparent 52%, rgba(14,11,8,.74) 100%);
  pointer-events:none;
}

/* Why-now two-column: hero image + intro */
.why-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 2.5rem; align-items: center; }
.why-intro .eyebrow { margin-bottom: 1.1rem; }
.why-intro .h2 { margin-top: 0; max-width: 16ch; font-size: var(--fs-h2); }
.why-intro .lead { margin-top: 1.2rem; max-width: 42ch; }
section#why { padding-top: 3.5rem; }
.hero-frame .frame-tag {
  position: absolute; left: 20px; top: 20px; z-index: 3;
  display: inline-flex; align-items: center; gap: .5em;
  background: rgba(14,11,8,.7); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: .4em .9em; font-size: var(--fs-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--text-muted);
}
.hero-frame .frame-tag .live { width: 7px; height: 7px; border-radius: 50%; background: var(--ready); box-shadow: 0 0 10px var(--ready); }

/* ---------- Section header ---------- */
.section { padding: 6rem 0; position: relative; }
.section-head { max-width: 60ch; margin-bottom: 3rem; }
.section-head .h2 { margin-top: 1.1rem; }
.section-head .lead { margin-top: 1.2rem; }
.assets-head { display: grid; grid-template-columns: 1.05fr 1fr; gap: 3rem; align-items: center; margin-bottom: 3rem; }
.assets-head__text .h2 { margin-top: 1.1rem; }
.assets-head__text .lead { margin-top: 1.2rem; }
.assets-head__video { position: relative; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 16/10; background: var(--surface); box-shadow: 0 24px 60px -28px rgba(0,0,0,.7); }
.assets-head__video::after { content:""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(230,126,86,.10); border-radius: inherit; }
.assets-head__video video { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 880px) { .assets-head { grid-template-columns: 1fr; gap: 2rem; } }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--border), transparent); margin: 0; }

/* numbered section label */
.num-label { display:flex; align-items:center; gap:1rem; font-size: var(--fs-xs); letter-spacing:.2em; text-transform: uppercase; color: var(--text-faint); }
.num-label .n { font-family: var(--font-display); color: var(--coral); font-size: .9rem; }

/* ---------- Cards ---------- */
.card {
  background: linear-gradient(180deg, var(--surface), var(--bg-3));
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem;
  transition: transform .3s, border-color .3s, background .3s;
  position: relative;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); border-color: var(--coral); }
.card .card-hex {
  width: 44px; height: 44px; margin-bottom: 1.3rem;
  display: grid; place-items: center;
}
.card h3 { margin-bottom: .6rem; }
.card p { color: var(--text-muted); font-size: 1rem; }
.card .tag-row { margin-top: 1.4rem; display:flex; flex-wrap:wrap; gap:.5rem; }

/* Tag / chip */
.chip {
  display: inline-flex; align-items: center; gap: .45em;
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: .04em;
  padding: .35em .8em; border-radius: var(--r-pill);
  background: rgba(245,239,227,.04); border: 1px solid var(--border-soft);
  color: var(--text-muted);
}
.chip.accent { color: var(--coral); border-color: rgba(230,126,86,.3); background: rgba(230,126,86,.07); }
.chip.teal { color: var(--teal); border-color: rgba(79,179,169,.3); background: rgba(79,179,169,.07); }
.chip .dot { width:6px;height:6px;border-radius:50%;background:currentColor; }

/* ---------- Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.grid-2-asym { display:grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }

/* ---------- Metric blocks (f2ai style) ---------- */
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
.metric {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2.2rem 1.8rem;
  position: relative;
  overflow: hidden;
}
.metric::before { content:""; position:absolute; top:0; left:0; width:38px; height:38px; clip-path: polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%); background: var(--grad-honey); opacity:.16; }
.metric .v { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.4rem,4vw,3.4rem); line-height: 1; background: var(--grad-honey); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color: transparent; }
.metric .l { font-size: var(--fs-sm); font-weight: 600; letter-spacing: .04em; margin-top: .6rem; color: var(--text); }
.metric .d { margin-top: .9rem; font-size: .95rem; color: var(--text-muted); line-height: 1.5; }

/* ---------- Comparison row ---------- */
.compare { display:grid; grid-template-columns: repeat(3,1fr); gap:1.2rem; margin-top:2.5rem; }
.compare .col { border:1px solid var(--border); border-radius: var(--r-md); padding:1.8rem; background: var(--surface); }
.compare .col.mid { border-color: var(--coral); background: linear-gradient(180deg, rgba(230,126,86,.08), var(--surface)); box-shadow: var(--shadow-glow); }
.compare .col .label { font-size: var(--fs-xs); letter-spacing:.16em; text-transform:uppercase; color: var(--text-faint); }
.compare .col .name { font-family: var(--font-display); font-weight:500; font-size:1.3rem; margin-top:.5rem; }
.compare .col.mid .name { color: var(--coral); }
.compare .col p { margin-top:.8rem; color: var(--text-muted); font-size:.95rem; }

/* ---------- Feature showcase (demo page) ---------- */
.feature { display:grid; grid-template-columns: 1fr 1.05fr; gap: 3rem; align-items: center; padding: 4rem 0; border-top: 1px solid var(--border-soft); }
.feature:first-of-type { border-top: none; }
/* reverse = image on the LEFT (text on right) for right/left alternation */
.feature.reverse { grid-template-columns: 1.05fr 1fr; }
.feature.reverse .f-shot { order: -1; }
.feature .f-num { font-family: var(--font-display); font-weight:600; font-size: 3rem; line-height:1; background: var(--grad-honey); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; opacity:.9; }
.feature .f-eyebrow { font-size: var(--fs-xs); letter-spacing:.18em; text-transform:uppercase; color: var(--coral); margin-top:.4rem; }
.feature h3 { font-family: var(--font-display); font-weight:500; font-size: var(--fs-h3); margin-top: 1rem; line-height:1.15; }
.feature .f-desc { margin-top: 1rem; color: var(--text-muted); }
.feature .f-points { margin-top: 1.4rem; display:flex; flex-direction:column; gap:.7rem; }
.feature .f-points li { display:flex; gap:.7rem; align-items:flex-start; font-size:.96rem; color: var(--text); }
.feature .f-points li::before { content:""; flex:none; width:11px;height:11px; margin-top:.32em; clip-path: polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%); background: var(--coral); opacity:.8; }
.feature .f-points li b { color: var(--text); font-weight:600; }
.feature .f-points li span { color: var(--text-muted); }
.f-points { margin-top: 1.4rem; display:flex; flex-direction:column; gap:.7rem; list-style:none; }
.f-points li { display:flex; gap:.7rem; align-items:flex-start; font-size:.96rem; color: var(--text); }
.f-points li::before { content:""; flex:none; width:11px;height:11px; margin-top:.32em; clip-path: polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%); background: var(--coral); opacity:.8; }
.f-points li span { color: var(--text-muted); }
.f-shot { position: relative; border-radius: var(--r-lg); overflow:hidden; border:1px solid var(--border); background: var(--surface); box-shadow: 0 30px 80px rgba(0,0,0,.45); }
.f-shot img { width:100%; display:block; }
.f-shot .shot-label { position:absolute; left:14px; top:14px; z-index:2; background: rgba(14,11,8,.78); backdrop-filter: blur(8px); border:1px solid var(--border); border-radius: var(--r-pill); padding:.4em .9em; font-size: var(--fs-xs); letter-spacing:.1em; text-transform:uppercase; color: var(--text-muted); }
.f-shot .shot-tag { position:absolute; right:14px; bottom:14px; z-index:2; }

/* ---------- Founder cards ---------- */
.founder { display:grid; grid-template-columns: .85fr 1.15fr; gap: 2.5rem; align-items: start; border:1px solid var(--border); border-radius: var(--r-lg); padding: 2.2rem; background: linear-gradient(180deg, var(--surface), var(--bg-3)); }
.founder .ph {
  aspect-ratio: 1/1; border-radius: var(--r-md); border:1px solid var(--border);
  background:
    radial-gradient(circle at 50% 38%, rgba(230,126,86,.22), transparent 60%),
    linear-gradient(160deg, var(--surface-3), var(--bg-3));
  display:grid; place-items:center; position:relative; overflow:hidden;
}
.founder .ph img { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; object-position:center 30%; display:block; }
.founder .ph .initials { font-family: var(--font-display); font-weight:600; font-size: 3rem; color: var(--coral); }
.founder .ph .hexring { position:absolute; inset:0; opacity:.5; pointer-events:none; }
.founder .ph.ph--dark:not(.ph--mc) img { object-position: center 8%; filter: brightness(.92) contrast(1.05); transform: scale(1.63); transform-origin: 50% 10%; }
.founder .ph.ph--dark .hexring { transform: translateY(-13%) scale(.9); opacity:.4; }
.founder .ph.ph--dark::after {
  content:""; position:absolute; inset:0; pointer-events:none; border-radius: inherit;
  background:
    radial-gradient(ellipse 58% 50% at 50% 34%, transparent 0%, transparent 34%, rgba(14,11,8,.45) 66%, rgba(14,11,8,.80) 100%);
}
.founder .ph.ph--dark.ph--mc img { object-position: center center; }
.founder .ph.ph--dark.ph--mc .hexring { transform: translateY(6%) scale(1.24); opacity:.8; mix-blend-mode: screen; -webkit-mask: linear-gradient(180deg, #000 0%, #000 62%, transparent 76%); mask: linear-gradient(180deg, #000 0%, #000 62%, transparent 76%); }
.founder .ph.ph--dark.ph--mc .hexring g { stroke: #E67E56; stroke-width: 1.3; }
.founder .ph.ph--dark.ph--mc::after {
  background: radial-gradient(ellipse 54% 54% at 50% 48%, transparent 0%, transparent 26%, rgba(14,11,8,.55) 58%, rgba(14,11,8,.88) 100%);
}
.founder .role { font-size: var(--fs-xs); letter-spacing:.18em; text-transform:uppercase; color: var(--coral); }
.founder h3 { font-family: var(--font-display); font-weight:500; font-size: 1.7rem; margin: .5rem 0 .2rem; }
.founder .title { color: var(--text-muted); font-size:.95rem; margin-bottom: 1rem; }
.founder .bio { color: var(--text-muted); font-size: 1rem; }
.founder .li-link {
  display: inline-flex; align-items: center; gap: .55em;
  margin-top: 1.4rem;
  font-size: .85rem; font-weight: 500; letter-spacing: .02em;
  color: var(--text-muted);
  transition: color .25s;
}
.founder .li-link svg { width: 17px; height: 17px; color: var(--coral); flex: none; }
.founder .li-link:hover { color: var(--text); }
.founder .li-link:hover svg { color: #0A66C2; }

/* ---------- Form ---------- */
.form-card { background: linear-gradient(180deg, var(--surface), var(--bg-3)); border:1px solid var(--border); border-radius: var(--r-lg); padding: 2.5rem; }
.field { margin-bottom: 1.2rem; }
.field label { display:block; font-size: var(--fs-xs); letter-spacing:.1em; text-transform:uppercase; color: var(--text-muted); margin-bottom:.5rem; font-weight:600; }
.field input, .field select, .field textarea {
  width:100%; background: var(--bg); border:1px solid var(--border); border-radius: var(--r-sm);
  color: var(--text); font-family: var(--font-body); font-size: 1rem; padding: .85rem 1rem; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(230,126,86,.15); }
.field textarea { resize: vertical; min-height: 90px; }
.form-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-grid .full { grid-column: 1 / -1; }
.form-note { font-size: var(--fs-xs); color: var(--text-faint); margin-top: 1rem; }
.form-success { display:none; text-align:center; padding: 2rem 1rem; }
.form-success.show { display:block; }
.form-success .check { width:64px;height:64px;margin:0 auto 1.2rem; display:grid;place-items:center; }
.form-success h3 { font-family: var(--font-display); font-size:1.6rem; margin-bottom:.6rem; }
.form-success p { color: var(--text-muted); }
.form-success .demo-box { margin-top:1.6rem; background: var(--bg); border:1px solid var(--border); border-radius: var(--r-md); padding:1.4rem; text-align:left; }
.form-success .demo-box .k { font-size:var(--fs-xs); letter-spacing:.12em; text-transform:uppercase; color:var(--text-faint); }
.form-success .demo-box .v { font-family: var(--font-body); font-weight:600; color: var(--text); margin-top:.2rem; word-break: break-all; }
.form-success .demo-box a { color: var(--coral); }

/* ---------- CTA band ---------- */
.cta-band { position:relative; padding: 5rem 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); overflow:hidden; }
.cta-band .inner { position:relative; z-index:2; text-align:center; }
.cta-band h2 { font-family: var(--font-display); font-weight:300; font-size: var(--fs-h2); max-width: 20ch; margin: 1rem auto 0; }
.cta-band p { color: var(--text-muted); max-width: 50ch; margin: 1.2rem auto 0; }
.cta-band .btns { margin-top: 2rem; display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

/* ---------- Footer ---------- */
.footer { padding: 4rem 0 3rem; border-top: 1px solid var(--border-soft); position:relative; z-index:2; }
.footer-top { display:flex; justify-content:space-between; gap:2rem; flex-wrap:wrap; align-items:flex-start; }
.footer .brand { font-size:1.3rem; }
.footer-meta { color: var(--text-faint); font-size: var(--fs-xs); margin-top:.6rem; line-height:1.7; }
.footer-links { display:flex; gap:2rem; }
.footer-links a { font-size: var(--fs-sm); color: var(--text-muted); }
.footer-links a:hover { color: var(--coral); }
.footer-bot { margin-top:2.5rem; padding-top:1.5rem; border-top:1px solid var(--border-soft); display:flex; justify-content:space-between; gap:1rem; flex-wrap:wrap; font-size: var(--fs-xs); color: var(--text-faint); }

/* ---------- Logo strip ---------- */
.logo-strip { display:flex; flex-wrap:wrap; gap:1.2rem 2rem; align-items:center; }
.logo-strip span { font-family: var(--font-display); font-weight:500; font-size: 1rem; color: var(--text-faint); letter-spacing:.02em; transition: color .2s; }
.logo-strip span:hover { color: var(--text-muted); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity:0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity:1; transform:none; }

/* ---------- Page header (subpages) ---------- */
.page-head { padding: 9rem 0 3rem; }
.page-head .h1 { margin-top:1.2rem; max-width:18ch; }
.page-head .lead { margin-top:1.4rem; max-width:54ch; }

/* ---------- Timeline ---------- */
.timeline { position:relative; margin-top:2rem; padding-left: 2rem; }
.timeline::before { content:""; position:absolute; left:5px; top:6px; bottom:6px; width:2px; background: linear-gradient(180deg, var(--coral), var(--border)); }
.tl-item { position:relative; padding-bottom: 2.2rem; }
.tl-item::before { content:""; position:absolute; left:-2rem; top:4px; width:13px;height:13px; clip-path: polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%); background: var(--coral); box-shadow: 0 0 12px rgba(230,126,86,.5); }
.tl-item .when { font-size: var(--fs-xs); letter-spacing:.12em; text-transform:uppercase; color: var(--coral); font-weight:600; }
.tl-item h4 { font-family: var(--font-display); font-weight:500; font-size:1.15rem; margin:.3rem 0 .4rem; }
.tl-item p { color: var(--text-muted); font-size:.95rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-3, .metrics, .compare { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-2-asym { grid-template-columns: 1fr; gap: 2rem; }
  .feature, .feature.reverse { grid-template-columns: 1fr; gap: 1.8rem; }
  .feature.reverse .f-shot { order: 0; }
  .founder { grid-template-columns: 1fr; }
  .nav-links { position: fixed; inset: 64px 0 auto 0; flex-direction: column; gap:0; background: rgba(14,11,8,.97); backdrop-filter: blur(16px); border-bottom:1px solid var(--border); padding: 1rem 28px 2rem; transform: translateY(-130%); transition: transform .35s; }
  .nav.open .nav-links { transform: none; }
  .nav-links a { padding: 1rem 0; border-bottom: 1px solid var(--border-soft); width:100%; }
  .nav-links a.active::after { display:none; }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn-primary { display:none; }
  .hero { padding: 8.5rem 0 4rem; }
  .section { padding: 4.5rem 0; }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .why-grid .hero-frame { max-width: 560px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction:column; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .nav-inner { padding: 14px 20px; }
  .hero-meta { gap: 1.6rem; }
  .card { padding: 1.5rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity:1; transform:none; }
  #honeycomb { display:none; }
}
