:root {
  --ink: #171512;
  --muted: #6c655a;
  --paper: #f7f3ec;
  --panel: #fffaf0;
  --line: #d8cfbf;
  --charcoal: #12110f;
  --charcoal-2: #1e1b17;
  --mint: #28d99a;
  --cyan: #32c7d3;
  --amber: #f0b44c;
  --rose: #ee6a73;
  --violet: #8f7cf6;
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(18,17,15,0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18,17,15,0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 36px 36px;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.shell {
  min-height: 100vh;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(580px, 1.25fr) minmax(320px, 0.75fr);
  gap: 28px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px 40px;
}

.hero-copy {
  width: 100%;
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--muted);
  font-weight: 760;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: 72px;
  line-height: 0.98;
  font-weight: 860;
}

h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.15;
}

h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.hero-subtitle {
  margin: 22px 0 0;
  max-width: 650px;
  color: #413a31;
  font-size: 20px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 18px;
  text-decoration: none;
  font-weight: 760;
  border: 1px solid var(--charcoal);
}

.button.primary {
  background: var(--charcoal);
  color: var(--paper);
}

.button.secondary {
  background: transparent;
}

.command-board {
  background: var(--charcoal);
  color: var(--paper);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 28px 80px rgba(18, 17, 15, 0.24);
}

.board-header {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #d9d2c8;
  font-size: 13px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(247, 243, 236, 0.18);
}

.pulse {
  width: 10px;
  height: 10px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(40, 217, 154, 0.14);
}

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

.metric {
  min-height: 118px;
  background: var(--charcoal-2);
  border: 1px solid rgba(247, 243, 236, 0.12);
  border-radius: var(--radius);
  padding: 14px;
}

.metric span {
  display: block;
  color: #a79d8d;
  font-size: 12px;
}

.metric strong {
  display: block;
  margin-top: 16px;
  font-size: 34px;
  line-height: 1;
}

.metric small {
  display: block;
  margin-top: 10px;
  color: #d6c7af;
}

.section {
  padding: 76px 24px;
}

.strip {
  background: rgba(255, 250, 240, 0.72);
  border-block: 1px solid rgba(216, 207, 191, 0.75);
}

.section-head {
  max-width: 1180px;
  margin: 0 auto 28px;
}

.section-head p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.terrain-layout,
.campaign-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.terrain-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
}

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

.terrain-card,
.chart-card,
.detail-panel,
.proof-card,
.launch-card,
.replay-card,
.artifact-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 36px rgba(47, 38, 24, 0.08);
}

.terrain-card {
  min-height: 220px;
  padding: 16px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.terrain-card:hover,
.terrain-card.active {
  transform: translateY(-3px);
  border-color: var(--charcoal);
}

.terrain-card .type {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 760;
}

.terrain-card strong {
  font-size: 18px;
  line-height: 1.25;
}

.terrain-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.urgency {
  margin-top: auto;
  height: 8px;
  border-radius: 999px;
  background: #e8decc;
  overflow: hidden;
}

.urgency span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--mint), var(--amber), var(--rose));
}

.detail-panel {
  padding: 20px;
  min-height: 260px;
}

.detail-panel p,
.detail-panel li {
  color: var(--muted);
  line-height: 1.65;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  color: #3f382f;
  background: #fffdf8;
  font-size: 12px;
  font-weight: 700;
}

.radar-grid,
.proof-grid,
.launch-grid,
.artifact-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.chart-card {
  padding: 18px;
  min-height: 320px;
}

.bar-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 72px;
  gap: 10px;
  align-items: center;
  margin: 12px 0;
}

.bar-label {
  min-width: 0;
}

.bar-label strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.bar-label span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.bar-track {
  grid-column: 1 / -1;
  height: 8px;
  background: #eadfce;
  border-radius: 999px;
  overflow: hidden;
}

.bar-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--mint));
}

.donut-wrap {
  display: grid;
  gap: 10px;
}

.donut-row {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) 48px;
  align-items: center;
  gap: 10px;
}

.mini-track {
  height: 10px;
  background: #eadfce;
  border-radius: 999px;
  overflow: hidden;
}

