:root {
  --bg-0: #070b12;
  --bg-1: #091422;
  --bg-2: #10253c;
  --panel: rgba(8, 18, 31, 0.72);
  --panel-strong: rgba(8, 18, 31, 0.9);
  --line: rgba(92, 198, 255, 0.22);
  --text: #ecf5ff;
  --muted: #9eb9d2;
  --accent: #48d6ff;
  --accent-2: #00f0b8;
  --danger: #ff6b6b;
  --warn: #ffd166;
  --ok: #7fe39f;
  --shadow: 0 12px 38px rgba(0, 0, 0, 0.45);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  color: var(--text);
  font-family: "Space Grotesk", "Avenir Next", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 20% 10%, #16385a 0%, transparent 30%),
    radial-gradient(circle at 80% 20%, #0d4f69 0%, transparent 25%),
    linear-gradient(160deg, var(--bg-0), var(--bg-1) 42%, var(--bg-2));
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image: repeating-radial-gradient(circle at 0 0, transparent 0, #fff 1px, transparent 2px);
  background-size: 3px 3px;
  z-index: 0;
}

.topbar,
main,
footer {
  position: relative;
  z-index: 1;
}

.topbar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.4rem;
  backdrop-filter: blur(10px);
  background: rgba(6, 11, 19, 0.62);
  border-bottom: 1px solid var(--line);
}

.brand {
  letter-spacing: 0.22rem;
  font-weight: 800;
}

.topbar nav {
  display: flex;
  gap: 1rem;
}

.topbar a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.topbar a:hover {
  color: var(--text);
}

main {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 1.6rem 0 4rem;
}

section {
  margin: 1.4rem 0;
}

.hero {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(130deg, rgba(13, 28, 46, 0.86), rgba(7, 14, 24, 0.9));
  box-shadow: var(--shadow);
  animation: rise 0.5s ease-out both;
}

.kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14rem;
  font-size: 0.75rem;
  margin: 0;
}

.hero h1 {
  margin: 0.55rem 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.02;
}

.subtitle {
  color: var(--muted);
  max-width: 72ch;
}

.hero-ctas {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.slogan {
  margin-top: 1rem;
  color: #d5f0ff;
}

.btn {
  border-radius: 11px;
  border: 1px solid transparent;
  text-decoration: none;
  color: var(--text);
  background: transparent;
  cursor: pointer;
  font: inherit;
  padding: 0.68rem 1.02rem;
}

.btn-primary {
  background: linear-gradient(135deg, #17b9ff, #08d7c8);
  color: #021017;
  font-weight: 700;
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--muted);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--text);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.proof-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  padding: 1rem;
}

.metric {
  margin: 0;
  font-family: "IBM Plex Mono", "Cascadia Code", monospace;
  font-weight: 700;
  color: var(--accent-2);
  font-size: 1.8rem;
}

.label {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.split {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.4fr 1fr;
  align-items: stretch;
}

.split h2,
.feature-section h2,
.operators h2,
.cta h2 {
  margin: 0 0 0.6rem;
  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
}

.terminal-card {
  background: #04101d;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  font-family: "IBM Plex Mono", "Cascadia Code", monospace;
  box-shadow: var(--shadow);
}

.terminal-card p {
  margin: 0.4rem 0;
  color: #9bd7ff;
}

.terminal-card span {
  color: var(--accent-2);
}

.feature-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: var(--panel);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.feature-grid article {
  background: rgba(8, 22, 36, 0.8);
  border: 1px solid rgba(92, 198, 255, 0.2);
  border-radius: 12px;
  padding: 0.95rem;
}

.feature-grid h3 {
  margin: 0;
  font-size: 1.02rem;
}

.feature-grid p {
  margin: 0.5rem 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.operators {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1.1rem;
}

.op-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 0.8rem;
}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pillar {
  text-align: left;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(9, 23, 38, 0.72);
  color: var(--muted);
  padding: 0.65rem 0.75rem;
  cursor: pointer;
}

.pillar:hover,
.pillar.is-active {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(18, 41, 64, 0.86);
}

.pane-wrap {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.95rem;
  background: rgba(8, 17, 28, 0.72);
  min-height: 180px;
}

.pane {
  display: none;
  animation: fade 0.2s ease-out both;
}

.pane.is-active {
  display: block;
}

.pane h3 {
  margin: 0 0 0.5rem;
}

.pane p {
  margin: 0;
  color: var(--muted);
}

.quote-strip {
  border-left: 3px solid var(--accent-2);
  padding: 0.2rem 1rem;
  color: #d2f3ff;
  font-size: 1.05rem;
}

.cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: linear-gradient(160deg, rgba(8, 19, 32, 0.85), rgba(8, 34, 44, 0.74));
}

