:root {
  color-scheme: light;
  --ink: #132033;
  --muted: #5c6878;
  --line: #d8dee8;
  --paper: #f7f8f3;
  --white: #ffffff;
  --navy: #0d2551;
  --navy-2: #14386f;
  --amber: #f2a51a;
  --amber-2: #ffcb63;
  --green: #1d8f7a;
  --cyan: #d9f4ee;
  --night: #071322;
  --night-2: #0b2038;
  --electric: #26d7e5;
  --signal: #18c6b3;
  --glass-dark: rgba(7, 19, 34, 0.78);
  --shadow: 0 22px 60px rgba(17, 32, 51, 0.15);
  --shadow-cinematic: 0 28px 80px rgba(6, 18, 34, 0.2), 0 0 0 1px rgba(38, 215, 229, 0.08);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(38, 215, 229, 0.035) 1px, transparent 1px) 0 0 / 72px 72px,
    linear-gradient(180deg, #f7f8f3 0%, #eef4f2 48%, #f7f8f3 100%);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

body.is-nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 76px;
  padding: 12px 34px;
  border-bottom: 1px solid rgba(38, 215, 229, 0.12);
  background: rgba(7, 19, 34, 0.32);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  background: rgba(7, 19, 34, 0.9);
  color: var(--white);
  box-shadow: 0 14px 38px rgba(6, 18, 34, 0.24);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffc85a 0%, var(--amber) 100%);
  color: var(--navy);
  font-weight: 800;
  box-shadow: 0 0 24px rgba(242, 165, 26, 0.3);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  line-height: 1.2;
}

.brand small {
  margin-top: 3px;
  color: currentColor;
  font-size: 11px;
  opacity: 0.76;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.site-nav a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 7px;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  opacity: 0.86;
}

.site-nav a:hover {
  border-color: var(--amber);
  opacity: 1;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 160ms ease, background 160ms ease, border 160ms ease, color 160ms ease;
}

.header-cta {
  padding: 0 16px;
  background: linear-gradient(135deg, #ffc85a 0%, var(--amber) 100%);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(242, 165, 26, 0.24);
}

.btn {
  padding: 0 18px;
  font-weight: 760;
}

.btn svg,
.header-cta svg,
.site-footer svg,
.policy-card svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.btn.primary {
  background: linear-gradient(135deg, #ffc85a 0%, var(--amber) 100%);
  color: var(--navy);
  border-color: var(--amber);
  box-shadow: 0 16px 40px rgba(242, 165, 26, 0.28);
}

.btn.ghost {
  color: var(--white);
  border-color: rgba(38, 215, 229, 0.42);
  background: rgba(7, 19, 34, 0.34);
  backdrop-filter: blur(8px);
}

.btn.full {
  width: 100%;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: currentColor;
}

.site-header.is-scrolled .nav-toggle {
  border-color: rgba(38, 215, 229, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
  background-image: url("./assets/generated/dreamon-hero-command-bg-v2.jpeg");
  background-size: cover;
  background-position: 58% center;
  transform: scale(1.02);
  filter: saturate(1.08) contrast(1.08);
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 12, 23, 0.96) 0%, rgba(8, 26, 48, 0.78) 44%, rgba(9, 22, 48, 0.2) 100%),
    linear-gradient(180deg, rgba(5, 12, 23, 0.18) 0%, rgba(5, 12, 23, 0.62) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(38, 215, 229, 0.1) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(180deg, rgba(38, 215, 229, 0.07) 1px, transparent 1px) 0 0 / 88px 88px,
    linear-gradient(115deg, transparent 0 42%, rgba(38, 215, 229, 0.14) 45%, transparent 49% 100%);
  opacity: 0.44;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38, 215, 229, 0.65), rgba(242, 165, 26, 0.56), transparent);
  box-shadow: 0 0 34px rgba(38, 215, 229, 0.32);
}

.hero-inner {
  position: relative;
  z-index: 3;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 88px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.62fr);
  gap: 54px;
  align-items: end;
}

.hero .eyebrow,
.hero h1,
.hero-lede {
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48), 0 1px 3px rgba(0, 0, 0, 0.42);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: 64px;
  line-height: 1.08;
  font-weight: 850;
}

.hero-brand span:first-child {
  color: var(--amber);
}

.hero-brand span:last-child {
  color: var(--white);
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 22px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 640px;
}

.hero-keywords span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(38, 215, 229, 0.25);
  border-radius: 8px;
  background: rgba(7, 19, 34, 0.4);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
}

.hero-motion {
  justify-self: end;
  width: min(100%, 380px);
  min-width: 0;
}

.signal-panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(38, 215, 229, 0.28);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(38, 215, 229, 0.06) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(180deg, rgba(38, 215, 229, 0.04) 1px, transparent 1px) 0 0 / 42px 42px,
    rgba(7, 19, 34, 0.68);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  backdrop-filter: blur(16px);
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  contain: paint;
}

.signal-panel::before {
  content: "";
  position: absolute;
  inset: -18%;
  background: conic-gradient(from 90deg, transparent, rgba(242, 165, 26, 0.16), transparent, rgba(29, 143, 122, 0.14), transparent);
  animation: panelSpin 12s linear infinite;
}

.signal-panel::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -42%;
  width: 38%;
  background: linear-gradient(90deg, transparent, rgba(38, 215, 229, 0.18), transparent);
  transform: skewX(-16deg);
  animation: scanSweep 5.8s ease-in-out infinite;
}

.signal-orbit,
.signal-rows {
  position: relative;
  z-index: 1;
}

.signal-orbit {
  min-height: 190px;
  display: grid;
  place-items: center;
  max-width: 100%;
  overflow: hidden;
}

.signal-orbit strong {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffc85a 0%, var(--amber) 100%);
  color: var(--navy);
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 0 0 12px rgba(242, 165, 26, 0.12), 0 0 38px rgba(242, 165, 26, 0.36);
}

.orbit-ring,
.orbit-dot {
  position: absolute;
  border-radius: 999px;
}

