:root {
  --bg: #07101c;
  --surface: #0d1b2d;
  --surface-soft: rgba(255, 255, 255, 0.075);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --text: #f6fbff;
  --muted: #a7b6c8;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.24);
  --teal: #43d6d1;
  --amber: #ffd76f;
  --ember: #ff9f45;
  --blue: #6aa8ff;
  --pink: #e95fa8;
  --shadow: 0 25px 90px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(67, 214, 209, 0.15), transparent 34rem),
    radial-gradient(circle at top right, rgba(233, 95, 168, 0.14), transparent 28rem),
    linear-gradient(135deg, #06101b 0%, #081322 48%, #0d1020 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.95), transparent 82%);
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.3rem, 5.6vw, 5.45rem);
  line-height: 0.9;
}

h2 {
  max-width: 780px;
  font-size: clamp(1.2rem, 2.8vw, 2.8rem);
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.08rem, 1.84vw, 1.72rem);
  line-height: 1.08;
}

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1160px, calc(100% - 40px));
  padding: 18px 0;
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #03131a;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  box-shadow: 0 0 32px rgba(67, 214, 209, 0.34);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 16, 28, 0.72);
  backdrop-filter: blur(18px);
}

.site-nav a {
  min-height: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(246, 251, 255, 0.78);
  font-size: 0.86rem;
  font-weight: 750;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav .nav-cta {
  color: var(--text);
  background: rgba(67, 214, 209, 0.12);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100vh;
  overflow: hidden;
  padding: 130px max(20px, calc((100vw - 1160px) / 2)) 86px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 16, 27, 0.92) 0%, rgba(7, 16, 28, 0.66) 36%, rgba(7, 16, 28, 0.12) 76%),
    linear-gradient(180deg, rgba(6, 16, 27, 0.7) 0%, transparent 32%, rgba(7, 16, 28, 0.94) 100%);
  background-size: 64px 64px, 64px 64px, auto, auto;
}

.hero-content {
  position: relative;
  width: min(100%, 860px);
  max-width: 860px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--amber);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-text {
  max-width: 540px;
  margin-top: 22px;
  color: rgba(246, 251, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: #04131b;
  border-color: transparent;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  box-shadow: 0 18px 48px rgba(67, 214, 209, 0.24);
}

.button.ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.scroll-cue {
  position: absolute;
  right: max(20px, calc((100vw - 1160px) / 2));
  bottom: 42px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 64px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 16, 28, 0.36);
  backdrop-filter: blur(12px);
}

.scroll-cue span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text);
  animation: drift 1.7s ease-in-out infinite;
}

.section {
  width: min(1080px, calc(100% - 80px));
  margin: 0 auto;
  padding: 118px 0;
}

.section-kicker {
  display: grid;
  gap: 8px;
  margin-bottom: 54px;
}

.journey {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 100vh;
}

.risk-reveal {
  width: min(1080px, calc(100% - 80px));
}

.risk-reveal::before {
  content: "";
  position: absolute;
  inset: 40px -10vw;
  z-index: -1;
  background:
    radial-gradient(circle at 10% 32%, rgba(255, 159, 69, 0.13), transparent 22rem),
    radial-gradient(circle at 90% 74%, rgba(118, 35, 38, 0.22), transparent 25rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0));
}

.risk-stage {
  display: grid;
  justify-items: center;
  max-width: 960px;
  margin: 0 auto 48px;
  text-align: center;
}

.problem-mark {
  display: grid;
  grid-template-columns: minmax(58px, 132px) 34px minmax(58px, 132px);
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
  color: #b6842f;
}

.problem-mark span {
  height: 1px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.58;
}

.problem-mark svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  filter: drop-shadow(0 0 14px rgba(182, 132, 47, 0.22));
}

.risk-stage h2 {
  max-width: 100%;
  color: var(--text);
  font-size: clamp(1.68rem, 3.92vw, 3.2rem);
  line-height: 0.96;
}

.risk-stage p {
  max-width: 760px;
  margin-top: 24px;
  color: rgba(246, 251, 255, 0.66);
  font-size: clamp(0.84rem, 1.44vw, 1.09rem);
  line-height: 1.45;
}

.risk-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 24px;
}

.risk-grid::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border: 1px solid rgba(67, 214, 209, 0.08);
  border-radius: 16px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.95), transparent 74%);
  pointer-events: none;
}

.risk-card {
  --risk-tone: rgba(154, 112, 44, 0.62);
  --risk-solid: #b6842f;
  --risk-glow: rgba(154, 112, 44, 0.1);
  position: relative;
  display: grid;
  align-content: start;
  min-height: 312px;
  padding: 34px 34px 30px;
  border: 1px solid var(--risk-tone);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 10%, var(--risk-glow), transparent 11rem),
    radial-gradient(circle at 100% 100%, var(--risk-glow), transparent 17rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.028)),
    rgba(7, 16, 28, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 90px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.risk-card:nth-child(2) {
  --risk-tone: rgba(154, 91, 36, 0.66);
  --risk-solid: #b46a2d;
  --risk-glow: rgba(154, 91, 36, 0.11);
}

.risk-card:nth-child(3) {
  --risk-tone: rgba(143, 61, 39, 0.7);
  --risk-solid: #a8492f;
  --risk-glow: rgba(143, 61, 39, 0.12);
}

.risk-card:nth-child(4) {
  --risk-tone: rgba(118, 35, 38, 0.76);
  --risk-solid: #8c2f32;
  --risk-glow: rgba(118, 35, 38, 0.14);
}

.risk-card::before {
  content: "";
  position: absolute;
  right: -10px;
  bottom: -12px;
  width: 220px;
  height: 160px;
  opacity: 0.34;
  background-image: radial-gradient(var(--risk-tone) 1px, transparent 1.5px);
  background-size: 11px 11px;
  mask-image: radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.96), transparent 72%);
}

.risk-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--risk-tone);
  opacity: 0.9;
}

.risk-card-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.risk-icon {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border: 1px solid var(--risk-tone);
  border-radius: 999px;
  color: var(--risk-solid);
  background:
    radial-gradient(circle, var(--risk-glow), transparent 68%),
    rgba(255, 255, 255, 0.035);
  box-shadow:
    inset 0 0 24px var(--risk-glow),
    0 0 26px rgba(0, 0, 0, 0.18);
}

.risk-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.risk-index {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  min-height: 48px;
  border: 1px solid var(--risk-tone);
  border-radius: 12px;
  color: var(--risk-solid);
  background: rgba(7, 16, 28, 0.58);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
}

.risk-card h3 {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin-bottom: 18px;
  color: var(--risk-solid);
  font-size: clamp(1.44rem, 2.4vw, 1.96rem);
  line-height: 1.06;
}

.risk-card h3::after {
  content: "";
  display: block;
  width: 58px;
  height: 2px;
  margin-top: 16px;
  background: var(--risk-solid);
  border-radius: 999px;
  opacity: 0.82;
}

.risk-card p {
  position: relative;
  z-index: 1;
  max-width: 100%;
  color: rgba(246, 251, 255, 0.78);
  font-size: clamp(0.8rem, 1.16vw, 0.94rem);
  font-weight: 500;
  line-height: 1.45;
}

.mana-model {
  position: relative;
  width: min(1080px, calc(100% - 80px));
}

.mana-model::before {
  content: "";
  position: absolute;
  inset: 80px -8vw 40px;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 20%, rgba(67, 214, 209, 0.14), transparent 22rem),
    radial-gradient(circle at 78% 60%, rgba(106, 168, 255, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent);
}

.model-intro {
  display: grid;
  max-width: 880px;
  margin-bottom: 44px;
}

.model-intro h2 {
  max-width: 860px;
}

.model-intro p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(246, 251, 255, 0.76);
  font-size: clamp(0.86rem, 1.44vw, 1.02rem);
  line-height: 1.6;
}

.model-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.model-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-soft);
  box-shadow: var(--shadow);
}

.model-card {
  position: relative;
  grid-column: span 2;
  min-height: 300px;
  padding: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%, rgba(67, 214, 209, 0.11), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.038)),
    rgba(7, 16, 28, 0.54);
}

.model-card:nth-child(2) {
  background:
    radial-gradient(circle at 0% 0%, rgba(106, 168, 255, 0.12), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.038)),
    rgba(7, 16, 28, 0.54);
}

.model-card:nth-child(3) {
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 215, 111, 0.09), transparent 13rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.038)),
    rgba(7, 16, 28, 0.54);
}

.model-card:nth-child(4),
.model-card-wide {
  grid-column: span 3;
}

.model-card::before {
  content: "";
  position: absolute;
  inset: auto -20px -36px auto;
  width: 190px;
  height: 150px;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: radial-gradient(circle at 60% 55%, rgba(0, 0, 0, 0.9), transparent 72%);
}

.model-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 34px;
  border: 1px solid rgba(67, 214, 209, 0.36);
  border-radius: 14px;
  color: var(--teal);
  background: rgba(67, 214, 209, 0.08);
  box-shadow: 0 0 28px rgba(67, 214, 209, 0.14);
}

.model-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.model-card h3 {
  position: relative;
  z-index: 1;
  max-width: 420px;
  font-size: clamp(1.16rem, 1.84vw, 1.64rem);
  line-height: 1.08;
}

.model-card p {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin-top: 16px;
  color: rgba(246, 251, 255, 0.72);
}

.continuity-flow {
  position: relative;
  width: min(1080px, calc(100% - 80px));
  padding-top: 86px;
}

.continuity-flow::before {
  content: "";
  position: absolute;
  inset: 40px -8vw;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 38%, rgba(255, 159, 69, 0.13), transparent 24rem),
    radial-gradient(circle at 50% 38%, rgba(67, 214, 209, 0.16), transparent 22rem),
    radial-gradient(circle at 82% 38%, rgba(106, 168, 255, 0.16), transparent 24rem);
}

.flow-header {
  display: grid;
  justify-items: center;
  max-width: 920px;
  margin: 0 auto 46px;
  text-align: center;
}

.flow-header h2 {
  max-width: 880px;
}

.flow-header p:not(.eyebrow) {
  max-width: 700px;
  margin-top: 20px;
  color: rgba(246, 251, 255, 0.72);
  font-size: clamp(0.84rem, 1.36vw, 1rem);
}

.flow-system {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.62fr) minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  min-height: 520px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(4, 12, 22, 0.58);
  background-size: 64px 64px, 64px 64px, auto, auto;
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.flow-system::before {
  content: "";
  position: absolute;
  inset: 8% 10%;
  opacity: 0.5;
  background:
    radial-gradient(circle at 18% 46%, rgba(255, 159, 69, 0.3), transparent 10rem),
    radial-gradient(circle at 50% 45%, rgba(67, 214, 209, 0.28), transparent 12rem),
    radial-gradient(circle at 82% 45%, rgba(106, 168, 255, 0.28), transparent 12rem);
  filter: blur(18px);
}

.flow-column,
.flow-hub {
  position: relative;
  z-index: 1;
}

.flow-label {
  color: #c98835;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(1.08rem, 2.16vw, 2.04rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.model-side .flow-label {
  color: var(--blue);
}

.flow-caption {
  margin-top: 10px;
  color: rgba(246, 251, 255, 0.78);
  font-size: clamp(0.74rem, 1vw, 0.82rem);
}

.memory-cluster {
  position: relative;
  min-height: 300px;
  margin-top: 28px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 159, 69, 0.28), transparent 9rem),
    radial-gradient(circle at 50% 48%, rgba(255, 159, 69, 0.18) 1px, transparent 1.5px);
  background-size: auto, 18px 18px;
  border-radius: 20px;
}

.memory-cluster::before,
.memory-cluster::after {
  display: none;
}

.memory-node {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(255, 159, 69, 0.62);
  border-radius: 999px;
  color: #ffb75d;
  background:
    radial-gradient(circle, rgba(255, 159, 69, 0.34), rgba(255, 159, 69, 0.08) 62%, transparent);
  box-shadow:
    inset 0 0 24px rgba(255, 159, 69, 0.2),
    0 0 34px rgba(255, 159, 69, 0.28);
  transform: translate(-50%, -50%);
}

.memory-node svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.memory-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 116px;
  min-height: 58px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 159, 69, 0.45);
  border-radius: 12px;
  color: rgba(246, 251, 255, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 159, 69, 0.13), rgba(255, 255, 255, 0.035)),
    rgba(7, 16, 28, 0.68);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
}

.memory-chip svg {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: none;
  stroke: #ffd76f;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.memory-chip span {
  font-weight: 800;
}

.chip-chat {
  left: 38%;
  top: 0;
}

.chip-project {
  left: 8%;
  top: 36%;
}

.chip-notes {
  right: 8%;
  top: 38%;
}

.chip-ideas {
  left: 18%;
  bottom: 0;
}

.chip-files {
  right: 14%;
  bottom: 0;
}

.flow-hub {
  display: grid;
  justify-items: center;
  align-content: last baseline;
  min-height: 420px;
  text-align: center;
  transform: translateY(46px);
  top:10px;
}

.mana-orb {
  display: grid;
  place-items: center;
  width: min(18vw, 210px);
  min-width: 150px;
  aspect-ratio: 1;
  border: 1px solid rgba(67, 214, 209, 0.62);
  border-radius: 999px;
  color: #bdeeff;
  background:
    radial-gradient(circle, rgba(67, 214, 209, 0.26), rgba(67, 214, 209, 0.07) 58%, transparent 70%),
    rgba(7, 16, 28, 0.72);
  box-shadow:
    inset 0 0 28px rgba(67, 214, 209, 0.22),
    0 0 46px rgba(67, 214, 209, 0.34);
}

