:root {
  --ink: #e8eef7;
  --muted: #9aadc4;
  --line: rgba(180, 205, 235, 0.18);
  --brand: #8eb7e8;
  --brand-deep: #1a4f8c;
  --bg0: #050b16;
  --bg1: #0a1628;
  --bg2: #12243d;
  --silver: #d7e3f2;
  --orbit-r: 200px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: Outfit, system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg0);
  overflow-x: hidden;
}

.atmosphere {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1100px 620px at 70% 18%, rgba(46, 110, 190, 0.28), transparent 62%),
    radial-gradient(900px 520px at 12% 80%, rgba(18, 60, 110, 0.35), transparent 58%),
    linear-gradient(165deg, var(--bg0) 0%, var(--bg1) 48%, var(--bg2) 100%);
}
.glow {
  position: absolute; border-radius: 50%;
  filter: blur(50px); opacity: 0.55;
  animation: drift 14s ease-in-out infinite alternate;
}
.glow-a {
  width: min(48vw, 420px); height: min(48vw, 420px);
  left: 52%; top: 8%;
  background: rgba(90, 150, 220, 0.35);
}
.glow-b {
  width: min(36vw, 300px); height: min(36vw, 300px);
  left: 8%; top: 42%;
  background: rgba(30, 80, 140, 0.4);
  animation-delay: -4s;
}
.grain {
  position: absolute; inset: 0; opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(2%, 3%, 0) scale(1.06); }
}

.top {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 1.5rem; max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 2;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand .logo {
  width: min(148px, 38vw); height: auto; display: block;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}
nav { display: flex; gap: 1.1rem; flex-wrap: wrap; }
nav a {
  color: var(--muted); text-decoration: none; font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.02em;
}
nav a:hover { color: var(--ink); }

.hero {
  min-height: calc(100vh - 7rem);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.5rem 1.5rem 3rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.5rem 2rem;
  align-items: center;
}

.hero-stage {
  position: relative;
  min-height: min(62vh, 520px);
  display: grid;
  place-items: center;
}

.orb {
  position: relative;
  width: min(440px, 90vw);
  height: min(440px, 90vw);
  perspective: 900px;
  perspective-origin: 50% 45%;
}

.diamond-wrap {
  position: absolute; inset: 8%;
  display: grid; place-items: center;
  transform-style: preserve-3d;
  z-index: 2;
}
/* Soft glow only — no flat plate behind the gem */
.diamond-aura {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(160, 210, 255, 0.28), transparent 62%);
  animation: pulse 3.2s ease-in-out infinite;
  z-index: 0;
  filter: blur(18px);
  pointer-events: none;
}
.diamond-flare {
  position: absolute;
  width: 38%; height: 38%;
  top: 22%; left: 31%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.55), transparent 70%);
  filter: blur(12px);
  animation: flare 2.8s ease-in-out infinite;
  z-index: 0; pointer-events: none;
}
/* Hero diamond (PNG render) */
.diamond-stage {
  position: relative; z-index: 1;
  width: min(340px, 78vw);
  height: min(340px, 78vw);
  display: grid; place-items: center;
  perspective: 900px;
  transform-style: preserve-3d;
}
.diamond-spin {
  position: relative;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
  animation: diamondSpinY 7s linear infinite;
}
.diamond-img {
  width: min(300px, 70vw);
  height: auto;
  display: block;
  background: transparent;
  mix-blend-mode: normal;
  filter:
    drop-shadow(0 0 10px rgba(200, 230, 255, 0.65))
    drop-shadow(0 0 28px rgba(90, 170, 255, 0.45))
    drop-shadow(0 22px 40px rgba(20, 60, 120, 0.4))
    brightness(1.08) contrast(1.08);
  animation: diamondShimmer 2.4s ease-in-out infinite;
  user-select: none;
  pointer-events: none;
}
.diamond-spin .spark {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px 5px rgba(220, 240, 255, 0.95);
  animation: twinkle 1.4s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}