.orbit-ring {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ring-one {
  width: 174px;
  height: 174px;
  animation: orbitPulse 3s ease-in-out infinite;
}

.ring-two {
  width: 220px;
  height: 220px;
  border-color: rgba(217, 244, 238, 0.16);
  animation: orbitPulse 3s ease-in-out 0.8s infinite;
}

.orbit-dot {
  width: 12px;
  height: 12px;
  background: var(--amber-2);
  box-shadow: 0 0 18px rgba(255, 203, 99, 0.8);
}

.dot-one {
  transform: translate(92px, -58px);
  animation: dotFloat 4s ease-in-out infinite;
}

.dot-two {
  transform: translate(-108px, 38px);
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(217, 244, 238, 0.7);
  animation: dotFloat 4.6s ease-in-out 0.5s infinite;
}

.dot-three {
  transform: translate(72px, 88px);
  background: var(--green);
  box-shadow: 0 0 18px rgba(29, 143, 122, 0.72);
  animation: dotFloat 3.8s ease-in-out 1s infinite;
}

.signal-rows {
  display: grid;
  gap: 10px;
}

.signal-rows div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(38, 215, 229, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.signal-rows span {
  color: var(--amber-2);
  font-size: 12px;
  font-weight: 900;
}

.signal-rows strong {
  color: var(--white);
  font-size: 15px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: -38px auto 0;
  position: relative;
  z-index: 4;
  width: calc(100% - 48px);
  overflow: hidden;
  border: 1px solid rgba(38, 215, 229, 0.18);
  border-radius: var(--radius);
  background: rgba(38, 215, 229, 0.16);
  box-shadow: var(--shadow-cinematic);
  backdrop-filter: blur(16px);
}

.metric {
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 18px 22px;
  background:
    linear-gradient(180deg, rgba(7, 19, 34, 0.92), rgba(11, 32, 56, 0.9));
  border-top: 3px solid rgba(38, 215, 229, 0.34);
}

.metric strong {
  color: var(--amber-2);
  font-size: 28px;
  line-height: 1;
}

.metric span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 84px 0;
  scroll-margin-top: 96px;
}

.section-head {
  max-width: 790px;
  margin-bottom: 34px;
}

.section-head.compact {
  max-width: 880px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 830;
}

.section-head p,
.system-copy p,
.opc-copy p,
.entry-copy p {
  color: var(--muted);
  line-height: 1.72;
}

.section-head p {
  max-width: 680px;
}

.section-head.compact p {
  margin-left: auto;
  margin-right: auto;
}

.pain-grid,
.engine-grid,
.policy-grid,
.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.pain-card,
.engine-card,
.policy-card,
.phase-grid article {
  border: 1px solid rgba(38, 215, 229, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 44px rgba(7, 19, 34, 0.08);
}

.pain-card {
  min-height: 240px;
  padding: 26px;
}

.pain-card svg {
  width: 32px;
  height: 32px;
  color: var(--green);
  margin-bottom: 28px;
}

.pain-card h3,
.engine-card h3,
.policy-card h3,
.phase-grid h3 {
  margin-bottom: 14px;
  font-size: 21px;
}

.pain-card p {
  color: var(--muted);
  line-height: 1.72;
}

.pain-card ul,
.segment-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.mini-tags span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(38, 215, 229, 0.12);
  color: #0b776d;
  font-size: 12px;
  font-weight: 850;
}

.visual-story-section {
  padding-top: 68px;
}

.visual-story-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(244px, auto));
  gap: 18px;
}

.visual-story-card {
  position: relative;
  min-height: 244px;
  overflow: hidden;
  border: 1px solid rgba(38, 215, 229, 0.16);
  border-radius: var(--radius);
  background: #0d1826;
  box-shadow: 0 24px 66px rgba(7, 19, 34, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.visual-story-card.is-wide {
  grid-row: span 2;
  min-height: 506px;
}

.visual-story-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 900ms ease;
}

.visual-story-card:hover img {
  transform: scale(1.035);
}

.visual-story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 12, 23, 0.02) 0%, rgba(9, 22, 48, 0.18) 42%, rgba(5, 12, 23, 0.9) 100%),
    linear-gradient(90deg, rgba(9, 22, 48, 0.42) 0%, rgba(38, 215, 229, 0.08) 64%),
    linear-gradient(0deg, rgba(38, 215, 229, 0.08), transparent 30%);
}

.visual-story-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: var(--white);
}

.visual-story-copy span,
.visual-story-copy h3,
.visual-story-copy p {
  display: block;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

.visual-story-copy span {
  margin-bottom: 10px;
  color: var(--amber-2);
  font-size: 12px;
  font-weight: 850;
}

.visual-story-copy h3 {
  max-width: 520px;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.22;
}

.visual-story-card:not(.is-wide) .visual-story-copy h3 {
  font-size: 21px;
}

.visual-story-copy p {
  max-width: 560px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.68;
}

.visual-story-card:not(.is-wide) .visual-story-copy p {
  font-size: 14px;
}

.visual-story-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
  backdrop-filter: blur(10px);
}

.visual-story-copy a svg {
  width: 15px;
  height: 15px;
  color: var(--amber-2);
}

.system-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 44px;
  align-items: center;
  padding: 42px;
  border: 1px solid rgba(38, 215, 229, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(38, 215, 229, 0.055) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(180deg, rgba(38, 215, 229, 0.04) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(135deg, rgba(7, 19, 34, 0.98), rgba(9, 34, 57, 0.95));
  box-shadow: var(--shadow-cinematic);
}

.system-section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(38, 215, 229, 0.68), rgba(242, 165, 26, 0.58), transparent);
}

.system-section > * {
  position: relative;
  z-index: 1;
}

.system-section .eyebrow {
  color: var(--electric);
}

.system-section h2 {
  color: var(--white);
}

.system-section .system-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.dreamon-section {
  padding-top: 34px;
}