.cta span {
  color: var(--accent);
}

.cta p {
  color: var(--muted);
}

.doc-hero {
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(150deg, rgba(6, 16, 28, 0.92), rgba(10, 32, 48, 0.82));
  padding: 1.4rem;
  position: relative;
  overflow: hidden;
}

.doc-hero h1 {
  margin: 0.3rem 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.doc-hero p {
  color: var(--muted);
  max-width: 78ch;
}

.doc-hero-strong {
  background:
    radial-gradient(circle at 84% 18%, rgba(72, 214, 255, 0.14), transparent 20%),
    radial-gradient(circle at 14% 0%, rgba(0, 240, 184, 0.08), transparent 22%),
    linear-gradient(145deg, rgba(7, 18, 31, 0.96), rgba(8, 28, 45, 0.9));
  box-shadow: var(--shadow);
}

.doc-hero-strong::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(72, 214, 255, 0.3), rgba(72, 214, 255, 0) 18%) top left / 100% 1px no-repeat,
    linear-gradient(180deg, rgba(0, 240, 184, 0.18), rgba(0, 240, 184, 0) 58%) top left / 1px 100% no-repeat;
  opacity: 0.8;
}

.doc-hero-strong h1 {
  max-width: 12ch;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.doc-hero-strong p {
  max-width: 70ch;
  font-size: 1.02rem;
}

.doc-section {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1rem;
}

.doc-section h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.human-grid article {
  min-height: 136px;
}

.doc-grid article {
  border: 1px solid rgba(92, 198, 255, 0.22);
  border-radius: 12px;
  background: rgba(6, 18, 30, 0.75);
  padding: 0.9rem;
}

.doc-grid h3 {
  margin: 0 0 0.5rem;
}

.doc-grid p,
.doc-grid li {
  color: var(--muted);
}

.value-grid article {
  min-height: 172px;
  background:
    linear-gradient(180deg, rgba(13, 30, 49, 0.88), rgba(6, 17, 29, 0.86));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.value-grid article h3 {
  font-size: 1.12rem;
  line-height: 1.18;
}

.install-overview article {
  min-height: 0;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(12, 30, 47, 0.92), rgba(7, 18, 30, 0.84));
}

.install-overview article h3 {
  position: relative;
  padding-top: 0.9rem;
}

.install-overview article h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 54px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(0, 240, 184, 0.72));
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.section-head h2 {
  margin: 0;
}

.subnav {
  position: sticky;
  top: 62px;
  z-index: 2;
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(7, 17, 29, 0.85);
  backdrop-filter: blur(8px);
}

.subnav a {
  text-decoration: none;
  color: var(--muted);
  border: 1px solid rgba(92, 198, 255, 0.25);
  border-radius: 10px;
  padding: 0.4rem 0.6rem;
  font-size: 0.9rem;
}

.subnav a:hover {
  color: var(--text);
  border-color: var(--accent);
}

.doc-tools {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem;
  background: rgba(8, 18, 32, 0.75);
}

.doc-search-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--muted);
}

.doc-search {
  flex: 1;
  border-radius: 10px;
  border: 1px solid rgba(92, 198, 255, 0.3);
  background: rgba(6, 16, 27, 0.8);
  color: var(--text);
  padding: 0.52rem 0.65rem;
  font: inherit;
}

.doc-search:focus {
  outline: none;
  border-color: var(--accent);
}

