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

:root {
  --bg:        #07070C;
  --bg-2:      #0E0E16;
  --surface:   #111118;
  --ivory:     #F2EFEA;
  --ivory-2:   #C8C4BC;
  --ivory-3:   #6A6860;
  --ivory-4:   #3A3836;
  --accent:    #FF4500;
  --accent-d:  #CC3600;
  --teal:      #00C9A7;
  --serif:     'Fraunces', Georgia, serif;
  --cond:      'Barlow Condensed', sans-serif;
  --mono:      'IBM Plex Mono', monospace;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ivory);
  font-family: var(--cond);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center;
  padding: 0 40px; height: 52px;
  background: transparent;
  transition: background 0.3s;
}
.nav.scrolled {
  background: rgba(7,7,12,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-logo {
  font-family: var(--cond);
  font-size: 17px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ivory);
}
.nav-logo span { color: var(--accent); }
.nav-signal {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--teal);
}
.signal-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
  animation: pulse-teal 2s ease-in-out infinite;
}
@keyframes pulse-teal { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.8)} }
.nav-links {
  margin-left: auto;
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}
.nav-links li a {
  font-family: var(--cond);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(242,239,234,0.45);
  transition: color 0.2s;
}
.nav-links li a:hover { color: var(--ivory); }
.nav-links .lab-link a { color: var(--teal); }
.nav-links .lab-link a:hover { color: #00FFD4; }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  padding: 100px 48px 80px; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(255,69,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--accent);
}
.hero-tag {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px; position: relative; z-index: 1;
}
.hero-tag::before { content: ''; width: 28px; height: 1px; background: var(--accent); }
.hero-title {
  font-family: var(--cond); font-weight: 900;
  text-transform: uppercase; line-height: 0.88;
  letter-spacing: -0.01em; position: relative; z-index: 1;
}
.ht-line { display: block; font-size: clamp(96px, 14vw, 200px); color: var(--ivory); }
.ht-accent { color: var(--accent); }
.ht-ghost {
  color: transparent; -webkit-text-stroke: 1.5px rgba(242,239,234,0.18);
  display: block; font-size: clamp(72px, 10.5vw, 150px);
}
.hero-bottom {
  position: absolute; bottom: 48px; left: 48px; right: 48px;
  display: flex; align-items: flex-end; justify-content: space-between; z-index: 1;
}
.hero-quote {
  font-family: var(--serif); font-size: 14px; font-weight: 300; font-style: italic;
  color: rgba(242,239,234,0.35); line-height: 1.75; max-width: 340px;
  border-left: 1px solid rgba(255,69,0,0.3); padding-left: 16px;
}
.hero-quote cite {
  display: block; margin-top: 8px; font-style: normal;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(242,239,234,0.2);
}
.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(242,239,234,0.25);
}
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(242,239,234,0.25), transparent); }
.hero-cta-row {
  position: absolute; right: 48px; top: 50%; transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 12px; z-index: 1;
}