.brand-strategy {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.brand-visual {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.brand-visual img {
  width: 100%;
  aspect-ratio: 1.82 / 1;
  object-fit: cover;
}

.brand-rules {
  display: grid;
  gap: 14px;
}

.brand-rules article {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-areas:
    "icon title"
    "icon copy";
  column-gap: 14px;
  align-content: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.brand-rules svg {
  grid-area: icon;
  width: 30px;
  height: 30px;
  color: var(--green);
}

.brand-rules h3 {
  grid-area: title;
  margin-bottom: 6px;
  font-size: 18px;
}

.brand-rules p {
  grid-area: copy;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.system-media {
  border: 1px solid rgba(38, 215, 229, 0.22);
  border-radius: var(--radius);
  overflow: hidden;
  background: #0d1826;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.system-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.identity-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.identity-list div {
  padding: 18px 0 18px 18px;
  border-left: 4px solid var(--electric);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.identity-list strong,
.identity-list span {
  display: block;
}

.identity-list strong {
  margin-bottom: 6px;
  color: var(--amber-2);
}

.identity-list span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.engines-section,
.policy-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  background: var(--navy);
}

.engines-section .section-head h2,
.policy-section .section-head h2,
.engines-section .section-head p,
.policy-section .section-head p {
  color: var(--white);
}

.engine-grid {
  grid-template-columns: repeat(4, 1fr);
}

.engine-card {
  min-height: 300px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  border-color: rgba(38, 215, 229, 0.16);
  color: var(--white);
  box-shadow: none;
}

.engine-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 34px;
  border-radius: 8px;
  background: var(--amber);
  color: var(--navy);
}

.engine-icon svg {
  width: 29px;
  height: 29px;
}

.engine-card p {
  margin-bottom: 10px;
  color: var(--amber-2);
  font-size: 12px;
  font-weight: 800;
}

.engine-card h3 {
  color: var(--white);
}

.engine-card span {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.growth-section {
  padding-top: 78px;
}

.growth-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 20px;
  align-items: stretch;
  min-width: 0;
}

.growth-principle {
  min-height: 100%;
  min-width: 0;
  padding: 30px;
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(7, 19, 34, 0.96), rgba(10, 42, 58, 0.9)),
    url("./assets/project-photos/web/vision-lobby-dreamon.jpeg") center / cover;
  color: var(--white);
  box-shadow: var(--shadow);
}

.growth-principle .eyebrow,
.growth-principle h3,
.growth-principle p:not(.eyebrow) {
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

.growth-principle h3 {
  margin-bottom: 18px;
  font-size: 30px;
  line-height: 1.28;
}

.growth-principle p:not(.eyebrow) {
  line-height: 1.9;
  opacity: 0.86;
}

.growth-ticker {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-top: 34px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.growth-ticker span {
  flex: 0 0 auto;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--amber-2);
  font-size: 12px;
  font-weight: 850;
  animation: tickerMove 14s linear infinite;
}

.growth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.growth-card {
  min-height: 244px;
  padding: 22px;
  border: 1px solid rgba(38, 215, 229, 0.12);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(7, 19, 34, 0.08);
}

.growth-card svg {
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  color: var(--green);
}

.growth-card p {
  margin-bottom: 8px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
}

.growth-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.35;
}

.growth-card span {
  color: var(--muted);
  line-height: 1.75;
}

.growth-workflow {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  margin-top: 22px;
  padding: 26px;
  border: 1px solid rgba(38, 215, 229, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 46px rgba(7, 19, 34, 0.08);
}

.workflow-copy h3 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.35;
}

.workflow-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-steps li {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(13, 37, 81, 0.1);
  border-radius: var(--radius);
  background: #f8fafb;
  transition: transform 180ms ease, border-color 180ms ease;
}

.workflow-steps li:hover {
  transform: translateY(-2px);
  border-color: rgba(29, 143, 122, 0.34);
}

.workflow-steps span,
.workflow-steps strong,
.workflow-steps em {
  display: block;
}

.workflow-steps span {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.workflow-steps strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
}

.workflow-steps em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.65;
}

.growth-boundary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 18px;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  background: rgba(217, 244, 238, 0.62);
  color: var(--muted);
  line-height: 1.78;
}

.growth-boundary strong {
  color: var(--navy);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-1.4%, -0.8%, 0);
  }
}

@keyframes panelSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes scanSweep {
  0%,
  28% {
    transform: translateX(0) skewX(-16deg);
    opacity: 0;
  }

  44% {
    opacity: 1;
  }

  72%,
  100% {
    transform: translateX(420%) skewX(-16deg);
    opacity: 0;
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.96);
  }

  50% {
    opacity: 1;
    transform: scale(1.03);
  }
}

@keyframes dotFloat {
  0%,
  100% {
    margin-top: 0;
  }

  50% {
    margin-top: -10px;
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-130px);
  }
}

.flow-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 28px;
  align-items: stretch;
}

.flow-steps {
  display: grid;
  gap: 10px;
}

.flow-step {
  min-height: 54px;
  border: 1px solid rgba(38, 215, 229, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  text-align: left;
  padding: 0 18px;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.flow-step:hover {
  transform: translateX(3px);
  border-color: rgba(38, 215, 229, 0.34);
}

.flow-step.is-active {
  background:
    linear-gradient(90deg, rgba(29, 143, 122, 0.98), rgba(13, 37, 81, 0.96));
  border-color: rgba(38, 215, 229, 0.54);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(29, 143, 122, 0.2);
}

.flow-detail {
  min-height: 360px;
  display: grid;
  align-content: center;
  padding: 38px;
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(38, 215, 229, 0.08) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(180deg, rgba(38, 215, 229, 0.055) 1px, transparent 1px) 0 0 / 52px 52px,
    linear-gradient(135deg, rgba(9, 42, 58, 0.94), rgba(7, 19, 34, 0.94)),
    url("./assets/ppt-media/image6.png") center / cover;
  color: var(--white);
  box-shadow: var(--shadow-cinematic);
}

.flow-kicker {
  margin-bottom: 18px;
  color: var(--amber-2);
  font-weight: 800;
}

.flow-detail h3 {
  max-width: 640px;
  margin-bottom: 16px;
  font-size: 30px;
  line-height: 1.25;
}

.flow-detail p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.9;
}

.flow-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.flow-proof div {
  min-height: 86px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.flow-proof strong,
.flow-proof span {
  display: block;
}

.transformation-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  background: #eef4f0;
}

.compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.compare-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(17, 32, 51, 0.08);
}

.compare-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.compare-images figure,
.mood-row figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #0d1826;
}

.compare-images img,
.mood-row img {
  width: 100%;
  aspect-ratio: 1.33 / 1;
  object-fit: cover;
}

.compare-images figcaption,
.mood-row figcaption {
  position: absolute;
  left: 10px;
  bottom: 10px;
  max-width: calc(100% - 20px);
  padding: 7px 9px;
  border-radius: 8px;
  background: rgba(9, 22, 48, 0.78);
  color: var(--white);
  font-size: 12px;
  line-height: 1.35;
  backdrop-filter: blur(8px);
}

.compare-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
}

.compare-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.75;
}

.mood-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 18px auto 0;
}

.mood-row img {
  aspect-ratio: 1.25 / 1;
}

.design-archive-section {
  padding-bottom: 34px;
}

.archive-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.archive-filter {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
}

.archive-filter.is-active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
  font-weight: 800;
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.design-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(17, 32, 51, 0.08);
}

.design-card img {
  width: 100%;
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
  background: #102033;
}

.design-card-body {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 18px;
}

.design-card-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.design-card h3 {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 1.3;
}

.design-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.asset-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  font-weight: 850;
}

.asset-link svg {
  width: 16px;
  height: 16px;
  color: var(--amber);
}

.archive-bottom {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
  margin-top: 24px;
}

.archive-principle,
.update-log {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
}

.archive-principle h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.archive-principle p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.78;
}

.update-log {
  display: grid;
  gap: 12px;
}

