/*
 * cloudboiler — base + components
 * Source: ~/public_html/html/index.html lines 60-1062, extracted in Phase 2.
 * All references resolve via tokens.css; load order tokens → base → style.
 */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  background: var(--bg);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  overflow-x: hidden;
  transition: background-color .25s ease, color .25s ease;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; display: block; }

.mono { font-family: var(--mono); letter-spacing: 0.06em; text-transform: uppercase; font-size: 11px; }
.serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: -0.005em; }
.dim { color: var(--dim); }
em { font-style: normal; font-family: var(--serif); color: var(--ember); font-weight: 400; }

.container { max-width: 1440px; margin: 0 auto; padding: 0 48px; }
.section { padding: 140px 0; position: relative; }
.section-tight-top { padding-top: 84px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--dim);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--ember); }
.eyebrow .line { width: 36px; height: 1px; background: var(--line-strong); }

h2.display {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(44px, 6.4vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin: 24px 0 32px;
  text-wrap: balance;
}
h3.sub {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 1.8vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1.15;
  margin: 0;
}
.lede { max-width: 720px; font-size: 19px; color: var(--dim-2); line-height: 1.5; }

/* Rich-text wrappers (divi/richtext fields moved from <p> to block
   <div> for valid nested markup). Collapse the outer margins of nested
   blocks so multi-paragraph/list editor content keeps the original
   single-paragraph spacing; no effect on the inline-only seeded copy. */
.lede > :first-child,
.hero-sub > :first-child,
.product-sub > :first-child,
.tech-block-body > :first-child,
.backup-text-body > :first-child,
.embod-card-body > :first-child,
.whynow-summary-body > :first-child,
.waitlist-lede > :first-child,
.pillar-body > :first-child { margin-top: 0; }
.lede > :last-child,
.hero-sub > :last-child,
.product-sub > :last-child,
.tech-block-body > :last-child,
.backup-text-body > :last-child,
.embod-card-body > :last-child,
.whynow-summary-body > :last-child,
.waitlist-lede > :last-child,
.pillar-body > :last-child { margin-bottom: 0; }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 50;
  display: flex; align-items: center; gap: 6px;
  padding: 6px 6px 6px 18px;
  border-radius: 999px;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
}
.nav-brand { display: flex; align-items: center; gap: 8px; padding-right: 14px; border-right: 1px solid var(--line); margin-right: 4px; height: 30px; }
.nav-brand svg { width: 22px; height: 26px; }
.nav-brand-name { font-family: var(--display); font-weight: 600; font-size: 15px; letter-spacing: -0.01em; }
.nav-brand-name sup { font-size: 8px; opacity: 0.55; vertical-align: super; }
.nav a.nav-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--dim-2);
  transition: color .15s, background .15s;
}
.nav a.nav-link:hover { color: var(--paper); background: var(--hover-bg); }
.nav .nav-cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  margin-left: 4px;
  transition: background .15s;
}
.nav .nav-cta:hover { background: var(--ember); }
.nav-theme {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s, transform .2s;
}
.nav-theme:hover { background: var(--hover-bg); border-color: var(--paper); }
.nav-theme:active { transform: scale(0.94); }
.nav-theme .theme-sun { display: none; }
.nav-theme .theme-moon { display: block; }
[data-theme="light"] .nav-theme .theme-sun { display: block; }
[data-theme="light"] .nav-theme .theme-moon { display: none; }

