:root {
  --bg: #05070c;
  --bg-2: #0a101c;
  --panel: #0d1424;
  --line: rgba(77, 184, 255, 0.18);
  --cyan: #4db8ff;
  --cyan-hot: #7ae0ff;
  --text: #eef3fb;
  --muted: #8d99ad;
  --spade: #c12a3a;
  --gold: #d4af5a;
  --purple: #8b5cc7;
  --radius: 18px;
}

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

html, body { background: var(--bg); color: var(--text); }
body {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  min-height: 100vh;
  background:
    radial-gradient(900px 420px at 80% -10%, rgba(77, 184, 255, 0.16), transparent 60%),
    radial-gradient(700px 380px at -10% 20%, rgba(193, 42, 58, 0.12), transparent 55%),
    var(--bg);
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(5, 7, 12, 0.78);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 88px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; letter-spacing: 0.10em; font-weight: 800; font-size: 20px; }
.brand svg { width: 48px; height: 48px; }
.nav-links { display: flex; align-items: center; gap: 22px; color: var(--muted); font-size: 14px; }
.nav-links a:hover { color: var(--text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 18px; border-radius: 999px; font-size: 14px; font-weight: 650;
  border: 1px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--cyan); color: #041018; }
.btn-primary:hover { background: var(--cyan-hot); }
.btn-ghost { border-color: var(--line); color: var(--text); background: transparent; }
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan-hot); }
.menu-btn { display: none; background: none; border: 0; color: var(--text); font-size: 22px; }