.update-item {
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.update-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.update-item time {
  color: var(--green);
  font-weight: 850;
  font-size: 13px;
}

.update-item strong,
.update-item span {
  display: block;
}

.update-item span {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.58;
}

.style-lab-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  background: #f1f0e9;
}

.style-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.style-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(17, 32, 51, 0.08);
}

.style-card img {
  width: 100%;
  aspect-ratio: 1.08 / 1;
  object-fit: cover;
}

.style-card-body {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 20px;
}

.style-card-status {
  width: max-content;
  max-width: 100%;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  background: var(--cyan);
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.style-card h3 {
  margin-bottom: 0;
  font-size: 21px;
  line-height: 1.28;
}

.style-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.design-card p,
.style-card p,
.cad-card p,
.policy-card p,
.compare-card p,
.archive-principle p:not(.eyebrow),
.update-item span {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.style-meta {
  display: grid;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.58;
}

.style-meta strong {
  color: var(--navy);
}

.white-model-section {
  width: min(1440px, calc(100% - 40px));
  padding-bottom: 34px;
}

.model-layout {
  display: grid;
  gap: 16px;
}

.model-toolbar {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(13, 37, 81, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(13, 37, 81, 0.08);
}

.model-mode-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.model-mode-button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.model-mode-button.is-active {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 12px 26px rgba(13, 37, 81, 0.18);
}

.model-mode-button:not(.is-active):hover {
  background: rgba(13, 37, 81, 0.06);
  color: var(--navy);
}

.model-viewbar {
  display: flex;
  width: fit-content;
  max-width: 100%;
  gap: 8px;
  padding: 4px;
  border: 1px solid rgba(91, 122, 128, 0.18);
  border-radius: 8px;
  background: rgba(246, 249, 247, 0.86);
}

.model-view-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 13px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    opacity 0.2s ease;
}

.model-view-button svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.model-view-button.is-active {
  background: rgba(91, 122, 128, 0.16);
  color: var(--navy);
}

.model-view-button:not(.is-active):hover {
  background: rgba(13, 37, 81, 0.06);
  color: var(--navy);
}

.model-view-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.model-stage {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  border: 1px solid rgba(91, 122, 128, 0.32);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 52% 34%, rgba(241, 246, 244, 0.95), rgba(198, 215, 217, 0.78) 50%, rgba(132, 162, 168, 0.48) 100%),
    linear-gradient(135deg, rgba(174, 199, 204, 0.92), rgba(239, 230, 210, 0.76));
  box-shadow:
    0 28px 70px rgba(44, 70, 76, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -18px 42px rgba(70, 105, 112, 0.16);
}

.model-stage[data-model-mode="original"] {
  background:
    radial-gradient(circle at 50% 34%, rgba(255, 252, 240, 0.95), rgba(225, 230, 218, 0.78) 52%, rgba(157, 177, 171, 0.42) 100%),
    linear-gradient(135deg, rgba(216, 220, 204, 0.9), rgba(241, 233, 214, 0.76));
}

.model-stage model-viewer {
  width: 100%;
  height: 100%;
  min-height: 700px;
  --poster-color: transparent;
  background: transparent;
}

.model-road-label {
  position: absolute;
  right: clamp(72px, 19vw, 255px);
  bottom: clamp(190px, 30vh, 245px);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  background: rgba(12, 33, 42, 0.9);
  color: #fff;
  box-shadow: 0 12px 30px rgba(20, 42, 48, 0.26);
  pointer-events: none;
}

.model-road-label::before,
.model-road-label::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.model-road-label::before {
  left: -44px;
  bottom: -58px;
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 0 5px rgba(242, 165, 26, 0.22);
}

.model-road-label::after {
  left: -36px;
  bottom: -43px;
  width: 92px;
  height: 2px;
  background: rgba(12, 33, 42, 0.82);
  transform: rotate(-42deg);
  transform-origin: left center;
}

.model-road-label span {
  position: relative;
  z-index: 1;
  color: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.model-stage[data-model-mode="original"] .model-road-label,
.model-stage.is-missing .model-road-label {
  display: none;
}

.model-missing {
  position: absolute;
  inset: 22px;
  display: none;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 28px;
  border: 1px dashed rgba(13, 37, 81, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  text-align: center;
}

.model-stage.is-missing model-viewer {
  opacity: 0;
}

.model-stage.is-missing .model-missing {
  display: grid;
}

.model-missing svg {
  width: 42px;
  height: 42px;
  color: var(--green);
}

.model-missing strong,
.model-missing span {
  display: block;
}

.model-missing strong {
  color: var(--navy);
  font-size: 24px;
}

.model-missing span {
  max-width: 460px;
  color: var(--muted);
  line-height: 1.72;
}

.model-caption {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.flow-proof span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.proof-section {
  padding-top: 34px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-grid article {
  min-height: 286px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(17, 32, 51, 0.08);
}

.proof-grid p {
  margin-bottom: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.proof-grid h3 {
  margin-bottom: 16px;
  font-size: 22px;
  line-height: 1.35;
}

.proof-grid ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.62;
}

.proof-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: 18px;
  padding: 20px 22px;
  border-left: 4px solid var(--amber);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  line-height: 1.78;
}

.proof-note strong {
  color: var(--navy);
}

.opc-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: start;
}

.formula {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.formula span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 760;
}

.formula svg {
  width: 16px;
  height: 16px;
  color: var(--amber);
}

.segment {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.segment-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.segment-btn {
  min-height: 58px;
  border: 0;
  border-right: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
}

.segment-btn:last-child {
  border-right: 0;
}

.segment-btn.is-active {
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}

.segment-panel {
  min-height: 302px;
  padding: 30px;
}

.segment-panel h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.segment-panel p {
  color: var(--muted);
  line-height: 1.85;
}

.policy-section {
  background: linear-gradient(180deg, var(--navy) 0%, #102f32 100%);
}

.policy-grid {
  grid-template-columns: repeat(3, 1fr);
}

.policy-card {
  min-height: 232px;
  display: grid;
  align-content: start;
  padding: 26px;
  background: rgba(255, 255, 255, 0.96);
}

.policy-card p {
  color: var(--muted);
  line-height: 1.8;
}

.policy-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--green);
  font-weight: 800;
}

.policy-matrix {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  max-width: var(--max);
  margin: 24px auto 0;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.policy-matrix-copy h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.25;
}

.policy-matrix-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.82;
}

.policy-checks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.policy-checks article {
  min-height: 218px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.policy-checks strong,
.policy-checks span {
  display: block;
}

.policy-checks strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.policy-checks span {
  color: var(--green);
  line-height: 1.55;
  font-size: 13px;
  font-weight: 800;
}

.policy-checks ul {
  display: grid;
  gap: 7px;
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.space-gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 18px;
  align-items: stretch;
}

.space-gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.space-gallery img {
  width: 100%;
  object-fit: cover;
}

.gallery-main img {
  aspect-ratio: 1.5 / 1;
}

.gallery-side {
  display: grid;
  gap: 18px;
}

.gallery-side img {
  aspect-ratio: 1.55 / 1;
}

figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.phase-grid {
  margin-top: 18px;
}

.phase-grid article {
  min-height: 200px;
  padding: 24px;
}

.phase-grid p {
  color: var(--amber);
  font-size: 12px;
  font-weight: 850;
}

.phase-grid span {
  color: var(--muted);
  line-height: 1.7;
}

.phase-note {
  margin: 14px 0 0;
  padding: 14px 16px;
  border: 1px dashed rgba(13, 37, 81, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.offer-section {
  padding-top: 34px;
}

.offer-layout {
  display: grid;
  grid-template-columns: 1.28fr 0.72fr;
  gap: 20px;
  align-items: stretch;
}

.offer-primary,
.offer-side {
  border: 1px solid rgba(38, 215, 229, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-cinematic);
}

.offer-primary {
  padding: 30px;
}

.offer-label {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(38, 215, 229, 0.12);
  color: #0b776d;
  font-size: 12px;
  font-weight: 850;
}

.offer-primary h3,
.offer-side h3 {
  margin-bottom: 12px;
  font-size: 28px;
}

.offer-primary > p {
  color: var(--muted);
  line-height: 1.8;
}

.deliverable-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.deliverable-grid div {
  min-height: 152px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(38, 215, 229, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 244, 242, 0.9));
}

.deliverable-grid svg,
.training-card svg,
.zone svg {
  width: 27px;
  height: 27px;
  color: var(--green);
}

.deliverable-grid strong,
.deliverable-grid span {
  display: block;
}

.deliverable-grid span {
  color: var(--muted);
  line-height: 1.65;
}

.offer-side {
  padding: 26px;
  background:
    linear-gradient(90deg, rgba(38, 215, 229, 0.06) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(180deg, rgba(38, 215, 229, 0.04) 1px, transparent 1px) 0 0 / 44px 44px,
    linear-gradient(145deg, var(--night), var(--night-2));
  color: var(--white);
}

.path-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.path-list div {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-areas:
    "num title"
    "num copy";
  column-gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.path-list span {
  grid-area: num;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--amber);
  color: var(--navy);
  font-weight: 850;
}

.path-list strong {
  grid-area: title;
  margin-bottom: 5px;
  font-size: 18px;
}

.path-list p {
  grid-area: copy;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.guardrail-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  box-shadow: 0 16px 36px rgba(17, 32, 51, 0.08);
}

.guardrail-strip div {
  min-height: 126px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
}

.guardrail-strip strong,
.guardrail-strip span {
  display: block;
}

.guardrail-strip strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.guardrail-strip span {
  color: var(--muted);
  line-height: 1.72;
}

.training-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  background: #fbf8ef;
}

.training-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: var(--max);
  margin: 0 auto;
}

.training-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 38px rgba(17, 32, 51, 0.08);
}

.training-card.is-featured {
  background: var(--navy);
  color: var(--white);
}

.training-card.is-featured svg,
.training-card.is-featured p {
  color: var(--amber);
}

.training-card p {
  margin: 22px 0 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.training-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.training-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.6;
}

.training-card.is-featured ul {
  color: rgba(255, 255, 255, 0.76);
}

.training-loop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: var(--max);
  margin: 22px auto 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.training-loop span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

.training-loop svg {
  width: 17px;
  height: 17px;
  color: var(--amber);
}

.training-actions {
  display: flex;
  justify-content: center;
  max-width: var(--max);
  margin: 20px auto 0;
}

.layout-block {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 24px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.layout-copy h3 {
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1.25;
}

.layout-copy p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.8;
}

.space-plan {
  min-height: 420px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(4, minmax(84px, auto));
  gap: 10px;
}

.zone {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
}

.zone strong,
.zone span {
  display: block;
}

.zone strong {
  color: var(--navy);
}

.zone span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 13px;
}

.zone-lobby {
  grid-column: span 2;
  grid-row: span 2;
  background: #fff4d9;
}

.zone-selection {
  grid-column: span 2;
  grid-row: span 2;
  background: #e8f6f1;
}

.zone-live {
  grid-column: span 2;
  grid-row: span 2;
}

.zone-training {
  grid-column: span 2;
}

.zone-incubation {
  grid-column: span 2;
}

.zone-service {
  grid-column: span 2;
  background: #eef1f8;
}

.cad-section {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - var(--max)) / 2));
  padding-right: max(24px, calc((100% - var(--max)) / 2));
  background: #e9eef2;
}