.mana-orb svg {
  width: 58%;
  height: 58%;
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(67, 214, 209, 0.38));
}

.flow-hub p {
  margin-top: -25px;
  color: var(--text);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.72rem);
  line-height: 1;
}

.flow-hub > span:not(.flow-line) {
  margin-top: 8px;
  color: var(--teal);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.flow-line {
  position: absolute;
  top: 38%;
  width: 130px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(67, 214, 209, 0.78), transparent);
}

.line-left {
  right: calc(50% + 55px);
}

.line-right {
  left: calc(50% + 55px);
}

.model-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 7px;
  width: min(100%, 188px);
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
}

.model-pill {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  min-height: 32px;
  padding: 0 14px;
  border: 1px solid rgba(0, 222, 255, 0.22);
  border-radius: 999px;
  color: rgba(246, 251, 255, 0.34);
  background:
    linear-gradient(180deg, rgba(20, 83, 128, 0.44), rgba(9, 33, 75, 0.42)),
    rgba(7, 16, 28, 0.58);
  font-size: clamp(0.78rem, 1vw, 0.92rem);
  font-weight: 400;
  line-height: 1;
}

.model-logo {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
}

.logo-chatgpt {
  color: #20c997;
}

.logo-claude {
  color: #ff7a3d;
}

.logo-grok {
  color: #f6fbff;
}

.logo-gemini {
  color: #8ab7ff;
}

.logo-deepseek,
.logo-mistral,
.logo-together,
.logo-llama {
  color: currentColor;
}

.logo-gemini,
.logo-deepseek,
.logo-mistral {
  fill: currentColor;
  stroke: none;
}

.model-pill.is-active {
  color: var(--text);
  border-color: rgba(0, 229, 255, 0.88);
  background:
    linear-gradient(180deg, rgba(32, 99, 143, 0.86), rgba(23, 78, 120, 0.84)),
    rgba(7, 16, 28, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 24px rgba(0, 229, 255, 0.1);
}

.model-pill:nth-child(4) {
  color: rgba(246, 251, 255, 0.54);
  border-color: rgba(0, 229, 255, 0.36);
  background:
    linear-gradient(180deg, rgba(20, 83, 128, 0.58), rgba(9, 33, 75, 0.52)),
    rgba(7, 16, 28, 0.64);
}

.model-pill:nth-child(5) {
  color: rgba(246, 251, 255, 0.44);
  border-color: rgba(0, 229, 255, 0.28);
}

.model-pill:nth-child(6) {
  color: rgba(246, 251, 255, 0.34);
  border-color: rgba(0, 229, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(14, 54, 96, 0.42), rgba(8, 28, 68, 0.44)),
    rgba(7, 16, 28, 0.56);
}

.model-pill:nth-child(7) {
  color: rgba(246, 251, 255, 0.24);
  border-color: rgba(0, 229, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(12, 43, 85, 0.34), rgba(7, 24, 60, 0.4)),
    rgba(7, 16, 28, 0.5);
}

.model-pill:nth-child(8) {
  color: rgba(246, 251, 255, 0.16);
  border-color: rgba(0, 229, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(9, 31, 70, 0.24), rgba(6, 20, 52, 0.36)),
    rgba(7, 16, 28, 0.42);
}

.sovereign-layer {
  width: min(1080px, calc(100% - 80px));
  padding-top: 48px;
}

.sovereign-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid rgba(106, 168, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 18%, rgba(67, 214, 209, 0.13), transparent 19rem),
    radial-gradient(circle at 92% 80%, rgba(106, 168, 255, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026)),
    rgba(4, 12, 22, 0.62);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.32);
  overflow: hidden;
}

.sovereign-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 78%);
}

.sovereign-copy,
.sovereign-stack {
  position: relative;
  z-index: 1;
}

.sovereign-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.sovereign-copy h2 {
  max-width: 720px;
}

.sovereign-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(246, 251, 255, 0.74);
  font-size: clamp(0.78rem, 1.16vw, 0.91rem);
  line-height: 1.58;
}

.sovereign-stack {
  display: grid;
  gap: 14px;
}

.sovereign-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(142px, 0.72fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  min-height: 156px;
  padding: 14px;
  border: 1px solid rgba(67, 214, 209, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(67, 214, 209, 0.08), rgba(106, 168, 255, 0.055)),
    rgba(7, 16, 28, 0.58);
  overflow: hidden;
}

.sovereign-item::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image: radial-gradient(rgba(67, 214, 209, 0.48) 1px, transparent 1.5px);
  background-size: 14px 14px;
  mask-image: radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.9), transparent 68%);
  pointer-events: none;
}

.layer-local::before {
  background-image: radial-gradient(rgba(255, 215, 111, 0.5) 1px, transparent 1.5px);
}

.layer-nodes::before {
  background-image: radial-gradient(rgba(106, 168, 255, 0.5) 1px, transparent 1.5px);
}

.layer-visual,
.layer-copy {
  position: relative;
  z-index: 1;
}

.layer-visual {
  display: grid;
  place-items: center;
  min-height: 128px;
  border: 1px solid rgba(67, 214, 209, 0.14);
  border-radius: 10px;
  color: var(--teal);
  background:
    radial-gradient(circle at 50% 48%, rgba(67, 214, 209, 0.18), transparent 5.5rem),
    rgba(255, 255, 255, 0.035);
}

.layer-local .layer-visual {
  color: var(--amber);
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 215, 111, 0.16), transparent 5.5rem),
    rgba(255, 255, 255, 0.035);
}

.layer-nodes .layer-visual {
  color: var(--blue);
  background:
    radial-gradient(circle at 50% 48%, rgba(106, 168, 255, 0.16), transparent 5.5rem),
    rgba(255, 255, 255, 0.035);
}

.layer-graphic {
  width: min(100%, 220px);
  height: auto;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.layer-graphic text {
  fill: rgba(246, 251, 255, 0.76);
  stroke: none;
  font: 700 0.72rem Inter, system-ui, sans-serif;
  text-anchor: middle;
}

.route-line,
.node-line {
  opacity: 0.48;
}

.mana-dot,
.model-node,
.device-screen,
.chip-core,
.node {
  fill: rgba(7, 16, 28, 0.76);
}

.mana-dot,
.device-screen,
.node-main {
  filter: drop-shadow(0 0 16px currentColor);
}

.mana-star,
.download-arrow,
.lock-mark,
.lock-body,
.node-shield,
.node-check {
  stroke: #f6fbff;
}

.device-base,
.model-node,
.chip-core,
.lock-body,
.node {
  stroke: currentColor;
}

.chip-line,
.chip-pin {
  opacity: 0.72;
}

.layer-copy {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 8px 14px;
  align-content: center;
  align-items: start;
}

.layer-copy > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  grid-row: span 2;
  border-radius: 999px;
  color: #06101b;
  background: var(--teal);
  font-size: 0.84rem;
  font-weight: 900;
}

.layer-local .layer-copy > span {
  background: var(--amber);
}

.layer-nodes .layer-copy > span {
  background: var(--blue);
}

.sovereign-item strong {
  color: var(--text);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: 0.82rem;
}

.sovereign-item p {
  color: rgba(246, 251, 255, 0.68);
  font-size: 0.75rem;
  line-height: 1.45;
}

.cta {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(860px, calc(100% - 80px));
  margin-bottom: 44px;
  padding: 92px 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(67, 214, 209, 0.16), transparent 18rem),
    radial-gradient(circle at 80% 50%, rgba(233, 95, 168, 0.14), transparent 16rem),
    linear-gradient(135deg, rgba(67, 214, 209, 0.1), rgba(255, 159, 69, 0.08), rgba(233, 95, 168, 0.08));
}

.cta h2 {
  max-width: 680px;
}

.waitlist-form {
  display: flex;
  gap: 8px;
  width: min(560px, 100%);
  margin-top: 18px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 13, 24, 0.55);
}

.waitlist-form input {
  flex: 1;
  min-width: 0;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  outline: 0;
  color: var(--text);
  background: transparent;
  font: inherit;
}

.waitlist-form input::placeholder {
  color: rgba(246, 251, 255, 0.55);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1080px, calc(100% - 80px));
  margin: 0 auto;
  padding: 36px 0 44px;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 780ms ease, transform 780ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-one {
  transition-delay: 110ms;
}

.delay-two {
  transition-delay: 190ms;
}