.doc-filters {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.doc-filter {
  border: 1px solid rgba(92, 198, 255, 0.24);
  background: rgba(8, 24, 39, 0.72);
  color: var(--muted);
  border-radius: 10px;
  padding: 0.35rem 0.62rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
}

.doc-filter:hover,
.doc-filter.is-active {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(15, 41, 65, 0.88);
}

#docFilterStatus {
  display: block;
  margin-top: 0.4rem;
  color: #95c8ea;
  min-height: 1rem;
}

.anchor-copy {
  border: 1px solid rgba(92, 198, 255, 0.24);
  background: rgba(8, 24, 39, 0.72);
  color: var(--muted);
  border-radius: 9px;
  padding: 0.32rem 0.6rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.82rem;
}

.anchor-copy:hover {
  color: var(--text);
  border-color: var(--accent);
}

.is-hidden {
  display: none !important;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.install-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.install-tab {
  border: 1px solid rgba(92, 198, 255, 0.24);
  background: rgba(8, 24, 39, 0.72);
  color: var(--muted);
  border-radius: 10px;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  font: inherit;
}

.install-tab:hover,
.install-tab.is-active {
  color: var(--text);
  border-color: var(--accent);
  background: rgba(15, 41, 65, 0.88);
}

.install-pane {
  display: none;
}

.install-pane.is-active {
  display: block;
}

.install-actions {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}

.install-copy {
  border: 1px solid rgba(92, 198, 255, 0.24);
  background: rgba(8, 24, 39, 0.72);
  color: var(--muted);
  border-radius: 9px;
  padding: 0.34rem 0.58rem;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
}

.install-copy:hover {
  color: var(--text);
  border-color: var(--accent);
}

.bundle-card {
  border: 1px solid rgba(92, 198, 255, 0.24);
  border-radius: 12px;
  background: rgba(7, 19, 32, 0.82);
  padding: 0.85rem;
}

.bundle-card h3 {
  margin: 0 0 0.45rem;
}

.bundle-card p {
  margin: 0.3rem 0 0.55rem;
  color: var(--muted);
}

.bundle-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.bundle-links a {
  text-decoration: none;
  border: 1px solid rgba(92, 198, 255, 0.24);
  border-radius: 9px;
  padding: 0.34rem 0.56rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.bundle-links a:hover {
  color: var(--text);
  border-color: var(--accent);
}

.callout {
  border-left: 3px solid var(--accent);
  padding: 0.5rem 0.9rem;
  background: rgba(15, 34, 54, 0.55);
  border-radius: 0 10px 10px 0;
  color: #d5f3ff;
}

.code-block {
  margin: 0;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #05101d;
  font-family: "IBM Plex Mono", "Cascadia Code", monospace;
  color: #bde6ff;
  white-space: pre-wrap;
}

#copyStatus {
  margin-top: 0.65rem;
  display: block;
  color: var(--accent-2);
  min-height: 1.2rem;
}

footer {
  width: min(1180px, 92vw);
  margin: 0 auto;
  color: #8fb1ce;
  border-top: 1px solid var(--line);
  padding: 1rem 0 2.3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .proof-grid,
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .op-layout {
    grid-template-columns: 1fr;
  }

  .pillars {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pillar {
    flex: 1 1 42%;
  }

  .subnav {
    top: 56px;
  }

  .bundle-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {
  .proof-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .topbar nav {
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .doc-search-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .feature-section,
  .operators,
  .cta,
  .doc-hero,
  .doc-section {
    padding: 1rem;
  }
}

@media (max-width: 980px) {
  .doc-grid {
    grid-template-columns: 1fr;
  }
}

.page-home {
  background:
    radial-gradient(circle at 14% 10%, rgba(48, 161, 235, 0.2), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(15, 214, 173, 0.14), transparent 22%),
    radial-gradient(circle at 50% 65%, rgba(255, 170, 58, 0.08), transparent 32%),
    linear-gradient(160deg, #04070d 0%, #08131e 48%, #0d1b29 100%);
}

.page-home .topbar {
  background: rgba(5, 9, 16, 0.7);
  border-bottom-color: rgba(110, 214, 255, 0.16);
}

.home-main {
  width: min(1280px, 94vw);
  padding-top: 2rem;
}

.hero-home {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, 0.95fr);
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: 28px;
  border: 1px solid rgba(112, 214, 255, 0.18);
  background:
    linear-gradient(145deg, rgba(9, 20, 33, 0.92), rgba(6, 13, 22, 0.88)),
    radial-gradient(circle at top right, rgba(61, 166, 255, 0.2), transparent 35%);
  overflow: hidden;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(80, 196, 255, 0.04) 50%, transparent 100%);
  transform: translateX(-18%);
  pointer-events: none;
}

.hero-home > * {
  position: relative;
}

.signal-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
  margin: 0.4rem 0 0.8rem;
}

.signal-chip {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(110, 214, 255, 0.18);
  border-radius: 999px;
  padding: 0.34rem 0.68rem;
  color: #d8f4ff;
  background: rgba(14, 31, 49, 0.72);
  font-size: 0.83rem;
}

.hero-home h1 {
  max-width: 12.5ch;
  font-size: clamp(2.25rem, 4vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
  margin: 0.35rem 0 0.85rem;
}

.hero-copy .subtitle {
  max-width: 62ch;
  font-size: 1.02rem;
  line-height: 1.62;
}

.hero-proof {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.1rem;
}

.hero-proof div {
  border-left: 2px solid rgba(77, 205, 255, 0.34);
  padding-left: 0.85rem;
}

.hero-proof strong {
  display: block;
  font-size: 0.98rem;
}

.hero-proof span {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  line-height: 1.45;
}

.hero-showcase {
  display: grid;
  gap: 0.85rem;
  align-content: stretch;
}

.showcase-frame {
  border-radius: 24px;
  border: 1px solid rgba(114, 217, 255, 0.18);
  background: rgba(7, 16, 26, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.34);
}

.showcase-story,
.showcase-support {
  padding: 1.05rem;
}

.showcase-demo {
  padding: 1.05rem;
  display: grid;
  gap: 0.9rem;
}

.snapshot-proof,
.doc-video-card {
  margin-top: 1rem;
  padding: 1.05rem;
}

.snapshot-proof-grid,
.doc-video-grid {
  display: grid;
  gap: 1rem;
}

.snapshot-proof-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  align-items: center;
}

.doc-video-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  align-items: start;
}

.snapshot-proof-copy {
  display: grid;
  gap: 0.65rem;
}

.snapshot-proof-copy h3 {
  margin: 0;
  font-size: 1.2rem;
}

.snapshot-proof-copy p:not(.card-kicker) {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.demo-shell {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(110, 214, 255, 0.18);
  background:
    radial-gradient(circle at top right, rgba(98, 212, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(5, 11, 19, 0.98), rgba(8, 16, 28, 0.92));
  box-shadow: inset 0 1px 0 rgba(196, 241, 255, 0.08);
}

.demo-video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #03080f;
}

.demo-image {
  display: block;
  width: 100%;
  height: auto;
  background: #03080f;
}

.demo-shell-portrait {
  display: grid;
  place-items: center;
  padding: 1rem;
}

.demo-image-portrait {
  width: min(100%, 360px);
  border-radius: 18px;
  border: 1px solid rgba(110, 214, 255, 0.16);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
}

.demo-caption {
  display: grid;
  gap: 0.55rem;
}

.demo-caption h3 {
  margin: 0;
  font-size: 1.15rem;
}

.demo-caption p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.demo-signals {
  margin: 0.1rem 0 0;
}

.frame-head {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: center;
  margin-bottom: 0.8rem;
}

.frame-eyebrow,
.mini-kicker,
.card-kicker,
.band-kicker,
.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14rem;
  font-size: 0.74rem;
  color: #87dfff;
  margin: 0;
}

.frame-status {
  border: 1px solid rgba(110, 214, 255, 0.16);
  border-radius: 999px;
  padding: 0.28rem 0.6rem;
  color: #d8f5ff;
  background: rgba(16, 34, 53, 0.74);
  font-size: 0.8rem;
  white-space: nowrap;
}

.story-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.story-list article {
  border: 1px solid rgba(110, 214, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(17, 31, 48, 0.72), rgba(10, 20, 31, 0.9));
  padding: 0.95rem;
}

.story-list h3,
.showcase-support h3 {
  margin: 0.3rem 0 0.65rem;
  font-size: 1.18rem;
}

.story-list article > p:not(.mini-kicker),
.showcase-support > p:not(.mini-kicker),
.strength-card ul {
  color: var(--muted);
  line-height: 1.5;
}

.showcase-support h3 {
  margin-top: 0.35rem;
}

.showcase-support p {
  margin: 0.4rem 0 0;
}

.reasons-band {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1rem;
  align-items: stretch;
}

.reason-callout,
.strengths-section,
.surface-section {
  border: 1px solid rgba(110, 214, 255, 0.14);
  border-radius: 22px;
  background: rgba(8, 16, 27, 0.68);
  padding: 1.2rem;
}

.reason-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  min-height: 100%;
}