.cad-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  max-width: var(--max);
  margin: 0 auto;
  align-items: stretch;
}

.cad-map {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0d1826;
  box-shadow: var(--shadow);
}

.cad-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cad-map-label {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(9, 22, 48, 0.82);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.cad-map-label strong,
.cad-map-label span {
  display: block;
}

.cad-map-label span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.cad-grid {
  display: grid;
  gap: 14px;
}

.cad-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(17, 32, 51, 0.07);
}

.cad-card-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.cad-card h3 {
  margin-bottom: 0;
  font-size: 20px;
}

.cad-status {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 8px;
  background: #fff4d9;
  color: #8a5a00;
  font-size: 12px;
  font-weight: 850;
}

.cad-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.68;
}

.cad-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--green);
  font-weight: 850;
}

.cad-card svg {
  width: 16px;
  height: 16px;
}

.cad-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: var(--max);
  margin: 22px auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
}

.cad-checklist article {
  min-height: 134px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
}

.cad-checklist strong,
.cad-checklist span {
  display: block;
}

.cad-checklist strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 18px;
}

.cad-checklist span {
  color: var(--muted);
  line-height: 1.68;
}

.short-space-section {
  padding-top: 42px;
}

.short-space-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 22px;
  align-items: stretch;
}

.short-space-image {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(38, 215, 229, 0.16);
  border-radius: var(--radius);
  background: #0d1826;
  box-shadow: var(--shadow-cinematic);
}

.short-space-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.short-space-image figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(38, 215, 229, 0.18);
  background: rgba(7, 19, 34, 0.82);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
}

.short-space-grid {
  display: grid;
  gap: 12px;
}

.short-space-grid article {
  min-height: 118px;
  padding: 20px;
  border: 1px solid rgba(38, 215, 229, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 244, 242, 0.9));
  box-shadow: 0 14px 38px rgba(7, 19, 34, 0.08);
}

