/* ═══════════════════════════════════════════
   i3w.ai — Design System
   Hand-written. No frameworks. One file.
   ═══════════════════════════════════════════ */

/* ── Tokens ── */
:root {
  --bg: #0a0a0a;
  --fg: #ffffff;
  --fg-secondary: #e8e8e8;
  --fg-tertiary: #c8c8c8;
  --fg-muted: #b0b0b0;
  --fg-squad: #f5f5f5;
  --accent: #34d399;
  --cyan: #22d3ee;
  --violet: #a78bfa;
  --rose: #fb7185;
  --amber: #fbbf24;
  --border: rgba(255, 255, 255, 0.12);
  --max-width: 720px;
  --font: 'Geist', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Geist Mono', 'SF Mono', 'Fira Code', monospace;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; }
ul, ol, dl { list-style: none; }
dd { margin: 0; }

/* ── Base ── */
body {
  background: #0a0a0a;
  color: var(--fg);
  font-family: var(--font);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img { display: block; }

/* ── Layout ── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Header ── */
.header {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
  padding-top: 48px;
  padding-bottom: 48px;
}
.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
}
.header-logo-full {
  height: 56px;
  width: auto;
  object-fit: contain;
}
.header-name {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.05em;
}
.header a {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--fg);
  text-decoration: none;
}

/* ── Header Stacked (careers pages) ── */
.header-stacked {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* ── Header Nav ── */
.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-nav a,
.header-nav-link {
  color: var(--fg-secondary);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color 0.15s ease;
}
.header-nav a:hover,
.header-nav-link:hover {
  color: var(--fg);
  text-decoration: none;
}

/* ── Hero ── */
.hero {
  margin-bottom: 40px;
}
.hero h1 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 16px;
}
.hero p {
  color: var(--fg-secondary);
  font-size: 16px;
  line-height: 1.5;
}
.hero-memo {
  color: var(--fg-tertiary);
  font-size: 13px;
  margin-top: 12px;
  line-height: 1.6;
}

/* ── Traction Strip ── */
.traction {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.traction-item {
  display: flex;
  flex-direction: column;
}
.traction-value {
  font-size: 28px;
  font-weight: 700;
  order: 1;
}
.traction-label {
  color: var(--fg-tertiary);
  font-family: var(--font-mono);
  font-size: 11px;
  margin-top: 4px;
  letter-spacing: 0.02em;
  order: 2;
}
.traction-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}

/* ── Screen reader only (GEO sentences hidden visually) ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Accent utility ── */
.accent { color: var(--accent); }

/* ── Sections ── */
.section {
  border-top: 1px solid var(--border);
  padding-top: 40px;
  margin-bottom: 48px;
}
.section-label {
  color: var(--fg-tertiary);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
h3.section-heading,
.section-heading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
}
.section-body {
  color: var(--fg-secondary);
  font-size: 15px;
  line-height: 1.7;
}

/* ── Velocity Strip ── */
.velocity-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
  padding: 20px 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.015);
}
.velocity-item {
  display: flex;
  flex-direction: column;
}
.velocity-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--fg);
}
.velocity-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--fg-muted);
  letter-spacing: 0.06em;
  order: 2;
  margin-top: 2px;
}
.velocity-arrow {
  color: var(--fg-muted);
  font-size: 16px;
}

/* ── Cards (shared) ── */
.card-row {
  display: flex;
  gap: 16px;
}
.card {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
}

/* ── Product Cards ── */
.product-status {
  margin-bottom: 12px;
}
.product-status-text {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.product-status-text::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
}
.status-live { color: var(--accent); }
.status-live::before { background: var(--accent); }
.status-launching { color: var(--amber); }
.status-launching::before { background: var(--amber); }
.status-soon { color: var(--fg-tertiary); }
.status-soon::before { background: #555; }
.b2g-intro { margin-bottom: 28px; }
.section-last {
  margin-bottom: 0;
  padding-top: 24px;
  padding-bottom: 24px;
}
.careers-section { margin-bottom: 48px; }
.product-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.product-desc {
  color: var(--fg-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* ── Product Links ── */
.product-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
}

/* ── Product Hero Card (InfiNotes) ── */
.product-hero {
  flex: none;
  margin-bottom: 16px;
  padding: 32px;
  border-color: rgba(16, 185, 129, 0.15);
}
.product-hero-content {
  margin-bottom: 24px;
}
.product-name-hero {
  font-size: 24px;
  margin-bottom: 10px;
}
.product-desc-hero {
  font-size: 14px;
  line-height: 1.7;
}
.product-link-hero {
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}

/* ── Product Figure (screenshot placeholders) ── */
.product-figure {
  margin: 0;
}
.product-figure-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.02);
  border: 1px dashed rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}