.delay-three {
  transition-delay: 270ms;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(-10px);
    opacity: 0.35;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

@media (max-width: 900px) {
  .site-nav {
    position: absolute;
    top: 66px;
    left: 0;
    right: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: min(300px, calc(100vw - 40px));
    padding: 10px;
    border-radius: 8px;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    border-radius: 6px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    min-width: 66px;
    min-height: 42px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--text);
    background: rgba(7, 16, 28, 0.72);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    backdrop-filter: blur(18px);
  }

  .risk-grid,
  .model-grid,
  .flow-system {
    grid-template-columns: 1fr;
  }

  .risk-grid::before {
    inset: -12px;
    width: auto;
    height: auto;
    background:
      linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
    background-size: 64px 64px;
  }

  .risk-card {
    min-height: auto;
  }

  .model-card,
  .model-card:nth-child(4),
  .model-card-wide {
    grid-column: auto;
    min-height: auto;
  }

  .flow-system {
    min-height: auto;
    padding: 16px;
  }

  .flow-label,
  .flow-caption {
    text-align: center;
  }

  .memory-cluster {
    max-width: 560px;
    margin-right: auto;
    margin-left: auto;
  }

  .flow-hub {
    min-height: 300px;
    transform: none;
  }

  .flow-line {
    display: none;
  }

  .mana-orb {
    width: min(220px, 48vw);
  }

  .model-stack {
    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

  .sovereign-panel {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .sovereign-item {
    grid-template-columns: minmax(160px, 0.55fr) minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    left: 14px;
    right: 14px;
    justify-content: flex-start;
    gap: 14px;
    width: auto;
    transform: none;
  }

  h1 {
    font-size: clamp(3.4rem, 9vw, 4.32rem);
    max-width: 100%;
  }

  .hero {
    min-height: 96vh;
    padding: 112px 14px 72px;
  }

  .hero-content {
    width: min(320px, calc(100vw - 28px));
    max-width: min(320px, calc(100vw - 28px));
    min-width: 0;
  }

  .hero-content h1,
  .hero-text {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-shade {
    background:
      linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(6, 16, 27, 0.94), rgba(7, 16, 28, 0.58)),
      linear-gradient(180deg, rgba(6, 16, 27, 0.74), transparent 30%, rgba(7, 16, 28, 0.95));
    background-size: 64px 64px, 64px 64px, auto, auto;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    max-width: min(280px, 100%);
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 78px 0;
  }

  .section-kicker {
    margin-bottom: 36px;
  }

  .risk-stage {
    margin-bottom: 32px;
  }

  .risk-card {
    padding: 22px;
  }

  .model-card {
    padding: 22px;
  }

  .flow-system {
    padding: 18px;
    border-radius: 14px;
  }

  .memory-cluster {
    display: grid;
    gap: 10px;
    min-height: auto;
    margin-top: 24px;
    background:
      radial-gradient(circle at 50% 0%, rgba(255, 159, 69, 0.18), transparent 16rem),
      rgba(255, 255, 255, 0.018);
  }

  .memory-cluster::before,
  .memory-cluster::after,
  .memory-node {
    display: none;
  }

  .memory-chip,
  .chip-chat,
  .chip-project,
  .chip-notes,
  .chip-ideas,
  .chip-files {
    position: static;
    min-width: 0;
    width: 100%;
  }

  .flow-hub {
    min-height: 250px;
  }

  .flow-hub > span:not(.flow-line) {
    letter-spacing: 0.2em;
  }

  .model-stack {
    grid-template-columns: 1fr;
  }

  .model-pill,
  .model-pill.is-active,
  .model-pill:not(.is-active) {
    min-height: 32px;
    padding: 0 14px;
    font-size: clamp(0.78rem, 3.8vw, 0.92rem);
  }

  .sovereign-layer {
    width: min(100% - 28px, 1180px);
  }

  .sovereign-panel {
    padding: 18px;
    border-radius: 14px;
  }

  .sovereign-item {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 14px;
  }

  .layer-visual {
    min-height: 112px;
  }

  .layer-copy {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .layer-copy > span {
    width: 34px;
    height: 34px;
    font-size: 0.76rem;
  }

  .cta {
    width: min(100% - 28px, 960px);
    padding: 64px 18px;
  }

  .waitlist-form {
    flex-direction: column;
    border-radius: 8px;
    padding: 10px;
  }

  .waitlist-form .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* New design fork: TSH-inspired editorial system */
:root {
  --bg: #f6f8f5;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.78);
  --surface-strong: #ffffff;
  --text: #111415;
  --muted: #596162;
  --line: rgba(17, 20, 21, 0.13);
  --line-strong: rgba(17, 20, 21, 0.24);
  --teal: #00a7b5;
  --amber: #d5ff45;
  --ember: #ff6047;
  --blue: #174cff;
  --pink: #cbb7ff;
  --shadow: 0 18px 50px rgba(17, 20, 21, 0.08);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 72% 18%, rgba(183, 89, 36, 0.36), transparent 24rem),
    radial-gradient(circle at 24% 44%, rgba(48, 81, 38, 0.42), transparent 28rem),
    radial-gradient(circle at 54% 12%, rgba(212, 135, 40, 0.16), transparent 18rem),
    linear-gradient(135deg, #0b0d08 0%, #182013 42%, #3a2118 100%);
}

body::before {
  background:
    linear-gradient(rgba(244, 231, 205, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244, 231, 205, 0.038) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.58) 56%, transparent 96%);
}

p {
  color: var(--muted);
}

.site-header {
  top: 18px;
  width: min(1080px, calc(100% - 80px));
  padding: 10px 12px;
  border: 1px solid rgba(17, 20, 21, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 40px rgba(17, 20, 21, 0.08);
  backdrop-filter: blur(20px);
}

.brand {
  padding-left: 6px;
  color: var(--text);
}

.brand-mark {
  color: #fff;
  border-color: #111415;
  border-radius: 3px;
  background: #111415;
  box-shadow: none;
}

.site-nav {
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.site-nav a {
  color: rgba(17, 20, 21, 0.72);
  font-size: 0.82rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(17, 20, 21, 0.055);
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--blue);
}

.hero {
  min-height: 92vh;
  padding-top: 118px;
  background:
    radial-gradient(circle at 70% 22%, rgba(201, 105, 41, 0.35), transparent 26rem),
    radial-gradient(circle at 28% 50%, rgba(50, 86, 38, 0.38), transparent 30rem),
    linear-gradient(135deg, rgba(8, 10, 7, 0.92), rgba(32, 39, 22, 0.86) 46%, rgba(79, 38, 24, 0.82));
  overflow: hidden;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-image {
  display: none;
}

.hero-shade {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 80px));
  max-width: min(1080px, calc(100% - 80px));
  min-width: 0;
  margin: 0 auto;
}

.eyebrow {
  color: rgba(17, 20, 21, 0.68);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

h1 {
  max-width: 760px;
  color: #f4ead6;
  font-size: clamp(3rem, 7vw, 7.1rem);
  line-height: 0.88;
}

.hero-text {
  max-width: 560px;
  color: rgba(244, 234, 214, 0.74);
  font-size: clamp(1rem, 1.5vw, 1.24rem);
}

.hero .eyebrow {
  color: rgba(244, 234, 214, 0.7);
}

.button {
  min-height: 46px;
  border-radius: 999px;
  font-size: 0.88rem;
}

.button::after {
  content: " ->";
}

.button.primary {
  color: #fff;
  background: var(--blue);
  box-shadow: none;
}

.button.ghost {
  color: var(--text);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.68);
}

.scroll-cue {
  display: none;
}

.section {
  width: min(1080px, calc(100% - 96px));
  padding: 92px 0;
}

.journey {
  min-height: auto;
}

.risk-reveal,
.mana-model,
.continuity-flow,
.sovereign-layer {
  width: min(1080px, calc(100% - 96px));
}

.risk-reveal::before,
.mana-model::before,
.continuity-flow::before {
  inset: 40px -4vw;
  background:
    radial-gradient(circle at 14% 18%, rgba(199, 107, 37, 0.18), transparent 22rem),
    radial-gradient(circle at 84% 20%, rgba(57, 91, 43, 0.18), transparent 20rem),
    linear-gradient(180deg, rgba(246, 231, 198, 0.08), transparent);
  border: 0;
}

.risk-stage,
.flow-header {
  justify-items: start;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.problem-mark {
  display: none;
}

.risk-stage h2,
.flow-header h2,
.model-intro h2,
.sovereign-copy h2,
.cta h2 {
  color: var(--text);
  font-size: clamp(2.2rem, 4.8vw, 5rem);
  line-height: 0.92;
}

.risk-stage p,
.flow-header p:not(.eyebrow),
.model-intro p:not(.eyebrow),
.sovereign-copy p:not(.eyebrow) {
  color: rgba(17, 20, 21, 0.66);
  font-size: clamp(0.96rem, 1.35vw, 1.12rem);
}

.risk-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--line);
}

.risk-grid::before {
  display: none;
}

.risk-card {
  min-height: 280px;
  padding: 28px;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: none;
}

.risk-card::before,
.risk-card::after {
  display: none;
}

.risk-card-header {
  margin-bottom: 34px;
}

.risk-icon {
  width: 48px;
  height: 48px;
  color: var(--text);
  border-color: var(--line);
  background: #f5f7f4;
  box-shadow: none;
}

.risk-icon svg {
  width: 25px;
  height: 25px;
}

.risk-index {
  min-width: auto;
  min-height: auto;
  border: 0;
  color: rgba(17, 20, 21, 0.4);
  background: transparent;
  font-size: 0.86rem;
}

.risk-card h3,
.model-card h3,
.sovereign-item strong {
  color: var(--text);
}

.risk-card h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.risk-card h3::after {
  width: 34px;
  height: 1px;
  background: var(--blue);
}

.risk-card p,
.model-card p,
.sovereign-item p {
  color: rgba(17, 20, 21, 0.62);
}

.model-intro {
  max-width: 900px;
}

.model-grid {
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.model-card {
  min-height: 250px;
  padding: 28px;
  border: 0;
  border-radius: 0;
  background: #fff !important;
  box-shadow: none;
}

.model-card::before {
  background-image: linear-gradient(rgba(17, 20, 21, 0.07) 1px, transparent 1px);
}

.model-icon {
  width: 48px;
  height: 48px;
  color: var(--blue);
  border-color: var(--line);
  border-radius: 4px;
  background: #f3f6ff;
  box-shadow: none;
}

.flow-system,
.sovereign-panel,
.cta {
  border-color: var(--line);
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(246, 248, 245, 0.8)),
    rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.flow-system {
  padding: 28px;
}

.flow-system::before {
  background:
    radial-gradient(circle at 18% 46%, rgba(199, 107, 37, 0.26), transparent 10rem),
    radial-gradient(circle at 82% 44%, rgba(57, 91, 43, 0.22), transparent 12rem);
  opacity: 0.85;
}

.flow-label {
  color: var(--text);
}

.model-side .flow-label {
  color: var(--text);
}

.flow-caption {
  color: rgba(17, 20, 21, 0.58);
}

.memory-cluster {
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 140, 46, 0.34), transparent 8rem),
    radial-gradient(circle at 80% 18%, rgba(119, 202, 112, 0.16), transparent 8rem),
    radial-gradient(circle at 50% 48%, rgba(17, 20, 21, 0.12) 1px, transparent 1.5px);
}

.memory-node,
.memory-chip,
.model-pill,
.mana-orb,
.layer-visual,
.sovereign-item {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.memory-chip svg {
  stroke: var(--blue);
}

.mana-orb {
  color: var(--blue);
}

.flow-hub p {
  color: var(--text);
}

.flow-hub > span:not(.flow-line) {
  color: rgba(17, 20, 21, 0.56);
}

.flow-line {
  background: linear-gradient(90deg, transparent, rgba(17, 20, 21, 0.22), transparent);
}

.model-pill.is-active {
  color: #fff;
  border-color: var(--blue);
  background: var(--blue);
}

.logo-grok {
  color: currentColor;
}

.sovereign-panel {
  gap: 36px;
}

.sovereign-panel::before {
  opacity: 0.5;
  background:
    radial-gradient(circle at 82% 28%, rgba(57, 91, 43, 0.14), transparent 18rem),
    linear-gradient(rgba(17, 20, 21, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 20, 21, 0.035) 1px, transparent 1px);
  background-size: auto, 58px 58px, 58px 58px;
}

.sovereign-item {
  border-radius: 0;
  background: #fff;
}

.sovereign-item::before {
  display: none;
}

.layer-visual {
  border-radius: 0;
  background: #f4f7f9 !important;
}

.layer-local .layer-visual {
  color: #8a6a00;
}

.layer-nodes .layer-visual {
  color: var(--blue);
}

.layer-copy > span,
.layer-local .layer-copy > span,
.layer-nodes .layer-copy > span {
  color: #fff;
  background: var(--text);
}

.layer-graphic text {
  fill: rgba(17, 20, 21, 0.72);
}

.mana-dot,
.model-node,
.device-screen,
.chip-core,
.node {
  fill: rgba(255, 255, 255, 0.86);
}

.mana-star,
.download-arrow,
.lock-mark,
.lock-body,
.node-shield,
.node-check {
  stroke: var(--text);
}

.cta {
  width: min(860px, calc(100% - 96px));
  background:
    radial-gradient(circle at 88% 18%, rgba(57, 91, 43, 0.18), transparent 17rem),
    linear-gradient(135deg, rgba(194, 104, 39, 0.28), rgba(221, 168, 80, 0.2)),
    #fff;
}

.waitlist-form {
  border-color: var(--line);
  background: #fff;
}

.waitlist-form input {
  color: var(--text);
}

.waitlist-form input::placeholder {
  color: rgba(17, 20, 21, 0.46);
}

.site-footer {
  width: min(1080px, calc(100% - 96px));
}

@media (max-width: 900px) {
  .site-header,
  .section,
  .risk-reveal,
  .mana-model,
  .continuity-flow,
  .sovereign-layer,
  .site-footer {
    width: min(100% - 40px, 1080px);
  }

  .hero-content {
    width: min(100% - 40px, 1080px);
    max-width: min(100% - 40px, 1080px);
  }
}

@media (max-width: 640px) {
  .site-header,
  .section,
  .risk-reveal,
  .mana-model,
  .continuity-flow,
  .sovereign-layer,
  .cta,
  .site-footer {
    width: min(100% - 28px, 1080px);
  }

  .site-header {
    left: 14px;
    right: 14px;
    width: auto;
  }

  h1 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .hero-content h1,
  #hero-title {
    font-size: clamp(6.4rem, 12vw, 7.32rem);
  }

  .hero-content.reveal.visible span.word {
    font-size: clamp(3.4rem, 9vw, 4.32rem);
    line-height: 0.95;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    width: min(100% - 28px, 1080px);
    max-width: min(100% - 28px, 1080px);
  }

  .risk-grid,
  .model-grid {
    border-radius: 0;
  }
}

/* Dark orange palette refinement */
:root {
  --bg: #080905;
  --surface: #1d160f;
  --surface-soft: rgba(45, 28, 17, 0.74);
  --surface-strong: rgba(67, 35, 19, 0.88);
  --text: #f5ead4;
  --muted: #c7ad83;
  --line: rgba(237, 154, 62, 0.2);
  --line-strong: rgba(237, 154, 62, 0.38);
  --teal: #6f8c47;
  --amber: #df922e;
  --ember: #b95524;
  --blue: #df922e;
  --pink: #9b5c2d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 74% 12%, rgba(222, 123, 38, 0.58), transparent 25rem),
    radial-gradient(circle at 52% 38%, rgba(156, 71, 28, 0.46), transparent 32rem),
    radial-gradient(circle at 18% 46%, rgba(55, 83, 38, 0.34), transparent 28rem),
    radial-gradient(circle at 86% 78%, rgba(236, 147, 47, 0.26), transparent 22rem),
    linear-gradient(135deg, #060704 0%, #151b0d 32%, #402015 68%, #6b2d18 100%);
}

body::before {
  background:
    linear-gradient(rgba(246, 226, 188, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 226, 188, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.62) 62%, transparent 96%);
}

p,
.hero-text,
.risk-stage p,
.flow-header p:not(.eyebrow),
.model-intro p:not(.eyebrow),
.sovereign-copy p:not(.eyebrow),
.risk-card p,
.model-card p,
.sovereign-item p,
.flow-caption,
.footer-links a {
  color: rgba(245, 234, 212, 0.72);
}

h1,
h2,
h3,
.risk-stage h2,
.flow-header h2,
.model-intro h2,
.sovereign-copy h2,
.cta h2,
.risk-card h3,
.model-card h3,
.sovereign-item strong,
.flow-label,
.model-side .flow-label,
.flow-hub p {
  color: var(--text);
}

.eyebrow,
.hero .eyebrow,
.flow-hub > span:not(.flow-line) {
  color: rgba(223, 146, 46, 0.82);
}

.site-header {
  border-color: rgba(245, 234, 212, 0.14);
  background: rgba(18, 14, 9, 0.72);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.brand,
.site-nav a {
  color: rgba(245, 234, 212, 0.78);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(223, 146, 46, 0.12);
}

.brand-mark,
.site-nav .nav-cta,
.button.primary {
  color: #170d08;
  border-color: rgba(245, 234, 212, 0.18);
  background: linear-gradient(135deg, #f0a33c, #c86c28);
}

.button.ghost {
  color: var(--text);
  border-color: rgba(245, 234, 212, 0.22);
  background: rgba(34, 22, 14, 0.66);
}

.hero {
  background:
    radial-gradient(circle at 70% 20%, rgba(227, 125, 37, 0.5), transparent 28rem),
    radial-gradient(circle at 30% 52%, rgba(53, 82, 36, 0.35), transparent 30rem),
    radial-gradient(circle at 48% 8%, rgba(235, 156, 55, 0.24), transparent 18rem),
    linear-gradient(135deg, rgba(5, 7, 4, 0.96), rgba(25, 31, 15, 0.88) 42%, rgba(94, 39, 20, 0.92));
}

.risk-reveal::before,
.mana-model::before,
.continuity-flow::before {
  background:
    radial-gradient(circle at 18% 24%, rgba(223, 146, 46, 0.22), transparent 24rem),
    radial-gradient(circle at 82% 20%, rgba(69, 96, 44, 0.16), transparent 20rem),
    linear-gradient(180deg, rgba(243, 167, 74, 0.08), transparent);
}

.risk-grid,
.model-grid {
  border-color: rgba(238, 166, 81, 0.24);
  background: rgba(238, 166, 81, 0.18);
}

.risk-card,
.model-card,
.sovereign-item {
  background:
    radial-gradient(circle at 16% 0%, rgba(226, 137, 47, 0.14), transparent 13rem),
    linear-gradient(145deg, rgba(60, 34, 20, 0.88), rgba(26, 18, 12, 0.86)) !important;
  border: 0;
}

.flow-system,
.sovereign-panel,
.cta {
  border-color: rgba(238, 166, 81, 0.24);
  background:
    radial-gradient(circle at 18% 18%, rgba(223, 146, 46, 0.18), transparent 20rem),
    radial-gradient(circle at 86% 18%, rgba(71, 100, 45, 0.12), transparent 18rem),
    linear-gradient(145deg, rgba(54, 31, 20, 0.9), rgba(18, 14, 10, 0.88));
}

.flow-system::before {
  background:
    radial-gradient(circle at 18% 46%, rgba(223, 146, 46, 0.32), transparent 10rem),
    radial-gradient(circle at 82% 44%, rgba(71, 100, 45, 0.2), transparent 12rem);
}

.risk-icon,
.model-icon,
.memory-node,
.memory-chip,
.model-pill,
.mana-orb,
.layer-visual {
  color: #f0a33c;
  border-color: rgba(238, 166, 81, 0.24);
  background: rgba(22, 15, 10, 0.72) !important;
}

.risk-index {
  color: rgba(245, 234, 212, 0.42);
}

.risk-card h3::after {
  background: var(--amber);
}

.memory-cluster {
  background:
    radial-gradient(circle at 50% 48%, rgba(226, 126, 39, 0.32), transparent 8rem),
    radial-gradient(circle at 80% 18%, rgba(71, 100, 45, 0.18), transparent 8rem),
    radial-gradient(circle at 50% 48%, rgba(245, 234, 212, 0.12) 1px, transparent 1.5px);
}

.memory-chip svg,
.mana-orb,
.layer-local .layer-visual,
.layer-nodes .layer-visual {
  color: #f0a33c;
  stroke: #f0a33c;
}

.flow-line {
  background: linear-gradient(90deg, transparent, rgba(238, 166, 81, 0.36), transparent);
}

.model-pill.is-active {
  color: #170d08;
  border-color: #eda244;
  background: linear-gradient(135deg, #eda244, #c86827) !important;
}

.layer-copy > span,
.layer-local .layer-copy > span,
.layer-nodes .layer-copy > span {
  color: #170d08;
  background: linear-gradient(135deg, #eda244, #c86827);
}

.layer-graphic text {
  fill: rgba(245, 234, 212, 0.74);
}

.mana-dot,
.model-node,
.device-screen,
.chip-core,
.node {
  fill: rgba(20, 14, 9, 0.84);
}

.mana-star,
.download-arrow,
.lock-mark,
.lock-body,
.node-shield,
.node-check {
  stroke: rgba(245, 234, 212, 0.9);
}

.waitlist-form {
  border-color: rgba(238, 166, 81, 0.28);
  background: rgba(14, 10, 7, 0.66);
}

.waitlist-form input {
  color: var(--text);
}

.waitlist-form input::placeholder {
  color: rgba(245, 234, 212, 0.45);
}

.site-footer {
  border-top-color: rgba(238, 166, 81, 0.22);
}

/* Multicolor poster palette: black, red, orange, cream */
:root {
  --bg: #090102;
  --surface: #180304;
  --surface-soft: rgba(39, 5, 5, 0.78);
  --surface-strong: rgba(87, 13, 8, 0.9);
  --text: #fff7ed;
  --muted: #ffd4bd;
  --line: rgba(255, 111, 24, 0.24);
  --line-strong: rgba(255, 111, 24, 0.45);
  --teal: #ff8a1f;
  --amber: #ff7a00;
  --ember: #d82212;
  --blue: #ff6a00;
  --pink: #a8140d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 50% 96%, rgba(255, 116, 0, 0.88), transparent 34rem),
    radial-gradient(circle at 74% 50%, rgba(236, 54, 17, 0.46), transparent 32rem),
    radial-gradient(circle at 28% 42%, rgba(115, 11, 9, 0.54), transparent 30rem),
    linear-gradient(180deg, #090102 0%, #210305 25%, #610b08 57%, #f75a00 100%);
}

body::before {
  background:
    linear-gradient(rgba(255, 247, 237, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 247, 237, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.55) 66%, transparent 100%);
}

p,
.hero-text,
.risk-stage p,
.flow-header p:not(.eyebrow),
.model-intro p:not(.eyebrow),
.sovereign-copy p:not(.eyebrow),
.risk-card p,
.model-card p,
.sovereign-item p,
.flow-caption,
.footer-links a {
  color: rgba(255, 232, 211, 0.76);
}

h1,
h2,
h3,
.risk-stage h2,
.flow-header h2,
.model-intro h2,
.sovereign-copy h2,
.cta h2,
.risk-card h3,
.model-card h3,
.sovereign-item strong,
.flow-label,
.model-side .flow-label,
.flow-hub p {
  color: #fff8ee;
}

.eyebrow,
.hero .eyebrow,
.flow-hub > span:not(.flow-line) {
  color: rgba(255, 168, 86, 0.86);
}

.site-header {
  border-color: rgba(255, 247, 237, 0.14);
  background: rgba(15, 2, 3, 0.76);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.46);
}

.brand,
.site-nav a {
  color: rgba(255, 247, 237, 0.82);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff8ee;
  background: rgba(255, 105, 18, 0.16);
}

.brand-mark,
.site-nav .nav-cta,
.button.primary {
  color: #180304;
  border-color: rgba(255, 247, 237, 0.22);
  background: linear-gradient(135deg, #fff4df, #ff7a00 58%, #d82212);
}

.button.ghost {
  color: #fff8ee;
  border-color: rgba(255, 247, 237, 0.24);
  background: rgba(24, 3, 4, 0.66);
}

.hero {
  background:
    radial-gradient(circle at 50% 94%, rgba(255, 116, 0, 0.86), transparent 34rem),
    radial-gradient(circle at 74% 44%, rgba(235, 58, 15, 0.48), transparent 29rem),
    radial-gradient(circle at 28% 36%, rgba(96, 8, 7, 0.56), transparent 30rem),
    linear-gradient(180deg, rgba(7, 1, 2, 0.98), rgba(51, 4, 5, 0.92) 38%, rgba(219, 45, 7, 0.84) 100%);
}

.risk-reveal::before,
.mana-model::before,
.continuity-flow::before {
  background:
    radial-gradient(circle at 70% 24%, rgba(255, 116, 0, 0.26), transparent 24rem),
    radial-gradient(circle at 24% 28%, rgba(130, 10, 8, 0.28), transparent 20rem),
    linear-gradient(180deg, rgba(255, 111, 24, 0.08), transparent);
}

.risk-grid,
.model-grid {
  border-color: rgba(255, 111, 24, 0.28);
  background: rgba(255, 111, 24, 0.22);
}

.risk-card,
.model-card,
.sovereign-item {
  background:
    radial-gradient(circle at 64% 0%, rgba(255, 98, 0, 0.18), transparent 13rem),
    linear-gradient(145deg, rgba(75, 8, 6, 0.92), rgba(18, 2, 3, 0.9)) !important;
  border: 0;
}

.flow-system,
.sovereign-panel,
.cta {
  border-color: rgba(255, 111, 24, 0.3);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 111, 24, 0.22), transparent 19rem),
    radial-gradient(circle at 20% 12%, rgba(125, 10, 8, 0.3), transparent 20rem),
    linear-gradient(145deg, rgba(66, 8, 6, 0.92), rgba(14, 2, 3, 0.9));
}

.flow-system::before {
  background:
    radial-gradient(circle at 20% 48%, rgba(255, 111, 24, 0.36), transparent 12rem),
    radial-gradient(circle at 82% 42%, rgba(206, 35, 12, 0.24), transparent 14rem);
}

.risk-icon,
.model-icon,
.memory-node,
.memory-chip,
.model-pill,
.mana-orb,
.layer-visual {
  color: #ff9b3f;
  border-color: rgba(255, 143, 55, 0.28);
  background:
    linear-gradient(145deg, rgba(50, 4, 5, 0.82), rgba(13, 1, 2, 0.76)) !important;
}

.risk-index {
  color: rgba(255, 247, 237, 0.42);
}

.risk-card h3::after {
  background: #ff7a00;
}

.memory-cluster {
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 116, 0, 0.38), transparent 8rem),
    radial-gradient(circle at 50% 48%, rgba(255, 247, 237, 0.12) 1px, transparent 1.5px);
}

.memory-chip svg,
.mana-orb,
.layer-local .layer-visual,
.layer-nodes .layer-visual {
  color: #ff9b3f;
  stroke: #ff9b3f;
}

.flow-line {
  background: linear-gradient(90deg, transparent, rgba(255, 111, 24, 0.48), transparent);
}

.model-pill.is-active {
  color: #180304;
  border-color: #ffb466;
  background: linear-gradient(135deg, #fff3df, #ff7a00 62%, #d82212) !important;
}

.layer-copy > span,
.layer-local .layer-copy > span,
.layer-nodes .layer-copy > span {
  color: #180304;
  background: linear-gradient(135deg, #fff3df, #ff7a00 62%, #d82212);
}

.layer-graphic text {
  fill: rgba(255, 232, 211, 0.78);
}

.mana-dot,
.model-node,
.device-screen,
.chip-core,
.node {
  fill: rgba(17, 1, 2, 0.86);
}

.mana-star,
.download-arrow,
.lock-mark,
.lock-body,
.node-shield,
.node-check {
  stroke: rgba(255, 248, 238, 0.92);
}

.waitlist-form {
  border-color: rgba(255, 143, 55, 0.32);
  background: rgba(12, 1, 2, 0.7);
}

.waitlist-form input {
  color: #fff8ee;
}

.waitlist-form input::placeholder {
  color: rgba(255, 232, 211, 0.45);
}

.site-footer {
  border-top-color: rgba(255, 111, 24, 0.26);
}

/* Problems section: vertical card-by-card reveal */
.risk-grid {
  grid-template-columns: 1fr;
  gap: clamp(18px, 3.2vw, 44px);
  overflow: visible;
  border: 0;
  background: transparent;
  justify-items: stretch;
}

.risk-card {
  --risk-x: 0px;
  --risk-rot: 0deg;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  gap: 18px;
  width: min(100%, 322px);
  min-height: clamp(330px, 30vw, 390px);
  aspect-ratio: 5 / 7.35;
  padding: clamp(22px, 2.6vw, 30px);
  border: 1px solid rgba(255, 111, 24, 0.28);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 116, 0, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(76, 8, 6, 0.9), rgba(17, 2, 3, 0.88)) !important;
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.risk-card:nth-child(1) {
  --risk-x: 3%;
  --risk-rot: -1.1deg;
  justify-self: start;
}

.risk-card:nth-child(2) {
  --risk-x: -6%;
  --risk-rot: 1.25deg;
  justify-self: end;
}

.risk-card:nth-child(3) {
  --risk-x: 18%;
  --risk-rot: 0.7deg;
  justify-self: center;
}

.risk-card:nth-child(4) {
  --risk-x: -8%;
  --risk-rot: -0.8deg;
  justify-self: end;
}

.risk-card.reveal {
  opacity: 0;
  --risk-slide: -72px;
  transform: translate(calc(var(--risk-x) + var(--risk-slide)), 0) rotate(var(--risk-rot));
  filter: blur(16px);
  transition:
    opacity 760ms ease,
    filter 920ms ease,
    transform 960ms cubic-bezier(0.19, 1, 0.22, 1);
}

.risk-card.reveal.visible {
  opacity: 1;
  transform: translate(var(--risk-x), 0) rotate(var(--risk-rot));
  filter: blur(0);
}

.risk-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 0;
}

.risk-icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
}

.risk-index {
  align-self: flex-start;
  padding: 7px 12px;
  border: 1px solid rgba(255, 143, 55, 0.24);
  border-radius: 999px;
  background: rgba(16, 1, 2, 0.34);
}

.risk-card h3 {
  align-self: start;
  margin-top: 20px;
  margin-bottom: 0;
}

.risk-card p {
  max-width: 100%;
  align-self: start;
  font-size: clamp(0.76rem, 1vw, 0.88rem);
  line-height: 1.38;
}

@media (max-width: 720px) {
  .risk-grid {
    gap: 20px;
  }

  .risk-card {
    --risk-x: 0px !important;
    width: min(100%, 322px);
    padding: 24px;
    border-radius: 22px;
    justify-self: center !important;
  }

  .risk-card.reveal,
  .risk-card.reveal.visible {
    transform-origin: center;
  }
}

/* Problems cards: overlapping horizontal stack */
.risk-grid {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  padding: 18px 0 28px;
}

.risk-card {
  flex: 0 0 clamp(224px, 21vw, 256px);
  width: clamp(224px, 21vw, 256px);
  margin-left: clamp(-12px, -0.9vw, -6px);
  justify-self: auto !important;
  transform-origin: center bottom;
}

.risk-card:first-child {
  margin-left: 0;
}

.risk-card:nth-child(1) {
  --risk-x: 0px;
  --risk-slide: -76px;
  --risk-rot: -4deg;
  z-index: 4;
}

.risk-card:nth-child(2) {
  --risk-x: 0px;
  --risk-slide: 64px;
  --risk-rot: -1.4deg;
  z-index: 3;
}

.risk-card:nth-child(3) {
  --risk-x: 0px;
  --risk-slide: 54px;
  --risk-rot: 1.6deg;
  z-index: 2;
}

.risk-card:nth-child(4) {
  --risk-x: 0px;
  --risk-slide: 76px;
  --risk-rot: 4deg;
  z-index: 1;
}

/* Mana counter-model cards: blur-to-focus reveal */
.model-card.reveal {
  opacity: 0;
  filter: blur(28px);
  transform: none;
  transition:
    opacity 900ms ease,
    filter 1100ms ease;
}

.model-card.reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

@media (max-width: 900px) {
  .risk-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 16px;
    margin-right: 0;
    padding: 12px 0 18px;
    overflow: visible;
    scrollbar-width: auto;
    scroll-snap-type: none;
  }

  .risk-card {
    --risk-x: 0px !important;
    --risk-slide: 0px !important;
    --risk-rot: 0deg !important;
    flex: none;
    width: min(100%, 340px);
    max-width: calc(100vw - 36px);
    min-height: auto;
    aspect-ratio: auto;
    margin-left: 0;
    padding: 22px;
    scroll-snap-align: unset;
    transform-origin: center;
  }

  .risk-card:first-child {
    margin-left: 0;
  }

  .risk-card.reveal {
    transform: translate3d(0, 34px, 0) rotate(0deg);
  }

  .risk-card.reveal.visible {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  .risk-card h3 {
    margin-top: 8px;
  }

  .risk-card p {
    font-size: 0.84rem;
    line-height: 1.45;
  }
}

/* Mana counter-model: centered secondary-color card stack */
.mana-model .model-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
  justify-content: center;
  justify-items: center;
  width: min(100%, 860px);
  margin: 38px auto 0;
  gap: clamp(14px, 1.6vw, 22px);
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.mana-model .model-card,
.mana-model .model-card:nth-child(4),
.mana-model .model-card-wide {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  max-width: 240px;
  min-height: auto;
  aspect-ratio: 5 / 7;
  padding: clamp(20px, 1.7vw, 26px);
  border: 1px solid rgba(84, 180, 123, 0.34);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 12%, rgba(73, 183, 125, 0.2), transparent 15rem),
    radial-gradient(circle at 88% 0%, rgba(64, 151, 126, 0.14), transparent 16rem),
    linear-gradient(145deg, rgba(10, 41, 27, 0.92), rgba(27, 18, 12, 0.9)) !important;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(217, 255, 226, 0.06);
  isolation: isolate;
}

.mana-model .model-card:nth-child(1) {
  grid-column: 2 / span 2;
}

.mana-model .model-card:nth-child(2) {
  grid-column: 4 / span 2;
}

.mana-model .model-card:nth-child(even) {
  background:
    radial-gradient(circle at 14% 10%, rgba(73, 183, 125, 0.16), transparent 15rem),
    radial-gradient(circle at 90% 10%, rgba(48, 133, 106, 0.2), transparent 17rem),
    linear-gradient(145deg, rgba(8, 36, 31, 0.92), rgba(24, 17, 12, 0.9)) !important;
}

.mana-model .model-card::before {
  content: "";
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  z-index: 0;
  border-radius: inherit;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.78;
  filter: saturate(0.92) contrast(1.04);
}

.mana-model .model-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(5, 8, 7, 0.08) 0%, rgba(5, 8, 7, 0.2) 42%, rgba(5, 8, 7, 0.7) 100%),
    linear-gradient(90deg, rgba(5, 12, 10, 0.52) 0%, rgba(5, 13, 10, 0.28) 58%, rgba(5, 13, 10, 0.06) 100%),
    radial-gradient(circle at 18% 20%, rgba(95, 222, 143, 0.08), transparent 18rem);
}