.short-space-grid span,
.short-space-grid strong,
.short-space-grid p {
  display: block;
}

.short-space-grid span {
  margin-bottom: 8px;
  color: #0b776d;
  font-size: 12px;
  font-weight: 850;
}

.short-space-grid strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 20px;
}

.short-space-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.detail-hub-section {
  padding-top: 24px;
}

.detail-hub-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.detail-link {
  min-height: 156px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(38, 215, 229, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 34px rgba(7, 19, 34, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.detail-link:hover {
  transform: translateY(-3px);
  border-color: rgba(38, 215, 229, 0.42);
  box-shadow: 0 18px 48px rgba(7, 19, 34, 0.12), 0 0 26px rgba(38, 215, 229, 0.08);
}

.detail-link svg {
  width: 28px;
  height: 28px;
  color: var(--signal);
}

.detail-link span,
.detail-link strong {
  display: block;
}

.detail-link span {
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.detail-link strong {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.38;
}

.strategy-agent-section {
  position: relative;
  overflow: hidden;
  padding-top: 86px;
}

.strategy-agent-section::before {
  content: "";
  position: absolute;
  inset: 34px 0 auto;
  height: 260px;
  background:
    radial-gradient(circle at 18% 30%, rgba(242, 165, 26, 0.16), transparent 34%),
    radial-gradient(circle at 78% 10%, rgba(38, 215, 229, 0.22), transparent 36%);
  opacity: 0.72;
  pointer-events: none;
}

.strategy-agent-shell {
  position: relative;
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.strategy-agent-copy,
.strategy-form,
.strategy-output {
  border: 1px solid rgba(38, 215, 229, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(38, 215, 229, 0.05) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
  box-shadow: 0 20px 64px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  backdrop-filter: blur(16px);
}

.strategy-agent-copy {
  grid-row: span 2;
  padding: 34px;
}

.strategy-agent-copy h2 {
  max-width: 420px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: 38px;
  line-height: 1.18;
}

.strategy-agent-copy > p:not(.eyebrow) {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.8;
}

.agent-principles {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.agent-principles div {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-areas:
    "icon title"
    "icon copy";
  column-gap: 12px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(7, 19, 34, 0.44);
}

.agent-principles svg {
  grid-area: icon;
  width: 24px;
  height: 24px;
  color: var(--electric);
}

.agent-principles strong {
  grid-area: title;
  color: var(--white);
}

.agent-principles span {
  grid-area: copy;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

.strategy-form {
  display: grid;
  gap: 15px;
  padding: 24px;
}

.strategy-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.strategy-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 820;
}

.strategy-form input,
.strategy-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(38, 215, 229, 0.18);
  border-radius: 8px;
  padding: 0 13px;
  background: rgba(5, 12, 23, 0.66);
  color: var(--white);
  font: inherit;
}

.strategy-form select option {
  color: var(--ink);
}

.strategy-output {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.strategy-output-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.strategy-output-head span {
  color: var(--electric);
  font-size: 12px;
  font-weight: 900;
}

.strategy-output-head strong {
  max-width: 420px;
  color: var(--white);
  font-size: 25px;
  line-height: 1.25;
  text-align: right;
}

.strategy-summary {
  border-left: 3px solid var(--amber);
  padding: 14px 16px;
  background: rgba(242, 165, 26, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-weight: 760;
  line-height: 1.75;
}

.strategy-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.strategy-plan-grid div,
.strategy-timeline div,
.strategy-next {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.055);
}

.strategy-plan-grid div {
  display: grid;
  gap: 8px;
  min-height: 122px;
  padding: 15px;
}

.strategy-plan-grid strong,
.strategy-timeline strong {
  color: var(--white);
}

.strategy-plan-grid span,
.strategy-next span {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

.strategy-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.strategy-timeline div {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.strategy-timeline span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
}

.strategy-next {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 16px;
}

.strategy-next svg {
  color: var(--signal);
}

.entry-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 44px;
  align-items: center;
  padding-top: 34px;
}

.entry-copy h2 {
  font-size: 40px;
}

.sku-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(38, 215, 229, 0.14);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-cinematic);
}

.sku-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.sku-form select,
.sku-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(38, 215, 229, 0.16);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(238, 244, 242, 0.72);
  color: var(--ink);
}

.sku-form select:focus,
.sku-form input:focus,
.strategy-form select:focus,
.strategy-form input:focus,
.flow-step:focus,
.segment-btn:focus,
.archive-filter:focus,
.nav-toggle:focus,
.btn:focus {
  outline: 3px solid rgba(242, 165, 26, 0.36);
  outline-offset: 2px;
}

.form-result {
  min-height: 28px;
  margin: 0;
  color: var(--green);
  font-weight: 760;
  line-height: 1.6;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px max(24px, calc((100% - var(--max)) / 2));
  border-top: 1px solid rgba(38, 215, 229, 0.16);
  background:
    linear-gradient(90deg, rgba(38, 215, 229, 0.055) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(180deg, #071322, #0a1b30);
  color: var(--white);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.64);
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--amber-2);
  font-weight: 800;
}

/* Command-center visual direction based on the accepted reference concept. */
body {
  background:
    linear-gradient(90deg, rgba(38, 215, 229, 0.045) 1px, transparent 1px) 0 0 / 96px 96px,
    linear-gradient(180deg, #050c17 0%, #071322 46%, #06111f 100%);
  color: rgba(255, 255, 255, 0.86);
}

.brand {
  min-width: 310px;
}

.brand-word {
  color: var(--white);
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
}

.brand-word span {
  color: var(--white);
  text-shadow: 0 0 16px rgba(38, 215, 229, 0.28);
}

.brand > span:last-child {
  margin-left: -2px;
}

.brand > span:last-child strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 780;
}

.brand > span:last-child small {
  color: rgba(255, 255, 255, 0.54);
}

.site-nav {
  gap: 24px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 760;
}

.site-nav a:hover {
  color: var(--white);
  text-shadow: 0 0 18px rgba(38, 215, 229, 0.26);
}

.hero {
  min-height: 760px;
  align-items: center;
}

.hero-bg {
  background-position: 52% center;
  filter: saturate(0.92) contrast(1.12) brightness(0.8);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 12, 23, 0.84) 0%, rgba(6, 18, 34, 0.58) 42%, rgba(6, 18, 34, 0.12) 100%),
    linear-gradient(180deg, rgba(5, 12, 23, 0.02) 0%, rgba(5, 12, 23, 0.58) 100%);
}

.hero-inner {
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 0.78fr);
  align-items: center;
  padding: 124px 0 106px;
}

.hero .eyebrow {
  display: none;
}

.hero h1 {
  max-width: 660px;
  margin-bottom: 22px;
  background: linear-gradient(92deg, #ffffff 0%, #dff8ff 48%, #f2a51a 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: 70px;
  line-height: 1.13;
  letter-spacing: 0;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.34);
}

.hero-lede {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 21px;
}

.hero-actions {
  gap: 12px;
}

.hero-actions .btn {
  min-width: 176px;
  min-height: 48px;
}

.hero-keywords {
  display: none;
}

.command-stack {
  display: grid;
  gap: 10px;
  width: min(100%, 430px);
}

.command-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(38, 215, 229, 0.3);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(38, 215, 229, 0.055) 1px, transparent 1px) 0 0 / 40px 40px,
    linear-gradient(180deg, rgba(38, 215, 229, 0.04) 1px, transparent 1px) 0 0 / 40px 40px,
    rgba(7, 19, 34, 0.75);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34), 0 0 40px rgba(38, 215, 229, 0.08) inset;
  backdrop-filter: blur(18px);
}