.mini-track span {
  display: block;
  height: 100%;
}

.signal-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.signal-list li {
  padding: 12px;
  background: #fffdf8;
  border: 1px solid #eadfce;
  border-radius: var(--radius);
}

.signal-list strong {
  display: block;
  font-size: 14px;
}

.signal-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.campaign-grid {
  grid-template-columns: 230px minmax(0, 1fr) minmax(320px, 0.82fr);
}

.agent-rail {
  display: grid;
  gap: 10px;
}

.agent-chip {
  padding: 12px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 760;
}

.agent-chip small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-weight: 600;
}

.timeline-panel {
  min-height: 560px;
  background: var(--charcoal);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--paper);
}

.timeline {
  display: grid;
  gap: 12px;
}

.stage {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 70px;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--charcoal-2);
  border: 1px solid rgba(247, 243, 236, 0.12);
  border-radius: var(--radius);
  cursor: pointer;
}

.stage.active {
  border-color: var(--mint);
}

.stage-index {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(50, 199, 211, 0.16);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
}

.stage strong {
  display: block;
  font-size: 14px;
}

.stage span {
  display: block;
  margin-top: 4px;
  color: #b7ad9f;
  font-size: 12px;
}

.status {
  text-align: right;
  color: var(--mint);
  font-size: 12px;
  font-weight: 800;
}

.proof-card {
  min-height: 230px;
  padding: 20px;
}

.proof-card strong {
  display: block;
  margin: 20px 0;
  font-size: 56px;
  line-height: 1;
}

.proof-card p {
  color: var(--muted);
  line-height: 1.6;
}

.proof-card.baseline strong {
  color: var(--rose);
}

.proof-card.improved strong {
  color: #11986a;
}

.proof-card.delta strong {
  color: var(--charcoal);
}

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

.case-card {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.case-card p {
  color: var(--muted);
  line-height: 1.55;
}

.launch-card {
  padding: 18px;
  min-height: 260px;
}

.launch-card .mode {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(40, 217, 154, 0.12);
  color: #0c7852;
  font-size: 12px;
  font-weight: 800;
}

.launch-card p {
  color: var(--muted);
  line-height: 1.6;
}

.replay-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px;
}

.replay-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.replay-item {
  min-height: 150px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffdf8;
}

.replay-item strong {
  display: block;
}

.replay-item span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

.artifact-card {
  padding: 18px;
}

.artifact-card a {
  display: inline-flex;
  margin-top: 12px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--charcoal);
}

@media (max-width: 980px) {
  .hero,
  .terrain-layout,
  .campaign-grid,
  .radar-grid,
  .proof-grid,
  .launch-grid,
  .artifact-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 48px;
  }

  .terrain-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .replay-timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .section,
  .hero {
    padding-inline: 16px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  .terrain-map,
  .metric-grid,
  .replay-timeline {
    grid-template-columns: 1fr;
  }

  .stage {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .status {
    grid-column: 2;
    text-align: left;
  }
}

/* Generated visual assets and richer interactive map */
.hero {
  position: relative;
  overflow: hidden;
  max-width: none;
  padding: 56px max(24px, calc((100vw - 1180px) / 2)) 40px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, var(--paper));
  pointer-events: none;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--paper);
  z-index: 0;
}

.hero-backdrop::before,
.hero-backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-backdrop::before {
  background: url("images/hero-forge.webp") center right / cover no-repeat;
  transform: scaleX(-1);
}

.hero-backdrop::after {
  background: linear-gradient(90deg, rgba(247, 243, 236, 0.98) 0%, rgba(247, 243, 236, 0.86) 34%, rgba(247, 243, 236, 0.16) 68%, rgba(247, 243, 236, 0.58) 100%);
}

.hero > *:not(.hero-backdrop) {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.hero-copy {
  padding-block: 22px;
}

.command-board {
  backdrop-filter: blur(10px);
  background: rgba(18, 17, 15, 0.94);
}

.terrain-layout {
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
}

.terrain-stage {
  position: relative;
  min-height: 560px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--charcoal);
  box-shadow: 0 18px 55px rgba(47, 38, 24, 0.15);
}