.mana-model .model-icon {
  border-color: rgba(112, 219, 150, 0.42);
  border-radius: 18px;
  color: #79e39e;
  background: rgba(75, 180, 119, 0.12);
  box-shadow: 0 0 34px rgba(75, 180, 119, 0.12);
}

.mana-model .model-card h3 {
  color: #d8f6dd;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.76);
}

.mana-model .model-card p {
  color: rgba(249, 240, 226, 0.74);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.82);
}

@media (max-width: 720px) {
  .mana-model .model-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    margin-top: 28px;
  }

  .mana-model .model-card,
  .mana-model .model-card:nth-child(4),
  .mana-model .model-card-wide {
    width: min(100%, 320px);
    max-width: calc(100vw - 36px);
    aspect-ratio: 5 / 7;
    padding: 22px;
    border-radius: 24px;
  }
}

/* Mana logo placement */
.brand {
  align-items: center;
  gap: 0;
}

.site-header .brand {
  position: relative;
  width: clamp(150px, 13vw, 190px);
  height: 48px;
  overflow: visible;
  transition: width 340ms cubic-bezier(0.19, 1, 0.22, 1);
}

.brand-switcher {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.brand-lockup {
  display: block;
  width: clamp(150px, 13vw, 190px);
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 7px 16px rgba(255, 98, 16, 0.22));
}