.reason-grid div {
  border: 1px solid rgba(110, 214, 255, 0.14);
  border-radius: 18px;
  padding: 0.95rem 1rem;
  background:
    linear-gradient(160deg, rgba(4, 14, 25, 0.94), rgba(8, 24, 38, 0.82));
}

.reason-grid strong {
  display: block;
  font-size: 1rem;
}

.reason-grid span {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  line-height: 1.5;
}

.section-heading {
  max-width: 66ch;
  margin-bottom: 1rem;
}

.section-heading h2 {
  margin: 0.24rem 0 0.5rem;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.03;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.strength-card .card-kicker,
.surface-grid .card-kicker,
.story-list .mini-kicker,
.showcase-support .mini-kicker,
.reason-callout .band-kicker,
.section-heading .section-kicker {
  color: #87dfff;
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.strength-grid-sales {
  align-items: stretch;
}

.strength-card {
  border: 1px solid rgba(110, 214, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(15, 29, 45, 0.72), rgba(8, 17, 28, 0.88));
  padding: 1rem;
}

.strength-card-wide {
  grid-column: span 2;
}

.strength-card h3 {
  margin: 0.25rem 0 0.58rem;
  font-size: 1.2rem;
}

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

.surface-section {
  padding-bottom: 1.3rem;
}

.surface-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.surface-grid-sales {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.surface-grid article {
  border: 1px solid rgba(110, 214, 255, 0.14);
  border-radius: 18px;
  padding: 1rem;
  background:
    radial-gradient(circle at top left, rgba(73, 197, 255, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(16, 29, 44, 0.82), rgba(7, 16, 26, 0.92));
}

.surface-grid h3 {
  margin: 0.25rem 0 0.55rem;
  font-size: 1.14rem;
}

.surface-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.52;
}

.quote-strip-home {
  border-left-width: 0;
  border: 1px solid rgba(110, 214, 255, 0.14);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(14, 38, 58, 0.78), rgba(7, 17, 27, 0.92));
  padding: 1rem 1.2rem;
  font-size: 1.15rem;
  line-height: 1.45;
}

.cta-home {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: end;
  border-radius: 26px;
}

.cta-home h2 {
  margin: 0.2rem 0 0.55rem;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
}

.cta-copy p:last-child {
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.js-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

@media (max-width: 1100px) {
  .hero-home,
  .reasons-band,
  .cta-home {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 980px) {
  .strength-grid,
  .story-list {
    grid-template-columns: 1fr;
  }

  .snapshot-proof-grid,
  .doc-video-grid {
    grid-template-columns: 1fr;
  }

  .strength-card-wide {
    grid-column: span 1;
  }
}

@media (max-width: 620px) {
  .home-main {
    width: min(100%, 94vw);
  }

  .hero-home,
  .reason-callout,
  .strengths-section,
  .surface-section,
  .quote-strip-home,
  .cta-home {
    padding: 1rem;
  }

  .hero-home h1 {
    max-width: none;
    font-size: clamp(2rem, 12vw, 3rem);
  }

  .surface-grid {
    grid-template-columns: 1fr;
  }

  .frame-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .showcase-demo,
  .showcase-support {
    padding: 0.95rem;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}