/* Hero */
.mission-line {
  padding: 48px 0 0;
  color: #c5cedd;
  font-size: 18px;
  max-width: 46ch;
  line-height: 1.45;
}
.hero { padding: 40px 0 56px; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.kicker { color: var(--cyan); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 700; margin-bottom: 16px; }
h1, h2, h3 { font-family: "Syne", sans-serif; font-weight: 700; letter-spacing: -0.03em; line-height: 1.08; }
h1 { font-size: clamp(36px, 5vw, 62px); max-width: 14ch; }
.lede { margin-top: 20px; color: #c5cedd; max-width: 46ch; font-size: 18px; }
.hero-actions { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }

.hero-board {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(77,184,255,0.08), rgba(13,20,36,0.9));
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 0 80px rgba(77,184,255,0.12);
}
.market { display: grid; gap: 10px; }
.card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 14px 16px;
}
.card .top { display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; }
.card h3 { font-size: 16px; margin: 8px 0 12px; letter-spacing: -0.02em; }
.yn { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.yn span {
  border-radius: 10px; padding: 9px 10px; font-size: 13px; font-weight: 700;
  display: flex; justify-content: space-between;
}
.yes { background: rgba(77,184,255,0.14); color: var(--cyan-hot); }
.no { background: rgba(193,42,58,0.16); color: #ff8a96; }

.proof {
  display: flex; flex-wrap: wrap; gap: 10px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 22px;
  color: var(--muted);
  font-size: 13px;
  justify-content: center;
  margin: 8px auto 72px;
  width: fit-content;
  max-width: 100%;
}
.proof b { color: var(--text); font-weight: 650; }

section { padding: 24px 0 72px; }
.section-label { color: var(--cyan); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-bottom: 10px; }
h2 { font-size: clamp(28px, 3.4vw, 42px); margin-bottom: 14px; }
.sub { color: var(--muted); max-width: 52ch; margin-bottom: 28px; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.reason, .product, .panel {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 22px;
}
.reason h3, .product h3 { font-size: 22px; margin: 10px 0; }
.reason p, .product p, .panel p { color: #c2cbd8; }
.num { color: var(--cyan); font-family: "Syne", sans-serif; font-size: 13px; letter-spacing: 0.12em; }

.product { min-height: 260px; display: flex; flex-direction: column; align-items: stretch; }
.product img.mark { width: 140px; height: 140px; margin: 0 auto 14px; }
.product a { color: var(--cyan); font-size: 14px; font-weight: 700; margin-top: auto; padding-top: 16px; }

.contrast {
  margin: 12px 0 48px;
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
  border: 1px solid var(--cyan);
  box-shadow: 0 0 40px rgba(77,184,255,0.18), inset 0 0 40px rgba(77,184,255,0.06);
}
.contrast h2 { max-width: 16ch; margin: 0 auto 14px; }
.contrast p { margin: 0 auto; max-width: 50ch; color: #d5dce8; }

.proof-block { display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 24px; align-items: center; }
.close {
  margin: 20px 0 40px;
  background: linear-gradient(180deg, #10192c, #0b1220);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 48px 40px;
  text-align: center;
}

.page-hero { padding: 72px 0 20px; }
.page-hero h1 { max-width: 18ch; font-size: clamp(34px, 4.5vw, 56px); }

.stack { display: grid; gap: 18px; }
.product-row {
  display: grid; grid-template-columns: 176px 1fr auto; gap: 28px; align-items: center;
  background: var(--panel); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px; padding: 28px 28px 28px 24px;
}
.product-row img.mark { width: 176px; height: 176px; }
.news-item {
  display: grid; gap: 8px; padding: 24px; border-radius: 22px;
  background: var(--panel); border: 1px solid rgba(255,255,255,0.06);
}
.news-item time { color: var(--cyan); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; }

.demo-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 24px; align-items: start; }
form { display: grid; gap: 14px; }
label { display: grid; gap: 6px; font-size: 13px; color: var(--muted); }
input, textarea {
  background: #070b14; color: var(--text); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 12px 14px;
}
input:focus, textarea:focus { outline: 1px solid var(--cyan); }
.checks { display: grid; gap: 8px; color: var(--text); }
.checks label { display: flex; gap: 10px; align-items: center; font-size: 15px; color: var(--text); }
.success { display: none; padding: 24px; border-radius: 16px; background: rgba(77,184,255,0.1); border: 1px solid var(--line); }
.addr { color: var(--muted); }

.legal { max-width: 72ch; color: #c2cbd8; }
.legal p { margin: 12px 0; }

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 28px 0 40px; color: var(--muted); font-size: 13px;
}
.foot { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.disclaimer { margin-top: 12px; max-width: 80ch; font-size: 12px; color: #6e7a8d; }

@media (max-width: 860px) {
  .hero, .grid-3, .proof-block, .demo-grid, .product-row, .founder { grid-template-columns: 1fr; }
  .product-row { justify-items: start; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 88px; left: 0; right: 0;
    background: #070b14; padding: 18px 20px 22px; border-bottom: 1px solid rgba(255,255,255,0.06);
    align-items: flex-start;
  }
  .menu-btn { display: block; }
  .hero { padding-top: 48px; }
  .contrast, .close { padding: 32px 22px; }
}
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 860px) {
  .grid-5 { grid-template-columns: 1fr; }
}
@media (min-width: 861px) and (max-width: 1200px) {
  .grid-5 { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 861px) and (max-width: 1100px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
.brand-mark {
  width: 48px; height: 48px;
  object-fit: contain; object-position: center;
  border-radius: 10px; flex-shrink: 0;
}
img.mark {
  width: 140px; height: 140px;
  object-fit: contain; object-position: center;
  background: #05070c; border-radius: 16px;
  display: block;
}
.product-row img.mark { width: 176px; height: 176px; }

/* Live board ticks */
.board-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  padding: 2px 4px 12px;
  letter-spacing: 0.02em;
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px rgba(77, 184, 255, 0.7);
  flex-shrink: 0;
  animation: live-breathe 1.8s ease-in-out infinite;
}
@keyframes live-breathe {
  0%, 100% { opacity: 0.4; transform: scale(0.88); }
  50% { opacity: 1; transform: scale(1.08); }
}
.yn .yes,
.yn .no {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  font-family: "Manrope", ui-monospace, "SF Mono", Menlo, monospace;
}
.yn .tick {
  animation: chip-pulse 250ms ease-out;
}
@keyframes chip-pulse {
  0% { filter: brightness(1.4); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.28); }
  100% { filter: brightness(1); box-shadow: inset 0 0 0 0 transparent; }
}
.live-board {
  margin: 8px 0 36px;
}
@media (min-width: 720px) {
  .live-board .market {
    grid-template-columns: 1fr 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .live-dot,
  .yn .tick {
    animation: none;
  }
  .live-dot { opacity: 1; }
}

/* Company — founder photo + bio */
.company-hero {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(420px, 0.95fr);
  grid-template-areas:
    "kicker ."
    "title ."
    "copy compass";
  column-gap: 28px;
  row-gap: 8px;
  align-items: start;
  padding: 72px 0 28px;
}
.company-hero .kicker { grid-area: kicker; }
.company-hero h1 { grid-area: title; }
.company-copy { grid-area: copy; }
.company-hero .lede {
  margin: 16px 0 0;
  max-width: 52ch;
}
.company-intro {
  max-width: 52ch;
  color: #c2cbd8;
  margin: 14px 0 0;
}
.what-we-do {
  grid-area: compass;
  margin: 0;
  text-align: center;
  justify-self: end;
}
.what-we-do h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--cyan);
  margin-bottom: 4px;
  max-width: none;
}
.compass {
  position: relative;
  width: min(480px, 100%);
  aspect-ratio: 1;
  height: auto;
  margin: 0;
  color: var(--cyan);
  overflow: visible;
}
.founder {
  display: grid;
  grid-template-columns: minmax(280px, 58%) minmax(260px, 1fr);
  gap: 28px;
  align-items: center;
  margin-bottom: 22px;
}
.founder-photo { margin: 0; }
.founder-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.06);
  background: var(--panel);
}
.founder-photo figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}
.company-rest {
  display: grid;
  gap: 22px;
  max-width: 760px;
}
.company-rest .btn { width: fit-content; }

/* VIP showroom */
.foot-private {
  color: #5c6778;
}
.foot-private:hover { color: var(--muted); }
.form-error {
  color: #ff8a96;
  font-size: 14px;
  margin: 0;
}
.vip-alt {
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
}
.vip-alt a { color: var(--cyan); font-weight: 650; }
.vip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.vip-panel {
  min-height: 0;
}
.vip-panel img.mark {
  width: 176px;
  height: 176px;
  margin: 0 auto 18px;
}
.vip-panel h2 { font-size: 28px; margin: 4px 0 10px; }
.vip-panel p { margin-bottom: 10px; }
.vip-sub {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.04em;
  margin: -4px 0 12px;
}
.vip-note {
  font-size: 13px;
  color: #6e7a8d;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.brand-row { display: flex; align-items: center; gap: 14px; min-width: 0; }
.brand-vip {
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--cyan);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  white-space: nowrap;
}
.lock-icon {
  display: inline-block;
  vertical-align: -1px;
  margin-right: 6px;
}
@media (max-width: 860px) {
  .vip-grid { grid-template-columns: 1fr; }
}

.vip-invite {
  margin-top: 28px;
  background: linear-gradient(180deg, #10192c, #0b1220);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 40px 36px;
}
.vip-invite h2 { max-width: 18ch; }
.vip-invite .lede { margin-top: 12px; margin-bottom: 28px; }
.vip-invite-compact { text-align: left; }
.vip-invite-compact .sub { margin-bottom: 22px; }
.vip-invite-compact h2 { margin-bottom: 10px; }
@media (max-width: 860px) {
  .vip-invite { padding: 28px 22px; }
}

/* Product pages — mark, Gamma crop, live board */
.hero-mark-center { display: block; margin: 4px auto 20px; }
.hero-mark {
  width: 220px;
  height: 220px;
  object-fit: contain;
  object-position: center;
  background: #05070c;
  border-radius: 24px;
  flex-shrink: 0;
}
.visual-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px;
  align-items: center;
  margin: 8px 0 36px;
}
.visual-row .hero-board { margin: 0; }
.product-visual {
  margin: 8px 0 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(77,184,255,0.08), rgba(13,20,36,0.9));
  border-radius: 24px;
  padding: 10px;
  box-shadow: 0 0 80px rgba(77,184,255,0.12);
}
.product-visual img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: #05070c;
}
.product-visual figcaption {
  padding: 12px 10px 6px;
  color: var(--muted);
  font-size: 13px;
}
@media (max-width: 860px) {
  .visual-row { grid-template-columns: 1fr; justify-items: center; }
}

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 8px 0 28px;
}
.compare-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 22px;
  padding: 22px 22px 20px;
}
.compare-card-on {
  border-color: var(--line);
  box-shadow: 0 0 40px rgba(77,184,255,0.12);
}
.compare-card h3 {
  font-size: 22px;
  margin: 8px 0 14px;
  max-width: 16ch;
}
.compare-card ul {
  color: #c2cbd8;
  padding-left: 18px;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
  font-size: 15px;
}
.ticket {
  background: #070b14;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 14px 16px;
}
.ticket-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}
.ticket-pick { font-weight: 700; margin: 8px 0 4px; }
.ticket-meta { color: var(--muted); font-size: 13px; }
@media (max-width: 860px) {
  .compare { grid-template-columns: 1fr; }
}