.product-figcaption {
  color: var(--fg-muted);
  font-size: 11px;
  margin-top: 8px;
  text-align: center;
}

/* ── Companion Hero Card ── */
.product-hero-companion {
  border-color: rgba(234, 179, 8, 0.15);
}

/* ── InfiSolve Teaser ── */
.product-teaser {
  flex: none;
  margin-top: 16px;
  padding: 20px 24px;
  border-style: dashed;
}

/* ── Sparks ── */
.sparks {
  margin-top: 24px;
  padding: 20px 24px;
  border-left: 2px solid rgba(16, 185, 129, 0.25);
  background: rgba(255, 255, 255, 0.015);
  border-radius: 0 6px 6px 0;
}
.sparks-headline {
  color: var(--fg);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.sparks-body {
  color: var(--fg-secondary);
  font-size: 13px;
  line-height: 1.6;
}
.sparks-body strong {
  color: var(--fg);
  font-weight: 600;
}
.sparks-flow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.sparks-node {
  color: var(--fg-squad);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.sparks-arrow {
  color: var(--accent);
  font-size: 14px;
}

/* ── GEO Sentences ── */
.geo-sentence {
  color: var(--fg-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ── Distribution ── */
.distribution-body {
  margin-top: 20px;
}

/* ── Drop Calendar ── */
.drop-calendar {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.drop-item {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.drop-item:last-child {
  border-bottom: none;
}
.drop-date {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  min-width: 56px;
  flex-shrink: 0;
}
.drop-desc {
  color: var(--fg-secondary);
  font-size: 14px;
}

/* ── Carousel ── */
.carousel {
  position: relative;
  margin-top: 16px;
}
.carousel-track {
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border);
  position: relative;
}
.carousel-track {
  position: relative;
}
.carousel-slide {
  width: 100%;
  max-height: 100vh;
  object-fit: contain;
  border-radius: 6px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.carousel-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
.carousel-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.02);
  color: var(--fg-muted);
  font-size: 13px;
  font-family: var(--font-mono);
}
.carousel-placeholder.active {
  display: flex;
}
.carousel-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
}
.carousel-btn {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: var(--fg-secondary);
  font-size: 20px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  font-family: var(--font);
  pointer-events: auto;
  backdrop-filter: blur(4px);
}
.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--fg);
}
.carousel-counter {
  color: var(--fg-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  background: rgba(0, 0, 0, 0.5);
  padding: 2px 8px;
  border-radius: 4px;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.lightbox[hidden] {
  display: none;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 8px;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: none;
  border: none;
  color: var(--fg-secondary);
  font-size: 32px;
  cursor: pointer;
  transition: color 0.15s ease;
}
.lightbox-close:hover {
  color: var(--fg);
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--fg-secondary);
  font-size: 28px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: rgba(255, 255, 255, 0.25);
  color: var(--fg);
}
.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--fg-secondary);
  font-size: 13px;
  font-family: var(--font-mono);
  text-align: center;
  max-width: 600px;
}

/* ── B2G Cards ── */
/* ── Engineering Depth Cards ── */
.depth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.depth-card {
  padding: 20px;
}
.depth-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
}
.depth-desc {
  color: var(--fg-secondary);
  font-size: 13px;
  line-height: 1.6;
}