/* ── BUTTONS ── */
.btn {
  font-family: var(--cond); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 13px 28px; cursor: pointer;
  transition: all 0.2s; border: 1.5px solid transparent;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.btn-accent { background: var(--accent); color: var(--ivory); border-color: var(--accent); }
.btn-accent:hover { background: var(--accent-d); border-color: var(--accent-d); }
.btn-ghost-white { background: transparent; color: rgba(242,239,234,0.5); border-color: rgba(242,239,234,0.15); }
.btn-ghost-white:hover { border-color: var(--ivory); color: var(--ivory); }

/* ── FEATURED ── */
.featured-strip {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.feat-card {
  padding: 32px 36px; border-right: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; gap: 12px;
  background: var(--surface); transition: background 0.2s; cursor: pointer;
  position: relative; overflow: hidden;
}
.feat-card:last-child { border-right: none; }
.feat-card::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
  background: var(--accent); transform: scaleY(0); transform-origin: bottom;
  transition: transform 0.25s ease;
}
.feat-card:hover { background: var(--bg-2); }
.feat-card:hover::after { transform: scaleY(1); }
.feat-num { font-family: var(--mono); font-size: 9px; color: var(--ivory-3); letter-spacing: 0.1em; }
.feat-cat { font-family: var(--mono); font-size: 9px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.feat-title { font-family: var(--serif); font-size: 20px; font-weight: 700; line-height: 1.3; color: var(--ivory); }
.feat-excerpt { font-family: var(--cond); font-size: 14px; color: var(--ivory-3); line-height: 1.65; flex: 1; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.feat-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.06); }
.feat-date { font-family: var(--mono); font-size: 9px; color: var(--ivory-4); }
.feat-arrow { font-family: var(--mono); font-size: 14px; color: var(--ivory-4); transition: all 0.2s; }
.feat-card:hover .feat-arrow { color: var(--accent); transform: translateX(5px); }
.feat-lab { background: rgba(0,201,167,0.04); }
.feat-lab .feat-cat { color: var(--teal); }
.feat-lab .feat-title { color: rgba(0,255,212,0.85); }
.feat-lab::after { background: var(--teal); }
.feat-lab:hover { background: rgba(0,201,167,0.08); }

/* ── ARTICLES INDEX ── */
.section-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 48px; background: var(--bg-2);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.section-bar-text { font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory-3); }
.section-bar-count { font-family: var(--mono); font-size: 9px; color: var(--ivory-4); }
.article-row {
  display: grid; grid-template-columns: 52px 110px 1fr 28px;
  align-items: center; gap: 28px;
  padding: 18px 48px; border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s; cursor: pointer;
}
.article-row:hover { background: var(--bg-2); }
.article-row:hover .ar-title { color: var(--accent); }
.article-row:hover .ar-arrow { color: var(--accent); transform: translateX(4px); }
.ar-num { font-family: var(--mono); font-size: 20px; font-weight: 300; color: var(--ivory-4); line-height: 1; }
.ar-date { font-family: var(--mono); font-size: 9px; color: var(--ivory-4); }
.ar-cat { font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 3px; }
.ar-title { font-family: var(--serif); font-size: 18px; font-weight: 700; color: var(--ivory); line-height: 1.3; transition: color 0.15s; }
.ar-arrow { font-family: var(--mono); font-size: 16px; color: var(--ivory-4); transition: all 0.2s; justify-self: end; }

/* ── MANIFESTO ── */
.manifesto {
  background: var(--accent); padding: 72px 48px;
  display: grid; grid-template-columns: 140px 1fr; gap: 56px; align-items: start;
}
.manifesto-label {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(7,7,12,0.4); padding-top: 8px; writing-mode: vertical-rl; transform: rotate(180deg);
}
.manifesto-text {
  font-family: var(--serif); font-size: clamp(24px,3.5vw,44px);
  font-weight: 300; font-style: italic; line-height: 1.4; color: rgba(7,7,12,0.7);
}
.manifesto-text strong { color: var(--bg); font-weight: 700; font-style: normal; }

/* ── SINGLE POST ── */
.single-hero {
  padding: 120px 48px 64px;
  background: var(--bg-2);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.single-meta { display: flex; gap: 16px; align-items: center; margin-bottom: 24px; }
.single-date { font-family: var(--mono); font-size: 10px; color: var(--ivory-4); }
.single-title {
  font-family: var(--serif); font-size: clamp(36px,5vw,72px);
  font-weight: 700; line-height: 1.1; color: var(--ivory);
  max-width: 900px; margin-bottom: 32px;
}
.single-thumb { margin-top: 32px; max-height: 500px; overflow: hidden; }
.single-thumb img { width: 100%; object-fit: cover; }
.single-body {
  max-width: 760px; margin: 0 auto;
  padding: 64px 48px; font-size: 18px; line-height: 1.8;
  color: var(--ivory-2); font-family: var(--serif);
}
.single-body h1,.single-body h2,.single-body h3 { font-family: var(--cond); font-weight: 900; text-transform: uppercase; color: var(--ivory); margin: 48px 0 16px; }
.single-body h2 { font-size: 28px; }
.single-body h3 { font-size: 22px; }
.single-body p { margin-bottom: 24px; }
.single-body a { color: var(--accent); border-bottom: 1px solid rgba(255,69,0,0.3); }
.single-body a:hover { border-bottom-color: var(--accent); }
.single-body blockquote {
  border-left: 3px solid var(--accent); padding: 16px 24px;
  margin: 32px 0; font-style: italic; color: var(--ivory-3);
  background: var(--bg-2);
}
.single-body ul, .single-body ol { padding-left: 24px; margin-bottom: 24px; }
.single-body li { margin-bottom: 8px; }
.single-body img { margin: 32px auto; border-radius: 2px; }
.single-nav { border-top: 1px solid rgba(255,255,255,0.07); }

/* ── BLOG SECTION ── */
.blog-section { padding-top: 80px; }

/* ── FOOTER ── */
.footer { background: var(--bg-2); display: grid; grid-template-columns: 2fr 1fr 1fr; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-col { padding: 44px 36px; border-right: 1px solid rgba(255,255,255,0.05); }
.footer-col:last-child { border-right: none; }
.footer-brand { font-family: var(--cond); font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ivory); margin-bottom: 12px; }
.footer-brand span { color: var(--accent); }
.footer-desc { font-family: var(--cond); font-size: 13px; line-height: 1.7; color: var(--ivory-4); max-width: 240px; }
.footer-head { font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory-4); margin-bottom: 18px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-family: var(--cond); font-size: 14px; font-weight: 500; color: var(--ivory-3); transition: color 0.15s; display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '→'; font-family: var(--mono); font-size: 10px; color: var(--ivory-4); }
.footer-links a:hover { color: var(--ivory); }
.footer-bottom { background: var(--bg); border-top: 1px solid rgba(255,255,255,0.04); padding: 14px 36px; display: flex; justify-content: space-between; align-items: center; }
.footer-copy { font-family: var(--mono); font-size: 9px; color: var(--ivory-4); }
.footer-sig { font-family: var(--mono); font-size: 9px; color: var(--accent); }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { padding-bottom: 200px; }
  .hero-cta-row { position: static; transform: none; flex-direction: row; margin-top: 40px; }
  .hero-bottom { position: static; margin-top: 40px; flex-direction: column; gap: 24px; }
  .featured-strip { grid-template-columns: 1fr; }
  .feat-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .section-bar, .article-row { padding-left: 24px; padding-right: 24px; }
  .article-row { grid-template-columns: 40px 1fr 24px; }
  .ar-date { display: none; }
  .manifesto { grid-template-columns: 1fr; padding: 48px 24px; gap: 16px; }
  .manifesto-label { writing-mode: horizontal-tb; transform: none; }
  .footer { grid-template-columns: 1fr; }
  .footer-bottom { padding: 14px 24px; flex-direction: column; gap: 6px; }
  .nav { padding: 0 20px; }
  .nav-signal { display: none; }
  .nav-links { gap: 16px; }
  .single-body { padding: 40px 24px; }
  .single-hero { padding: 100px 24px 48px; }
}