/* ============ MOBILE NAV / HAMBURGER ============ */
.nav-burger {
  display: none;
  width: 36px; height: 36px;
  border: 0; background: transparent;
  cursor: pointer; padding: 0;
  flex-direction: column; justify-content: center; align-items: flex-end;
  gap: 5px;
  color: var(--paper);
}
.nav-burger span {
  display: block; height: 1.5px;
  background: currentcolor; border-radius: 1px;
  transition: width .25s ease, transform .3s ease, opacity .2s ease;
}
.nav-burger span:nth-child(1) { width: 20px; }
.nav-burger span:nth-child(2) { width: 14px; }
.nav-burger span:nth-child(3) { width: 18px; }
.nav-burger:hover span:nth-child(2) { width: 20px; }
.mobile-menu {
  position: fixed; inset: 0;
  z-index: 60;
  background: var(--bg);
  display: flex; flex-direction: column;
  padding: 20px 24px 32px;
  transform: translateY(-100%);
  transition: transform .42s cubic-bezier(.4,.0,.2,1);
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.mobile-brand {
  display: flex; align-items: center; gap: 10px;
  color: var(--paper);
  font-family: var(--display); font-weight: 600; font-size: 16px; letter-spacing: -0.01em;
}
.mobile-brand sup { font-size: 8px; opacity: 0.55; vertical-align: super; }
.mobile-close {
  width: 36px; height: 36px;
  border: 1px solid var(--line-strong); background: transparent;
  color: var(--paper); border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.mobile-menu-nav {
  display: flex; flex-direction: column;
  flex: 1;
  padding-top: 24px;
}
.mobile-menu-nav a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--paper);
  text-decoration: none;
}
.mobile-menu-nav .mm-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ember);
  letter-spacing: 0.12em;
}
.mobile-menu-nav .mm-arrow {
  font-size: 22px; color: var(--dim);
  transition: transform .2s, color .2s;
}
.mobile-menu-nav a:hover .mm-arrow,
.mobile-menu-nav a:active .mm-arrow { color: var(--ember); transform: translateX(4px); }
.mobile-menu-foot {
  padding-top: 24px;
  display: flex; flex-direction: column; gap: 20px;
}
.mobile-cta {
  width: 100%;
  justify-content: center;
  font-size: 13px;
  padding: 18px 22px;
}
.mobile-meta {
  display: flex; justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  color: var(--dim);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mobile-foot-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.mobile-theme {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong); background: transparent;
  color: var(--paper); border-radius: 999px; cursor: pointer;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
}
.mobile-theme .theme-sun { display: none; }
.mobile-theme .theme-moon { display: block; }
[data-theme="light"] .mobile-theme .theme-sun { display: block; }
[data-theme="light"] .mobile-theme .theme-moon { display: none; }
body.menu-open { overflow: hidden; }

@media (max-width: 880px) {
  /* Mobile nav: trimmed ~15% from desktop sizing so the sticky pill
   * doesn't dominate the viewport. Desktop values are unchanged.
   */
  .nav { padding: 6px 6px 6px 12px; gap: 6px; top: 10px; max-width: calc(100vw - 24px); }
  .nav-brand { height: 26px; padding-right: 10px; gap: 6px; }
  .nav-brand svg { width: 18px; height: 22px; }
  .nav-brand-name { font-size: 13px; }
  .nav-link { display: none; }
  .nav .nav-cta { display: none; }
  .nav-theme { width: 28px; height: 28px; }
  .nav-burger { display: inline-flex; width: 30px; height: 30px; gap: 4px; }
  .nav-burger span:nth-child(1) { width: 16px; }
  .nav-burger span:nth-child(2) { width: 12px; }
  .nav-burger span:nth-child(3) { width: 14px; }
  .nav-burger:hover span:nth-child(2) { width: 16px; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .15s, background .15s, color .15s, border .15s;
  white-space: nowrap;
}
.btn-primary { background: var(--paper); color: var(--ink); }
.btn-primary:hover { background: var(--ember); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--paper); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--paper); }
.btn .arrow { display: inline-block; transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 120px 0 60px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 70% 30%, rgba(232,122,58,0.10), transparent 60%),
    radial-gradient(ellipse 60% 40% at 20% 80%, rgba(106,163,200,0.06), transparent 70%);
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--hover-bg) 1px, transparent 1px),
    linear-gradient(to bottom, var(--hover-bg) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 90%);
  pointer-events: none;
}