.terrain-image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  display: block;
  opacity: 0.98;
}

.terrain-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 55% 50%, transparent 0 34%, rgba(18, 17, 15, 0.18) 72%),
    linear-gradient(180deg, rgba(18, 17, 15, 0.03), rgba(18, 17, 15, 0.26));
  pointer-events: none;
}

.terrain-hotspots {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.terrain-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  border: 0;
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  padding: 0;
  display: grid;
  place-items: center;
}

.hotspot-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint);
  border: 3px solid rgba(255, 250, 240, 0.95);
  box-shadow: 0 0 0 8px rgba(40, 217, 154, 0.24), 0 0 28px rgba(40, 217, 154, 0.8);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.terrain-hotspot.crowded .hotspot-dot {
  background: var(--amber);
  box-shadow: 0 0 0 8px rgba(240, 180, 76, 0.24), 0 0 28px rgba(240, 180, 76, 0.8);
}

.terrain-hotspot.broken_bridge .hotspot-dot,
.terrain-hotspot.wasteland .hotspot-dot {
  background: var(--rose);
  box-shadow: 0 0 0 8px rgba(238, 106, 115, 0.22), 0 0 28px rgba(238, 106, 115, 0.72);
}

.terrain-hotspot.oasis .hotspot-dot {
  background: var(--cyan);
}

.terrain-hotspot.active .hotspot-dot,
.terrain-hotspot:hover .hotspot-dot,
.terrain-hotspot:focus-visible .hotspot-dot {
  transform: scale(1.24);
  box-shadow: 0 0 0 12px rgba(255, 250, 240, 0.18), 0 0 36px rgba(255, 250, 240, 0.9);
}

.hotspot-label {
  position: absolute;
  left: 24px;
  top: 18px;
  min-width: 158px;
  max-width: 220px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 250, 240, 0.26);
  border-radius: var(--radius);
  background: rgba(18, 17, 15, 0.78);
  text-align: left;
  box-shadow: 0 12px 36px rgba(18, 17, 15, 0.28);
  opacity: 0.88;
  backdrop-filter: blur(8px);
}

.terrain-hotspot.active .hotspot-label,
.terrain-hotspot:hover .hotspot-label,
.terrain-hotspot:focus-visible .hotspot-label {
  opacity: 1;
}

.hotspot-label strong {
  display: block;
  font-size: 13px;
}

.hotspot-label small {
  display: block;
  margin-top: 4px;
  color: #d7cdbd;
  font-size: 12px;
  line-height: 1.35;
}

.launch-visual {
  max-width: 1180px;
  margin: 0 auto 18px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 18px 55px rgba(47, 38, 24, 0.14);
  background: var(--charcoal);
}

.launch-visual img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

@media (max-width: 980px) {
  .hero {
    padding-inline: 24px;
  }

  .hero-backdrop {
    opacity: 0.42;
  }

  .terrain-stage,
  .terrain-image {
    min-height: 520px;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-inline: 16px;
  }

  .terrain-stage,
  .terrain-image {
    min-height: 540px;
  }

  .hotspot-label {
    min-width: 128px;
    max-width: 160px;
  }
}

/* Product-launch polish */
.hero {
  min-height: 96vh;
}

.hero h1 {
  max-width: 820px;
  color: #120f0b;
  font-size: clamp(38px, 5.25vw, 66px);
  line-height: 1.03;
  white-space: nowrap;
  text-wrap: nowrap;
}

.hero-subtitle {
  max-width: 720px;
  font-weight: 560;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(18, 17, 15, 0.16);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.74);
  color: #30281f;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(18, 17, 15, 0.08);
}

.button {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(18, 17, 15, 0.16);
}

.button.primary {
  background: linear-gradient(135deg, #12110f, #2b241d 56%, #3d2b14);
}

.showcase-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.64fr) minmax(0, 1.36fr);
  gap: 24px;
  align-items: center;
  padding: 42px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(90deg, rgba(18, 17, 15, 0.94), rgba(18, 17, 15, 0.76)),
    radial-gradient(circle at 78% 20%, rgba(50, 199, 211, 0.28), transparent 34%),
    var(--charcoal);
  color: var(--paper);
  overflow: hidden;
}

