/* Utenx · site · Grid v0.1 aesthetic */
.skip-link {
  position: absolute;
  top: -40px;
  left: 16px;
  background: var(--ink);
  color: var(--bone);
  padding: 10px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  z-index: 1000;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; }

:root {
  --bone: #FAFAF7;   /* warm near-white, oklch(0.98 0.003 80) */
  --ink: #0B0D11;
  --iron: #3A3D45;
  --coral: #FF5A3C;
  --paper: #EFEDE5;  /* deeper warm tint for surface separation */
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: 'Inter', -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.mono {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: var(--iron);
}

a { color: inherit; text-decoration: none; }

/* === Top bar === */
.topbar {
  border-bottom: 1px solid var(--ink);
  padding: 20px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  background: var(--bone);
  z-index: 10;
}
.topbar-left { display: flex; gap: 16px; align-items: center; }
.topbar-mark { width: 28px; height: 28px; }
.topbar-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.03em;
}
.topbar-nav { display: flex; gap: 28px; }
.topbar-nav a { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; padding: 8px 0; }
.topbar-nav a:hover { color: var(--coral); }
.topbar-nav a:focus-visible { outline: 2px solid var(--coral); outline-offset: 4px; }
@media (max-width: 720px) {
  .topbar { padding: 16px 20px; }
  .topbar-nav { gap: 14px; }
  .topbar-nav a:nth-child(3) { display: none; }
  .topbar-nav a { font-size: 10.5px; letter-spacing: 0.1em; }
}
@media (max-width: 360px) {
  .topbar-nav a:nth-child(2) { display: none; }
}
.cta:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }

/* === Layout === */
.wrap { max-width: 1320px; margin: 0 auto; padding-left: clamp(20px, 4vw, 48px); padding-right: clamp(20px, 4vw, 48px); }
.section { padding: clamp(56px, 9vw, 96px) 0; border-top: 1px solid var(--ink); }
.section:first-of-type { border-top: 0; }

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--coral);
  display: inline-block;
}

h1, h2, h3 { font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: -0.03em; line-height: 0.95; overflow-wrap: break-word; }
h1 { font-size: clamp(64px, 11vw, 200px); }
h2 { font-size: clamp(40px, 6vw, 96px); margin-bottom: 32px; }
h3 { font-size: clamp(24px, 3vw, 44px); margin-bottom: 16px; }

p { max-width: 64ch; font-size: 18px; line-height: 1.55; margin-bottom: 16px; }
p.lede { font-size: clamp(20px, 2vw, 28px); line-height: 1.45; max-width: 80ch; }

ul.bare { list-style: none; }

/* === Hero === */
.hero { padding-top: 96px; padding-bottom: 96px; }
.hero h1 { margin-bottom: 32px; }
.hero .sub { font-size: clamp(20px, 2vw, 28px); max-width: 64ch; margin-bottom: 32px; }
.hero .cta-row { display: flex; gap: 16px; margin-top: 32px; }
.cta {
  display: inline-block;
  padding: 14px 24px;
  border: 1px solid var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cta.primary { background: var(--ink); color: var(--bone); }
.cta.primary:hover { background: var(--coral); color: var(--ink); border-color: var(--coral); }
.cta.ghost:hover { background: var(--ink); color: var(--bone); }

/* === Mark (5×5 pixel X) === */
.mark { display: inline-block; vertical-align: middle; }
.mark svg { display: block; }

/* === Domain grid === */
.domain-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--ink);
  margin-top: 48px;
}
.domain-cell {
  padding: 32px 24px;
  border-right: 1px solid var(--ink);
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.domain-cell:last-child { border-right: 0; }
.domain-cell h3 { font-size: 32px; margin-bottom: 16px; }
.domain-cell .domain-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--iron); margin-bottom: 12px; }
.domain-cell .domain-meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: var(--iron); letter-spacing: 0.04em; }

@media (max-width: 1024px) {
  .domain-grid { grid-template-columns: repeat(2, 1fr); }
  .domain-cell { border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
  .domain-grid .domain-cell:nth-child(2n) { border-right: 0; }
  .domain-grid .domain-cell:last-child { border-bottom: 0; }
}
@media (max-width: 560px) {
  .domain-grid { grid-template-columns: 1fr; }
  .domain-grid .domain-cell { border-right: 0 !important; border-bottom: 1px solid var(--ink); min-height: auto; padding: 24px 20px; }
  .domain-grid .domain-cell:last-child { border-bottom: 0; }
  .domain-cell h3 { font-size: 26px; }
  .domain-cell::after { left: 20px; right: 20px; bottom: 18px; }
}

/* === Process steps === */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--ink);
  margin-top: 48px;
}
.step {
  padding: clamp(24px, 4vw, 32px);
  border-right: 1px solid var(--ink);
}
.step:last-child { border-right: 0; }
@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--ink); }
  .step:last-child { border-bottom: 0; }
  .steps .stitch-line { display: none; }
}
.step-num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(72px, 11vw, 96px);
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--ink);
  margin-bottom: 16px;
}
.step-num .ms { color: var(--coral); }
.step h3 { font-size: 28px; margin-bottom: 12px; }
.step .step-meta { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--iron); margin-bottom: 16px; }