/* ══════════════════════════════
   AI LAB PAGE
══════════════════════════════ */

.lab-hero {
  position: relative; min-height: 55vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 100px 48px 0; background: var(--bg); overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.lab-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 60%, rgba(0,201,167,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.lab-hero::after {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: var(--teal);
}
.lab-tag {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--teal);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px; position: relative; z-index: 1;
}
.lab-tag::before { content: ''; width: 28px; height: 1px; background: var(--teal); }
.lab-title-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 48px; position: relative; z-index: 1;
}
.lab-title {
  font-family: var(--cond); font-weight: 900;
  text-transform: uppercase; line-height: 0.88; letter-spacing: -0.01em;
}
.lt-main { display: block; font-size: clamp(80px,11vw,160px); color: var(--ivory); }
.lt-ghost {
  display: block; font-size: clamp(56px,8vw,112px);
  color: transparent; -webkit-text-stroke: 1.5px rgba(242,239,234,0.12);
}
.lab-sub {
  font-family: var(--cond); font-size: 16px; font-weight: 400;
  color: var(--ivory-3); line-height: 1.75; max-width: 440px;
  margin-top: 18px; position: relative; z-index: 1;
}
.lab-stats { display: flex; flex-shrink: 0; align-self: center; }
.lab-stat {
  padding: 16px 22px; border: 1px solid rgba(255,255,255,0.07);
  text-align: center; margin-left: -1px;
}
.lab-stat-n {
  font-family: var(--cond); font-size: 40px; font-weight: 900;
  color: rgba(242,239,234,0.08); line-height: 1; margin-bottom: 4px;
}
.lab-stat-l {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ivory-4);
}
.lab-tabs-bar {
  display: flex; border-top: 1px solid rgba(255,255,255,0.07);
  margin-top: 40px; position: relative; z-index: 1;
}
.lab-tab {
  font-family: var(--cond); font-size: 12px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(242,239,234,0.3); background: transparent; border: none;
  padding: 14px 22px; border-bottom: 2px solid transparent;
  cursor: pointer; transition: all 0.15s;
}
.lab-tab:hover { color: rgba(242,239,234,0.7); }
.lab-tab.active { color: var(--ivory); border-bottom-color: var(--teal); }

/* ── TOOL CARDS ── */
.tool-card {
  display: grid; grid-template-columns: 420px 1fr;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: var(--surface); transition: background 0.2s;
}
.tool-card:hover { background: var(--bg-2); }
.tool-card.rev { direction: rtl; }
.tool-card.rev > * { direction: ltr; }