.site-header .brand-lockup,
.site-header .brand-symbol {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  height: auto;
  transform: translateY(-50%) scale(1);
  transform-origin: left center;
  transition:
    opacity 260ms ease,
    filter 320ms ease,
    transform 340ms cubic-bezier(0.19, 1, 0.22, 1);
}

.site-header .brand-lockup {
  width: 100%;
  opacity: 1;
}

.brand-symbol {
  width: 44px;
  filter: drop-shadow(0 7px 16px rgba(255, 98, 16, 0.22));
}

.site-header .brand-symbol {
  opacity: 0;
  transform: translateY(-50%) scale(0.82);
}

.site-header.is-scrolled .brand {
  width: 46px;
}

.site-header.is-scrolled .brand-lockup {
  opacity: 0;
  filter: drop-shadow(0 4px 10px rgba(255, 98, 16, 0.08));
  transform: translateY(-50%) scale(0.84);
}

.site-header.is-scrolled .brand-symbol {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.footer-brand .brand-lockup {
  width: clamp(128px, 11vw, 164px);
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 0;
  overflow: visible;
  color: inherit;
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 7px 16px rgba(255, 98, 16, 0.24));
}

.brand-wordmark {
  display: block;
  align-self: center;
  width: clamp(92px, 9vw, 132px);
  height: auto;
  flex: 0 0 auto;
}

.mana-orb {
  border-color: rgba(255, 122, 0, 0.48);
  background:
    radial-gradient(circle, rgba(255, 122, 0, 0.18), rgba(86, 20, 9, 0.14) 58%, transparent 72%),
    rgba(18, 3, 4, 0.56);
  box-shadow:
    inset 0 0 28px rgba(255, 122, 0, 0.18),
    0 0 52px rgba(255, 98, 16, 0.22);
}

.mana-orb-logo {
  display: block;
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(255, 96, 12, 0.28));
}

@media (max-width: 720px) {
  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-lockup {
    width: min(148px, 44vw);
  }

  .site-header .brand {
    width: min(148px, 44vw);
    height: 42px;
  }

  .site-header.is-scrolled .brand {
    width: 40px;
  }

  .brand-symbol {
    width: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header .brand,
  .site-header .brand-lockup,
  .site-header .brand-symbol {
    transition: none;
  }
}

/* Light gray theme refinement */
:root {
  --bg: #eef0ed;
  --surface: #f8f8f5;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --text: #171715;
  --muted: #60645d;
  --line: rgba(31, 32, 29, 0.12);
  --line-strong: rgba(31, 32, 29, 0.2);
  --teal: #4f8f70;
  --amber: #d97817;
  --ember: #f06a1a;
  --blue: #687b8f;
  --pink: #b56458;
  --shadow: 0 24px 70px rgba(34, 31, 25, 0.12);
}

html,
body {
  color: var(--text);
  background: #eef0ed;
}

body {
  background:
    radial-gradient(circle at 16% 6%, rgba(255, 126, 31, 0.13), transparent 28rem),
    radial-gradient(circle at 84% 16%, rgba(91, 139, 104, 0.12), transparent 30rem),
    linear-gradient(180deg, #f4f4f1 0%, #eceeea 44%, #e5e7e2 100%);
}

body::before {
  background-image:
    linear-gradient(rgba(38, 39, 35, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 39, 35, 0.055) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.84), transparent 86%);
}

p,
.hero-text,
.flow-header p:not(.eyebrow),
.model-intro p:not(.eyebrow),
.sovereign-copy p:not(.eyebrow),
.risk-card p,
.model-card p,
.sovereign-item p {
  color: var(--muted);
}

h1,
h2,
h3,
.risk-card h3,
.model-card h3,
.sovereign-copy h2,
.cta h2,
.sovereign-item strong {
  color: var(--text);
}

.eyebrow,
.hero .eyebrow,
.section-kicker {
  color: #9e5518;
}

.site-header {
  border-color: rgba(31, 32, 29, 0.1);
  background: rgba(248, 248, 245, 0.78);
  box-shadow: 0 18px 45px rgba(34, 31, 25, 0.1);
}

.brand,
.site-nav a {
  color: rgba(23, 23, 21, 0.76);
}

.site-nav {
  border-color: rgba(31, 32, 29, 0.1);
  background: rgba(248, 248, 245, 0.74);
  box-shadow: 0 12px 34px rgba(34, 31, 25, 0.08);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 115, 23, 0.1);
}

.site-nav .nav-cta,
.button.primary {
  color: #fffaf2;
  border-color: rgba(197, 84, 22, 0.26);
  background: linear-gradient(135deg, #f68f2a, #cf4d1f);
}

.button.ghost {
  color: var(--text);
  border-color: rgba(31, 32, 29, 0.16);
  background: rgba(255, 255, 255, 0.62);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  background: rgba(255, 255, 255, 0.86);
}

.hero {
  background:
    radial-gradient(circle at 80% 16%, rgba(91, 139, 104, 0.13), transparent 28rem),
    radial-gradient(circle at 16% 72%, rgba(255, 115, 23, 0.12), transparent 32rem),
    linear-gradient(180deg, #f5f5f2, #eceeea);
}

.hero-image {
  opacity: 0.1;
  filter: grayscale(0.2) contrast(0.9);
  mix-blend-mode: multiply;
}

.hero-shade {
  background:
    linear-gradient(rgba(38, 39, 35, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 39, 35, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 245, 242, 0.96) 0%, rgba(245, 245, 242, 0.78) 48%, rgba(245, 245, 242, 0.28) 100%),
    radial-gradient(circle at 76% 24%, rgba(255, 115, 23, 0.12), transparent 26rem);
  background-size: 60px 60px, 60px 60px, auto, auto;
}

.hero-content {
  text-shadow: none;
}

.scroll-cue {
  border-color: rgba(31, 32, 29, 0.16);
  background: rgba(255, 255, 255, 0.58);
}

.scroll-cue span {
  background: var(--text);
}

.section,
.sovereign-layer {
  background: transparent;
}

.risk-stage,
.model-intro,
.flow-header,
.sovereign-copy,
.cta {
  color: var(--text);
}

.problem-mark span {
  color: rgba(159, 86, 25, 0.42);
}

.problem-mark svg {
  color: #b45d1a;
}

.risk-grid {
  background: transparent;
  border-color: transparent;
}

.risk-card {
  border-color: rgba(177, 83, 26, 0.22);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 129, 43, 0.12), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(241, 238, 231, 0.88)) !important;
  box-shadow: 0 22px 60px rgba(76, 43, 23, 0.11);
}

.risk-icon {
  color: #c85c1c;
  border-color: rgba(200, 92, 28, 0.18);
  background: rgba(255, 122, 27, 0.09);
}

.risk-index {
  color: rgba(89, 72, 58, 0.72);
  border-color: rgba(31, 32, 29, 0.12);
  background: rgba(255, 255, 255, 0.58);
}

.risk-card h3::after {
  background: #d46a1e;
}

.mana-model .model-card,
.mana-model .model-card:nth-child(4),
.mana-model .model-card-wide,
.mana-model .model-card:nth-child(even) {
  border-color: rgba(73, 119, 87, 0.24);
  background:
    radial-gradient(circle at 16% 14%, rgba(94, 148, 109, 0.16), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(232, 239, 231, 0.9)) !important;
  box-shadow: 0 22px 58px rgba(42, 61, 47, 0.12);
}

.mana-model .model-card::before {
  display: none;
  background-image: none !important;
}

.mana-model .model-card::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(230, 239, 231, 0.28)),
    radial-gradient(circle at 18% 16%, rgba(90, 147, 108, 0.14), transparent 12rem);
}

.mana-model .model-icon {
  color: #3d7e59;
  border-color: rgba(61, 126, 89, 0.18);
  background: rgba(77, 136, 92, 0.1);
  box-shadow: none;
}

.mana-model .model-card h3,
.mana-model .model-card p {
  text-shadow: none;
}

.mana-model .model-card h3 {
  color: #17331f;
}

.mana-model .model-card p {
  color: #58665b;
}

.flow-system,
.sovereign-panel,
.cta {
  border-color: rgba(31, 32, 29, 0.12);
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 122, 27, 0.1), transparent 22rem),
    radial-gradient(circle at 84% 18%, rgba(74, 130, 92, 0.1), transparent 22rem),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px rgba(34, 31, 25, 0.1);
}