.diamond-spin .spark.s1 { top: 10%; left: 48%; animation-delay: 0s; }
.diamond-spin .spark.s2 { top: 28%; right: 12%; width: 5px; height: 5px; animation-delay: 0.25s; }
.diamond-spin .spark.s3 { top: 52%; left: 14%; width: 6px; height: 6px; animation-delay: 0.55s; }
.diamond-spin .spark.s4 { top: 18%; left: 22%; width: 4px; height: 4px; animation-delay: 0.85s; }
.diamond-spin .spark.s5 { top: 40%; left: 55%; width: 5px; height: 5px; animation-delay: 1.1s; }
.diamond-spin .spark.s6 { bottom: 22%; right: 28%; width: 4px; height: 4px; animation-delay: 0.4s; }

@keyframes diamondSpinY {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}
@keyframes diamondShimmer {
  0%, 100% { filter:
    drop-shadow(0 0 8px rgba(200, 230, 255, 0.45))
    drop-shadow(0 0 22px rgba(90, 170, 255, 0.35))
    drop-shadow(0 22px 40px rgba(20, 60, 120, 0.35))
    brightness(1.02) contrast(1.05); }
  50% { filter:
    drop-shadow(0 0 18px rgba(255, 255, 255, 0.85))
    drop-shadow(0 0 40px rgba(140, 200, 255, 0.7))
    drop-shadow(0 22px 40px rgba(20, 60, 120, 0.4))
    brightness(1.18) contrast(1.12); }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

@keyframes spinY {
  from { transform: rotateY(0deg); }
  to { transform: rotateY(360deg); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.96); }
  50% { opacity: 0.95; transform: scale(1.08); }
}
@keyframes twinkle {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}
@keyframes flare {
  0%, 100% { opacity: 0.35; transform: scale(0.9); }
  50% { opacity: 0.85; transform: scale(1.12); }
}

.orbit {
  position: absolute; inset: 0;
  z-index: 3;
  animation: orbit 16s linear infinite;
  transform-origin: 50% 50%;
}
.sat {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 92px;
  height: 92px;
  margin: -46px 0 0 -46px;
  z-index: 4;
}
.sat-face {
  width: 92px;
  height: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  border-radius: 50%;
  color: #f4f8ff;
  background: linear-gradient(160deg, rgba(40, 90, 150, 0.95), rgba(10, 28, 52, 0.96));
  border: 2px solid rgba(210, 230, 255, 0.55);
  box-shadow:
    0 0 0 6px rgba(80, 140, 220, 0.12),
    0 14px 32px rgba(0,0,0,0.45),
    inset 0 0 22px rgba(160, 200, 255, 0.18);
  animation: counter-orbit 16s linear infinite;
}
.sat-print { transform: rotate(0deg) translateX(var(--orbit-r)) rotate(0deg); }
.sat-lock  { transform: rotate(180deg) translateX(var(--orbit-r)) rotate(-180deg); }
.ico {
  width: 34px; height: 34px; display: block; object-fit: contain;
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(180,210,255,0.45));
}
.sat-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #dce9f8;
  line-height: 1;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}
@keyframes counter-orbit {
  to { transform: rotate(-360deg); }
}

.hero-copy { max-width: 34rem; }
.brand-hero {
  margin: 0 0 0.55rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: #f3f7fc;
  text-shadow: 0 0 40px rgba(100, 160, 230, 0.25);
}
h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.35rem, 2.6vw, 1.85rem);
  line-height: 1.25;
  margin: 0 0 0.9rem;
  color: var(--silver);
}
.lede {
  font-size: 1.05rem; line-height: 1.55;
  color: var(--muted); margin: 0 0 1.6rem; max-width: 32rem;
}
.cta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.btn {
  display: inline-block; padding: 0.78rem 1.25rem; border-radius: 0.4rem;
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn.primary {
  background: linear-gradient(135deg, #3d7cc4, #1a4f8c);
  color: #f5f9ff;
  box-shadow: 0 10px 28px rgba(26, 79, 140, 0.35);
}
.btn.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255,255,255,0.03);
}
.btn.ghost:hover { border-color: rgba(190, 215, 245, 0.45); }

.foot {
  max-width: 1100px; margin: 0 auto; padding: 1.25rem 1.5rem 2rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: 0.85rem; color: var(--muted);
  border-top: 1px solid rgba(180, 205, 235, 0.1);
}
.foot a { color: var(--muted); text-decoration: none; }
.foot a:hover { color: var(--ink); }