.command-card::before {
  content: "";
  position: absolute;
  inset: -40% -10%;
  background: linear-gradient(115deg, transparent 0%, rgba(38, 215, 229, 0.12) 46%, transparent 56%);
  transform: translateX(-44%);
  animation: command-scan 8s ease-in-out infinite;
  pointer-events: none;
}

.command-card::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--signal);
  box-shadow: 0 0 18px rgba(37, 214, 155, 0.8);
}

.command-title {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--electric);
  font-size: 13px;
  font-weight: 850;
}

.signal-panel.command-card {
  padding: 18px;
}

.command-rows {
  gap: 0;
}

.command-rows div {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 24px minmax(86px, 1fr) 118px 62px;
  gap: 12px;
  min-height: 48px;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0;
  background: transparent;
}

.command-rows div:first-child {
  border-top: 0;
}

.command-rows i,
.command-rows svg {
  align-self: center;
}

.command-rows i {
  width: 18px;
  height: 18px;
  color: var(--electric);
}

.command-rows .lucide {
  width: 18px;
  height: 18px;
  color: var(--electric);
  filter: drop-shadow(0 0 8px rgba(38, 215, 229, 0.42));
}

.command-rows .lucide path {
  stroke: currentColor;
  filter: none;
}

.command-rows strong {
  align-self: center;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 760;
}

.command-rows svg {
  width: 118px;
  height: 28px;
}

.command-rows path {
  fill: none;
  stroke: var(--electric);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 5px rgba(38, 215, 229, 0.45));
}

.command-rows div:nth-child(2) path,
.command-rows div:nth-child(4) path {
  stroke: var(--amber);
  filter: drop-shadow(0 0 5px rgba(242, 165, 26, 0.45));
}

.command-rows span {
  justify-self: end;
  align-self: center;
  color: var(--signal);
  font-size: 12px;
  font-weight: 900;
}

.coverage-card {
  padding: 14px;
}

.coverage-card .command-title,
.coverage-card img {
  position: relative;
  z-index: 1;
}

.coverage-card img {
  width: 100%;
  aspect-ratio: 2.12 / 1;
  border: 1px solid rgba(38, 215, 229, 0.16);
  border-radius: var(--radius);
  object-fit: cover;
  opacity: 0.86;
  filter: saturate(0.98) contrast(1.08);
}

.metric-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: -82px;
  width: min(var(--max), calc(100% - 24px));
  border-color: rgba(38, 215, 229, 0.24);
  background: rgba(38, 215, 229, 0.2);
}

.metric {
  min-height: 106px;
  grid-template-columns: 42px 1fr;
  grid-template-areas:
    "icon value"
    "icon label";
  column-gap: 16px;
  align-content: center;
  padding: 20px 24px;
  border-top: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.metric:first-child {
  border-left: 0;
}

.metric svg {
  grid-area: icon;
  align-self: center;
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.68);
}

.metric strong {
  grid-area: value;
  align-self: end;
  font-size: 27px;
}

.metric span {
  grid-area: label;
  align-self: start;
}

.section {
  padding-top: 88px;
}

h2,
.entry-copy h2 {
  color: var(--white);
}

.section-head p,
.entry-copy p,
.offer-primary > p {
  color: rgba(255, 255, 255, 0.68);
}

.pain-card,
.offer-primary,
.growth-card,
.short-space-grid article,
.detail-link,
.sku-form,
.strategy-agent-copy,
.strategy-form,
.strategy-output,
.guardrail-strip div,
.phase-grid article {
  border-color: rgba(38, 215, 229, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.045));
  color: var(--white);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
}

.pain-card h3,
.offer-primary h3,
.growth-card h3,
.short-space-grid strong,
.detail-link strong,
.guardrail-strip strong,
.phase-grid h3,
.sku-form label,
.strategy-form label {
  color: var(--white);
}

.pain-card p,
.growth-card span,
.short-space-grid p,
.guardrail-strip span,
.phase-grid span,
.detail-link span,
.deliverable-grid span,
.strategy-plan-grid span,
.strategy-next span {
  color: rgba(255, 255, 255, 0.62);
}

.visual-story-section {
  padding-top: 72px;
}

.visual-story-section .section-head {
  text-align: left;
  margin-left: 0;
}

.visual-story-section .section-head h2 {
  font-size: 34px;
}

.visual-story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: none;
}

.visual-story-card,
.visual-story-card.is-wide {
  grid-row: auto;
  min-height: 310px;
}

.visual-story-card {
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(38, 215, 229, 0.1) inset;
}

.visual-story-copy h3,
.visual-story-card:not(.is-wide) .visual-story-copy h3 {
  font-size: 22px;
}

.deliverable-grid div {
  background: rgba(255, 255, 255, 0.055);
}

.sku-form select,
.sku-form input,
.strategy-form select,
.strategy-form input {
  background: rgba(7, 19, 34, 0.62);
  color: var(--white);
}

.sku-form select option,
.strategy-form select option {
  color: var(--ink);
}