.flow-system::before,
.sovereign-panel::before {
  background:
    linear-gradient(rgba(38, 39, 35, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 39, 35, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
}

.flow-label,
.flow-hub p,
.memory-chip span,
.model-pill,
.sovereign-badge,
.layer-visual strong {
  color: var(--text);
}

.flow-caption,
.flow-hub span {
  color: var(--muted);
}

.memory-node,
.memory-chip,
.model-pill,
.sovereign-item,
.lock-body,
.waitlist-form input {
  border-color: rgba(31, 32, 29, 0.12);
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  box-shadow: 0 16px 38px rgba(34, 31, 25, 0.08);
}

.model-pill.is-active {
  color: #172018;
  border-color: rgba(74, 130, 92, 0.28);
  background: rgba(235, 244, 236, 0.82);
}

.model-logo {
  color: #4d805d;
}

.flow-line {
  background: linear-gradient(90deg, transparent, rgba(78, 126, 91, 0.5), transparent);
}

.mana-orb {
  border-color: rgba(213, 91, 29, 0.22);
  background:
    radial-gradient(circle, rgba(255, 122, 27, 0.1), rgba(255, 255, 255, 0.84) 62%, transparent 74%),
    rgba(255, 255, 255, 0.56);
  box-shadow:
    inset 0 0 28px rgba(255, 122, 27, 0.08),
    0 18px 48px rgba(34, 31, 25, 0.1);
}

.sovereign-item {
  background:
    radial-gradient(circle at 88% 10%, rgba(77, 136, 92, 0.12), transparent 12rem),
    rgba(255, 255, 255, 0.78);
}

.layer-visual {
  color: #3f754e;
}

.layer-chip,
.sovereign-step {
  border-color: rgba(31, 32, 29, 0.12);
  background: rgba(255, 255, 255, 0.68);
  color: #3f754e;
}

.waitlist-form input::placeholder {
  color: rgba(96, 100, 93, 0.62);
}

.site-footer,
.footer-links a {
  color: rgba(23, 23, 21, 0.72);
}

.brand-logo,
.mana-orb-logo {
  filter: drop-shadow(0 8px 18px rgba(190, 76, 23, 0.18));
}

/* Light theme contrast correction */
:root {
  --text: #141410;
  --muted: #42463f;
  --line: rgba(27, 28, 24, 0.16);
  --line-strong: rgba(27, 28, 24, 0.28);
}

body {
  color: var(--text);
  background:
    radial-gradient(circle at 14% 8%, rgba(239, 111, 28, 0.1), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(76, 126, 89, 0.1), transparent 30rem),
    linear-gradient(180deg, #f5f5f2 0%, #eceeea 46%, #e1e4df 100%);
}

p,
.hero-text,
.flow-caption,
.flow-hub span,
.flow-header p:not(.eyebrow),
.model-intro p:not(.eyebrow),
.sovereign-copy p:not(.eyebrow),
.risk-card p,
.model-card p,
.sovereign-item p,
.cta p,
.footer-links a {
  color: #3f433d;
}

h1,
h2,
h3,
.hero-content h1,
.risk-stage h2,
.model-intro h2,
.flow-header h2,
.sovereign-copy h2,
.cta h2,
.risk-card h3,
.model-card h3,
.sovereign-item strong,
.flow-label,
.flow-hub p,
.memory-chip span,
.layer-copy strong,
.layer-visual strong {
  color: #12130f;
}

.eyebrow,
.hero .eyebrow,
.section-kicker {
  color: #8a4314;
  font-weight: 800;
}

.site-header {
  background: rgba(255, 255, 252, 0.88);
  border-color: rgba(27, 28, 24, 0.14);
}

.brand,
.site-nav a,
.nav-toggle {
  color: #22231f;
}

.site-nav {
  background: rgba(255, 255, 252, 0.9);
  border-color: rgba(27, 28, 24, 0.14);
}

.site-nav .nav-cta,
.button.primary {
  color: #fffdf8;
  text-shadow: 0 1px 10px rgba(72, 28, 8, 0.38);
}

.button.ghost {
  color: #191a16;
  background: rgba(255, 255, 255, 0.82);
}

.hero-shade {
  background:
    linear-gradient(rgba(38, 39, 35, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38, 39, 35, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 247, 244, 0.98) 0%, rgba(247, 247, 244, 0.9) 50%, rgba(247, 247, 244, 0.62) 100%),
    radial-gradient(circle at 76% 24%, rgba(224, 95, 25, 0.08), transparent 26rem);
  background-size: 60px 60px, 60px 60px, auto, auto;
}

.hero-image {
  opacity: 0.07;
}

.risk-card,
.mana-model .model-card,
.mana-model .model-card:nth-child(4),
.mana-model .model-card-wide,
.mana-model .model-card:nth-child(even),
.flow-system,
.sovereign-panel,
.cta,
.memory-node,
.memory-chip,
.model-pill,
.sovereign-item,
.lock-body,
.waitlist-form input {
  background-color: rgba(255, 255, 252, 0.92);
  color: #141410;
}

.risk-card {
  background:
    radial-gradient(circle at 86% 12%, rgba(223, 94, 26, 0.1), transparent 12rem),
    linear-gradient(145deg, rgba(255, 255, 252, 0.96), rgba(240, 236, 229, 0.94)) !important;
}

.mana-model .model-card,
.mana-model .model-card:nth-child(4),
.mana-model .model-card-wide,
.mana-model .model-card:nth-child(even) {
  background:
    radial-gradient(circle at 16% 14%, rgba(73, 119, 87, 0.13), transparent 13rem),
    linear-gradient(145deg, rgba(255, 255, 252, 0.96), rgba(230, 238, 229, 0.94)) !important;
}

.mana-model .model-card::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 252, 0.08), rgba(226, 236, 226, 0.22)),
    radial-gradient(circle at 18% 16%, rgba(73, 119, 87, 0.11), transparent 12rem);
}

.mana-model .model-card h3 {
  color: #112d1a;
}

.mana-model .model-card p {
  color: #3e4d42;
}

.risk-index {
  color: #4f4439;
  background: rgba(255, 255, 252, 0.82);
}

.risk-icon,
.model-icon,
.memory-chip svg,
.memory-node,
.layer-visual,
.layer-chip,
.sovereign-step {
  color: #3f754e;
}

.risk-icon {
  color: #9f4b2f;
  border-color: rgba(171, 92, 64, 0.28);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 247, 236, 0.62), transparent 42%),
    linear-gradient(145deg, rgba(238, 170, 129, 0.36), rgba(190, 174, 202, 0.42));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.34),
    0 14px 34px rgba(105, 74, 79, 0.12);
}

.memory-chip svg {
  stroke: currentColor;
}

.model-stack .model-pill {
  color: #343832;
  border-color: rgba(27, 28, 24, 0.16);
  background: rgba(255, 255, 252, 0.82);
}

.model-stack .model-pill.is-active {
  color: #102016;
  border-color: rgba(63, 117, 78, 0.28);
  background: rgba(229, 240, 230, 0.9);
}

.model-logo,
.logo-chatgpt,
.logo-claude,
.logo-grok,
.logo-gemini,
.logo-deepseek,
.logo-mistral,
.logo-together,
.logo-llama {
  color: #3f754e;
  opacity: 1;
}

.sovereign-copy .eyebrow,
.layer-copy span,
.sovereign-badge {
  color: #8a4314;
}

.layer-copy p,
.sovereign-item p {
  color: #3f433d;
}

.layer-graphic text {
  fill: #263026;
}

.layer-graphic .model-node,
.layer-graphic .device-screen,
.layer-graphic .device-base {
  fill: rgba(255, 255, 252, 0.86);
  stroke: rgba(63, 117, 78, 0.3);
}

.layer-graphic .route-line,
.layer-graphic .node-line,
.layer-graphic .chip-line,
.layer-graphic .chip-pin,
.layer-graphic .download-arrow {
  stroke: #3f754e;
}

.layer-graphic .mana-dot,
.layer-graphic .node,
.layer-graphic .chip-core,
.layer-graphic .lock-body {
  fill: rgba(63, 117, 78, 0.14);
  stroke: #3f754e;
}

.layer-graphic .mana-star,
.layer-graphic .node-shield,
.layer-graphic .node-check,
.layer-graphic .lock-mark {
  stroke: #9a4b16;
  fill: none;
}

.waitlist-form input {
  color: #141410;
  background: rgba(255, 255, 252, 0.9);
}

.waitlist-form input::placeholder {
  color: #5f635c;
}

.site-footer,
.site-footer .brand,
.footer-links a {
  color: #343832;
}

@media (max-width: 900px) {
  .site-nav {
    background: rgba(255, 255, 252, 0.96);
  }
}

/* Targeted contrast and hero scale adjustments */
.hero-content h1,
#hero-title {
  max-width: 680px;
  font-size: clamp(1.85rem, 4.45vw, 4.35rem);
  line-height: 0.95;
}

.risk-stage p {
  max-width: 800px;
  color: #252720;
  font-weight: 600;
  line-height: 1.55;
}

/* Portable memory features: horizontal text reveal */
.mana-model .model-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  width: min(100%, 640px);
  gap: clamp(22px, 3vw, 34px);
  margin: 46px auto 0;
  padding: 18px 0;
}

.mana-model .model-card,
.mana-model .model-card:nth-child(1),
.mana-model .model-card:nth-child(2),
.mana-model .model-card:nth-child(4),
.mana-model .model-card-wide,
.mana-model .model-card:nth-child(even) {
  grid-column: auto;
  display: grid;
  grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  column-gap: clamp(18px, 2.4vw, 32px);
  align-items: start;
  width: auto;
  max-width: none;
  min-height: 0;
  aspect-ratio: auto;
  padding: 0;
  border: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none;
  isolation: auto;
}

.mana-model .model-card::before,
.mana-model .model-card::after {
  display: none;
}

.mana-model .model-icon {
  display: none;
}

.mana-model .model-card h3 {
  max-width: none;
  margin: 0;
  padding-right: clamp(14px, 1.5vw, 22px);
  border-right: 1px solid rgba(63, 117, 78, 0.28);
  color: #132d1a;
  font-size: clamp(1.18rem, 1.6vw, 1.52rem);
  line-height: 1.08;
}

.mana-model .model-card p {
  max-width: 520px;
  margin-top: 0;
  color: #3c453d;
  font-size: clamp(0.82rem, 0.92vw, 0.95rem);
  line-height: 1.55;
}

.mana-model .model-card.reveal {
  opacity: 0;
  filter: blur(28px);
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 760ms ease,
    filter 980ms ease,
    transform 980ms cubic-bezier(0.19, 1, 0.22, 1);
}

.mana-model .model-card.reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.mana-model .model-card:nth-child(1) {
  transition-delay: 0ms;
}

.mana-model .model-card:nth-child(2) {
  transition-delay: 140ms;
}

.mana-model .model-card:nth-child(3) {
  transition-delay: 280ms;
}

.mana-model .model-card:nth-child(4) {
  transition-delay: 420ms;
}

.mana-model .model-card:nth-child(5) {
  transition-delay: 560ms;
}

@media (max-width: 900px) {
  .mana-model .model-grid {
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 560px);
  }
}