.hero-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dim);
  position: relative; z-index: 2;
  padding: 0 0 24px;
}
.hero-top > div:nth-child(2) { text-align: center; }
.hero-top > div:nth-child(3) { text-align: right; }
.hero-top .live { color: var(--ember); }
.hero-top .live::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--ember); margin-right: 8px; vertical-align: middle; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-body {
  position: relative; z-index: 2;
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 40px 0;
}
.hero-h {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(48px, 7.6vw, 128px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 32px 0 0;
  text-wrap: balance;
}
.hero-h .line { display: block; }
.hero-h .em { font-family: var(--serif); font-style: italic; color: var(--ember); font-weight: 400; letter-spacing: -0.02em; }

.hero-foot {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: end;
  position: relative; z-index: 2;
  padding-top: 56px;
}
.hero-sub {
  font-size: 21px;
  line-height: 1.4;
  color: var(--dim-2);
  max-width: 520px;
  text-wrap: pretty;
}
.hero-sub strong { color: var(--paper); font-weight: 500; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }

.hero-stats {
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  position: relative; z-index: 2;
}
.hero-stats > div { padding: 24px 16px; border-right: 1px solid var(--line); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.hero-stats > div:last-child { border-right: 0; }
.hero-stats .stat-num { font-family: var(--display); font-size: clamp(28px, 2.6vw, 38px); font-weight: 500; letter-spacing: -0.025em; line-height: 1; }
.hero-stats .stat-lab { font-family: var(--mono); font-size: 10px; color: var(--dim); letter-spacing: 0.08em; text-transform: uppercase; line-height: 1.4; }

@media (max-width: 880px) {
  .hero {
    padding: 88px 0 48px;
    min-height: auto;
  }
  .hero-top {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0 0 28px;
    font-size: 10px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    text-align: center;
  }
  .hero-top > div {
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }
  .hero-top > div:first-child { border-top: 1px solid var(--line); }
  .hero-top > div:nth-child(2),
  .hero-top > div:nth-child(3) { text-align: center; }
  .hero-top .live::before { width: 5px; height: 5px; margin-right: 6px; }
  .eyebrow {
    display: flex;
    font-size: 10px; letter-spacing: 0.1em;
    margin-bottom: 4px;
  }
  .eyebrow .line { display: none; }
  .hero-h {
    font-size: clamp(48px, 13vw, 96px);
    line-height: 1.0;
    margin-top: 28px;
    letter-spacing: -0.04em;
    text-wrap: balance;
  }
  .hero-foot {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 40px;
  }
  .hero-sub {
    font-size: 17px;
    line-height: 1.45;
    max-width: none;
  }
  .hero-actions { justify-content: flex-start; flex-wrap: wrap; gap: 10px; }
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 48px;
    gap: 0;
  }
  .hero-stats > div {
    padding: 18px 12px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .hero-stats > div:nth-child(2n) { border-right: 0; }
  .hero-stats > div:nth-last-child(-n+2) { border-bottom: 0; }
  .hero-stats .stat-num { font-size: 28px; }
  .hero-stats .stat-lab { font-size: 10px; }
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section.section-tight-top { padding-top: 44px; }
}
@media (max-width: 480px) {
  .hero-h {
    font-size: clamp(40px, 12vw, 56px);
    letter-spacing: -0.035em;
  }
  .container { padding: 0 18px; }
}

/* ============ TICKER ============ */
.ticker {
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  background: var(--bg-2);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track { display: inline-flex; gap: 48px; animation: ticker 90s linear infinite; }
.ticker-item { font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dim-2); display: inline-flex; align-items: center; gap: 18px; }
.ticker-item .mark { color: var(--ember); }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ MANIFESTO ============ */
.manifesto { display: flex; flex-direction: column; gap: 48px; }
.manifesto-h {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 1100px;
  text-wrap: balance;
}
.manifesto-h em { font-family: var(--serif); font-style: italic; color: var(--ember); }
.manifesto-cols {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dim-2);
  max-width: 1100px;
  margin-left: 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.manifesto-cols p { margin: 0; }
.manifesto-cols p strong { color: var(--paper); font-weight: 500; }
@media (max-width: 880px) {
  .manifesto { gap: 32px; }
  .manifesto-cols { grid-template-columns: 1fr; gap: 20px; max-width: none; margin-left: 0; }
}

/* ============ PILLARS ============ */
.pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--line-strong);
}
.pillar {
  padding: 40px 32px 48px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line-strong);
  position: relative;
  display: flex; flex-direction: column; gap: 20px;
  min-height: 460px;
  transition: background .25s;
}
.pillar:hover { background: var(--bg-2); }
.pillar:last-child { border-right: 0; }
.pillar-head { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px dotted var(--line-strong); }
.pillar-num { font-family: var(--serif); font-size: 40px; line-height: 1; color: var(--ember); }
.pillar-tag { font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: var(--dim); }
.pillar-title { font-family: var(--display); font-weight: 500; font-size: 26px; line-height: 1.15; letter-spacing: -0.015em; margin: 0; }
.pillar-body { color: var(--dim-2); margin: 0; font-size: 16px; }
.pillar-list { display: flex; flex-direction: column; gap: 0; margin-top: auto; }
.pillar-list li { padding: 10px 0; font-family: var(--mono); font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--dim-2); border-top: 1px solid var(--line); display: flex; gap: 10px; }
.pillar-list li::before { content: "+"; color: var(--ember); }
@media (max-width: 880px) {
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: 0; min-height: 0; }
  .pillar-head { justify-content: flex-start; gap: 16px; }
  .pillar-head .pillar-num { order: 0; font-size: 36px; }
  .pillar-head .pillar-tag { order: 1; }
}