.page {
  max-width: 720px; margin: 2rem auto 4rem; padding: 0 1.5rem;
}
.page h1 {
  margin-top: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #f3f7fc;
}
.page h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem; margin-top: 1.8rem; color: var(--silver);
}
.page p, .page li { color: var(--muted); line-height: 1.55; }
.page a { color: var(--brand); }
.claim {
  font-size: 0.92rem; color: var(--muted);
  border-left: 3px solid var(--brand-deep);
  padding: 0.35rem 0 0.35rem 0.85rem;
  margin: 0 0 1.4rem;
}
code { font-size: 0.9em; color: #c5d8ef; }
.legal-page { max-width: 820px; }
.legal-page h2 { margin-top: 2rem; }
.legal-page ul { color: var(--muted); line-height: 1.55; }
.legal-page blockquote { margin: 1rem 0; }
.table-wrap { overflow-x: auto; margin: 1rem 0; }
table.simple {
  width: 100%; border-collapse: collapse; font-size: 0.9rem;
}
table.simple th, table.simple td {
  border: 1px solid rgba(180, 205, 235, 0.14);
  padding: 0.55rem 0.65rem; text-align: left; vertical-align: top;
  color: var(--muted);
}
table.simple th { color: var(--silver); background: rgba(12, 28, 52, 0.5); }
.legal-foot { display: block; max-width: 1100px; }
.legal-foot-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 1.5rem;
  margin-bottom: 1rem; font-size: 0.85rem; color: var(--muted); line-height: 1.5;
}
.foot-links { display: flex; flex-wrap: wrap; gap: 0.55rem 0.9rem; align-content: start; }
.foot-links a { color: var(--muted); text-decoration: none; }
.foot-links a:hover { color: var(--ink); }
.foot-copy { margin: 0; font-size: 0.8rem; color: var(--muted);
  border-top: 1px solid rgba(180, 205, 235, 0.1); padding-top: 1rem; }
@media (max-width: 720px) {
  .legal-foot-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  :root { --orbit-r: 42%; }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 0.5rem;
  }
  .hero-stage { order: -1; min-height: min(58vw, 360px); }
  .orb { width: min(340px, 88vw); height: min(340px, 88vw); }
  .diamond-img { width: min(260px, 72vw); }
  .brand-hero { text-align: center; }
  .hero-copy { text-align: center; margin: 0 auto; }
  .lede { margin-left: auto; margin-right: auto; }
  .cta { justify-content: center; }
  .top { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

@media (prefers-reduced-motion: reduce) {
  .diamond-spin, .diamond-img, .orbit, .sat-face, .glow, .diamond-aura,
  .diamond-flare, .diamond-spin .spark { animation: none !important; }
}

/* ——— Story / wow sections ——— */
.eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand);
}
.sec {
  padding: 4.5rem 1.5rem;
  border-top: 1px solid rgba(180, 205, 235, 0.08);
}
.sec.alt { background: rgba(8, 20, 40, 0.45); }
.sec-inner { max-width: 1100px; margin: 0 auto; }
.sec-inner.narrow { max-width: 720px; }
.sec-inner.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
}
.sec-kicker {
  margin: 0 0 0.4rem; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--brand);
}
.sec-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600; font-size: clamp(1.6rem, 3.2vw, 2.35rem);
  margin: 0 0 0.75rem; color: #f3f7fc; line-height: 1.15;
}
.sec-lede {
  color: var(--muted); font-size: 1.05rem; line-height: 1.55;
  margin: 0 0 1.75rem; max-width: 40rem;
}
.sec-lede.center, .center { text-align: center; margin-left: auto; margin-right: auto; }
.soft { color: var(--muted); font-size: 0.9rem; }
.soft.center { text-align: center; }