/* Hero image integration: soft lavender memory glow */
body {
  background:
    radial-gradient(circle at 76% 10%, rgba(238, 187, 209, 0.2), transparent 30rem),
    radial-gradient(circle at 18% 16%, rgba(255, 185, 115, 0.13), transparent 26rem),
    linear-gradient(180deg, #f1eff3 0%, #ebe9ee 42%, #e4e6e3 100%);
}

.hero {
  background:
    radial-gradient(circle at 72% 42%, rgba(255, 202, 109, 0.18), transparent 13rem),
    radial-gradient(circle at 74% 28%, rgba(226, 177, 215, 0.28), transparent 34rem),
    radial-gradient(circle at 90% 80%, rgba(151, 158, 211, 0.2), transparent 34rem),
    linear-gradient(90deg, #f5f2f0 0%, #f1edf2 52%, #e7e4ee 100%);
}

.hero-image {
  left: auto;
  right: max(0px, calc((100vw - 1280px) / 2));
  width: min(51vw, 620px);
  height: min(82vh, 760px);
  top: 50%;
  bottom: auto;
  object-fit: cover;
  object-position: center;
  opacity: 0.92;
  filter: saturate(0.96) contrast(0.96);
  mix-blend-mode: normal;
  transform: translateY(-45%);
  border-radius: 38px;
  box-shadow:
    0 28px 90px rgba(114, 95, 127, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.5);
}

.hero-shade {
  background:
    linear-gradient(rgba(73, 65, 72, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(73, 65, 72, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 244, 241, 0.98) 0%, rgba(246, 244, 241, 0.92) 44%, rgba(246, 244, 241, 0.45) 66%, rgba(246, 244, 241, 0.08) 100%),
    radial-gradient(circle at 67% 43%, rgba(255, 210, 119, 0.2), transparent 13rem),
    radial-gradient(circle at 82% 30%, rgba(194, 167, 222, 0.2), transparent 24rem);
  background-size: 60px 60px, 60px 60px, auto, auto, auto;
}

.hero-content {
  max-width: 610px;
}

.hero .eyebrow {
  color: #8a5144;
}

.hero-text {
  color: #3d3a3e;
}

@media (max-width: 900px) {
  .hero {
    min-height: 900px;
    align-items: start;
    padding-top: 118px;
  }

  .hero-image {
    top: auto;
    right: 50%;
    bottom: 86px;
    width: min(72vw, 430px);
    height: min(50vh, 520px);
    transform: translateX(50%);
    border-radius: 30px;
  }

  .hero-shade {
    background:
      linear-gradient(rgba(73, 65, 72, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(73, 65, 72, 0.035) 1px, transparent 1px),
      linear-gradient(180deg, rgba(246, 244, 241, 0.98) 0%, rgba(246, 244, 241, 0.88) 46%, rgba(246, 244, 241, 0.24) 100%),
      radial-gradient(circle at 50% 72%, rgba(255, 210, 119, 0.2), transparent 14rem);
    background-size: 60px 60px, 60px 60px, auto, auto;
  }
}

@media (max-width: 620px) {
  .mana-model .model-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    width: min(100%, 340px);
  }

  .mana-model .model-card,
  .mana-model .model-card:nth-child(4),
  .mana-model .model-card-wide {
    grid-template-columns: 1fr;
    row-gap: 10px;
    width: auto;
    max-width: none;
    padding-left: 16px;
    border-left: 1px solid rgba(63, 117, 78, 0.24);
    border-radius: 0;
  }

  .mana-model .model-card h3 {
    padding-right: 0;
    border-right: 0;
  }

  .mana-model .model-card h3,
  .mana-model .model-card p {
    max-width: 100%;
  }
}

/* Hero image visibility fix */
.hero-shade {
  z-index: 0;
  pointer-events: none;
}

.hero-image {
  z-index: 1;
  width: min(53vw, 660px);
  height: min(86vh, 790px);
  opacity: 1;
}

.hero-content,
.scroll-cue {
  z-index: 2;
}

@media (max-width: 900px) {
  .hero-image {
    width: min(78vw, 460px);
    height: min(52vh, 540px);
  }
}

/* Current hero artwork */
.hero .hero-image {
  display: block;
  visibility: visible;
  z-index: 1;
  opacity: 1;
  right: max(18px, calc((100vw - 1280px) / 2));
  left: auto;
  width: min(54vw, 680px);
  height: min(86vh, 800px);
  object-fit: contain;
  object-position: center right;
  mix-blend-mode: normal;
}

@media (max-width: 900px) {
  .hero .hero-image {
    right: 50%;
    width: min(82vw, 500px);
    height: min(54vh, 560px);
  }
}

/* Hero wide artwork */
html,
body {
  background-color: #c3b8d0;
}

body {
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 214, 142, 0.14), transparent 22rem),
    radial-gradient(circle at 82% 62%, rgba(143, 139, 203, 0.18), transparent 34rem),
    linear-gradient(180deg, #c3b8d0 0%, #cac1d4 42%, #e6e4e6 100%);
}

.hero {
  min-height: 100vh;
  justify-items: start;
  text-align: left;
  background:
    linear-gradient(90deg, #c3b8d0 0%, #c3b8d0 38%, rgba(195, 184, 208, 0.86) 64%, rgba(195, 184, 208, 0.72) 100%);
}

.hero .hero-image {
  inset: 0 0 0 auto;
  width: min(68vw, 1320px);
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center right;
  opacity: 1;
  transform: none;
  border-radius: 0;
  box-shadow: none;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(rgba(82, 72, 92, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 72, 92, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(195, 184, 208, 0.98) 0%, rgba(195, 184, 208, 0.94) 36%, rgba(195, 184, 208, 0.46) 61%, rgba(195, 184, 208, 0.06) 100%);
  background-size: 60px 60px, 60px 60px, auto;
}

.hero-content {
  z-index: 2;
  justify-self: start;
  width: min(100%, 620px);
  max-width: 620px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}

.hero .eyebrow {
  color: #62475f;
}

.hero-text {
  color: #3d3343;
}

@media (max-width: 900px) {
  .hero {
    min-height: 920px;
    background: #c3b8d0;
  }

  .hero .hero-image {
    inset: auto 0 0 0;
    width: 100%;
    height: 58%;
    object-position: center bottom;
    transform: none;
  }

  .hero-shade {
    background:
      linear-gradient(rgba(82, 72, 92, 0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(82, 72, 92, 0.035) 1px, transparent 1px),
      linear-gradient(180deg, rgba(195, 184, 208, 0.98) 0%, rgba(195, 184, 208, 0.92) 43%, rgba(195, 184, 208, 0.14) 100%);
    background-size: 60px 60px, 60px 60px, auto;
  }
}

/* Hero alignment and full-width image correction */
.site-header {
  background: transparent;
  box-shadow: none;
  border-color: transparent;
}

.site-nav {
  background: transparent;
  box-shadow: none;
  border-color: transparent;
  backdrop-filter: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.22);
}

.hero {
  padding-left: max(20px, calc((100vw - 1160px) / 2));
  padding-right: max(20px, calc((100vw - 1160px) / 2));
  background: #c3b8d0;
}

.hero .hero-image {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-shade {
  background:
    linear-gradient(rgba(82, 72, 92, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 72, 92, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(195, 184, 208, 0.98) 0%, rgba(195, 184, 208, 0.88) 34%, rgba(195, 184, 208, 0.28) 55%, rgba(195, 184, 208, 0) 78%);
  background-size: 60px 60px, 60px 60px, auto;
}

.hero-content {
  justify-self: start;
  margin-left: 0;
}

@media (max-width: 900px) {
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero .hero-image {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: center bottom;
  }

  .hero-shade {
    background:
      linear-gradient(rgba(82, 72, 92, 0.026) 1px, transparent 1px),
      linear-gradient(90deg, rgba(82, 72, 92, 0.026) 1px, transparent 1px),
      linear-gradient(180deg, rgba(195, 184, 208, 0.98) 0%, rgba(195, 184, 208, 0.9) 38%, rgba(195, 184, 208, 0.2) 72%, rgba(195, 184, 208, 0.02) 100%);
    background-size: 60px 60px, 60px 60px, auto;
  }
}

/* Header opacity and hero text inset */
.site-nav {
  background: rgba(255, 255, 255, 25.27);
  border-color: rgba(255, 255, 255, 5.1);
  backdrop-filter: blur(12px);
}

.hero-content {
  margin-left: 70px;
}

@media (max-width: 900px) {
  .hero-content {
    margin-left: 0;
  }
}

/* Section title and copy word reveal */
.word-reveal .word {
  display: inline-block;
  opacity: 0;
  filter: blur(14px);
  transform: translate3d(0, 0.55em, 0);
  transition:
    opacity 720ms ease,
    filter 900ms ease,
    transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: calc(var(--word-index) * 42ms);
  will-change: opacity, filter, transform;
}

.word-reveal.word-visible .word {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .word-reveal .word {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

/* Primary orange accent cleanup */
:root {
  --mana-orange: #f37021;
  --mana-orange-deep: #d95d18;
  --mana-orange-soft: rgba(243, 112, 33, 0.12);
  --mana-orange-line: rgba(243, 112, 33, 0.22);
}

.problem-mark svg,
.risk-card h3::after {
  color: var(--mana-orange-deep);
}

.risk-card h3::after {
  background: var(--mana-orange);
}

.risk-icon {
  color: var(--mana-orange-deep);
  border-color: rgba(243, 112, 33, 0.18);
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 252, 0.88), transparent 42%),
    linear-gradient(145deg, rgba(243, 112, 33, 0.13), rgba(255, 255, 252, 0.58));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.48),
    0 12px 28px rgba(243, 112, 33, 0.08);
}

.memory-node {
  color: var(--mana-orange-deep);
  border-color: var(--mana-orange-line);
  background:
    radial-gradient(circle, rgba(243, 112, 33, 0.14), rgba(255, 255, 252, 0.7) 64%, transparent);
  box-shadow:
    inset 0 0 18px rgba(243, 112, 33, 0.08),
    0 14px 32px rgba(243, 112, 33, 0.08);
}

.memory-chip {
  border-color: rgba(243, 112, 33, 0.18);
  background:
    linear-gradient(135deg, rgba(243, 112, 33, 0.08), rgba(255, 255, 252, 0.74)),
    rgba(255, 255, 252, 0.82);
}

.memory-chip svg {
  color: var(--mana-orange-deep);
  stroke: currentColor;
}

.flow-line {
  background: linear-gradient(90deg, transparent, rgba(243, 112, 33, 0.38), transparent);
}

.sovereign-copy .eyebrow,
.layer-copy span,
.sovereign-badge {
  color: var(--mana-orange-deep);
}

.sovereign-item {
  border-color: rgba(243, 112, 33, 0.14);
  background:
    radial-gradient(circle at 88% 10%, rgba(243, 112, 33, 0.08), transparent 12rem),
    rgba(255, 255, 252, 0.78);
}

.layer-visual,
.layer-local .layer-visual,
.layer-nodes .layer-visual {
  color: var(--mana-orange-deep);
  border-color: rgba(243, 112, 33, 0.14);
  background:
    radial-gradient(circle at 50% 48%, rgba(243, 112, 33, 0.09), transparent 5.5rem),
    rgba(255, 255, 252, 0.5);
}

.layer-copy > span,
.layer-local .layer-copy > span,
.layer-nodes .layer-copy > span {
  color: #6d2d0e;
  background: rgba(243, 112, 33, 0.13);
  box-shadow: inset 0 0 0 1px rgba(243, 112, 33, 0.18);
}

.layer-graphic .model-node,
.layer-graphic .device-screen,
.layer-graphic .device-base {
  stroke: rgba(243, 112, 33, 0.2);
}

.layer-graphic .route-line,
.layer-graphic .node-line,
.layer-graphic .chip-line,
.layer-graphic .chip-pin,
.layer-graphic .download-arrow {
  stroke: rgba(243, 112, 33, 0.74);
}

.layer-graphic .mana-dot,
.layer-graphic .node,
.layer-graphic .chip-core,
.layer-graphic .lock-body {
  fill: rgba(243, 112, 33, 0.08);
  stroke: rgba(243, 112, 33, 0.34);
}

.layer-graphic .mana-star,
.layer-graphic .node-shield,
.layer-graphic .node-check,
.layer-graphic .lock-mark {
  stroke: var(--mana-orange-deep);
}

.waitlist-form {
  border-color: rgba(243, 112, 33, 0.18);
  background:
    linear-gradient(135deg, rgba(243, 112, 33, 0.08), rgba(255, 255, 252, 0.74)),
    rgba(255, 255, 252, 0.76);
  box-shadow: 0 16px 44px rgba(243, 112, 33, 0.08);
}

.waitlist-form:focus-within {
  border-color: rgba(243, 112, 33, 0.34);
  box-shadow:
    0 16px 44px rgba(243, 112, 33, 0.1),
    0 0 0 4px rgba(243, 112, 33, 0.08);
}

/* Pale orange accent correction */
.risk-card .risk-icon {
  color: #e8661c !important;
  border-color: rgba(243, 112, 33, 0.2) !important;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.95), transparent 46%),
    linear-gradient(145deg, rgba(255, 244, 232, 0.96), rgba(246, 221, 205, 0.74)) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 10px 24px rgba(243, 112, 33, 0.08) !important;
}

.risk-card .risk-icon svg {
  stroke: currentColor;
}

.memory-cluster {
  background:
    radial-gradient(circle at 50% 48%, rgba(243, 112, 33, 0.09), transparent 9rem),
    radial-gradient(circle at 50% 48%, rgba(243, 112, 33, 0.08) 1px, transparent 1.5px) !important;
  background-size: auto, 18px 18px !important;
}

.memory-node {
  color: #e8661c !important;
  border-color: rgba(243, 112, 33, 0.18) !important;
  background:
    radial-gradient(circle, rgba(255, 255, 252, 0.9), rgba(255, 238, 222, 0.62) 64%, rgba(243, 112, 33, 0.08)) !important;
}

.memory-chip {
  color: #2f312c;
  border-color: rgba(243, 112, 33, 0.16) !important;
  background:
    linear-gradient(135deg, rgba(255, 250, 244, 0.88), rgba(255, 232, 214, 0.5)),
    rgba(255, 255, 252, 0.82) !important;
}

.memory-chip svg {
  color: #e8661c !important;
}

.flow-line {
  background: linear-gradient(90deg, transparent, rgba(243, 112, 33, 0.28), transparent) !important;
}

.sovereign-item {
  border-color: rgba(243, 112, 33, 0.13) !important;
  background:
    radial-gradient(circle at 88% 10%, rgba(243, 112, 33, 0.055), transparent 12rem),
    rgba(255, 255, 252, 0.82) !important;
}

.layer-visual,
.layer-local .layer-visual,
.layer-nodes .layer-visual {
  color: #e8661c !important;
  border-color: rgba(243, 112, 33, 0.13) !important;
  background:
    radial-gradient(circle at 50% 48%, rgba(243, 112, 33, 0.065), transparent 5.5rem),
    rgba(255, 249, 242, 0.62) !important;
}

.layer-copy > span,
.layer-local .layer-copy > span,
.layer-nodes .layer-copy > span {
  color: #b94f17 !important;
  background: rgba(243, 112, 33, 0.095) !important;
  box-shadow: inset 0 0 0 1px rgba(243, 112, 33, 0.16) !important;
}

.layer-graphic .mana-star,
.layer-graphic .node-shield,
.layer-graphic .node-check,
.layer-graphic .lock-mark {
  stroke: #e8661c !important;
}

.waitlist-form {
  border-color: rgba(243, 112, 33, 0.16) !important;
  background:
    linear-gradient(135deg, rgba(255, 249, 242, 0.86), rgba(255, 232, 214, 0.44)),
    rgba(255, 255, 252, 0.78) !important;
}

.mana-orb {
  border-color: transparent !important;
  background: transparent !important;
  box-shadow: none !important;
}

.mana-orb-logo {
  width: 76% !important;
  height: 76% !important;
  filter: drop-shadow(0 14px 28px rgba(243, 112, 33, 0.18)) !important;
}

.model-stack .model-pill,
.model-stack .model-pill.is-active,
.model-stack .model-pill:nth-child(n) {
  color: #252821 !important;
  border-color: rgba(243, 112, 33, 0.2) !important;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.82), transparent 44%),
    linear-gradient(145deg, rgba(255, 244, 232, 0.96), rgba(246, 221, 205, 0.74)) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.58),
    0 10px 24px rgba(243, 112, 33, 0.07) !important;
}

.model-stack .model-pill.is-active {
  border-color: rgba(243, 112, 33, 0.3) !important;
}

.model-stack .model-logo,
.model-stack .logo-chatgpt,
.model-stack .logo-claude,
.model-stack .logo-grok,
.model-stack .logo-gemini,
.model-stack .logo-deepseek,
.model-stack .logo-mistral,
.model-stack .logo-together,
.model-stack .logo-llama {
  color: #e8661c !important;
  opacity: 1 !important;
}