@media (max-width: 1040px) {
  .brand {
    min-width: auto;
  }

  .brand > span:last-child {
    display: none;
  }

  .site-nav {
    gap: 0;
  }

  .site-nav.is-open a {
    color: var(--ink);
    text-shadow: none;
  }

  .hero-inner {
    grid-template-columns: 1fr;
  }

  .command-stack {
    width: min(100%, 560px);
    justify-self: start;
  }

  .strategy-agent-shell {
    grid-template-columns: 1fr;
  }

  .strategy-agent-copy {
    grid-row: auto;
  }

  .metric-strip,
  .visual-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .brand-word {
    font-size: 20px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .command-rows div {
    grid-template-columns: 22px minmax(0, 1fr) 58px;
  }

  .command-rows svg {
    display: none;
  }

  .command-rows .lucide {
    display: block;
  }

  .coverage-card {
    display: none;
  }

  .metric-strip,
  .visual-story-grid {
    grid-template-columns: 1fr;
  }

  .strategy-agent-shell {
    width: min(var(--max), calc(100% - 32px));
  }

  .strategy-agent-copy,
  .strategy-form,
  .strategy-output {
    padding: 20px;
  }

  .strategy-field-grid,
  .strategy-plan-grid,
  .strategy-timeline {
    grid-template-columns: 1fr;
  }

  .strategy-output-head {
    display: grid;
  }

  .strategy-output-head strong {
    text-align: left;
    font-size: 22px;
  }

  .metric {
    min-height: 88px;
  }
}

@keyframes command-scan {
  0%,
  48% {
    transform: translateX(-58%);
  }

  72%,
  100% {
    transform: translateX(58%);
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav.is-open {
    display: grid;
    position: fixed;
    left: 20px;
    right: 20px;
    top: 86px;
    z-index: 21;
    gap: 0;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open a {
    min-height: 48px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open a:last-child {
    border-bottom: 0;
  }

  h1 {
    font-size: 46px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-motion {
    justify-self: start;
    width: min(100%, 360px);
  }

  .metric-strip,
  .pain-grid,
  .engine-grid,
  .policy-grid,
  .phase-grid,
  .proof-grid,
  .guardrail-strip,
  .offer-layout,
  .system-section,
  .brand-strategy,
  .visual-story-grid,
  .compare-grid,
  .flow-layout,
  .growth-layout,
  .growth-workflow,
  .archive-bottom,
  .model-layout,
  .opc-section,
  .policy-matrix,
  .space-gallery,
  .layout-block,
  .cad-layout,
  .cad-checklist,
  .short-space-layout,
  .entry-section {
    grid-template-columns: 1fr;
  }

  .design-grid,
  .style-grid,
  .detail-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .policy-checks {
    grid-template-columns: 1fr;
  }

  .training-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
  }

  .space-plan {
    grid-template-columns: repeat(2, 1fr);
  }

  .zone,
  .zone-lobby,
  .zone-selection,
  .zone-live,
  .zone-training,
  .zone-incubation,
  .zone-service {
    grid-column: span 1;
    grid-row: span 1;
  }

  .engine-grid {
    max-width: var(--max);
    margin: 0 auto;
  }

  .space-gallery {
    align-items: start;
  }

  .gallery-side,
  .mood-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .visual-story-card.is-wide {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 10px 18px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    max-width: 210px;
    font-size: 13px;
    line-height: 1.35;
  }

  .hero {
    min-height: 86vh;
  }

  .hero-inner {
    width: calc(100% - 36px);
    padding: 102px 0 64px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 12, 23, 0.92), rgba(5, 12, 23, 0.68)),
      linear-gradient(90deg, rgba(38, 215, 229, 0.08), transparent 58%);
  }

  h1 {
    font-size: 36px;
  }

  h2,
  .entry-copy h2 {
    font-size: 28px;
  }

  .hero-lede {
    max-width: 340px;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-keywords {
    display: none;
  }

  .visual-story-grid {
    grid-template-rows: none;
  }

  .visual-story-card,
  .visual-story-card.is-wide {
    min-height: 390px;
  }

  .visual-story-copy {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }

  .visual-story-copy h3,
  .visual-story-card:not(.is-wide) .visual-story-copy h3 {
    font-size: 22px;
  }

  .visual-story-copy p {
    font-size: 14px;
  }

  .hero-motion {
    width: 100%;
  }

  .signal-panel {
    padding: 18px;
  }

  .signal-panel::before {
    inset: 0;
  }

  .system-section {
    padding: 26px;
  }

  .signal-orbit {
    min-height: 142px;
  }

  .signal-orbit strong {
    width: 82px;
    height: 82px;
    font-size: 18px;
  }

  .ring-one {
    width: 132px;
    height: 132px;
  }

  .ring-two {
    width: 166px;
    height: 166px;
  }

  .dot-one {
    transform: translate(66px, -44px);
  }

  .dot-two {
    transform: translate(-78px, 28px);
  }

  .dot-three {
    transform: translate(52px, 62px);
  }

  .metric-strip {
    width: calc(100% - 32px);
    margin-top: -24px;
  }

  .metric {
    min-height: 82px;
  }

  .section {
    width: calc(100% - 32px);
    padding: 64px 0;
    scroll-margin-top: 78px;
  }

  .white-model-section {
    width: calc(100% - 24px);
  }

  .engines-section,
  .policy-section,
  .transformation-section,
  .style-lab-section,
  .training-section,
  .cad-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .pain-card,
  .engine-card,
  .policy-card,
  .offer-primary,
  .offer-side,
  .training-card,
  .archive-principle,
  .update-log,
  .style-card-body,
  .cad-card,
  .layout-block,
  .phase-grid article,
  .short-space-grid article,
  .detail-link,
  .sku-form,
  .segment-panel,
  .flow-detail {
    padding: 22px;
  }

  .flow-proof,
  .deliverable-grid,
  .compare-images,
  .segment-controls,
  .gallery-side,
  .mood-row,
  .growth-grid,
  .workflow-steps,
  .design-grid,
  .style-grid,
  .detail-hub-grid {
    grid-template-columns: 1fr;
  }

  .proof-note,
  .growth-boundary,
  .update-item {
    grid-template-columns: 1fr;
  }

  .policy-matrix {
    padding: 22px;
  }

  .guardrail-strip div,
  .policy-checks article,
  .cad-checklist article {
    min-height: auto;
  }

  .cad-map {
    min-height: 360px;
  }

  .short-space-image {
    min-height: 340px;
  }

  .model-stage,
  .model-stage model-viewer {
    min-height: 560px;
  }

  .model-toolbar {
    width: 100%;
  }

  .model-viewbar {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .model-mode-button {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 10px;
    font-size: 13px;
  }

  .model-mode-button span {
    overflow-wrap: anywhere;
  }

  .model-view-button {
    min-width: 0;
    padding: 0 8px;
  }

  .model-view-button span {
    overflow-wrap: anywhere;
  }

  .space-plan {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .training-loop {
    display: grid;
    justify-items: stretch;
  }

  .training-actions,
  .training-actions .btn {
    width: 100%;
  }

  .training-loop svg {
    justify-self: center;
    transform: rotate(90deg);
  }

  .segment-btn {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .segment-btn:last-child {
    border-bottom: 0;
  }

  .site-footer {
    display: grid;
    padding: 28px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