.demo-grid {
  display: grid; grid-template-columns: 1.35fr 0.75fr; gap: 1.5rem; align-items: start;
}
.chat-frame {
  background: #0c1524;
  border: 1px solid rgba(180, 205, 235, 0.16);
  border-radius: 14px;
  padding: 0.85rem 1rem 1.1rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.chat-bar {
  display: flex; align-items: center; gap: 0.35rem;
  margin-bottom: 0.9rem; padding-bottom: 0.65rem;
  border-bottom: 1px solid rgba(180, 205, 235, 0.1);
}
.chat-bar .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #3d5a72;
}
.chat-bar .dot:nth-child(1) { background: #e57373; }
.chat-bar .dot:nth-child(2) { background: #ffd54f; }
.chat-bar .dot:nth-child(3) { background: #81c784; }
.chat-name { margin-left: 0.5rem; font-size: 0.78rem; color: var(--muted); }
.bubble {
  max-width: 92%;
  margin: 0.55rem 0;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  font-size: 0.92rem; line-height: 1.45;
}
.bubble.user {
  margin-left: auto;
  background: linear-gradient(135deg, #2a5f9e, #1a3f70);
  color: #f5f9ff;
}
.bubble.bot {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(180, 205, 235, 0.12);
  color: var(--ink);
}
.bubble.dim { color: var(--muted); font-style: italic; }
.select-list {
  display: grid; gap: 0.35rem; margin-bottom: 0.65rem; font-size: 0.88rem;
}
.select-list label { display: flex; gap: 0.45rem; align-items: center; color: var(--silver); }
.btn-inline {
  display: inline-block; margin-top: 0.25rem;
  padding: 0.45rem 0.85rem; border-radius: 0.35rem;
  background: linear-gradient(135deg, #3d7cc4, #1a4f8c);
  color: #f5f9ff; font-size: 0.82rem; font-weight: 600; border: 0;
}
.btn-inline.ghost {
  background: transparent; border: 1px solid var(--line); color: var(--ink);
}
.preview-card, .result-card {
  background: rgba(5, 14, 28, 0.85);
  border: 1px solid rgba(140, 190, 240, 0.22);
  border-radius: 10px; padding: 0.75rem 0.85rem;
}
.preview-card.big { padding: 1.1rem 1.2rem; }
.preview-h, .result-h {
  font-weight: 600; font-size: 0.88rem; margin-bottom: 0.55rem; color: var(--brand);
}
.preview-row {
  display: flex; justify-content: space-between; gap: 1rem;
  font-size: 0.82rem; padding: 0.28rem 0; color: var(--muted);
  border-bottom: 1px solid rgba(180, 205, 235, 0.08);
}
.preview-row strong { color: var(--silver); font-weight: 500; text-align: right; }
.preview-actions { display: flex; gap: 0.5rem; margin-top: 0.75rem; justify-content: flex-end; }
.check-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.35rem;
  font-size: 0.85rem; color: var(--silver);
}
.demo-aside {
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(180, 205, 235, 0.14);
  border-radius: 14px;
  background: rgba(12, 28, 52, 0.4);
}
.demo-aside h3 {
  margin: 0 0 0.75rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem; color: #f3f7fc;
}
.aside-steps {
  margin: 0 0 1.25rem; padding-left: 1.1rem;
  color: var(--muted); line-height: 1.5; font-size: 0.95rem;
}
.aside-steps li { margin-bottom: 0.55rem; }
.aside-steps strong { color: var(--silver); }

.pair-grid { display: grid; gap: 0.75rem; margin: 1.5rem 0; }
.pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(180, 205, 235, 0.12);
  background: rgba(255,255,255,0.03);
}
.pair span { color: var(--muted); }
.pair strong { color: var(--brand); font-weight: 600; text-align: right; }

.timeline {
  list-style: none; margin: 1.5rem 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem;
}
.timeline li {
  padding: 1rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(180, 205, 235, 0.12);
  background: rgba(12, 28, 52, 0.35);
  display: flex; flex-direction: column; gap: 0.25rem;
}
.timeline span {
  width: 1.6rem; height: 1.6rem; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.75rem; font-weight: 700;
  background: var(--brand-deep); color: #fff; margin-bottom: 0.25rem;
}
.timeline strong { color: #f3f7fc; font-size: 0.95rem; }
.timeline em { font-style: normal; color: var(--muted); font-size: 0.8rem; }

.plain-list {
  margin: 0; padding-left: 1.1rem; color: var(--muted); line-height: 1.7;
}

.fork {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem;
  align-items: stretch; margin-top: 1.5rem;
}
.fork-col {
  padding: 1.25rem; border-radius: 14px;
  border: 1px solid rgba(180, 205, 235, 0.14);
  background: rgba(12, 28, 52, 0.4);
}
.fork-col h3 { margin: 0 0 0.5rem; color: #f3f7fc; font-size: 1.1rem; }
.fork-col p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.45; }
.flow-line {
  display: inline-block !important; margin: 0.35rem 0 0.6rem !important;
  padding: 0.25rem 0.65rem; border-radius: 999px;
  background: rgba(61, 124, 196, 0.25); color: var(--brand) !important;
  font-size: 0.8rem !important; font-weight: 600;
}
.fork-mid {
  align-self: center; font-size: 1.4rem; color: var(--brand); font-weight: 700;
}
.fork-end {
  text-align: center; margin: 1.25rem 0 0;
  font-weight: 600; color: var(--silver); letter-spacing: 0.02em;
}

.pkg-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 1.25rem;
}
.pkg {
  padding: 1rem; text-align: center; border-radius: 12px;
  border: 1px solid rgba(180, 205, 235, 0.14);
  background: rgba(12, 28, 52, 0.4);
  font-size: 0.95rem; color: var(--silver); font-weight: 500;
}

.simple-flow, .control-flow {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.45rem; margin-top: 1.5rem;
}
.simple-flow span, .control-flow span {
  padding: 0.55rem 0.9rem; border-radius: 999px;
  border: 1px solid rgba(180, 205, 235, 0.16);
  background: rgba(12, 28, 52, 0.5);
  font-size: 0.88rem; color: var(--silver);
}
.simple-flow span.hi {
  background: linear-gradient(135deg, #3d7cc4, #1a4f8c);
  border-color: transparent; color: #fff; font-weight: 600;
}
.simple-flow i, .control-flow i {
  font-style: normal; color: var(--brand); font-weight: 700;
}

.uc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-top: 1.25rem;
}
.uc {
  padding: 1.1rem 1rem; border-radius: 12px;
  border: 1px solid rgba(180, 205, 235, 0.12);
  background: rgba(12, 28, 52, 0.35);
}
.uc h3 { margin: 0 0 0.35rem; font-size: 1rem; color: #f3f7fc; }
.uc p { margin: 0; font-size: 0.88rem; color: var(--muted); }

.trust-grid {
  list-style: none; margin: 1.25rem 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.65rem;
}
.trust-grid li {
  padding: 0.85rem; border-radius: 10px; text-align: center;
  border: 1px solid rgba(129, 199, 132, 0.25);
  background: rgba(20, 50, 40, 0.25);
  color: #c8e6c9; font-weight: 600; font-size: 0.9rem;
}

.no-list {
  list-style: none; margin: 1.25rem 0; padding: 0;
  display: grid; gap: 0.55rem;
}
.no-list li {
  padding: 0.75rem 1rem; border-radius: 10px;
  border: 1px solid rgba(229, 115, 115, 0.22);
  background: rgba(60, 20, 20, 0.22);
  color: #ffcdd2; font-size: 0.95rem;
}

.vision { padding-bottom: 5rem; }
.vision-pair {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin: 1.5rem 0;
}
.vision-pair > div {
  padding: 1.4rem 1rem; border-radius: 14px;
  border: 1px solid rgba(180, 205, 235, 0.14);
  background: rgba(12, 28, 52, 0.4);
}
.v-lab {
  display: block; font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 0.4rem;
}
.vision-pair p {
  margin: 0; font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem; color: #f3f7fc;
}
.vision-line {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--brand); margin: 0.5rem 0 1.5rem;
}
.cta.center { justify-content: center; }

@media (max-width: 960px) {
  .demo-grid, .sec-inner.split, .fork, .vision-pair { grid-template-columns: 1fr; }
  .fork-mid { display: none; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid, .uc-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .pair { grid-template-columns: 1fr; }
  .pair strong { text-align: left; }
}
@media (max-width: 560px) {
  .timeline, .pkg-grid, .uc-grid, .trust-grid { grid-template-columns: 1fr; }
}