/* ============ TECHNOLOGY ============ */
.tech-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}
.tech-head .lede { font-size: 21px; }
@media (max-width: 880px) { .tech-head { grid-template-columns: 1fr; } }

.diagram-frame {
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, var(--bg-2), var(--bg));
  padding: 32px;
  position: relative;
  border-radius: 4px;
}
.diagram-corners::before, .diagram-corners::after,
.diagram-corners > i:nth-child(1), .diagram-corners > i:nth-child(2) {
  content: ""; position: absolute; width: 14px; height: 14px;
  border-color: var(--ember);
}
.diagram-corners::before { top: -1px; left: -1px; border-top: 1px solid; border-left: 1px solid; }
.diagram-corners::after { top: -1px; right: -1px; border-top: 1px solid; border-right: 1px solid; }
.diagram-corners > i:nth-child(1) { bottom: -1px; left: -1px; border-bottom: 1px solid var(--ember); border-left: 1px solid var(--ember); }
.diagram-corners > i:nth-child(2) { bottom: -1px; right: -1px; border-bottom: 1px solid var(--ember); border-right: 1px solid var(--ember); }

.diagram-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 24px; padding-bottom: 14px;
  border-bottom: 1px dashed var(--line-strong);
}
.diagram-meta strong { color: var(--paper); font-weight: 500; }

.diagram-svg { width: 100%; height: auto; display: block; }
.dlabel { font-family: var(--mono); font-size: 11px; fill: var(--paper); letter-spacing: 0.08em; }
.dmono { font-family: var(--mono); font-size: 9.5px; fill: var(--dim); letter-spacing: 0.06em; }
.dval { font-family: var(--mono); font-size: 12px; fill: var(--ember); letter-spacing: 0.04em; }
.dframe { fill: none; stroke: var(--paper); stroke-width: 1; }
.dframe-soft { fill: none; stroke: var(--line-strong); stroke-width: 1; }
.dpipe { fill: none; stroke: var(--paper); stroke-width: 1.25; }
.dpipe-hot { fill: none; stroke: var(--ember); stroke-width: 1.5; }
.dpipe-cool { fill: none; stroke: var(--steam); stroke-width: 1.5; }

@keyframes flow-hot { 0%{stroke-dashoffset:0} 100%{stroke-dashoffset:-24} }
.flow-hot { stroke-dasharray: 6 6; animation: flow-hot 1.4s linear infinite; }
@keyframes flow-cool { 0%{stroke-dashoffset:0} 100%{stroke-dashoffset:24} }
.flow-cool { stroke-dasharray: 6 6; animation: flow-cool 1.8s linear infinite; }

@keyframes gpu-bar { 0%,100%{transform: scaleY(0.5)} 50%{transform: scaleY(1)} }
.gpu-bar { transform-origin: center bottom; animation: gpu-bar 1.6s ease-in-out infinite; }
.gpu-bar:nth-child(2) { animation-delay: .15s; }
.gpu-bar:nth-child(3) { animation-delay: .3s; }
.gpu-bar:nth-child(4) { animation-delay: .45s; }

@keyframes spin { to { transform: rotate(360deg); } }
.spin { transform-origin: center; animation: spin 8s linear infinite; }

.tech-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 80px;
  border-top: 1px solid var(--line-strong);
}
.tech-block {
  padding: 36px 32px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 14px;
}
.tech-block:nth-child(2n) { border-right: 0; }
.tech-block-head { display: flex; align-items: baseline; gap: 16px; padding-bottom: 12px; border-bottom: 1px dotted var(--line-strong); }
.tech-block-num { font-family: var(--serif); font-size: 36px; line-height: 1; color: var(--ember); }
.tech-block-tag { font-family: var(--mono); font-size: 10px; color: var(--dim); letter-spacing: 0.1em; }
.tech-block h4 { font-family: var(--display); font-weight: 500; font-size: 24px; letter-spacing: -0.015em; margin: 0; line-height: 1.15; }
.tech-block .tech-block-body { color: var(--dim-2); margin: 0; }
@media (max-width: 880px) { .tech-grid { grid-template-columns: 1fr; } .tech-block { border-right: 0; } }