/* === Quote block === */
.quote-block {
  position: relative;
  border: 1px solid var(--ink);
  padding: clamp(24px, 4vw, 40px) clamp(20px, 4vw, 40px) clamp(24px, 4vw, 32px);
  background: var(--paper);
  margin: 32px 0;
}
.quote-block::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 16px;
  height: 16px;
  background: var(--coral);
}
.quote-block p { font-size: clamp(20px, 2.4vw, 32px); line-height: 1.35; max-width: 60ch; font-weight: 500; }
.quote-block cite { display: block; margin-top: 16px; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-style: normal; color: var(--iron); letter-spacing: 0.12em; text-transform: uppercase; }

/* === Spec table === */
table.spec {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--ink);
  margin-top: 32px;
}
table.spec th, table.spec td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--iron);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.04em;
}
table.spec th {
  background: var(--ink);
  color: var(--bone);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
table.spec td:nth-child(1) { font-weight: 700; }
table.spec tr:last-child td { border-bottom: 0; }

/* === Engagement log === */
.eng-log { margin-top: 32px; border-top: 1px solid var(--iron); border-bottom: 1px solid var(--iron); }
.eng-row {
  display: grid;
  grid-template-columns: 100px 80px 200px 1fr 120px;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--iron);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  align-items: baseline;
}
.eng-row:last-child { border-bottom: 0; }
.eng-row.head { font-weight: 700; color: var(--iron); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; }
.eng-row .id { font-weight: 700; }
.eng-row .proj { font-family: 'Inter', sans-serif; font-size: 16px; letter-spacing: -0.01em; }
.eng-row .status { font-weight: 700; color: var(--ink); letter-spacing: 0.14em; text-transform: uppercase; position: relative; padding-left: 14px; }
.eng-row .status::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 8px; height: 8px;
  background: var(--coral);
  transform: translateY(-50%);
}
.eng-row.head .status { padding-left: 0; }
.eng-row.head .status::before { display: none; }
@media (max-width: 800px) {
  .eng-log { border: 1px solid var(--ink); }
  .eng-row, .eng-row.head { grid-template-columns: 1fr; gap: 4px; padding: 16px 20px; border-bottom: 1px solid var(--iron); }
  .eng-row.head { display: none; }
  .eng-row .id { font-size: 11px; color: var(--iron); letter-spacing: 0.14em; }
  .eng-row .proj { font-size: 17px; margin: 4px 0; }
  .eng-row > div:nth-child(2),
  .eng-row > div:nth-child(3) { display: inline-block; margin-right: 12px; font-size: 11px; color: var(--iron); letter-spacing: 0.14em; text-transform: uppercase; }
  .eng-row .status { padding-left: 14px; align-self: start; font-size: 11px; }
}

/* === Footer === */
footer {
  border-top: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bone);
  padding: 64px clamp(20px, 4vw, 48px) 32px;
}
footer .foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1320px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  footer .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 520px) {
  footer .foot-grid { grid-template-columns: 1fr; }
}
footer h4 { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--iron); margin-bottom: 16px; }
footer a { color: var(--bone); display: block; padding: 4px 0; font-size: 14px; }
footer a:hover { color: var(--coral); }
footer .brand-block .mark { margin-bottom: 16px; }
footer .brand-block p { font-size: 14px; color: var(--iron); max-width: 36ch; }
footer .foot-meta {
  max-width: 1320px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--iron);
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--iron);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* === Two-column block === */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; margin-top: 48px; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

.tag { display: inline-block; padding: 4px 10px; border: 1px solid var(--iron); font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--iron); }

.big-num { font-family: 'Inter', sans-serif; font-weight: 700; font-size: clamp(80px, 12vw, 220px); letter-spacing: -0.04em; line-height: 0.9; }
.big-num .accent { color: var(--coral); }

/* ============================================================
   GSAP animation layer — Grid v0.1 motion system
   ============================================================ */

/* lock scroll during intro */
body.intro-lock { overflow: hidden; }

/* === Hero rework with mega-X === */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 64px;
  padding-bottom: 64px;
}
@media (max-width: 720px) {
  .hero {
    min-height: auto;
    justify-content: flex-start;
    padding-top: 32px;
    padding-bottom: 48px;
  }
  .hero h1 { font-size: clamp(44px, 13vw, 80px); }
  .hero .sub { font-size: 17px; }
  .hero .cta-row { flex-direction: column; gap: 12px; }
  .hero .cta { width: 100%; text-align: center; }
}
.hero > * { position: relative; z-index: 2; }
.hero > .mega-x, .hero > .spec-hud { z-index: 1; }