.b2g-card {
  padding: 20px;
}
.b2g-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.b2g-subtitle {
  color: var(--fg-tertiary);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.b2g-desc {
  color: var(--fg-secondary);
  font-size: 14px;
  line-height: 1.7;
}

/* ── Founder Role ── */
.founder-role {
  color: var(--fg-tertiary);
  font-family: var(--font-mono);
  font-size: 12px;
  margin-top: 2px;
  margin-bottom: 6px;
}

/* ── Team ── */
.founder {
  margin-bottom: 20px;
}
.founder-name {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}
.founder-name a {
  color: var(--fg);
  text-decoration: none;
  transition: color 0.15s ease;
}
.founder-name a:hover {
  color: var(--accent);
  text-decoration: none;
}
.founder-creds {
  color: var(--fg-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 6px;
}
.founder-creds li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 2px;
}
.founder-creds li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--fg-muted);
  font-weight: 700;
}
.squad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.squad li {
  display: flex;
  flex-direction: column;
}
.squad-member-name {
  color: var(--fg-squad);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
}
.squad-member-name:hover {
  color: var(--accent);
  text-decoration: none;
}
.squad-member-role {
  color: var(--fg-muted);
  font-family: var(--font-mono);
  font-size: 11px;
  margin-top: 2px;
}
.squad-member-bio {
  color: var(--fg-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 6px;
  display: block;
}

/* Squad hiring slot */
.squad-hiring {
  border-style: dashed;
}
.squad-hiring-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.squad-hiring-link {
  font-size: 12px;
  margin-top: 8px;
  display: inline-block;
}

/* ── Careers ── */
.role-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.jd-starburst {
  width: 48px;
  height: 48px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
  opacity: 0.35;
}
.role-star {
  width: 52px;
  height: 52px;
  opacity: 0.6;
  flex-shrink: 0;
  align-self: center;
}
.role-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.role-desc {
  color: var(--fg-secondary);
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.6;
}
.role-vertical {
  color: var(--fg-tertiary);
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  margin-left: 20px;
  align-self: flex-start;
  margin-top: 4px;
}

/* Role card as link */
a.role-card-link {
  color: var(--fg);
  text-decoration: none;
  transition: border-color 0.15s ease;
}
a.role-card-link:hover {
  border-color: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}
a.role-card-link:hover .role-name {
  color: var(--accent);
}

/* ── Role Vertical Tag (detail pages) ── */
.role-vertical-tag {
  color: var(--fg-tertiary);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 8px;
}
.role-hiring-manager {
  color: var(--fg-secondary);
  font-size: 16px;
  font-weight: 500;
  margin-top: 6px;
}

/* ── Job Description Sections ── */
.jd-section {
  margin-bottom: 40px;
}
.jd-heading {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg-secondary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.jd-body {
  color: var(--fg-secondary);
  font-size: 16px;
  line-height: 1.8;
}
.jd-body p {
  margin-bottom: 12px;
}
.jd-body p:last-child {
  margin-bottom: 0;
}
.jd-list {
  color: var(--fg-secondary);
  font-size: 16px;
  line-height: 1.8;
  list-style: none;
  padding: 0;
}
.jd-list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
}
.jd-list li::before {
  content: "·";
  position: absolute;
  left: 0;
  color: var(--fg-muted);
  font-weight: 700;
}
.jd-list li:last-child {
  margin-bottom: 0;
}
.jd-apply {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  margin-bottom: 0;
}

/* ── Footer ── */
.footer {
  padding: 32px 0 48px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--fg-muted);
}
.footer-entity {
  color: var(--fg-secondary);
  font-weight: 500;
}
.footer-dpiit {
  color: var(--fg-secondary);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.footer-dpiit-id {
  color: var(--fg-tertiary);
  font-weight: 500;
}
.footer-meta {
}
.footer-links {
  margin-top: 12px;
  font-size: 12px;
}
.footer-links a {
  color: var(--fg-tertiary);
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-links a:hover {
  color: var(--fg);
  text-decoration: none;
}
.footer-link-sep {
  color: rgba(255, 255, 255, 0.15);
  margin: 0 6px;
}

/* ═══════════════════════════════════════════
   Production Theme (merged from v7)
   ═══════════════════════════════════════════ */

/* Hero — massive, gradient, glow */
.hero { margin-bottom: 56px; }
.hero h1 {
  font-size: 60px;
  letter-spacing: -0.045em;
  line-height: 1.02;
  background: linear-gradient(135deg, #fff 0%, #34d399 45%, #22d3ee 75%, #a78bfa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  padding-bottom: 8px;
}
.hero::after {
  content: '';
  display: block;
  width: 200px;
  height: 3px;
  margin-top: 24px;
  background: linear-gradient(90deg, var(--accent), var(--cyan), var(--violet));
  border-radius: 2px;
}
.hero p { font-size: 20px; color: var(--fg); margin-top: 4px; }
.hero-memo { color: var(--fg-secondary); font-size: 15px; margin-top: 16px; }

/* Traction — glowing grid */
.traction {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 0;
  background: linear-gradient(160deg, rgba(52,211,153,0.06) 0%, rgba(34,211,238,0.04) 30%, rgba(167,139,250,0.04) 70%, transparent 100%);
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 0 60px rgba(52,211,153,0.06), 0 0 120px rgba(167,139,250,0.03);
}
.traction-item { padding: 28px; border-right: 1px solid rgba(255,255,255,0.05); }
.traction-item:last-of-type { border-right: none; }
.traction-divider { display: none; }
.traction-value { font-size: 36px; letter-spacing: -0.02em; white-space: nowrap; }
.traction-label { font-size: 11px; }
.traction-item:nth-child(1) .traction-label { color: var(--accent); }
.traction-item:nth-child(3) .traction-label { color: var(--cyan); }
.traction-item:nth-child(5) .traction-label { color: var(--cyan); }
.traction-item:nth-child(7) .traction-label { color: var(--violet); }

/* Sections */
.section { border-top-color: rgba(255,255,255,0.06); padding-top: 48px; margin-bottom: 56px; }
.section-heading { font-size: 28px; letter-spacing: -0.03em; color: var(--fg); }
.section-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.18em;
  background: linear-gradient(90deg, var(--accent), var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
}
.section-body { font-size: 17px; line-height: 1.8; }
.geo-sentence { font-size: 16px; }

/* Product cards — glassy, gradient borders */
.card { border-radius: 16px; }
.product-hero {
  padding: 40px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(135deg, rgba(52,211,153,0.4), rgba(34,211,238,0.2), transparent) border-box;
  box-shadow: 0 4px 40px rgba(52,211,153,0.08);
}
.product-hero-companion {
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(135deg, rgba(234,179,8,0.4), rgba(251,113,133,0.2), transparent) border-box;
  box-shadow: 0 4px 40px rgba(234,179,8,0.06);
}
.product-teaser {
  border-style: solid;
  border-radius: 16px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(135deg, rgba(167,139,250,0.4), rgba(251,113,133,0.15), transparent) border-box;
  padding: 28px 32px;
}
.product-name-hero { font-size: 34px; letter-spacing: -0.02em; }
.product-desc { font-size: 16px; line-height: 1.8; }
.product-link-hero { font-size: 16px; padding: 8px 20px; background: rgba(52,211,153,0.1); border: 1px solid rgba(52,211,153,0.25); border-radius: 8px; transition: background 0.2s ease; }
.product-link-hero:hover { background: rgba(52,211,153,0.2); text-decoration: none; }

/* Status badges — glowing pills */
.status-live { background: rgba(52,211,153,0.15); padding: 4px 12px; border-radius: 6px; box-shadow: 0 0 12px rgba(52,211,153,0.15); }
.status-launching { background: rgba(234,179,8,0.15); padding: 4px 12px; border-radius: 6px; box-shadow: 0 0 12px rgba(234,179,8,0.1); }
.status-soon { background: rgba(167,139,250,0.15); padding: 4px 12px; border-radius: 6px; color: var(--violet); box-shadow: 0 0 12px rgba(167,139,250,0.1); }
.status-soon::before { background: var(--violet); }

/* Sparks — glassy callout */
.sparks {
  background: linear-gradient(135deg, rgba(52,211,153,0.07) 0%, rgba(34,211,238,0.04) 50%, rgba(167,139,250,0.03) 100%);
  border-left: none;
  border-image: none;
  border: 1px solid rgba(52,211,153,0.15);
  border-radius: 16px;
  padding: 28px 32px;
}
.sparks-headline { font-size: 18px; }
.sparks-body { font-size: 14px; }
.sparks-node { border-color: rgba(52,211,153,0.3); background: rgba(52,211,153,0.08); color: var(--fg); font-size: 13px; padding: 6px 16px; border-radius: 8px; }

/* Velocity + Distribution */
.velocity-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(160deg, rgba(52,211,153,0.08) 0%, rgba(34,211,238,0.05) 50%, rgba(167,139,250,0.03) 100%);
  border: 1px solid rgba(52,211,153,0.12);
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 2px 30px rgba(52,211,153,0.05);
  overflow: hidden;
}
.velocity-strip .velocity-item { padding: 20px; border-right: 1px solid rgba(255,255,255,0.05); }
.velocity-strip .velocity-item:last-of-type { border-right: none; }
.velocity-strip .velocity-arrow { display: none; }
.velocity-value { font-size: 16px; color: var(--fg); white-space: nowrap; }
.velocity-arrow { color: var(--accent); font-size: 18px; }
.distribution-body { font-size: 17px; }

/* Distribution strip — cyan accent instead of green */
.distribution-strip {
  background: linear-gradient(160deg, rgba(34,211,238,0.08) 0%, rgba(167,139,250,0.04) 50%, transparent 100%);
  border-color: rgba(34,211,238,0.12);
  box-shadow: 0 2px 30px rgba(34,211,238,0.05);
}

/* Velocity & Distribution section decoration */
.section[aria-labelledby="velocity-heading"] {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--accent), transparent 60%) 1;
}
.section[aria-labelledby="distribution-heading"] {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--cyan), transparent 60%) 1;
}
.section[aria-labelledby="depth-heading"] {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--violet), transparent 60%) 1;
}
.section[aria-labelledby="team-heading"] {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--rose), transparent 60%) 1;
}
.section[aria-labelledby="roadmap-heading"] {
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--amber), transparent 60%) 1;
}