.tool-preview {
  background: var(--bg-2);
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column; overflow: hidden;
}
.rev .tool-preview { border-right: none; border-left: 1px solid rgba(255,255,255,0.07); }

.preview-bar {
  background: rgba(255,255,255,0.03);
  padding: 9px 14px; display: flex; align-items: center; gap: 7px;
  border-bottom: 1px solid rgba(255,255,255,0.06); flex-shrink: 0;
}
.pd { width: 8px; height: 8px; border-radius: 50%; }
.pd-r { background: #FF5F57; } .pd-y { background: #FFBD2E; } .pd-g { background: #28CA41; }
.preview-url {
  flex: 1; text-align: center; font-family: var(--mono);
  font-size: 9px; color: rgba(242,239,234,0.2); letter-spacing: 0.04em;
}

/* Compass mock */
.compass-body { flex: 1; padding: 18px; display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.c-row { display: flex; gap: 12px; flex: 1; min-height: 200px; }
.c-sidebar {
  width: 110px; flex-shrink: 0;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px; padding: 10px; display: flex; flex-direction: column; gap: 5px;
}
.c-item {
  font-family: var(--mono); font-size: 8px; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(242,239,234,0.25); padding: 5px 7px; border-radius: 2px;
}
.c-item.on {
  background: rgba(255,69,0,0.15); color: var(--accent); border-left: 2px solid var(--accent);
}
.c-main { flex: 1; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.c-input {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px; padding: 9px 12px; display: flex; align-items: center; gap: 9px;
}
.c-input-txt { font-family: var(--mono); font-size: 9px; color: rgba(242,239,234,0.5); flex: 1; }
.c-input-btn {
  background: var(--accent); color: var(--bg); font-family: var(--mono);
  font-size: 8px; font-weight: 500; padding: 4px 9px; border-radius: 2px; flex-shrink: 0;
}
.c-output {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px; padding: 12px; flex: 1; overflow: hidden;
}
.c-out-lbl {
  font-family: var(--mono); font-size: 8px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 7px;
  display: flex; align-items: center; gap: 7px;
}
.c-out-lbl::after { content: ''; flex: 1; height: 1px; background: rgba(255,69,0,0.15); }
.c-line { font-family: var(--mono); font-size: 8px; color: rgba(242,239,234,0.4); line-height: 1.7; margin-bottom: 3px; }
.c-line.hi { color: rgba(242,239,234,0.8); }
.c-tag {
  display: inline-block; background: rgba(0,201,167,0.12); color: var(--teal);
  border: 1px solid rgba(0,201,167,0.2); padding: 2px 6px;
  font-family: var(--mono); font-size: 8px; margin-right: 4px; margin-bottom: 4px;
}

/* Cabinet mock */
.cab-body { flex: 1; padding: 18px; display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.cab-card {
  background: rgba(200,80,255,0.08); border: 1px solid rgba(200,80,255,0.18);
  border-radius: 3px; padding: 14px;
}
.cab-num { font-family: var(--mono); font-size: 8px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(200,140,255,0.45); margin-bottom: 5px; }
.cab-title { font-family: var(--serif); font-size: 15px; font-weight: 700; color: rgba(242,239,234,0.9); margin-bottom: 6px; line-height: 1.3; }
.cab-desc { font-family: var(--mono); font-size: 8px; color: rgba(242,239,234,0.4); line-height: 1.65; }
.cab-tags { display: flex; gap: 5px; margin-top: 8px; flex-wrap: wrap; }
.cab-tag { font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(200,140,255,0.55); border: 1px solid rgba(200,140,255,0.18); padding: 2px 6px; }
.cab-btns { display: flex; gap: 7px; }
.cab-btn {
  font-family: var(--mono); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 11px; border: 1px solid rgba(242,239,234,0.08); color: rgba(242,239,234,0.35);
  border-radius: 2px; cursor: pointer; background: transparent;
}
.cab-btn.p { background: rgba(200,80,255,0.18); border-color: rgba(200,140,255,0.3); color: rgba(220,180,255,0.85); }
.cab-resp {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 3px; padding: 12px; flex: 1; overflow: hidden;
}
.cab-resp-lbl {
  font-family: var(--mono); font-size: 8px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(200,140,255,0.5);
  margin-bottom: 7px; display: flex; align-items: center; gap: 7px;
}
.cab-resp-lbl::after { content: ''; flex: 1; height: 1px; background: rgba(200,80,255,0.12); }
.cab-resp-txt { font-family: var(--mono); font-size: 8px; color: rgba(242,239,234,0.4); line-height: 1.75; }
.cab-resp-txt em { color: rgba(242,239,234,0.75); font-style: italic; }

/* Tool info */
.tool-info { padding: 36px 44px; display: flex; flex-direction: column; gap: 18px; }
.t-status { display: flex; align-items: center; justify-content: space-between; }
.badge { font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border: 1px solid; display: flex; align-items: center; gap: 5px; }
.badge-live { color: #00CC6A; border-color: rgba(0,204,106,0.3); background: rgba(0,204,106,0.06); }
.badge-soon { color: var(--ivory-3); border-color: var(--ivory-4); }
.live-dot { width: 5px; height: 5px; border-radius: 50%; background: #00CC6A; animation: blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }
.t-engine { font-family: var(--mono); font-size: 9px; color: var(--ivory-4); }
.t-title { font-family: var(--cond); font-size: 32px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.01em; line-height: 1.1; color: var(--ivory); transition: color 0.15s; }
.tool-card:hover .t-title { color: var(--teal); }
.t-desc { font-family: var(--cond); font-size: 15px; font-weight: 400; color: var(--ivory-3); line-height: 1.7; }
.t-features { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.t-feat { font-family: var(--cond); font-size: 14px; color: var(--ivory-2); padding-left: 18px; position: relative; line-height: 1.5; }
.t-feat::before { content: '→'; position: absolute; left: 0; font-family: var(--mono); font-size: 10px; color: var(--teal); }
.t-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.t-tag { font-family: var(--mono); font-size: 8px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ivory-3); border: 1px solid rgba(255,255,255,0.1); padding: 3px 8px; }
.t-footer { display: flex; align-items: center; gap: 16px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.07); margin-top: auto; }
.t-cta { font-family: var(--cond); font-size: 13px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--teal); display: flex; align-items: center; gap: 8px; transition: gap 0.2s; }
.tool-card:hover .t-cta { gap: 14px; }
.t-req { font-family: var(--mono); font-size: 9px; color: var(--ivory-4); }

/* Coming soon */
.soon-row {
  display: grid; grid-template-columns: repeat(3,1fr);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.soon-card {
  padding: 28px 32px; border-right: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column; gap: 12px; background: var(--surface);
}
.soon-card:last-child { border-right: none; }
.soon-icon { font-family: var(--cond); font-size: 24px; color: rgba(242,239,234,0.1); }
.soon-title { font-family: var(--cond); font-size: 22px; font-weight: 900; text-transform: uppercase; color: rgba(242,239,234,0.3); }
.soon-desc { font-family: var(--cond); font-size: 13px; font-weight: 400; color: var(--ivory-4); line-height: 1.65; flex: 1; }
.soon-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.soon-tag { font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ivory-4); border: 1px solid rgba(255,255,255,0.07); padding: 3px 7px; }

/* Principles */
.principles {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.principle { padding: 28px 24px; border-right: 1px solid rgba(255,255,255,0.05); display: flex; flex-direction: column; gap: 10px; }
.principle:last-child { border-right: none; }
.p-n { font-family: var(--cond); font-size: 44px; font-weight: 900; color: rgba(242,239,234,0.05); line-height: 1; }
.p-title { font-family: var(--cond); font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ivory-2); }
.p-desc { font-family: var(--cond); font-size: 13px; font-weight: 400; color: var(--ivory-4); line-height: 1.65; }

/* Lab CTA */
.lab-cta {
  background: var(--teal); padding: 52px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.lab-cta h3 { font-family: var(--cond); font-size: 28px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.02em; color: var(--bg); margin-bottom: 8px; }
.lab-cta p { font-family: var(--cond); font-size: 14px; font-weight: 400; color: rgba(7,7,12,0.55); max-width: 400px; line-height: 1.65; }
.btn-dark { background: var(--bg); color: var(--teal); border: 1.5px solid var(--bg); }
.btn-dark:hover { background: #0E0E16; }

/* Lab responsive */
@media (max-width: 1024px) {
  .lab-hero { padding: 80px 24px 0; }
  .lab-title-row { flex-direction: column; gap: 24px; }
  .tool-card { grid-template-columns: 1fr; }
  .tool-card.rev { direction: ltr; }
  .tool-preview { min-height: 280px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .rev .tool-preview { border-left: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .soon-row { grid-template-columns: 1fr; }
  .soon-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .principles { grid-template-columns: 1fr 1fr; }
  .lab-cta { flex-direction: column; padding: 40px 24px; }
}