.mega-x {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.mega-x .grid {
  position: relative;
  width: min(78vmin, 760px);
  aspect-ratio: 1;
  opacity: 1;
  will-change: transform, opacity;
}
.mega-x .cell {
  position: absolute;
  width: 20%;
  height: 20%;
  background: var(--ink);
  will-change: transform, opacity;
}
.mega-x .cell.coral { background: var(--coral); }
.mega-x .cell.coral::after {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255,90,60,0.35), transparent 60%);
  opacity: 0;
  pointer-events: none;
}
.mega-x[data-state="ignite"] .cell.coral::after { opacity: 1; }

/* === Hero typography (SplitText reveal) === */
.hero h1 { will-change: transform; }
.hero h1 .split-line { overflow: hidden; padding-bottom: 0.05em; }
.hero h1 .split-word { display: inline-block; white-space: nowrap; }
.hero h1 .split-char { display: inline-block; will-change: transform, opacity; }

/* === Section h2 word-reveal === */
.h2-line { overflow: hidden; padding-bottom: 0.06em; }
.h2-word { display: inline-block; will-change: transform, opacity; }

/* === Spec HUD === */
.spec-hud {
  position: absolute;
  top: 24px;
  right: 48px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--iron);
  text-align: right;
  line-height: 1.9;
  pointer-events: none;
  z-index: 3;
}
.spec-hud .row { display: flex; gap: 14px; justify-content: flex-end; align-items: baseline; }
.spec-hud .k { opacity: 0.7; }
.spec-hud .v { color: var(--ink); font-weight: 700; min-width: 4ch; text-align: right; }
.spec-hud .bar {
  display: inline-block;
  width: 60px;
  height: 6px;
  background: rgba(11,13,17,0.1);
  position: relative;
  overflow: hidden;
  vertical-align: middle;
}
.spec-hud .bar-fill {
  position: absolute;
  inset: 0;
  background: var(--coral);
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
}
@media (max-width: 720px) {
  .spec-hud { display: none; }
}

/* === Mark dots (per-domain mini X) === */
.mark-mini {
  width: 28px;
  height: 28px;
  display: inline-block;
  margin-bottom: 14px;
}
.mark-mini rect {
  transform-box: fill-box;
  transform-origin: center;
  will-change: transform;
}

/* === Domain cell coral accent line that draws on hover === */
.domain-cell {
  position: relative;
  transition: background 0.3s ease;
  cursor: default;
}
.domain-cell::after {
  content: "";
  position: absolute;
  left: 24px; right: 24px;
  bottom: 24px;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(.6,.2,.2,1);
}
.domain-cell:hover::after { transform: scaleX(1); }
.domain-cell:hover { background: var(--paper); }

/* === Process steps: stitch line + step assembly === */
.steps { position: relative; }
.steps .stitch-line {
  position: absolute;
  left: 16px; right: 16px;
  top: 64px;
  height: 36px;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.steps .stitch-line .path {
  stroke: var(--coral);
  stroke-width: 1.4;
  fill: none;
  vector-effect: non-scaling-stroke;
}
.steps .stitch-line .waypoint { fill: var(--coral); }
.steps .stitch-line #stitch-traveler { fill: var(--coral); filter: drop-shadow(0 0 4px rgba(255,90,60,0.55)); }

/* topbar mark interactive */
.topbar-mark { cursor: pointer; }
.topbar-mark svg rect {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  will-change: transform;
}

/* footer coral breathing */
footer .mark svg rect {
  transform-box: fill-box;
  transform-origin: 50% 50%;
}

/* engagement rows wipe-ready */
.eng-row:not(.head) { will-change: clip-path; }

/* CTA bar magnet */
.cta {
  transition: transform 0.18s cubic-bezier(.6,.2,.2,1), background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.cta:hover { transform: translateY(-2px); }

/* === Hardware section === */
/* Lanes render as a compact horizontal manifest — visually distinct from §02 */
.hw-grid {
  margin-top: 48px;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--bone);
  overflow: hidden;
}
.hw-grid .domain-cell {
  min-height: 160px;
  padding: 24px 20px;
  border-right-color: var(--iron);
  color: var(--bone);
}
.hw-grid .domain-cell:last-child { border-right: 0; }
.hw-grid .domain-cell h3 { color: var(--bone); font-size: clamp(18px, 1.6vw, 26px); line-height: 1.05; }
.hw-grid .domain-cell .domain-label { color: var(--iron); }
.hw-grid .domain-cell .domain-meta { color: var(--iron); }
.hw-grid .domain-cell .mark-mini rect[fill="#0B0D11"] { fill: var(--bone); }
.hw-grid .domain-cell::after { background: var(--coral); }
.hw-grid .domain-cell:hover { background: #14171c; }
@media (max-width: 1024px) {
  .hw-grid .domain-cell { border-bottom-color: var(--iron); }
}
@media (max-width: 560px) {
  .hw-grid .domain-cell { border-right: 0 !important; border-bottom: 1px solid var(--iron); padding: 24px 20px; }
  .hw-grid .domain-cell:last-child { border-bottom: 0; }
}

.ladder-head {
  margin-top: 80px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.ladder-head .ladder-h3 {
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
}

.hw-ladder {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 32px;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.hw-ladder .ladder-line {
  position: absolute;
  left: -1px; right: -1px;
  top: -2px;
  height: 4px;
  background: var(--coral);
  transform-origin: left center;
  transform: scaleX(0);
  will-change: transform;
  z-index: 2;
}
.hw-ladder .rung {
  padding: 32px 28px;
  border-right: 1px solid var(--ink);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: background 0.25s ease;
}
.hw-ladder .rung:last-child { border-right: 0; }
.hw-ladder .rung:hover { background: var(--bone); }
.hw-ladder .rung-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hw-ladder .rung-num::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--coral);
  display: inline-block;
}
.hw-ladder .rung-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
}
.hw-ladder .rung-desc {
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--iron);
  max-width: 32ch;
  margin: 0;
}