.brains {
  display: grid; grid-template-columns: 1fr 96px 1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 64px;
}
.brain {
  border: 1px solid var(--line-strong);
  background: var(--bg-2);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
}
.brain-tag { font-family: var(--mono); font-size: 10px; color: var(--ember); letter-spacing: 0.12em; }
.brain h5 { font-family: var(--display); font-weight: 500; font-size: 26px; letter-spacing: -0.015em; margin: 0; line-height: 1.1; }
.brain ul li { padding: 10px 0; border-top: 1px dotted var(--line); font-family: var(--mono); font-size: 11px; color: var(--dim-2); letter-spacing: 0.05em; text-transform: uppercase; display: flex; gap: 10px; }
.brain ul li:first-child { border-top: 1px solid var(--line-strong); }
.brain ul li::before { content: "+"; color: var(--ember); }
.brain-link {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px;
  font-family: var(--mono); font-size: 9px;
  color: var(--dim);
  letter-spacing: 0.1em;
  position: relative;
}
.brain-link::before, .brain-link::after {
  content: ""; position: absolute; left: 50%; width: 1px;
  background: var(--line-strong);
}
.brain-link::before { top: 0; height: 30%; }
.brain-link::after { bottom: 0; height: 30%; }
.brain-link span.arrow { font-size: 16px; color: var(--ember); }
@media (max-width: 880px) { .brains { grid-template-columns: 1fr; } .brain-link { flex-direction: row; } .brain-link::before, .brain-link::after { display: none; } }

.backup {
  margin-top: 64px;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-left: 4px solid var(--ember);
  padding: 32px 36px;
}
.backup-icon { width: 56px; height: 56px; border: 1px dashed var(--ember); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--ember); font-family: var(--serif); font-size: 24px; }
.backup-text h5 { font-family: var(--display); font-weight: 500; font-size: 24px; margin: 4px 0 6px; letter-spacing: -0.015em; }
.backup-text .backup-text-body { margin: 0; color: var(--dim-2); }
@media (max-width: 880px) { .backup { grid-template-columns: 1fr; text-align: left; } }

/* ============ PRODUCTS ============ */
.products-head {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: end;
  margin-bottom: 56px;
}

.product-row {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--bg-2);
}
.product-row:nth-child(even) { grid-template-columns: 1.05fr 1fr; }
.product-row:nth-child(even) .product-visual { order: 2; border-right: 0; border-left: 1px solid var(--line-strong); }
.product-row:nth-child(even) .product-info { order: 1; }

.product-visual {
  position: relative;
  background: var(--visual-bg);
  display: flex; align-items: center; justify-content: center;
  padding: 56px;
  min-height: 500px;
  border-right: 1px solid var(--line-strong);
  overflow: hidden;
}
.product-visual::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(232,122,58,0.04), transparent 65%);
  pointer-events: none;
}
.product-visual img {
  max-height: 90%; max-width: 90%;
  width: auto; height: auto;
  object-fit: contain;
  position: relative; z-index: 2;
}
/* product-home is white-bg/black-art; the others are black-bg/white-art.
   Each theme blends so the bg drops and only the artwork shows on the panel. */
[data-theme="dark"] .product-visual img { mix-blend-mode: lighten; filter: none; }
[data-theme="dark"] .product-visual img[src*="product-home"] { filter: invert(1); }

[data-theme="light"] .product-visual img { mix-blend-mode: darken; filter: invert(1); }
[data-theme="light"] .product-visual img[src*="product-home"] { filter: none; }
.product-frame-corners > i {
  position: absolute; width: 16px; height: 16px;
  border: 1px solid var(--line-strong);
  z-index: 3;
}
.product-frame-corners > i:nth-child(1) { top: 12px; left: 12px; border-right: 0; border-bottom: 0; }
.product-frame-corners > i:nth-child(2) { top: 12px; right: 12px; border-left: 0; border-bottom: 0; }
.product-frame-corners > i:nth-child(3) { bottom: 12px; left: 12px; border-right: 0; border-top: 0; }
.product-frame-corners > i:nth-child(4) { bottom: 12px; right: 12px; border-left: 0; border-top: 0; }