/* VIP showroom — full product rooms */
.vip-jump {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.vip-jump a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 650;
  color: var(--muted);
}
.vip-jump a:hover { color: var(--text); border-color: var(--cyan); }
.vip-room {
  padding: 8px 0 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 8px;
  scroll-margin-top: 96px;
}
.vip-room:first-of-type { border-top: 0; }
.vip-head {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 22px;
  align-items: center;
  margin: 36px 0 22px;
}
.vip-head img.mark {
  width: 240px;
  height: 240px;
  margin: 0;
}
.vip-head h2 { font-size: clamp(28px, 4vw, 42px); max-width: 18ch; }
.vip-head .lede { margin-top: 10px; }
.shot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 8px 0 28px;
}
.shot-grid .product-visual { margin: 0; }
.shot-grid-1 { grid-template-columns: 1fr; }
.flow-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0 28px;
}
.flow-4 article {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 16px 16px 14px;
}
.flow-4 .n {
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 8px;
}
.flow-4 h3 { font-size: 18px; margin-bottom: 6px; }
.flow-4 p { color: #c2cbd8; font-size: 14px; }
.stat-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 8px 0 28px;
}
.stat-3 article {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 18px 18px 16px;
}
.stat-3 strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 32px;
  letter-spacing: -0.03em;
  color: var(--cyan-hot);
}
.stat-3 span { color: var(--muted); font-size: 13px; }
.pack-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 8px 0 28px;
}
.pack-3 article {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 18px 18px 16px;
}
.pack-3 h3 { font-size: 20px; margin-bottom: 8px; }
.pack-3 p { color: #c2cbd8; font-size: 14px; }
.vip-table-wrap {
  overflow-x: auto;
  margin: 8px 0 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.vip-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.vip-table th, .vip-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.vip-table th { color: var(--muted); font-weight: 650; font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
.vip-table tr:last-child td { border-bottom: 0; }
.vip-table .on td { color: var(--text); }
.vip-table .off td { color: var(--muted); }
.vip-legal {
  font-size: 12px;
  color: #6e7a8d;
  max-width: 82ch;
  margin-top: 8px;
}
@media (max-width: 860px) {
  .vip-head, .shot-grid, .flow-4, .stat-3, .pack-3 { grid-template-columns: 1fr; }
  .flow-4 { grid-template-columns: 1fr 1fr; }
}

.ks-board {
  background: #05070c;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px 22px 8px;
  box-shadow: 0 0 80px rgba(77,184,255,0.12);
  margin: 8px 0 28px;
}
.ks-board-kicker {
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.ks-board h3 {
  font-size: clamp(22px, 3vw, 32px);
  margin: 0 0 20px;
  max-width: none;
}
.ks-flow {
  display: grid;
  grid-template-columns: 1fr 16px 1fr 16px 1fr 16px 1fr;
  gap: 8px;
  align-items: stretch;
}
.ks-node {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 14px;
}
.ks-node .n {
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 700;
  margin-bottom: 8px;
}
.ks-arrow {
  align-self: center;
  height: 1px;
  background: var(--cyan);
  position: relative;
}
.ks-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -3px;
  border: 4px solid transparent;
  border-left-color: var(--cyan);
}
.ks-slot {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}
.ks-slot span {
  flex: 1;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #070b14;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: "Syne", sans-serif;
  font-weight: 800;
  color: var(--cyan);
}
.ks-spin {
  display: block;
  width: 100%;
  background: var(--cyan);
  color: #041018;
  border: 0;
  border-radius: 8px;
  padding: 8px;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 10px;
  pointer-events: none;
  text-align: center;
}
.ks-label {
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}
.ks-node p,
.ks-benefits p { color: #c2cbd8; font-size: 13px; line-height: 1.45; }
.ks-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 16px 0;
}
.ks-benefits article {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 14px;
}
.ks-board .vip-table { font-size: 13px; }
.ks-mini { margin: 0 0 14px; border: 0; }
@media (max-width: 860px) {
  .ks-flow { grid-template-columns: 1fr; }
  .ks-arrow {
    width: 1px;
    height: 16px;
    margin: 0 auto;
  }
  .ks-arrow::after {
    right: -3px;
    top: auto;
    bottom: -2px;
    border: 4px solid transparent;
    border-top-color: var(--cyan);
    border-left-color: transparent;
  }
  .ks-benefits { grid-template-columns: 1fr 1fr; }
}

.contrast.quote {
  margin: 36px 0 0;
  padding: 40px 36px 32px;
}
.contrast.quote p {
  font-family: "Syne", sans-serif;
  font-size: clamp(22px, 3.2vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  max-width: 28ch;
}
.contrast.quote footer {
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
}


.open-banner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  margin: 36px 0 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  min-height: 0;
}
.open-banner blockquote {
  margin: 0;
  padding: 0 0 0 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid var(--cyan);
}
.open-banner h1 {
  max-width: 22ch;
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.2;
  color: #eaf0fa;
}
.open-quote {
  margin-top: 18px;
  color: #c5cedd;
  font-size: 18px;
  max-width: 42ch;
  line-height: 1.45;
}
.open-banner footer {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
}
.open-photo {
  margin: 0;
  background: #05070c;
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
}
.open-banner img {
  width: 100%;
  height: auto;
  max-height: 720px;
  object-fit: cover;
  object-position: center top;
  border-radius: 0;
  border: 0;
  outline: none;
  box-shadow: none;
  min-height: 0;
  display: block;
  background: #05070c;
}
h2.hero-title {
  font-size: clamp(28px, 3.6vw, 44px);
  max-width: 14ch;
  margin: 0;
}
@media (max-width: 860px) {
  .open-banner { grid-template-columns: 1fr; }
  .open-banner img { max-height: 560px; }
}

.page-hero-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 36px;
}
.page-hero-split .hero-mark-lg {
  width: 100%;
  max-width: 460px;
  height: auto;
  justify-self: end;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}
img.mark-flush {
  background: transparent;
  border-radius: 0;
}
@media (max-width: 860px) {
  .page-hero-split { grid-template-columns: 1fr; }
  .page-hero-split .hero-mark-lg { max-width: 320px; justify-self: start; }
}

.legal { max-width: 68ch; padding-bottom: 56px; }
.legal h1 { margin-bottom: 16px; }
.legal h2 { font-size: 22px; margin: 28px 0 10px; max-width: 22ch; }
.legal p { color: #c5cedd; margin: 0 0 14px; max-width: 62ch; }
.legal a { color: var(--cyan); }

.legal h2 { max-width: none; }
.legal ul { margin: 0 0 16px 1.2em; color: #c5cedd; max-width: 62ch; }
.legal li { margin: 0 0 8px; }
.legal .legal-entity { font-weight: 650; margin-bottom: 4px; }
.legal .legal-date { color: var(--muted); margin-bottom: 18px; }
.draft-banner {
  border: 1px solid var(--cyan);
  background: rgba(77, 184, 255, 0.08);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 28px;
  max-width: 62ch;
}


.compass-mark {
  position: absolute;
  inset: 26% 26%;
  width: 48%;
  height: 48%;
}
.compass p {
  position: absolute;
  margin: 0;
  color: #d7e6f5;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 650;
  max-width: 12ch;
}
.compass-n {
  left: 50%;
  bottom: 76%;
  top: auto;
  transform: translateX(-50%);
  text-align: center;
}
.compass-s {
  left: 50%;
  top: 76%;
  bottom: auto;
  transform: translateX(-50%);
  text-align: center;
}
.compass-e {
  left: 76%;
  right: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.compass-w {
  right: 76%;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
@media (max-width: 860px) {
  .company-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "copy"
      "compass";
  }
  .what-we-do { justify-self: center; }
  .compass { width: min(400px, 100%); }
  .compass p { font-size: 13px; }
}

body.home .home-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  margin: 80px auto 16px;
  letter-spacing: 0.10em;
  font-weight: 800;
  font-size: 100px;
  color: var(--text);
  text-decoration: none;
  width: fit-content;
}
body.home .home-lockup-mark {
  width: 218px;
  height: 218px;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
  flex-shrink: 0;
}
@media (max-width: 860px) {
  body.home .home-lockup { font-size: 56px; gap: 18px; margin: 48px auto 12px; }
  body.home .home-lockup-mark { width: 131px; height: 131px; }
}

/* Product in use — native 3-up shots */
.product-shots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 8px 0 36px;
}
.product-shots figure {
  margin: 0;
}
.product-shots img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  background: #05070c;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  display: block;
}
.product-shots figcaption {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted);
}
@media (max-width: 860px) {
  .product-shots { grid-template-columns: 1fr; }
}