/* Engineering depth cards */
.depth-card {
  padding: 24px;
}
.depth-title { font-size: 16px; }
.depth-voice .depth-title { color: var(--accent); }
.depth-ml .depth-title { color: var(--cyan); }
.depth-vision .depth-title { color: var(--violet); }
.depth-speech .depth-title { color: var(--amber); }
.depth-lang .depth-title { color: var(--rose); }
.depth-dev .depth-title { color: #f472b6; }
.depth-desc { font-size: 14px; }

.b2g-card {
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    linear-gradient(135deg, rgba(34,211,238,0.3), rgba(167,139,250,0.15), transparent) border-box;
}
.b2g-title { font-size: 19px; }
.b2g-subtitle { color: var(--cyan); font-size: 12px; }
.b2g-desc { font-size: 15px; }

/* Team — founders as showcase cards */
.founder {
  padding: 24px 28px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  margin-bottom: 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.founder:hover {
  border-color: rgba(52,211,153,0.2);
  box-shadow: 0 4px 30px rgba(52,211,153,0.05);
}
.founder-name { font-size: 24px; letter-spacing: -0.02em; }
.founder-role {
  font-size: 13px;
  color: var(--cyan);
  margin-bottom: 8px;
}
.founder-creds { font-size: 15px; }
.founder-creds li { margin-bottom: 4px; }
.founder-creds li::before { color: var(--accent); }

/* Monograms — base (hidden outside V7) */
.founder-monogram { display: none; }
.squad-monogram { display: none; }

/* V7 monograms */
.founder { display: flex; align-items: flex-start; gap: 20px; }
.founder-monogram { display: block; width: 72px; height: 72px; flex-shrink: 0; }
.founder-info { flex: 1; }

.squad { margin-top: 20px; grid-template-columns: repeat(2, 1fr); }
.squad-monogram { display: block; width: 36px; height: 36px; margin-bottom: 6px; }
.squad li {
  padding: 14px 18px;
  align-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s ease;
}
.squad li:hover { border-color: rgba(52,211,153,0.2); }
.squad-member-name { font-size: 18px; font-weight: 700; }
.squad-member-role { color: var(--cyan); font-size: 12px; }
.squad-member-bio { font-size: 14px; color: var(--fg-secondary); }

/* Drop calendar */
.drop-item { padding: 16px 0; border-bottom-color: rgba(52,211,153,0.08); }
.drop-date { font-size: 16px; min-width: 64px; }
.drop-desc { font-size: 16px; color: var(--fg); }

/* Footer */
.footer { font-size: 13px; padding-top: 40px; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .container {
    padding: 0 24px;
  }
  .header {
    flex-wrap: wrap;
    gap: 12px;
    padding: 32px 0;
  }
  .header-nav {
    gap: 20px;
  }
  .hero h1 {
    font-size: 28px;
  }
  .card-row {
    flex-direction: column;
  }
  .product-hero {
    padding: 24px;
  }
  .product-name-hero {
    font-size: 20px;
  }
  .traction {
    gap: 16px;
  }
  .traction-divider {
    display: none;
  }
  .traction { grid-template-columns: repeat(2, 1fr); }
  .traction-item:nth-child(2) { border-right: none; }
  .traction-item:nth-child(3),
  .traction-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.05); }
  .hero h1 { font-size: 40px; }
  .product-hero { padding: 28px; }
  .section-heading { font-size: 22px; }
  .velocity-strip { grid-template-columns: repeat(2, 1fr); }
  .velocity-strip .velocity-item:nth-child(2) { border-right: none; }
  .velocity-strip .velocity-item:nth-child(3),
  .velocity-strip .velocity-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.05); }
  .squad { grid-template-columns: 1fr; }
  .depth-grid { grid-template-columns: 1fr; }
  .squad { grid-template-columns: 1fr; }
  .sparks-flow { flex-wrap: wrap; }
  .founder-monogram { width: 56px; height: 56px; }
  .role-card {
    flex-wrap: wrap;
  }
  .role-star {
    width: 36px;
    height: 36px;
  }
  .role-vertical {
    margin-left: 0;
    margin-top: 8px;
    width: 100%;
  }
}