.product-frame-label {
  position: absolute; left: 24px; bottom: 24px;
  font-family: var(--mono); font-size: 10px;
  color: var(--dim); letter-spacing: 0.1em;
  z-index: 3;
}

.product-info { padding: 56px 56px 56px; display: flex; flex-direction: column; gap: 18px; }
.product-row-head { display: flex; align-items: baseline; justify-content: space-between; padding-bottom: 16px; border-bottom: 1px solid var(--line-strong); }
.product-row-head .product-tag { font-family: var(--mono); font-size: 10px; color: var(--ember); letter-spacing: 0.12em; }
.product-row-head .product-num { font-family: var(--serif); font-size: 28px; color: var(--dim); }
.product-name { font-family: var(--display); font-weight: 500; font-size: clamp(36px, 3.6vw, 56px); letter-spacing: -0.025em; line-height: 0.98; margin: 0; }
.product-name sup { font-size: 0.36em; opacity: 0.55; vertical-align: super; }
.product-sub { font-size: 19px; color: var(--dim-2); margin: 4px 0 0; max-width: 460px; }
.product-row-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 8px; border-top: 1px solid var(--line); }
.product-row-stats > div { padding: 18px 0; border-right: 1px solid var(--line); }
.product-row-stats > div:last-child { border-right: 0; padding-left: 24px; }
.product-row-stats .lab { font-family: var(--mono); font-size: 10px; color: var(--dim); letter-spacing: 0.1em; text-transform: uppercase; }
.product-row-stats .val { font-family: var(--display); font-size: 16px; margin-top: 4px; }
.product-specs { display: flex; flex-direction: column; gap: 0; margin-top: 4px; }
.product-specs li { padding: 10px 0; border-top: 1px dotted var(--line); font-family: var(--mono); font-size: 11px; color: var(--dim-2); letter-spacing: 0.05em; text-transform: uppercase; display: flex; gap: 12px; }
.product-specs li:first-child { border-top: 1px solid var(--line); }
.product-specs li::before { content: "+"; color: var(--ember); }
.product-info .btn { align-self: flex-start; margin-top: 12px; }
@media (max-width: 880px) {
  .product-row, .product-row:nth-child(even) { grid-template-columns: 1fr; }
  .product-visual { min-height: 320px; padding: 32px; border-right: 0; border-bottom: 1px solid var(--line-strong); }
  .product-row:nth-child(even) .product-visual { order: 0; border-left: 0; border-bottom: 1px solid var(--line-strong); }
  .product-row:nth-child(even) .product-info { order: 0; }
  .product-info { padding: 32px 24px; }
}

.accessories {
  margin-top: 80px;
}
.accessory-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line);
}
.accessory {
  background: transparent;
  padding: 24px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 140px;
  transition: background .15s;
}
.accessory:hover { background: var(--bg-2); }
.accessory .num { font-family: var(--mono); font-size: 10px; color: var(--ember); letter-spacing: 0.1em; }
.accessory .name { font-family: var(--display); font-size: 16px; line-height: 1.2; letter-spacing: -0.005em; }
/* One-line spec under the name — pinned to the bottom of the cell
   (margin-top:auto) with a hairline divider so the previously empty
   lower half reads as a datasheet entry. */
.accessory .desc {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--dim-2);
}
@media (max-width: 880px) { .accessory-grid { grid-template-columns: repeat(2, 1fr); } }

/* ============ EMBODIMENTS ============ */
.embod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.embod-card {
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: transform .25s, border-color .25s;
}
.embod-card:hover { transform: translateY(-4px); border-color: var(--ember); }
.embod-num { font-family: var(--mono); font-size: 10px; color: var(--ember); letter-spacing: 0.12em; }
.embod-illu {
  position: relative;
  height: 200px;
  background: var(--visual-bg);
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 2px;
}
.embod-illu::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, var(--hover-bg) 0 8px, transparent 8px 16px);
}
.embod-pipes { position: absolute; top: 16px; right: 16px; display: flex; gap: 8px; z-index: 2; }
.pipe { padding: 5px 10px; font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em; border: 1px solid; border-radius: 999px; background: var(--nav-bg); }
.pipe-hot { color: var(--ember); border-color: var(--ember); }
.pipe-cool { color: var(--steam); border-color: var(--steam); }
.embod-tank-label { position: absolute; bottom: 14px; left: 16px; font-family: var(--mono); font-size: 10px; color: var(--dim); letter-spacing: 0.1em; z-index: 2; }
.embod-illu svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.embod-card h4 { font-family: var(--display); font-weight: 500; font-size: 22px; margin: 4px 0 0; letter-spacing: -0.015em; }
.embod-card .embod-card-body { color: var(--dim-2); margin: 0; font-size: 15px; }
@media (max-width: 880px) { .embod-grid { grid-template-columns: 1fr; } }