.showcase-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.32;
  pointer-events: none;
}

.showcase-copy,
.showcase-poster {
  position: relative;
  z-index: 1;
}

.showcase-copy h2 {
  max-width: 460px;
  font-size: 42px;
}

.showcase-copy p:not(.eyebrow) {
  color: #d8ccb9;
  font-size: 17px;
  line-height: 1.72;
}

.showcase-poster {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 250, 240, 0.18);
  box-shadow: 0 28px 82px rgba(0, 0, 0, 0.38);
}

.showcase-poster img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.architecture-section {
  background:
    radial-gradient(circle at 18% 20%, rgba(50, 199, 211, 0.16), transparent 28%),
    radial-gradient(circle at 82% 24%, rgba(240, 180, 76, 0.16), transparent 26%),
    var(--paper);
}

.architecture-layout {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.architecture-visual,
.architecture-diagram {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: 0 18px 55px rgba(47, 38, 24, 0.14);
}

.architecture-visual {
  position: relative;
  min-height: 620px;
  margin: 0;
  background: var(--charcoal);
}

.architecture-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(18, 17, 15, 0.58));
  pointer-events: none;
}

.architecture-visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.architecture-diagram {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  background:
    radial-gradient(circle at 50% 26%, rgba(40, 217, 154, 0.18), transparent 34%),
    linear-gradient(180deg, #171512, #231d18);
  color: var(--paper);
}

.architecture-diagram::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 250, 240, 0.08);
  border-radius: var(--radius);
  pointer-events: none;
}

.arch-lane,
.arch-core,
.arch-node {
  position: relative;
  z-index: 1;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 250, 240, 0.16);
  background: rgba(255, 250, 240, 0.06);
}

.arch-lane {
  padding: 14px;
}

.arch-label {
  display: block;
  margin-bottom: 8px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 880;
  text-transform: uppercase;
}

.arch-lane strong,
.arch-lane small {
  display: block;
}

.arch-lane small {
  margin-top: 6px;
  color: #cfc5b6;
  line-height: 1.45;
}

.arch-core {
  padding: 18px;
  background: linear-gradient(135deg, rgba(50, 199, 211, 0.2), rgba(240, 180, 76, 0.18));
  box-shadow: 0 0 48px rgba(50, 199, 211, 0.18);
}

.arch-core span,
.arch-core strong {
  display: block;
}

.arch-core span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 880;
  text-transform: uppercase;
}

.arch-core strong {
  margin-top: 6px;
  font-size: 22px;
}

.arch-nodes {
  display: grid;
  gap: 10px;
}

.arch-node {
  width: 100%;
  min-height: 74px;
  padding: 12px 12px 12px 54px;
  color: var(--paper);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.arch-node:hover,
.arch-node:focus-visible,
.arch-node.active {
  transform: translateX(4px);
  border-color: var(--mint);
  background: rgba(40, 217, 154, 0.12);
}

.arch-node span {
  position: absolute;
  left: 12px;
  top: 14px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(50, 199, 211, 0.16);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 880;
}

.arch-node strong,
.arch-node small {
  display: block;
}

.arch-node small {
  margin-top: 5px;
  color: #cfc5b6;
}

.architecture-detail {
  min-height: 230px;
  background: rgba(255, 250, 240, 0.92);
}

.architecture-detail h3 {
  line-height: 1.45;
}

@media (max-width: 980px) {
  .showcase-band,
  .architecture-layout,
  .terrain-layout {
    grid-template-columns: 1fr;
  }

  .architecture-visual,
  .architecture-visual img {
    min-height: 480px;
  }
}

@media (max-width: 560px) {
  .showcase-band {
    padding-inline: 16px;
  }

  .eyebrow {
    overflow-wrap: anywhere;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero h1 {
    font-size: clamp(30px, 8.2vw, 38px);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 340px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof span {
    max-width: 100%;
  }

  .showcase-copy h2 {
    font-size: 30px;
  }

  .architecture-visual,
  .architecture-visual img {
    min-height: 360px;
  }

  .architecture-diagram {
    padding: 14px;
  }
}