@media (max-width: 900px) {
  .hw-ladder { grid-template-columns: 1fr 1fr; }
  .hw-ladder .rung { border-bottom: 1px solid var(--ink); }
  .hw-ladder .rung:nth-child(2n) { border-right: 0; }
}
@media (max-width: 560px) {
  .hw-ladder { grid-template-columns: 1fr; }
  .hw-ladder .rung { border-right: 0; }
}

/* === Cal.id inline embed === */
.cal-inline {
  margin-top: 40px;
  border: 1px solid var(--ink);
  background: var(--bone);
  min-height: 720px;
  overflow: hidden;
  position: relative;
}
.cal-inline iframe {
  width: 100% !important;
  border: 0 !important;
}
@media (max-width: 720px) {
  .cal-inline { min-height: 880px; }
}

/* === §02c capability list === */
.cap-list { list-style: none; padding: 0; margin: 0; }
.cap-list li {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--iron);
}
.cap-list li:last-child { border-bottom: 1px solid var(--iron); }
.cap-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink);
  flex-shrink: 0;
  min-width: 52px;
  padding-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cap-num::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--coral);
  display: inline-block;
  flex-shrink: 0;
}
.cap-title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 6px;
}
.cap-stack {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--iron);
  line-height: 1.5;
}
@media (max-width: 720px) {
  .cap-list li { flex-direction: column; gap: 6px; align-items: flex-start; }
  .cap-num { padding-top: 0; }
}

.modes-head {
  margin-top: 80px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.modes-head .modes-h3 {
  font-size: clamp(28px, 3.4vw, 48px);
  letter-spacing: -0.03em;
  font-weight: 700;
  margin: 0;
}

.sec-spec td:nth-child(2) { white-space: nowrap; }
.sec-spec td:nth-child(3) { font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.45; letter-spacing: -0.005em; text-transform: none; color: var(--ink); }

/* === Cal.id floating book-a-call CTA === */
.cal-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(11,13,17,0.22);
  transition: transform .25s cubic-bezier(.6,.2,.2,1), background .2s ease, color .2s ease, padding .2s ease;
}
.cal-fab:hover {
  background: var(--coral);
  color: var(--ink);
  transform: translateY(-3px);
}
.cal-fab:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 4px;
}
.cal-fab-mark { display: block; flex-shrink: 0; }
.cal-fab-mark rect[fill="currentColor"] { transition: fill .2s ease; }
.cal-fab-arrow { color: var(--coral); transition: color .2s ease, transform .25s ease; }
.cal-fab:hover .cal-fab-arrow { color: var(--ink); transform: translateX(3px); }
.cal-fab-pulse {
  transform-box: fill-box;
  transform-origin: 50% 50%;
  animation: cal-fab-pulse 1.8s ease-in-out infinite;
}
@keyframes cal-fab-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.35); opacity: 0.9; }
}
@media (max-width: 520px) {
  .cal-fab { right: 16px; bottom: 16px; padding: 12px 14px; gap: 10px; font-size: 11px; }
  .cal-fab-label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .cal-fab-pulse { animation: none; }
  .cal-fab { transition: none; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .mega-x .grid { opacity: 0.08; }
  .mega-x .cell.coral { background: var(--coral); }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