/* ============ WHY NOW ============ */
.whynow-list { border-top: 1px solid var(--line-strong); margin-top: 56px; }
.whynow-list li {
  display: grid; grid-template-columns: 80px 240px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  transition: background .2s;
}
.whynow-list li:hover { background: var(--hover-bg); }
.whynow-num { font-family: var(--serif); font-size: 32px; color: var(--dim); }
.whynow-stat { font-family: var(--mono); font-size: 14px; color: var(--ember); letter-spacing: 0.1em; }
.whynow-line { font-size: 19px; max-width: 720px; line-height: 1.45; }

.whynow-summary {
  margin-top: 64px;
  padding: 48px;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  position: relative;
}
.whynow-summary::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--ember);
}
.whynow-summary .whynow-summary-body {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 14px 0 0;
  text-wrap: balance;
}
@media (max-width: 880px) { .whynow-list li { grid-template-columns: 40px 1fr; gap: 16px; } .whynow-list li .whynow-line { grid-column: 1 / -1; } }

/* ============ FAQ ============ */
.faq {
  display: grid; grid-template-columns: 360px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-list { border-top: 1px solid var(--line-strong); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: grid; grid-template-columns: 80px 1fr 40px;
  gap: 24px;
  align-items: baseline;
  background: transparent;
  border: 0;
  color: var(--paper);
  text-align: left;
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 500;
  letter-spacing: -0.015em;
  padding: 24px 0;
  cursor: pointer;
  line-height: 1.2;
  transition: color .15s;
}
.faq-q:hover { color: var(--ember); }
.faq-q .qmark { font-family: var(--mono); font-size: 11px; color: var(--dim); letter-spacing: 0.1em; }
.faq-q:hover .qmark { color: var(--ember); }
.faq-toggle { font-size: 24px; color: var(--dim); justify-self: end; transition: transform .25s, color .15s; }
details[open] .faq-toggle { transform: rotate(45deg); color: var(--ember); }
.faq-a {
  padding: 0 0 24px 104px;
  color: var(--dim-2);
  font-size: 17px;
  max-width: 760px;
  line-height: 1.55;
}
details > summary { list-style: none; }
details > summary::-webkit-details-marker { display: none; }
@media (max-width: 880px) { .faq { grid-template-columns: 1fr; gap: 32px; } .faq-q { grid-template-columns: 48px 1fr 24px; gap: 12px; padding: 20px 0; } .faq-a { padding-left: 60px; } }
@media (max-width: 480px) { .faq-q { font-size: 18px !important; } }

/* ============ WAITLIST ============ */
.waitlist-card {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-2);
  margin-top: 56px;
}
.waitlist-left { padding: 56px; background: var(--bg); display: flex; flex-direction: column; gap: 20px; border-right: 1px solid var(--line-strong); }
.waitlist-left h3 {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(36px, 3.4vw, 52px);
  line-height: 1.0; letter-spacing: -0.03em;
  margin: 0;
}
.waitlist-left h3 em { font-family: var(--serif); }
.waitlist-left .waitlist-lede { color: var(--dim-2); font-size: 17px; margin: 0; max-width: 420px; }
.waitlist-meta { margin-top: auto; display: flex; flex-direction: column; gap: 12px; padding-top: 24px; border-top: 1px solid var(--line); }
.waitlist-meta .row { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 11px; color: var(--dim); letter-spacing: 0.06em; text-transform: uppercase; }
.waitlist-meta .row strong { color: var(--paper); font-weight: 500; }