/* Continuity section layout notes */
.continuity-flow .memory-side,
.continuity-flow .model-side {
  text-align: center;
}

.continuity-flow .flow-label,
.continuity-flow .model-side .flow-label {
  width: 100%;
  color: #12130f !important;
  font-size: clamp(1.42rem, 2.6vw, 2.36rem);
  text-align: center;
  opacity: 1 !important;
}

.continuity-flow .flow-caption {
  width: 100%;
  color: #4a4d45 !important;
  text-align: center;
}

.continuity-flow .memory-cluster {
  display: grid;
  place-items: center;
  min-height: auto;
  padding: 4px;
  background: transparent !important;
}

.continuity-flow .memory-graphic {
  display: block;
  width: min(100%, 560px);
  height: auto;
  margin: 0 auto;
}

.continuity-flow .memory-chip {
  gap: 8px;
  min-width: 96px;
  min-height: 42px;
  padding: 4px 10px;
  border-radius: 11px;
}

.continuity-flow .memory-chip svg {
  width: 22px;
  height: 22px;
  flex-basis: 22px;
  stroke-width: 1.65;
}

.continuity-flow .memory-chip span {
  font-weight: 500 !important;
  font-size: 0.9rem;
}

.continuity-flow .model-stack {
  display: grid;
  place-items: center;
  width: min(100%, 480px);
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
}

.continuity-flow .models-graphic {
  display: block;
  width: min(100%, 344px);
  height: auto;
  margin: 0 auto;
}

@media (min-width: 901px) {
  .continuity-flow .flow-hub {
    transform: translateY(88px);
  }
}

@media (max-width: 640px) {
  .continuity-flow .flow-header h2 {
    font-size: clamp(2.8rem, 13vw, 3.7rem);
  }

  .continuity-flow .flow-label,
  .continuity-flow .model-side .flow-label {
    font-size: 1.52rem;
    line-height: 1.04;
  }
}

/* Bottom sovereignty promise section */
.sovereignty-promise {
  position: relative;
  width: min(1120px, calc(100% - 80px));
  margin-top: 34px;
  margin-bottom: 46px;
  padding: clamp(42px, 6vw, 76px);
  border: 1px solid rgba(255, 255, 252, 0.08);
  border-radius: 26px;
  color: #fbf7ef;
  background:
    linear-gradient(rgba(255, 255, 252, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 252, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 14% 78%, rgba(243, 112, 33, 0.18), transparent 24rem),
    radial-gradient(circle at 88% 72%, rgba(195, 184, 208, 0.08), transparent 28rem),
    linear-gradient(145deg, #101415, #171a1a 54%, #0c1012);
  background-size: 58px 58px, 58px 58px, auto, auto, auto;
  box-shadow: 0 34px 90px rgba(31, 25, 21, 0.18);
  overflow: hidden;
}

.sovereignty-promise::before {
  content: "";
  position: absolute;
  inset: auto 8% -24% 8%;
  height: 42%;
  background: radial-gradient(circle, rgba(243, 112, 33, 0.18), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
}

.sovereignty-promise > * {
  position: relative;
  z-index: 1;
}

.promise-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: end;
}

.promise-heading h2 {
  max-width: 690px;
  margin: 0;
  color: #fbf7ef;
  font-size: clamp(2.8rem, 6.2vw, 5.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.promise-lede {
  max-width: 470px;
  margin: 0 0 8px;
  color: rgba(251, 247, 239, 0.68);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.48;
}

.promise-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(40px, 6vw, 68px);
}

.promise-card {
  min-height: 198px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(255, 255, 252, 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 255, 252, 0.04), transparent 12rem),
    rgba(255, 255, 252, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 252, 0.04);
}

.promise-card-now {
  border-color: rgba(243, 112, 33, 0.18);
  background:
    radial-gradient(circle at 10% 20%, rgba(243, 112, 33, 0.11), transparent 14rem),
    rgba(255, 255, 252, 0.045);
}

.promise-kicker {
  margin: 0 0 18px;
  color: #ffb069;
  font-size: 0.9rem;
  font-weight: 800;
}

.promise-card h3 {
  margin: 0;
  color: #fbf7ef;
  font-size: clamp(1.12rem, 1.65vw, 1.42rem);
  line-height: 1.14;
}

.promise-card p:not(.promise-kicker) {
  margin-top: 18px;
  color: rgba(251, 247, 239, 0.68);
  font-size: clamp(0.96rem, 1.22vw, 1.1rem);
  line-height: 1.54;
}

.promise-bottom {
  display: grid;
  justify-items: center;
  margin-top: 24px;
  padding: clamp(42px, 6vw, 66px) clamp(22px, 4vw, 42px);
  border: 1px solid rgba(243, 112, 33, 0.16);
  border-radius: 22px;
  text-align: center;
  background:
    radial-gradient(circle at 8% 24%, rgba(243, 112, 33, 0.16), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 252, 0.07), rgba(255, 255, 252, 0.035));
}

.promise-bottom h3 {
  max-width: 820px;
  margin: 0;
  color: #fbf7ef;
  font-size: clamp(2rem, 4vw, 3.75rem);
  line-height: 1.02;
}

.promise-bottom p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(251, 247, 239, 0.64);
  font-size: clamp(1rem, 1.45vw, 1.2rem);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .sovereignty-promise {
    width: min(100% - 40px, 680px);
    padding: 34px 22px;
    border-radius: 22px;
  }

  .promise-heading,
  .promise-cards {
    grid-template-columns: 1fr;
  }

  .promise-heading {
    gap: 22px;
  }

  .promise-heading h2 {
    font-size: clamp(2.35rem, 11vw, 4.2rem);
  }
}

/* Harmonized light promise section and rounded corners pass */
.sovereignty-promise {
  color: #12130f;
  border-color: rgba(243, 112, 33, 0.14);
  border-radius: 34px;
  background:
    linear-gradient(rgba(82, 72, 92, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 72, 92, 0.028) 1px, transparent 1px),
    radial-gradient(circle at 14% 80%, rgba(243, 112, 33, 0.1), transparent 24rem),
    radial-gradient(circle at 88% 72%, rgba(195, 184, 208, 0.2), transparent 28rem),
    linear-gradient(145deg, rgba(255, 255, 252, 0.9), rgba(246, 238, 230, 0.76));
  box-shadow: 0 28px 74px rgba(82, 72, 92, 0.12);
}

.sovereignty-promise::before {
  background: radial-gradient(circle, rgba(243, 112, 33, 0.12), transparent 68%);
}

.promise-heading h2,
.promise-card h3,
.promise-bottom h3 {
  color: #12130f;
}

.promise-lede,
.promise-card p:not(.promise-kicker),
.promise-bottom p {
  color: #4a4d45;
}

.promise-card,
.promise-bottom {
  border-color: rgba(243, 112, 33, 0.13);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 16%, rgba(243, 112, 33, 0.065), transparent 14rem),
    rgba(255, 255, 252, 0.66);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.46),
    0 16px 38px rgba(82, 72, 92, 0.08);
}

.promise-card-now {
  background:
    radial-gradient(circle at 10% 16%, rgba(243, 112, 33, 0.1), transparent 14rem),
    rgba(255, 252, 247, 0.72);
}

.promise-kicker {
  color: #d95d18;
}

.privacy-guardian {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  width: min(1120px, calc(100% - 80px));
  margin-top: -10px;
  margin-bottom: 46px;
  padding: clamp(38px, 6vw, 72px);
  border: 1px solid rgba(243, 112, 33, 0.13);
  color: #12130f;
  background:
    linear-gradient(rgba(82, 72, 92, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(82, 72, 92, 0.026) 1px, transparent 1px),
    radial-gradient(circle at 18% 18%, rgba(243, 112, 33, 0.11), transparent 24rem),
    radial-gradient(circle at 88% 80%, rgba(79, 143, 112, 0.09), transparent 24rem),
    rgba(255, 255, 252, 0.76);
  background-size: 58px 58px, 58px 58px, auto, auto, auto;
  box-shadow: 0 28px 74px rgba(82, 72, 92, 0.1);
  overflow: hidden;
}

.privacy-guardian::before {
  content: "";
  position: absolute;
  inset: auto 8% -28% 8%;
  height: 46%;
  background: radial-gradient(circle, rgba(243, 112, 33, 0.12), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
}

.privacy-guardian > * {
  position: relative;
  z-index: 1;
}

.guardian-copy {
  display: grid;
  gap: 18px;
  max-width: 660px;
}

.guardian-copy h2 {
  max-width: 620px;
  color: #12130f;
  font-size: clamp(2.7rem, 5.6vw, 5.2rem);
  line-height: 0.94;
}

.guardian-copy p:not(.eyebrow) {
  max-width: 620px;
  color: #4a4d45;
  font-size: clamp(0.98rem, 1.32vw, 1.14rem);
  line-height: 1.58;
}

.guardian-copy strong {
  color: #171715;
  font-weight: 850;
}

.guardian-decisions {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guardian-decisions li {
  position: relative;
  padding: 12px 14px 12px 38px;
  border: 1px solid rgba(243, 112, 33, 0.14);
  color: #2f312c;
  background:
    linear-gradient(135deg, rgba(255, 249, 242, 0.84), rgba(255, 232, 214, 0.42)),
    rgba(255, 255, 252, 0.72);
  font-size: clamp(0.92rem, 1.18vw, 1.04rem);
  font-weight: 750;
  line-height: 1.35;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

.guardian-decisions li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 16px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #e8661c;
  transform: translateY(-50%);
  box-shadow: 0 0 0 5px rgba(243, 112, 33, 0.1);
}

.guardian-panel {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(243, 112, 33, 0.13);
  background:
    radial-gradient(circle at 14% 12%, rgba(243, 112, 33, 0.09), transparent 12rem),
    rgba(255, 255, 252, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.5),
    0 18px 44px rgba(82, 72, 92, 0.08);
}

.guardian-memory,
.guardian-model {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(243, 112, 33, 0.14);
  background: rgba(255, 255, 252, 0.74);
}

.guardian-memory span,
.guardian-model span {
  color: #b94f17;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.guardian-memory strong,
.guardian-model strong {
  color: #171715;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(1.1rem, 1.7vw, 1.42rem);
  line-height: 1.08;
}

.guardian-gate {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(243, 112, 33, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 249, 242, 0.88), rgba(255, 232, 214, 0.5)),
    rgba(255, 255, 252, 0.78);
}

.guardian-gate span {
  display: grid;
  place-items: center;
  min-height: 42px;
  padding: 9px 10px;
  border: 1px solid rgba(243, 112, 33, 0.16);
  color: #3b332c;
  background: rgba(255, 255, 252, 0.7);
  font-size: 0.82rem;
  font-weight: 800;
  text-align: center;
}

.site-header,
.site-nav,
.hero-image,
.risk-card,
.mana-model .model-card,
.flow-system,
.sovereign-panel,
.sovereign-item,
.layer-visual,
.cta,
.memory-cluster,
.memory-chip,
.model-pill,
.waitlist-form,
.promise-card,
.promise-bottom,
.sovereignty-promise,
.privacy-guardian,
.guardian-panel,
.guardian-memory,
.guardian-model,
.guardian-gate,
.guardian-gate span,
.guardian-decisions li {
  border-radius: 30px;
}

.site-nav,
.button,
.nav-cta,
.scroll-cue,
.risk-icon,
.risk-index,
.memory-node,
.model-pill,
.layer-copy > span,
.waitlist-form {
  border-radius: 999px;
}

.hero-image {
  border-radius: 34px;
}

.flow-system,
.sovereign-panel,
.sovereignty-promise,
.privacy-guardian {
  border-radius: 36px;
}

.risk-card,
.mana-model .model-card,
.sovereign-item,
.promise-card,
.promise-bottom,
.guardian-panel,
.cta {
  border-radius: 32px;
}

@media (max-width: 900px) {
  .hero-image,
  .flow-system,
  .sovereign-panel,
  .sovereignty-promise,
  .privacy-guardian,
  .risk-card,
  .mana-model .model-card,
  .sovereign-item,
  .promise-card,
  .promise-bottom,
  .cta {
    border-radius: 26px;
  }

  .privacy-guardian {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 680px);
    padding: 34px 22px;
  }

  .guardian-copy h2 {
    font-size: clamp(2.35rem, 11vw, 4.2rem);
  }
}

@media (max-width: 560px) {
  .guardian-gate {
    grid-template-columns: 1fr;
  }
}

/* Mobile hero artwork visibility */
@media (max-width: 900px) {
  .hero {
    min-height: 760px;
    overflow: hidden;
  }

  .hero .hero-image {
    display: block !important;
    visibility: visible !important;
    position: absolute;
    inset: 0 0 auto 0 !important;
    width: 100% !important;
    height: 82% !important;
    max-width: none !important;
    object-fit: cover;
    object-position: 68% 40%;
    opacity: 0.42 !important;
    z-index: 0;
    border-radius: 0 !important;
    transform: none !important;
  }

  .hero-shade {
    z-index: 1;
    background:
      linear-gradient(rgba(82, 72, 92, 0.024) 1px, transparent 1px),
      linear-gradient(90deg, rgba(82, 72, 92, 0.024) 1px, transparent 1px),
      linear-gradient(180deg, rgba(195, 184, 208, 0.86) 0%, rgba(195, 184, 208, 0.72) 42%, rgba(195, 184, 208, 0.54) 72%, rgba(195, 184, 208, 0.92) 100%);
    background-size: 60px 60px, 60px 60px, auto;
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 720px;
  }

  .hero .hero-image {
    height: 86% !important;
    object-position: 70% 38%;
  }
}