.waitlist-form { padding: 56px; display: flex; flex-direction: column; gap: 0; }
.waitlist-row {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 24px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.waitlist-row:first-of-type { border-top: 1px solid var(--line-strong); }
.waitlist-row:last-of-type { border-bottom: 1px solid var(--line-strong); }
.waitlist-row label { font-family: var(--mono); font-size: 10px; color: var(--dim); letter-spacing: 0.1em; text-transform: uppercase; }
.waitlist-row input, .waitlist-row select {
  background: transparent;
  border: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: 22px;
  outline: none;
  width: 100%;
  appearance: none;
}
.waitlist-row input:focus-visible,
.waitlist-row select:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 2px;
}
.waitlist-row input::placeholder { color: var(--dim); }
.waitlist-row select { cursor: pointer; }
.waitlist-row select option { background: var(--bg); color: var(--paper); }
.waitlist-form .btn { margin-top: 28px; align-self: flex-start; }
@media (max-width: 880px) { .waitlist-card { grid-template-columns: 1fr; } .waitlist-left { padding: 32px 24px; border-right: 0; border-bottom: 1px solid var(--line-strong); } .waitlist-form { padding: 32px 24px; } .waitlist-row { grid-template-columns: 1fr; gap: 4px; padding: 14px 0; } .waitlist-row label { font-size: 10px; } }

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line-strong);
  padding: 80px 0 32px;
  margin-top: 40px;
  background: var(--bg);
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-mark { display: flex; align-items: center; gap: 12px; }
.footer-mark svg { width: 36px; height: 42px; }
.footer-mark .name { font-family: var(--display); font-weight: 700; font-size: 24px; letter-spacing: -0.02em; }
.footer-mark .name sup { font-size: 0.4em; opacity: 0.5; vertical-align: super; }
.footer-tag {
  font-family: var(--display); font-weight: 400;
  font-size: 22px; letter-spacing: -0.015em; line-height: 1.2;
  max-width: 320px;
}
.footer-tag em { font-family: var(--serif); }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-title { font-family: var(--mono); font-size: 10px; color: var(--dim); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 8px; }
.footer-col a { font-size: 15px; color: var(--paper); transition: color .15s; }
.footer-col a:hover { color: var(--ember); }

.footer-bot {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
  font-family: var(--mono); font-size: 10px; color: var(--dim);
  letter-spacing: 0.08em; text-transform: uppercase;
}
.footer-bot > div:nth-child(2) { text-align: center; }
.footer-bot > div:last-child { text-align: right; color: var(--ember); }
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } .footer-bot { grid-template-columns: 1fr; } .footer-bot > div { text-align: left !important; } }

/* ============ MOBILE POLISH ============ */
@media (max-width: 880px) {
  .products-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .section-tag {
    font-size: 11px;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 600;
  }
  .section-tag::before { width: 24px; height: 2px; }
  h2.display {
    font-size: clamp(34px, 8.5vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin: 16px 0 28px;
    font-weight: 600;
  }
  .hero-actions .btn, .product-info .btn, .waitlist-form .btn { padding: 14px 20px; font-size: 11px; }
  .accessory { padding: 20px; }
  .embod-card { padding: 24px; }
  .whynow-list li { padding: 20px 0; gap: 14px !important; }
  .whynow-list li .whynow-line { font-size: 17px !important; }
  .footer { padding: 56px 0 24px; }
  .ticker { font-size: 12px; }
  .diagram-frame { padding: 16px; }
  .tech-block { padding: 24px 0; }
  .product-row-head { padding: 28px 24px 20px; }
  .product-info { padding: 24px 24px 32px; }
  .product-name { font-size: clamp(28px, 8vw, 40px) !important; }
  .product-sub { font-size: 16px; }
  .lede { font-size: 16px; line-height: 1.55; }
  .tech-head .lede { font-size: 16px; }
  .manifesto-h { line-height: 1.1; letter-spacing: -0.02em; }
}
@media (max-width: 480px) {
  .accessory-grid { grid-template-columns: 1fr; }
  h2.display { font-size: clamp(32px, 10vw, 44px); }
  .mobile-menu-nav a { font-size: 26px; padding: 18px 4px; }
  .product-visual { min-height: 240px; padding: 24px; }
}

/* ============ UTIL ============ */
.divider {
  height: 1px;
  background: var(--line);
  margin: 0;
}
.section-tag {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 11px;
  color: var(--ember);
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 32px;
}
.section-tag::before { content: ""; width: 24px; height: 1px; background: var(--ember); }
.section-tag::after { content: ""; flex: 1; height: 1px; background: var(--line); }

