@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/manrope-latin.woff2") format("woff2");
  font-weight: 300 900;
}

@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/manrope-cyrillic.woff2") format("woff2");
  font-weight: 300 900;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../assets/fonts/jetbrainsmono-latin.woff2") format("woff2");
  font-weight: 400 800;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("../assets/fonts/jetbrainsmono-cyrillic.woff2") format("woff2");
  font-weight: 400 800;
}

:root {
  color-scheme: dark;
  --bg: #010503;
  --paper: rgba(4, 18, 12, 0.78);
  --paper-strong: #07140d;
  --ink: #eafff2;
  --muted: #8fa99a;
  --soft: #06120c;
  --line: rgba(0, 255, 120, 0.18);
  --blue: #00ff88;
  --blue-ink: #80ffc0;
  --green: #00ff88;
  --green-ink: #afffd2;
  --amber: #d4ff66;
  --red: #ff4d6d;
  --violet: #45ffbc;
  --shadow: 0 28px 90px rgba(0, 255, 120, 0.16);
  --shadow-soft: 0 18px 52px rgba(0, 255, 120, 0.10);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    radial-gradient(circle at 18% 8%, rgba(0, 255, 120, 0.16), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(0, 255, 180, 0.10), transparent 30%),
    linear-gradient(90deg, rgba(0, 255, 120, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 255, 120, 0.026) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(0, 255, 120, 0.10), transparent 42%);
  background-size: 100% 4px, auto;
  mix-blend-mode: screen;
  opacity: 0.42;
}

body::after {
  content: "01001101 01101001 01101110 01100100  ·  LOCAL FIRST  ·  PRIVATE BY DESIGN  ·  OFFLINE WORKSPACE";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 18px;
  z-index: -1;
  color: rgba(0, 255, 120, 0.12);
  font: 800 11px "JetBrains Mono", monospace;
  letter-spacing: 0.18em;
  text-align: center;
  pointer-events: none;
}

body.modal-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 32px), 1160px);
  min-height: 64px;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(0, 255, 120, 0.20);
  border-radius: 28px;
  background: rgba(1, 10, 6, 0.76);
  box-shadow: 0 20px 70px rgba(0, 255, 120, 0.10), inset 0 1px 0 rgba(185, 255, 215, 0.10);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(1, 10, 6, 0.92);
  border-color: rgba(0, 255, 120, 0.28);
  box-shadow: 0 16px 52px rgba(0, 255, 120, 0.12), inset 0 1px 0 rgba(185, 255, 215, 0.12);
}

.brand,
.main-nav,
.header-actions,
.hero-actions,
.hero-stats,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.brand span {
  font-size: 20px;
  color: var(--ink);
  text-shadow: 0 0 18px rgba(0, 255, 120, 0.42);
}

.main-nav {
  gap: 6px;
  color: rgba(234, 255, 242, 0.70);
  font-size: 14px;
  font-weight: 760;
}

.main-nav a,
.header-cta {
  padding: 10px 13px;
  border-radius: 14px;
}

.main-nav a:hover {
  background: rgba(0, 255, 120, 0.10);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(0, 255, 120, 0.16);
}

.header-cta {
  background: rgba(0, 255, 120, 0.12);
  color: var(--green-ink);
  border: 1px solid rgba(0, 255, 120, 0.22);
  box-shadow: 0 0 28px rgba(0, 255, 120, 0.10);
  font-size: 14px;
  font-weight: 850;
}

.header-actions {
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  gap: 3px;
  padding: 4px;
  border: 1px solid rgba(0, 255, 120, 0.18);
  border-radius: 16px;
  background: rgba(0, 255, 120, 0.06);
}

.language-switch button {
  min-width: 36px;
  height: 30px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(234, 255, 242, 0.62);
  font: 900 12px "Manrope", Arial, sans-serif;
  cursor: pointer;
}

.language-switch button.active {
  background: rgba(0, 255, 120, 0.16);
  color: var(--green-ink);
  box-shadow: 0 0 22px rgba(0, 255, 120, 0.16);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 142px 24px 96px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 210px;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 255, 120, 0.18), transparent 32%),
    radial-gradient(circle at 50% 52%, rgba(0, 255, 120, 0.08), transparent 44%),
    linear-gradient(180deg, rgba(0, 12, 7, 0.98) 0%, rgba(0, 6, 3, 0.76) 58%, rgba(1, 5, 3, 0) 100%);
}

.hero-glow {
  position: absolute;
  z-index: -2;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  filter: blur(64px);
  opacity: 0.32;
}

.hero-glow-a {
  top: 110px;
  left: 9%;
  background: linear-gradient(135deg, rgba(0, 255, 120, 0.72), rgba(0, 255, 200, 0.34));
}

.hero-glow-b {
  top: 250px;
  right: 10%;
  background: linear-gradient(135deg, rgba(120, 255, 180, 0.36), rgba(0, 255, 120, 0.20));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  margin: 0 auto;
  text-align: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--green-ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.matrix-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(0, 255, 120, 0.22);
  border-radius: 999px;
  background: rgba(0, 255, 120, 0.07);
  box-shadow: 0 0 34px rgba(0, 255, 120, 0.12), inset 0 0 18px rgba(0, 255, 120, 0.04);
  font-family: "JetBrains Mono", monospace;
}

.matrix-eyebrow::before {
  content: "●";
  color: var(--green);
  text-shadow: 0 0 12px rgba(0, 255, 120, 0.85);
}

.hero h1 {
  margin: 0;
  font-size: clamp(82px, 16vw, 184px);
  line-height: 0.86;
  letter-spacing: -0.08em;
  color: #f2fff6;
  text-shadow: 0 0 28px rgba(0, 255, 120, 0.36), 0 0 86px rgba(0, 255, 120, 0.16);
}

.hero-lead {
  width: min(760px, 100%);
  margin: 28px auto 0;
  color: rgba(234, 255, 242, 0.84);
  font-size: clamp(20px, 3vw, 29px);
  font-weight: 620;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.hero-note {
  width: min(680px, 100%);
  margin: 18px auto 0;
  color: rgba(128, 255, 192, 0.82);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 760;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.hero-actions {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #00ff88, #8dffc2);
  color: #00180b;
  box-shadow: 0 0 34px rgba(0, 255, 120, 0.26), 0 18px 48px rgba(0, 255, 120, 0.12);
}

.button-secondary {
  background: rgba(0, 255, 120, 0.08);
  border-color: rgba(0, 255, 120, 0.24);
  color: var(--green-ink);
  box-shadow: var(--shadow-soft), inset 0 0 22px rgba(0, 255, 120, 0.04);
}

.button-ghost {
  background: rgba(2, 18, 10, 0.62);
  border-color: rgba(0, 255, 120, 0.16);
  color: rgba(234, 255, 242, 0.74);
}

.hero-stats {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 38px 0 0;
}

.hero-stats div {
  min-width: 148px;
  padding: 15px 18px;
  border: 1px solid rgba(0, 255, 120, 0.20);
  border-radius: 18px;
  background: rgba(2, 18, 10, 0.68);
  box-shadow: 0 14px 42px rgba(0, 255, 120, 0.08), inset 0 0 26px rgba(0, 255, 120, 0.035);
  backdrop-filter: blur(16px);
}

.hero-stats dt {
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
  color: var(--green-ink);
  font-family: "JetBrains Mono", monospace;
  text-shadow: 0 0 16px rgba(0, 255, 120, 0.30);
}

.hero-stats dd {
  margin: 6px 0 0;
  color: rgba(234, 255, 242, 0.66);
  font-size: 13px;
  font-weight: 750;
}

.hero-shot {
  display: block;
  width: min(1180px, 100%);
  margin: 56px auto 0;
  border: 1px solid rgba(0, 255, 120, 0.24);
  border-radius: 18px;
  box-shadow: 0 0 0 1px rgba(0, 255, 120, 0.08), 0 34px 120px rgba(0, 255, 120, 0.16);
  filter: saturate(0.88) contrast(1.08) brightness(0.78);
}

.hero-showcase {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: min(1240px, calc(100% - 24px));
  margin: 58px auto 0;
  padding: 0;
  border: 1px solid rgba(161, 255, 205, 0.24);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(161, 255, 205, 0.36), rgba(0, 255, 120, 0.08) 36%, rgba(255, 94, 165, 0.18)),
    rgba(0, 255, 120, 0.10);
  box-shadow: 0 42px 150px rgba(0, 255, 120, 0.18), 0 0 0 1px rgba(0, 255, 120, 0.08);
}

.hero-showcase-bar {
  display: flex;
  align-items: center;
  min-height: 34px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(0, 255, 120, 0.14);
  background: rgba(3, 17, 10, 0.92);
}

.hero-showcase-dots {
  display: flex;
  gap: 6px;
}

.hero-showcase-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(128, 255, 192, 0.34);
  box-shadow: 0 0 12px rgba(0, 255, 120, 0.12);
}

.hero-showcase-dots i:nth-child(1) { background: #ff668a; }
.hero-showcase-dots i:nth-child(2) { background: #ffd166; }
.hero-showcase-dots i:nth-child(3) { background: #22df84; }

.hero-media-viewport {
  position: relative;
  overflow: hidden;
  background: #000804;
}

.hero-media-viewport::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 30%, rgba(185, 255, 215, 0.055) 49%, transparent 68%);
  transform: translateX(-110%);
  animation: heroMediaSweep 9s ease-in-out infinite;
}

.hero-showcase::before {
  content: "";
  position: absolute;
  inset: -80px 8% auto;
  height: 180px;
  z-index: -1;
  background: radial-gradient(circle, rgba(255, 92, 170, 0.18), transparent 70%);
  filter: blur(36px);
}

.mind-hero-media {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 0 0 29px 29px;
  background: #000804;
  box-shadow: inset 0 1px 0 rgba(230, 255, 240, 0.12);
  transform: scale(1.001);
  animation: heroMediaBreathe 10s ease-in-out infinite;
}

@keyframes heroMediaSweep {
  0%, 58% { transform: translateX(-110%); opacity: 0; }
  64% { opacity: 1; }
  84%, 100% { transform: translateX(110%); opacity: 0; }
}

@keyframes heroMediaBreathe {
  0%, 100% { transform: scale(1.001); }
  50% { transform: scale(1.006); }
}

.mind-window {
  overflow: hidden;
  border: 1px solid rgba(194, 255, 220, 0.14);
  border-radius: 29px;
  background:
    linear-gradient(180deg, rgba(8, 30, 19, 0.94), rgba(0, 8, 5, 0.98)),
    #020805;
  box-shadow: inset 0 1px 0 rgba(230, 255, 240, 0.12);
}

.mind-window-bar {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(0, 255, 120, 0.14);
  background: rgba(4, 20, 12, 0.78);
}

.mind-window-controls {
  display: flex;
  gap: 8px;
}

.mind-window-controls span {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(128, 255, 192, 0.42);
  box-shadow: 0 0 18px rgba(0, 255, 120, 0.14);
}

.mind-window-controls span:nth-child(1) { background: #ff5f8f; }
.mind-window-controls span:nth-child(2) { background: #ffd166; }
.mind-window-controls span:nth-child(3) { background: #00ff88; }

.mind-window-title,
.mind-window-status {
  color: rgba(234, 255, 242, 0.62);
  font: 850 12px "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mind-window-title {
  justify-self: center;
}

.mind-window-status {
  color: rgba(128, 255, 192, 0.76);
}

.mind-home-screen {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  min-height: 820px;
}

.mind-sidebar {
  position: relative;
  overflow: hidden;
  border-right: 1px solid rgba(0, 255, 120, 0.13);
  background:
    radial-gradient(circle at 50% 100%, rgba(0, 255, 120, 0.10), transparent 42%),
    linear-gradient(180deg, rgba(0, 20, 10, 0.94), rgba(0, 10, 5, 0.98));
}

.mind-sidebar-inner {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px 18px 20px;
}

.mind-search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(0, 255, 136, 0.28);
  border-radius: 17px;
  background: rgba(0, 28, 14, 0.62);
  color: rgba(185, 255, 213, 0.82);
  font: 850 13px "JetBrains Mono", monospace;
  letter-spacing: 0.02em;
  box-shadow: inset 0 1px 0 rgba(213, 255, 232, 0.08), 0 0 36px rgba(0, 255, 120, 0.07);
}

.mind-search-icon {
  position: relative;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  border: 3px solid rgba(126, 255, 196, 0.82);
  border-radius: 999px;
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.18);
}

.mind-search-icon::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -5px;
  width: 10px;
  height: 3px;
  border-radius: 999px;
  background: rgba(126, 255, 196, 0.82);
  transform: rotate(45deg);
  transform-origin: left center;
}

.mind-sidebar-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 30px;
}

.mind-sidebar-actions button,
.mind-sidebar-tools span {
  border: 1px solid rgba(0, 255, 136, 0.24);
  background: rgba(0, 38, 18, 0.62);
  color: rgba(207, 255, 226, 0.86);
  box-shadow: inset 0 1px 0 rgba(230, 255, 240, 0.09), 0 18px 48px rgba(0, 255, 120, 0.06);
}

.mind-sidebar-actions button {
  height: 42px;
  border-radius: 14px;
  font: 850 11px "JetBrains Mono", monospace;
  letter-spacing: 0.04em;
}

.mind-tree-label {
  margin-bottom: 14px;
  color: rgba(126, 255, 196, 0.68);
  font: 900 12px "JetBrains Mono", monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mind-tree {
  display: grid;
  gap: 13px;
  min-height: 0;
}

.mind-tree-group {
  color: rgba(201, 255, 222, 0.73);
  font: 800 12px "JetBrains Mono", monospace;
}

.mind-tree-group-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(0, 255, 136, 0.20);
  border-radius: 13px;
  background: rgba(0, 48, 21, 0.54);
}

.mind-tree-group:not(.is-open) .mind-tree-group-head {
  border-color: transparent;
  background: transparent;
}

.mind-tree-caret,
.mind-tree-group-head em {
  color: rgba(126, 255, 196, 0.72);
  font-style: normal;
}

.mind-tree-group p {
  margin: 11px 0 0 34px;
  color: rgba(195, 255, 218, 0.66);
}

.mind-tree-group p::before {
  content: "-";
  margin-right: 12px;
  color: rgba(0, 255, 136, 0.54);
}

.mind-sidebar-tools {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 22px;
}

.mind-sidebar-tools span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  font-size: 15px;
}

.mind-sidebar-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.mind-animated-area {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 48%, rgba(0, 255, 120, 0.15), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(255, 75, 150, 0.13), transparent 20%),
    linear-gradient(180deg, rgba(0, 22, 12, 0.72), rgba(0, 8, 5, 0.94));
}

.mind-grid-lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 255, 120, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 255, 120, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 50%, #000 36%, transparent 76%);
  animation: mindGridDrift 18s linear infinite;
}

.mind-scene-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    repeating-linear-gradient(90deg, rgba(0, 255, 120, 0.035) 0 1px, transparent 1px 6px),
    radial-gradient(circle at 50% 50%, transparent 0 28%, rgba(0, 255, 120, 0.06) 29%, transparent 31%);
  opacity: 0.28;
  mix-blend-mode: screen;
}

.mind-scene-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 7px;
  max-width: 246px;
  padding: 14px 18px;
  border: 1px solid rgba(0, 255, 136, 0.24);
  border-radius: 999px;
  background: rgba(2, 22, 12, 0.78);
  box-shadow: 0 24px 78px rgba(0, 255, 120, 0.12), inset 0 1px 0 rgba(220, 255, 236, 0.10);
  backdrop-filter: blur(18px);
  animation: mindBadgeDrift 6.4s ease-in-out infinite;
}

.mind-scene-card span {
  color: rgba(0, 255, 136, 0.82);
  font: 900 9px "JetBrains Mono", monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mind-scene-card strong {
  color: rgba(236, 255, 244, 0.86);
  font: 900 14px/1.2 "JetBrains Mono", monospace;
}

.mind-scene-card-a {
  left: 8%;
  top: 12%;
}

.mind-scene-card-b {
  right: 10%;
  top: 15%;
  animation-delay: -1.2s;
}

.mind-scene-card-c {
  left: 9%;
  bottom: 16%;
  animation-delay: -2.5s;
}

.mind-scene-card-d {
  right: 8%;
  bottom: 18%;
  animation-delay: -3.7s;
}

.mind-pulse-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 238px;
  height: 238px;
  border: 1px solid rgba(255, 126, 187, 0.30);
  border-radius: 999px;
  background:
    radial-gradient(circle at 42% 30%, rgba(255, 255, 255, 0.20), transparent 24%),
    radial-gradient(circle at 50% 58%, rgba(255, 74, 180, 0.44), rgba(118, 46, 108, 0.42) 48%, rgba(255, 84, 180, 0.16) 76%, transparent 100%);
  box-shadow:
    0 0 0 52px rgba(255, 64, 160, 0.055),
    0 0 118px rgba(255, 72, 156, 0.40),
    0 0 160px rgba(0, 255, 120, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    inset 0 -34px 74px rgba(62, 10, 44, 0.35);
  transform: translate(-50%, -50%);
  animation: mindCoreBreathe 5.8s ease-in-out infinite;
}

.mind-core-ring {
  position: absolute;
  inset: -42px;
  border: 1px solid rgba(255, 126, 187, 0.18);
  border-radius: inherit;
  opacity: 0.74;
}

.mind-core-ring-b {
  inset: -78px;
  border-color: rgba(0, 255, 136, 0.12);
  opacity: 0.52;
}

.mind-core-orb {
  display: grid;
  place-items: center;
  width: 142px;
  height: 142px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 48% 36%, rgba(255, 255, 255, 0.12), transparent 34%),
    radial-gradient(circle at 50% 50%, rgba(255, 112, 199, 0.22), transparent 68%);
  filter:
    drop-shadow(0 18px 16px rgba(30, 10, 24, 0.30))
    drop-shadow(0 0 18px rgba(255, 120, 204, 0.30));
}

.mind-core-logo {
  display: block;
  width: 122px;
  height: 122px;
  overflow: visible;
}

.mind-core-logo-mark {
  paint-order: stroke;
}

.mind-core-caption {
  position: absolute;
  top: 260px;
  left: 50%;
  width: 220px;
  text-align: center;
  transform: translateX(-50%);
}

.mind-core-caption strong {
  display: block;
  font-family: "JetBrains Mono", monospace;
}

.mind-core-caption strong {
  color: rgba(255, 245, 248, 0.92);
  font-size: 18px;
  letter-spacing: 0.02em;
}

.mind-connection-lines {
  position: absolute;
  inset: 74px 34px;
  z-index: 1;
  width: calc(100% - 68px);
  height: calc(100% - 148px);
  overflow: visible;
}

.mind-connection-lines path {
  fill: none;
  stroke: rgba(0, 255, 136, 0.34);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 8 12;
  filter: drop-shadow(0 0 10px rgba(0, 255, 120, 0.24));
  animation: mindLineFlow 4.8s linear infinite;
}

.mind-floating-card {
  position: absolute;
  z-index: 2;
  width: 218px;
  min-height: 122px;
  padding: 15px;
  border: 1px solid rgba(0, 255, 120, 0.23);
  border-radius: 20px;
  background: rgba(4, 18, 12, 0.84);
  box-shadow: 0 24px 70px rgba(0, 255, 120, 0.10), inset 0 1px 0 rgba(210, 255, 228, 0.10);
  backdrop-filter: blur(18px);
  animation: mindCardFloat 6s ease-in-out infinite;
}

.mind-floating-card span {
  display: block;
  margin-bottom: 7px;
  color: rgba(128, 255, 192, 0.78);
  font: 900 11px "JetBrains Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mind-floating-card strong {
  display: block;
  color: rgba(242, 255, 246, 0.92);
  font-size: 14px;
  line-height: 1.18;
}

.mind-floating-card p {
  margin: 9px 0 0;
  color: rgba(234, 255, 242, 0.58);
  font-size: 11.5px;
  font-weight: 720;
  line-height: 1.32;
}

.mind-floating-card-text {
  left: 5%;
  top: 7%;
}

.mind-floating-card-map {
  right: 4%;
  top: 7%;
  animation-delay: -1.1s;
}

.mind-floating-card-table {
  left: 36%;
  top: 5%;
  animation-delay: -0.6s;
}

.mind-floating-card-bpmn {
  right: 3%;
  top: 36%;
  animation-delay: -1.6s;
}

.mind-floating-card-bi {
  right: 3%;
  bottom: 2%;
  animation-delay: -2.1s;
}

.mind-floating-card-audio {
  left: 5%;
  bottom: 7%;
  animation-delay: -3.1s;
}

.mind-floating-card-export {
  left: 36%;
  bottom: 4%;
  animation-delay: -2.7s;
}

.mind-mini-map {
  position: relative;
  height: 86px;
  margin-top: 13px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 120, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(0, 255, 120, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 255, 120, 0.045) 1px, transparent 1px),
    rgba(0, 255, 120, 0.035);
  background-size: 18px 18px;
}

.mind-mini-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mind-mini-map path {
  fill: none;
  stroke-linecap: round;
}

.mind-mini-map marker path,
.mind-mini-bpmn marker path {
  fill: rgba(128, 255, 192, 0.72);
}

.mind-mini-map .map-link,
.mind-mini-map .map-split {
  stroke: rgba(128, 255, 192, 0.52);
  stroke-width: 1.8;
  marker-end: url(#mindMapArrow);
}

.mind-mini-map .graph-link {
  stroke: rgba(0, 255, 120, 0.34);
  stroke-width: 1.6;
  stroke-dasharray: 4 4;
}

.mind-mini-map .map-node,
.mind-mini-map .graph-node {
  fill: rgba(3, 22, 12, 0.96);
  stroke: rgba(128, 255, 192, 0.58);
  stroke-width: 1.6;
}

.mind-mini-map .map-root,
.mind-mini-map .graph-node-accent {
  fill: rgba(0, 255, 120, 0.13);
}

.mind-mini-map .graph-edge {
  stroke: rgba(0, 255, 120, 0.40);
  stroke-width: 1.6;
}

.mind-mini-gantt {
  display: grid;
  gap: 6px;
  margin-top: 13px;
  padding: 10px;
  border: 1px solid rgba(128, 255, 192, 0.52);
  border-radius: 14px;
  background:
    linear-gradient(90deg, transparent 0 22%, rgba(128, 255, 192, 0.12) 22% 23%, transparent 23% 45%, rgba(128, 255, 192, 0.12) 45% 46%, transparent 46% 68%, rgba(128, 255, 192, 0.12) 68% 69%, transparent 69%),
    rgba(0, 255, 120, 0.035);
}

.mind-mini-gantt div {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  min-height: 14px;
}

.mind-mini-gantt span {
  margin: 0;
  color: rgba(188, 255, 215, 0.68);
  font: 850 8px "JetBrains Mono", monospace;
  letter-spacing: 0.02em;
  text-transform: none;
}

.mind-mini-gantt i {
  position: absolute;
  left: calc(44px + var(--start));
  width: var(--size);
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 255, 120, 0.72), rgba(128, 255, 192, 0.38));
  box-shadow: 0 0 14px rgba(0, 255, 120, 0.18);
}

.mind-mini-bpmn {
  position: relative;
  height: 88px;
  margin-top: 13px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 120, 0.12);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(0, 255, 120, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 255, 120, 0.035) 1px, transparent 1px),
    rgba(0, 255, 120, 0.032);
  background-size: 19px 18px;
}

.mind-mini-bpmn svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mind-mini-bpmn .lane-line {
  stroke: rgba(128, 255, 192, 0.16);
  stroke-width: 1;
}

.mind-mini-bpmn .lane-label {
  fill: rgba(128, 255, 192, 0.44);
  font: 900 8px "JetBrains Mono", monospace;
}

.mind-mini-bpmn .flow-line {
  stroke: rgba(128, 255, 192, 0.55);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  marker-end: url(#bpmnArrow);
}

.mind-mini-bpmn .bpmn-event,
.mind-mini-bpmn .bpmn-task {
  fill: rgba(3, 22, 12, 0.96);
  stroke: rgba(128, 255, 192, 0.58);
  stroke-width: 1.6;
}

.mind-mini-bpmn .bpmn-task {
  fill: rgba(0, 255, 120, 0.10);
}

.mind-bars {
  display: flex;
  align-items: end;
  gap: 9px;
  height: 48px;
  margin-top: 14px;
}

.mind-bars i {
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.70), rgba(0, 255, 136, 0.14));
}

.mind-bars i:nth-child(1) { height: 42%; }
.mind-bars i:nth-child(2) { height: 72%; }
.mind-bars i:nth-child(3) { height: 54%; }
.mind-bars i:nth-child(4) { height: 88%; }

.mind-wave {
  display: flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  margin-top: 14px;
}

.mind-wave i {
  width: 6px;
  border-radius: 999px;
  background: rgba(128, 255, 192, 0.72);
  animation: mindWave 1.1s ease-in-out infinite;
}

.mind-wave i:nth-child(1) { height: 18px; }
.mind-wave i:nth-child(2) { height: 32px; animation-delay: -0.2s; }
.mind-wave i:nth-child(3) { height: 24px; animation-delay: -0.35s; }
.mind-wave i:nth-child(4) { height: 36px; animation-delay: -0.5s; }
.mind-wave i:nth-child(5) { height: 20px; animation-delay: -0.65s; }

.mind-project-panel {
  padding: 24px;
  border-left: 1px solid rgba(0, 255, 120, 0.13);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 255, 120, 0.10), transparent 38%),
    rgba(1, 12, 7, 0.86);
}

.mind-project-panel-head {
  margin-bottom: 18px;
}

.mind-project-panel-head span {
  display: block;
  margin-bottom: 8px;
  color: rgba(128, 255, 192, 0.70);
  font: 900 11px "JetBrains Mono", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mind-project-panel-head strong {
  color: rgba(242, 255, 246, 0.92);
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.mind-project-list {
  display: grid;
  gap: 12px;
}

.mind-project-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 16px;
  border: 1px solid rgba(0, 255, 120, 0.14);
  border-radius: 18px;
  background: rgba(0, 255, 120, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.mind-project-card:hover,
.mind-project-card.active {
  transform: translateY(-2px);
  border-color: rgba(0, 255, 120, 0.34);
  background: rgba(0, 255, 120, 0.10);
  box-shadow: 0 18px 42px rgba(0, 255, 120, 0.10);
}

.mind-project-card span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 255, 120, 0.24);
  border-radius: 12px;
  color: var(--green-ink);
  background: rgba(0, 255, 120, 0.08);
  font: 900 12px "JetBrains Mono", monospace;
}

.mind-project-card strong {
  display: block;
  color: rgba(242, 255, 246, 0.92);
  font-size: 15px;
  line-height: 1.2;
}

.mind-project-card p {
  margin: 6px 0 0;
  color: rgba(234, 255, 242, 0.54);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
}

@keyframes mindGridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 76px 38px, 38px 76px; }
}

@keyframes mindCorePulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.06); }
}

@keyframes mindCoreBreathe {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 0 52px rgba(255, 64, 160, 0.055),
      0 0 118px rgba(255, 72, 156, 0.40),
      0 0 160px rgba(0, 255, 120, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.24),
      inset 0 -34px 74px rgba(62, 10, 44, 0.35);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.025);
    box-shadow:
      0 0 0 62px rgba(255, 64, 160, 0.065),
      0 0 148px rgba(255, 72, 156, 0.48),
      0 0 182px rgba(0, 255, 120, 0.16),
      inset 0 1px 0 rgba(255, 255, 255, 0.30),
      inset 0 -30px 82px rgba(62, 10, 44, 0.30);
  }
}

@keyframes mindLineFlow {
  from { stroke-dashoffset: 0; }
  to { stroke-dashoffset: -40; }
}

@keyframes mindCardFloat {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes mindBadgeDrift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes mindWave {
  0%, 100% { transform: scaleY(0.72); opacity: 0.56; }
  50% { transform: scaleY(1.08); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .mind-grid-lines,
  .mind-pulse-core,
  .mind-connection-lines path,
  .mind-scene-card,
  .mind-floating-card,
  .mind-wave i {
    animation: none;
  }
}

.matrix-rain {
  position: absolute;
  inset: 92px 0 auto 0;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 18px;
  width: min(1180px, calc(100% - 40px));
  height: 520px;
  margin: 0 auto;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.28;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 72%, transparent);
}

.matrix-rain span {
  writing-mode: vertical-rl;
  color: rgba(0, 255, 120, 0.88);
  font: 800 13px "JetBrains Mono", monospace;
  letter-spacing: 0.12em;
  text-shadow: 0 0 14px rgba(0, 255, 120, 0.7);
  animation: matrixDrop 8s linear infinite;
}

.matrix-rain span:nth-child(2n) { animation-duration: 11s; opacity: 0.62; }
.matrix-rain span:nth-child(3n) { animation-duration: 7s; opacity: 0.86; }
.matrix-rain span:nth-child(4n) { animation-delay: -3s; }

@keyframes matrixDrop {
  from { transform: translateY(-120%); }
  to { transform: translateY(120%); }
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.hero-capabilities {
  padding-top: 74px;
}

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

.hero-capability-grid article {
  min-height: 224px;
  padding: 26px;
  border: 1px solid rgba(0, 255, 120, 0.16);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(6, 22, 14, 0.84), rgba(1, 9, 5, 0.70)),
    #020805;
  box-shadow: 0 14px 42px rgba(0, 255, 120, 0.07), inset 0 1px 0 rgba(185, 255, 215, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-capability-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 120, 0.34);
  box-shadow: 0 22px 64px rgba(0, 255, 120, 0.13), inset 0 0 28px rgba(0, 255, 120, 0.04);
}

.hero-capability-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(0, 255, 120, 0.16);
  border-radius: 999px;
  background: rgba(0, 255, 120, 0.09);
  color: var(--green-ink);
  font: 900 11px "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-capability-grid strong {
  display: block;
  margin-bottom: 12px;
  color: rgba(242, 255, 246, 0.94);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.hero-capability-grid p {
  margin: 0;
  color: rgba(234, 255, 242, 0.62);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.55;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 42px;
}

.section-heading h2,
.story-copy h2,
.local-copy h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.section-heading p:last-child,
.story-copy p,
.local-copy p,
.cta-panel p {
  color: rgba(234, 255, 242, 0.66);
  font-size: 19px;
  line-height: 1.62;
}

.feature-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: -12px 0 34px;
}

.feature-pillars article {
  position: relative;
  min-height: 168px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 120, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 16%, rgba(0, 255, 136, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(6, 22, 14, 0.88), rgba(1, 9, 5, 0.72));
  box-shadow: 0 16px 48px rgba(0, 255, 120, 0.08), inset 0 1px 0 rgba(185, 255, 215, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-pillars article::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -42px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(0, 255, 120, 0.12);
  border-radius: 999px;
  background: rgba(0, 255, 120, 0.035);
}

.feature-pillars article:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 120, 0.36);
  box-shadow: 0 24px 70px rgba(0, 255, 120, 0.13), inset 0 0 28px rgba(0, 255, 120, 0.045);
}

.feature-pillars span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  border: 1px solid rgba(0, 255, 120, 0.22);
  border-radius: 12px;
  color: var(--green-ink);
  background: rgba(0, 255, 120, 0.08);
  font: 950 12px "JetBrains Mono", monospace;
}

.feature-pillars strong {
  display: block;
  margin-bottom: 10px;
  color: rgba(242, 255, 246, 0.94);
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.feature-pillars p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(234, 255, 242, 0.64);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.46;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 32px;
  align-items: stretch;
}

.story-copy,
.principles,
.local-first,
.demo-shell,
.table-wrap,
.cta-panel {
  border: 1px solid rgba(0, 255, 120, 0.18);
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(6, 22, 14, 0.88), rgba(1, 9, 5, 0.72));
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(185, 255, 215, 0.08);
  backdrop-filter: blur(20px);
}

.why-grid,
.output-grid,
.gallery-grid,
.roadmap-track,
.faq-list {
  display: grid;
  gap: 18px;
}

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

.why-card,
.output-card,
.gallery-card,
.roadmap-card,
.faq-list details {
  border: 1px solid rgba(0, 255, 120, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(6, 22, 14, 0.84), rgba(1, 9, 5, 0.70));
  box-shadow: 0 14px 42px rgba(0, 255, 120, 0.07), inset 0 1px 0 rgba(185, 255, 215, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.why-card:hover,
.output-card:hover,
.gallery-card:hover,
.roadmap-card:hover,
.faq-list details:hover,
.feature-card:hover,
.workflow-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 120, 0.36);
  box-shadow: 0 22px 64px rgba(0, 255, 120, 0.14), inset 0 0 28px rgba(0, 255, 120, 0.04);
}

.why-card {
  min-height: 254px;
  padding: 30px;
  background:
    linear-gradient(145deg, rgba(7, 28, 17, 0.92), rgba(1, 9, 5, 0.78)),
    #020805;
}

.why-card span,
.roadmap-card span {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(0, 255, 120, 0.09);
  color: var(--green-ink);
  border: 1px solid rgba(0, 255, 120, 0.16);
  font: 900 12px "JetBrains Mono", monospace;
  letter-spacing: 0.04em;
}

.why-card h3,
.output-card strong,
.roadmap-card h3 {
  margin: 0 0 10px;
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.why-card p,
.output-card span,
.roadmap-card p {
  margin: 0;
  color: rgba(234, 255, 242, 0.64);
  line-height: 1.56;
}

.story-copy {
  padding: 42px;
}

.story-copy p {
  margin: 26px 0 0;
}

.principles {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.principles article {
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(0, 255, 120, 0.07), rgba(1, 12, 7, 0.62));
  border: 1px solid rgba(0, 255, 120, 0.15);
}

.principles span,
.timeline span {
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.principles h3,
.feature-card h3,
.workflow-card h3,
.demo-panel h3,
.timeline h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.principles p,
.feature-card p,
.workflow-card p,
.demo-panel p,
.timeline p {
  margin: 0;
  color: rgba(234, 255, 242, 0.64);
  line-height: 1.55;
}

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

.feature-grid-visual {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card,
.workflow-card,
.timeline article {
  border: 1px solid rgba(0, 255, 120, 0.16);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(6, 22, 14, 0.84), rgba(1, 9, 5, 0.70));
  box-shadow: 0 12px 38px rgba(0, 255, 120, 0.07), inset 0 1px 0 rgba(185, 255, 215, 0.06);
}

.feature-card {
  min-height: 308px;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card-wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(220px, 1fr);
  gap: 22px;
  align-items: stretch;
}

.feature-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
}

.feature-shot {
  position: relative;
  min-height: 224px;
  overflow: hidden;
  border: 1px solid rgba(126, 149, 179, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(126,149,179,.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(126,149,179,.07) 1px, transparent 1px),
    linear-gradient(145deg, #f8fbff, #eef5ff);
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 18px 44px rgba(35, 54, 86, 0.08);
}

.shot-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(126, 149, 179, 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.shot-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d4e1f2;
}

.shot-toolbar b {
  margin-left: 8px;
  color: #25364c;
  font-size: 12px;
}

.shot-lines {
  padding: 24px 22px 0;
}

.shot-lines i,
.shot-lines em {
  display: block;
  height: 10px;
  margin: 0 0 14px;
  border-radius: 10px;
  background: #dce8f7;
}

.shot-lines i:nth-child(1) { width: 42%; height: 16px; background: #23364f; }
.shot-lines i:nth-child(2) { width: 88%; }
.shot-lines i:nth-child(3) { width: 72%; }
.shot-lines em { width: 54%; background: #c9f2df; }

.shot-table {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid #cfdff2;
  border-radius: 14px;
  background: #cfdff2;
}

.shot-table span {
  height: 28px;
  background: rgba(255, 255, 255, 0.92);
}

.shot-node {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  height: 42px;
  padding: 0 12px;
  border-radius: 16px;
  border: 1px solid #c8dbf1;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 22px rgba(35, 54, 86, 0.10);
  color: #26384e;
  font-size: 13px;
  font-weight: 900;
}

.shot-node.root {
  left: 24px;
  top: 90px;
  background: linear-gradient(135deg, #2f7dff, #7aaeff);
  color: #fff;
}

.shot-node.a { right: 36px; top: 38px; }
.shot-node.b { right: 22px; top: 96px; }
.shot-node.c { right: 56px; bottom: 36px; }

.shot-edge {
  position: absolute;
  left: 108px;
  width: 128px;
  height: 3px;
  border-radius: 2px;
  background: #9bb4d2;
  transform-origin: left center;
}

.shot-edge.e1 { top: 104px; transform: rotate(-24deg); }
.shot-edge.e2 { top: 112px; transform: rotate(0deg); }
.shot-edge.e3 { top: 120px; transform: rotate(24deg); }

.db-head,
.db-row {
  display: grid;
  grid-template-columns: .9fr 1fr .7fr;
  gap: 1px;
  margin: 0 18px;
  background: #d2e1f2;
  border-radius: 14px;
  overflow: hidden;
}

.db-head {
  margin-top: 28px;
}

.db-head span,
.db-row span,
.db-row b {
  min-height: 34px;
  padding: 10px;
  background: rgba(255,255,255,.9);
}

.db-head span {
  color: #52667d;
  font-size: 11px;
  font-weight: 900;
}

.db-row {
  margin-top: 8px;
}

.db-row span::before,
.db-row b::before {
  content: "";
  display: block;
  width: 70%;
  height: 9px;
  margin-top: 3px;
  border-radius: 10px;
  background: #dce8f7;
}

.db-row b::before {
  width: 42%;
  background: #16c784;
}

.gantt-pill {
  position: absolute;
  right: 24px;
  bottom: 28px;
  width: 118px;
  height: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, #16c784, #44d6a1);
  box-shadow: 0 12px 26px rgba(22,199,132,.25);
}

.shot-bpmn .pool {
  position: absolute;
  inset: 34px 20px;
  border: 1px solid #cfdff2;
  border-radius: 22px;
  background: rgba(255,255,255,.46);
}

.shot-bpmn .task {
  position: absolute;
  width: 76px;
  height: 44px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #cfdff2;
}

.shot-bpmn .t1 { left: 46px; top: 91px; }
.shot-bpmn .t2 { right: 38px; top: 91px; }
.gateway {
  position: absolute;
  left: calc(50% - 22px);
  top: 94px;
  width: 44px;
  height: 44px;
  transform: rotate(45deg);
  border-radius: 10px;
  background: #fff7e8;
  border: 1px solid #ffd998;
}

.flow {
  position: absolute;
  top: 112px;
  width: 70px;
  height: 3px;
  background: #9bb4d2;
}

.flow.f1 { left: 124px; }
.flow.f2 { right: 114px; }

.shot-bi {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  padding: 60px 20px 28px;
}

.shot-bi .metric {
  position: absolute;
  top: 22px;
  left: 22px;
  padding: 9px 12px;
  border-radius: 14px;
  background: #111827;
  color: #fff;
  font-weight: 950;
}

.shot-bi i {
  width: 30px;
  border-radius: 14px 14px 7px 7px;
  background: linear-gradient(180deg, #16c784, #2f7dff);
}

.shot-bi i:nth-child(2) { height: 74px; }
.shot-bi i:nth-child(3) { height: 122px; }
.shot-bi i:nth-child(4) { height: 96px; }
.shot-bi i:nth-child(5) { height: 150px; }
.shot-bi i:nth-child(6) { height: 112px; }

.wave {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 12px;
  border-radius: 22px;
  background: #0d1726;
}

.wave span {
  width: 8px;
  border-radius: 999px;
  background: #75b8ff;
}

.wave span:nth-child(1) { height: 34px; }
.wave span:nth-child(2) { height: 62px; }
.wave span:nth-child(3) { height: 42px; }
.wave span:nth-child(4) { height: 70px; }
.wave span:nth-child(5) { height: 48px; }
.wave span:nth-child(6) { height: 58px; }

.shot-media .time {
  position: absolute;
  left: 24px;
  bottom: 62px;
  padding: 8px 10px;
  border-radius: 999px;
  background: #e9fbf3;
  color: #0c7754;
  font: 800 12px "JetBrains Mono", monospace;
}

.shot-media p {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  margin: 0;
  color: #52667d;
  font-size: 13px;
  font-weight: 800;
}

.shot-board span,
.shot-board b {
  position: absolute;
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  border: 1px solid #cfdff2;
  box-shadow: 0 12px 22px rgba(35,54,86,.08);
}

.shot-board span:nth-child(1) { left: 28px; top: 34px; width: 94px; height: 70px; background: #fff7df; }
.shot-board span:nth-child(2) { right: 28px; top: 44px; width: 82px; height: 82px; border-radius: 50%; }
.shot-board span:nth-child(3) { left: 62px; bottom: 34px; width: 120px; height: 56px; background: #ebf3ff; }
.shot-board b { right: 42px; bottom: 44px; width: 78px; height: 54px; transform: rotate(45deg); background: #ecfdf5; }

.shot-graph .g {
  position: absolute;
  z-index: 2;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #cfdff2;
  box-shadow: 0 12px 22px rgba(35,54,86,.08);
}

.shot-graph .g1 { left: 38px; top: 50px; background: #ebf3ff; }
.shot-graph .g2 { right: 48px; top: 44px; background: #ecfdf5; }
.shot-graph .g3 { left: 74px; bottom: 42px; background: #fff7e8; }
.shot-graph .g4 { right: 82px; bottom: 50px; background: #f0edff; }

.shot-graph i {
  position: absolute;
  left: 88px;
  top: 88px;
  width: 128px;
  height: 3px;
  background: #9bb4d2;
  transform-origin: left center;
}

.shot-graph i:nth-of-type(1) { transform: rotate(-14deg); }
.shot-graph i:nth-of-type(2) { top: 112px; transform: rotate(36deg); }
.shot-graph i:nth-of-type(3) { top: 150px; left: 122px; transform: rotate(-24deg); }

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 38px;
  padding: 0 12px;
  border-radius: 15px;
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  font-weight: 900;
}

.icon-blue,
.icon-green,
.icon-amber,
.icon-violet,
.icon-red,
.icon-slate {
  background: rgba(0, 255, 120, 0.09);
  color: var(--green-ink);
  border: 1px solid rgba(0, 255, 120, 0.17);
  box-shadow: inset 0 0 18px rgba(0, 255, 120, 0.04);
}

.feature-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.feature-card li {
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 255, 120, 0.075);
  color: rgba(234, 255, 242, 0.72);
  border: 1px solid rgba(0, 255, 120, 0.12);
  font-size: 12px;
  font-weight: 800;
}

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

.output-card {
  display: grid;
  align-content: start;
  min-height: 178px;
  padding: 24px;
}

.output-card::before {
  content: "";
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(47,125,255,.95), rgba(22,199,132,.9));
  box-shadow: 0 14px 30px rgba(47,125,255,.18);
}

.demo-section {
  width: min(1260px, calc(100% - 40px));
}

.demo-shell {
  overflow: hidden;
}

.demo-tabs {
  display: flex;
  gap: 8px;
  padding: 16px;
  border-bottom: 1px solid rgba(126, 149, 179, 0.18);
}

.demo-tabs button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(126, 149, 179, 0.20);
  border-radius: 15px;
  background: #f6f9fe;
  color: #52667d;
  font: 850 14px "Manrope", Arial, sans-serif;
  cursor: pointer;
}

.demo-tabs button.active {
  background: #111827;
  color: #fff;
}

.demo-stage {
  min-height: 420px;
  padding: 28px;
}

.demo-panel {
  display: none;
  grid-template-columns: minmax(320px, 0.9fr) minmax(260px, 0.65fr);
  gap: 30px;
  align-items: center;
}

.demo-panel.active {
  display: grid;
}

.mini-map,
.transcript-preview,
.chart-preview {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(126,149,179,.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(126,149,179,.08) 1px, transparent 1px),
    #f8fbff;
  background-size: 34px 34px;
  border: 1px solid rgba(126, 149, 179, 0.18);
}

.node {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #cfdff2;
  box-shadow: 0 12px 28px rgba(34, 52, 82, 0.10);
  font-weight: 900;
}

.node.root {
  left: 50px;
  top: 134px;
  background: linear-gradient(135deg, #2f7dff, #6fa7ff);
  color: #fff;
}

.node.n1 { left: 295px; top: 62px; }
.node.n2 { left: 335px; top: 146px; }
.node.n3 { left: 290px; top: 232px; }

.line {
  position: absolute;
  left: 162px;
  width: 178px;
  height: 3px;
  background: #9bb4d2;
  transform-origin: left center;
}

.line.l1 { top: 152px; transform: rotate(-24deg); }
.line.l2 { top: 162px; transform: rotate(0deg); }
.line.l3 { top: 170px; transform: rotate(25deg); }

.transcript-preview {
  display: grid;
  grid-template-columns: 128px 1fr;
  align-content: center;
  gap: 12px;
  padding: 30px;
}

.transcript-preview span {
  align-self: start;
  padding: 9px 10px;
  border-radius: 999px;
  background: #e9fbf3;
  color: var(--green-ink);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.transcript-preview p {
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(126, 149, 179, 0.18);
  color: #26384e;
  font-weight: 760;
}

.chart-preview {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 22px;
  padding: 46px;
}

.chart-preview i {
  width: 56px;
  border-radius: 18px 18px 8px 8px;
  background: linear-gradient(180deg, #16c784, #2f7dff);
}

.chart-preview i:nth-child(1) { height: 116px; }
.chart-preview i:nth-child(2) { height: 210px; }
.chart-preview i:nth-child(3) { height: 154px; }
.chart-preview i:nth-child(4) { height: 248px; }
.chart-preview i:nth-child(5) { height: 184px; }

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

.workflow-card {
  min-height: 178px;
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.local-first {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 28px;
  padding: 44px;
}

.local-first {
  position: relative;
  overflow: hidden;
}

.local-first::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: -54px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(47,125,255,.12), rgba(22,199,132,.14));
  filter: blur(10px);
  pointer-events: none;
}

.local-list {
  display: grid;
  gap: 12px;
}

.local-list div {
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(0, 255, 120, 0.15);
  border-radius: 20px;
  background: rgba(0, 255, 120, 0.055);
}

.local-list strong {
  font-size: 18px;
}

.local-list span {
  color: rgba(234, 255, 242, 0.62);
}

.capabilities-wrap {
  max-width: 1080px;
  margin: 0 auto;
}

.capabilities-table td:first-child {
  white-space: nowrap;
  font-weight: 700;
}

.capabilities-table td:last-child {
  white-space: nowrap;
}

.cap-tag {
  display: inline-block;
  margin: 2px 4px 2px 0;
  padding: 3px 9px;
  border: 1px solid rgba(47, 125, 255, 0.22);
  border-radius: 999px;
  background: rgba(47, 125, 255, 0.08);
  color: #2456b3;
  font-size: 11.5px;
  font-weight: 700;
  line-height: 1.3;
}

.feature-shot-photo {
  overflow: hidden;
  padding: 0;
  background: #eef3fb;
}

.feature-shot-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.doc-body {
  max-height: min(62vh, 640px);
  overflow: auto;
  padding-right: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.doc-body h2, .doc-body h3, .doc-body h4 {
  margin: 18px 0 8px;
}

.doc-body pre {
  overflow-x: auto;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.05);
  font-size: 12.5px;
}

.doc-body pre.doc-table-line {
  margin: 0 0 2px;
  padding: 4px 12px;
}

.doc-body code {
  padding: 1px 5px;
  border-radius: 6px;
  background: rgba(47, 125, 255, 0.1);
  font-size: 0.92em;
}

.doc-loading {
  color: rgba(15, 23, 42, 0.55);
}

.architecture .section-heading {
  width: min(900px, 100%);
  margin-left: 0;
  margin-bottom: 52px;
  text-align: left;
}

.architecture .section-heading h2 {
  max-width: 760px;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.arch-flow {
  counter-reset: archNode;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr) 54px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
  max-width: 100%;
  margin: 0 auto;
}

.arch-col {
  position: relative;
  min-height: 236px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(0, 255, 120, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(0, 255, 120, 0.045) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 255, 120, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, rgba(5, 25, 14, 0.96), rgba(1, 9, 5, 0.92));
  background-size: 26px 26px, 26px 26px, auto;
  box-shadow:
    0 20px 70px rgba(0, 255, 120, 0.10),
    inset 0 1px 0 rgba(185, 255, 215, 0.10),
    inset 0 0 38px rgba(0, 255, 120, 0.045);
}

.arch-col::before {
  counter-increment: archNode;
  content: "node_0" counter(archNode);
  display: inline-flex;
  margin-bottom: 22px;
  padding: 7px 10px;
  border: 1px solid rgba(0, 255, 120, 0.18);
  border-radius: 999px;
  background: rgba(0, 255, 120, 0.08);
  color: var(--green-ink);
  font: 900 12px "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
}

.arch-col::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 120, 0.62), transparent);
  opacity: 0.72;
}

.arch-col h3 {
  margin: 0 0 14px;
  color: #effff5;
  font-size: 25px;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-shadow: 0 0 18px rgba(0, 255, 120, 0.18);
}

.arch-col p {
  margin: 0;
  color: rgba(234, 255, 242, 0.68);
  font-size: 16px;
  line-height: 1.58;
}

.arch-arrow {
  align-self: center;
  justify-self: center;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(0, 255, 120, 0.20);
  border-radius: 999px;
  background: rgba(0, 255, 120, 0.08);
  color: var(--green-ink);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 0 18px rgba(0, 255, 120, 0.55);
  box-shadow: 0 0 28px rgba(0, 255, 120, 0.10), inset 0 0 18px rgba(0, 255, 120, 0.035);
}

@media (max-width: 860px) {
  .arch-flow {
    grid-template-columns: 1fr;
  }

  .arch-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .architecture .section-heading h2 {
    font-size: clamp(38px, 12vw, 64px);
  }
}

.architecture-image {
  width: 100%;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.gallery-section {
  width: min(1320px, calc(100% - 40px));
}

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

.gallery-card {
  overflow: hidden;
  background: linear-gradient(145deg, rgba(6, 22, 14, 0.86), rgba(1, 9, 5, 0.72));
}

.gallery-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  object-position: left top;
  border-bottom: 1px solid rgba(0, 255, 120, 0.16);
  background: #031009;
  filter: saturate(0.82) contrast(1.08) brightness(0.72) hue-rotate(72deg);
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-card-large img {
  height: 520px;
}

.gallery-card:hover img {
  transform: scale(1.025);
  filter: saturate(0.95) contrast(1.14) brightness(0.82) hue-rotate(72deg);
}

.gallery-card div {
  display: grid;
  gap: 7px;
  padding: 20px;
}

.gallery-card strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.gallery-card span {
  color: rgba(234, 255, 242, 0.62);
  line-height: 1.45;
}

.table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

th,
td {
  padding: 20px 22px;
  border-bottom: 1px solid rgba(0, 255, 120, 0.13);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  color: rgba(234, 255, 242, 0.64);
  line-height: 1.5;
}

td:first-child {
  color: var(--ink);
  font-weight: 900;
}

.comparison .mind-column {
  position: relative;
  color: rgba(225, 255, 236, 0.90);
  font-weight: 830;
  background:
    linear-gradient(90deg, rgba(0, 255, 120, 0.095), rgba(0, 255, 120, 0.032)),
    rgba(0, 255, 120, 0.026);
  box-shadow: inset 3px 0 0 rgba(0, 255, 120, 0.42);
}

.comparison .mind-column::before {
  content: "Mind";
  display: inline-flex;
  margin: 0 10px 0 0;
  padding: 3px 7px;
  border: 1px solid rgba(0, 255, 120, 0.20);
  border-radius: 999px;
  color: var(--green-ink);
  background: rgba(0, 255, 120, 0.08);
  font: 950 10px "JetBrains Mono", monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: 1px;
}

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

.roadmap-section .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.roadmap-track {
  position: relative;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.roadmap-track::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(47,125,255,.28), rgba(22,199,132,.26), transparent);
}

.roadmap-card {
  position: relative;
  padding: 26px;
}

.roadmap-card::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(22,199,132,.12);
}

.roadmap-card p {
  font-size: 15px;
}

.faq-section .section-heading {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.faq-list {
  width: min(880px, 100%);
  margin: 0 auto;
}

.faq-list details {
  padding: 0 24px;
  background: rgba(255,255,255,.82);
}

.faq-list summary {
  cursor: pointer;
  padding: 23px 0;
  color: var(--ink);
  font-size: 18px;
  font-weight: 920;
  letter-spacing: -0.02em;
}

.faq-list p {
  margin: -6px 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

.timeline article {
  position: relative;
  padding: 26px;
}

.timeline article::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(22, 199, 132, 0.14);
}

.final-cta {
  padding-bottom: 64px;
}

.cta-panel {
  min-height: 420px;
  padding: 54px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 255, 120, 0.18), transparent 38%),
    radial-gradient(circle at 82% 42%, rgba(0, 255, 180, 0.10), transparent 42%),
    linear-gradient(145deg, rgba(7, 28, 17, 0.92), rgba(1, 9, 5, 0.80));
}

.cta-panel p {
  width: min(760px, 100%);
  margin: 22px auto 0;
}

.site-footer {
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 38px 20px 58px;
  color: rgba(234, 255, 242, 0.52);
  font-size: 14px;
  font-weight: 720;
  text-align: center;
}

.footer-main,
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.footer-main {
  gap: 14px;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  border: 1px solid rgba(0, 255, 120, 0.16);
  border-radius: 999px;
  color: rgba(128, 255, 192, 0.66);
  background: rgba(0, 255, 120, 0.035);
  font-weight: 720;
  text-decoration: none;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.footer-contact svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact a:hover {
  border-color: rgba(0, 255, 120, 0.30);
  color: rgba(175, 255, 210, 0.82);
  background: rgba(0, 255, 120, 0.08);
}

.site-footer button {
  border: 1px solid rgba(0, 255, 120, 0.16);
  border-radius: 999px;
  background: rgba(0, 255, 120, 0.06);
  color: rgba(234, 255, 242, 0.66);
  padding: 10px 14px;
  font: 850 14px "Manrope", Arial, sans-serif;
  cursor: pointer;
}

.site-footer button:hover {
  color: var(--green-ink);
  background: rgba(0, 255, 120, 0.10);
}

/* --- Security Manifesto and Screenshot Placeholders --- */
.security-manifesto {
  position: relative;
}

.security-manifesto::before,
.screenshot-placeholders::before {
  content: "";
  position: absolute;
  inset: 38px auto auto 50%;
  z-index: -1;
  width: min(900px, 82vw);
  height: 320px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 255, 120, 0.13), transparent 68%);
  filter: blur(34px);
  transform: translateX(-50%);
  pointer-events: none;
}

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

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

.security-card,
.placeholder-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(0, 255, 120, 0.16);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(90deg, rgba(0, 255, 120, 0.04) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 255, 120, 0.035) 1px, transparent 1px),
    linear-gradient(145deg, rgba(6, 22, 14, 0.88), rgba(1, 9, 5, 0.76));
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: 0 16px 48px rgba(0, 255, 120, 0.08), inset 0 1px 0 rgba(185, 255, 215, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.security-card::after,
.placeholder-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 255, 120, 0.08), transparent);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 180ms ease;
  pointer-events: none;
}

.security-card:hover,
.placeholder-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 120, 0.34);
  box-shadow: 0 24px 70px rgba(0, 255, 120, 0.14), inset 0 0 30px rgba(0, 255, 120, 0.045);
}

.security-card:hover::after,
.placeholder-card:hover::after {
  opacity: 1;
  animation: scanline 1.8s linear infinite;
}

.security-card span,
.placeholder-card span {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(0, 255, 120, 0.18);
  border-radius: 999px;
  background: rgba(0, 255, 120, 0.08);
  color: var(--green-ink);
  font: 900 12px "JetBrains Mono", monospace;
  letter-spacing: 0.06em;
}

.security-card h3,
.placeholder-card h3 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.security-card p,
.placeholder-card p {
  margin: 0;
  color: rgba(234, 255, 242, 0.64);
  line-height: 1.58;
}

@keyframes scanline {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.legal-modal.is-open {
  display: flex;
}

.legal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 28, 45, 0.42);
  backdrop-filter: blur(16px);
}

.legal-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(720px, calc(100vh - 48px));
  overflow: auto;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(47,125,255,.09), transparent 46%),
    rgba(255,255,255,.92);
  box-shadow: 0 34px 100px rgba(16, 24, 39, 0.24);
}

.legal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(126, 149, 179, 0.18);
  border-radius: 16px;
  background: #f5f8fd;
  color: #25364c;
  font-size: 24px;
  cursor: pointer;
}

.legal-dialog h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.legal-content {
  display: grid;
  gap: 14px;
  color: #52667d;
  line-height: 1.65;
}

.legal-content p {
  margin: 0;
}

.legal-content strong {
  color: var(--ink);
}

.legal-content a {
  color: var(--blue-ink);
  font-weight: 900;
}

.download-modal {
  position: fixed;
  inset: 0;
  z-index: 82;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.download-modal.is-open {
  display: flex;
}

.download-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 255, 120, 0.14), transparent 38%),
    rgba(0, 8, 4, 0.72);
  backdrop-filter: blur(18px);
}

.download-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  padding: 40px;
  border: 1px solid rgba(0, 255, 120, 0.20);
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 10%, rgba(0, 255, 120, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(7, 28, 17, 0.94), rgba(1, 9, 5, 0.92));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.46), inset 0 1px 0 rgba(185, 255, 215, 0.10);
}

.download-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 255, 120, 0.18);
  border-radius: 16px;
  color: rgba(234, 255, 242, 0.76);
  background: rgba(0, 255, 120, 0.06);
  font-size: 24px;
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.download-close:hover {
  border-color: rgba(0, 255, 120, 0.34);
  color: var(--green-ink);
  background: rgba(0, 255, 120, 0.11);
}

.download-dialog h2 {
  max-width: 680px;
  margin: 0;
  color: rgba(242, 255, 246, 0.96);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.download-modal-lead {
  max-width: 700px;
  margin: 18px 0 30px;
  color: rgba(234, 255, 242, 0.64);
  font-size: 18px;
  line-height: 1.55;
}

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

.download-platform-card {
  display: grid;
  /* The last row (hint) absorbs any leftover height from cross-card
     stretching to a shared row height — keeping it on the icon/description
     row instead would push the download buttons down by however much
     shorter this card's hint text is than its tallest sibling. */
  grid-template-rows: auto auto auto 1fr;
  gap: 18px;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(0, 255, 120, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 86% 12%, rgba(0, 255, 136, 0.12), transparent 38%),
    rgba(2, 18, 10, 0.66);
  box-shadow: inset 0 1px 0 rgba(185, 255, 215, 0.08);
}

.download-platform-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(0, 255, 120, 0.20);
  border-radius: 20px;
  color: var(--green-ink);
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.14), transparent 32%),
    linear-gradient(145deg, rgba(0, 255, 120, 0.13), rgba(0, 255, 120, 0.045));
  box-shadow: inset 0 1px 0 rgba(185, 255, 215, 0.12), 0 14px 32px rgba(0, 255, 120, 0.08);
  font: 950 15px "JetBrains Mono", monospace;
  letter-spacing: 0.05em;
}

.download-platform-icon-mac {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Manrope", sans-serif;
  font-size: 31px;
  font-weight: 700;
  letter-spacing: 0;
}

.download-platform-card strong {
  display: block;
  margin-bottom: 10px;
  color: rgba(242, 255, 246, 0.94);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.download-platform-card p {
  margin: 0;
  color: rgba(234, 255, 242, 0.62);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.5;
}

.download-link-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.download-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(0, 255, 120, 0.26);
  border-radius: 14px;
  color: rgba(185, 255, 215, 0.92);
  background: rgba(0, 255, 120, 0.06);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease;
}

.download-link:hover,
.download-link:focus-visible {
  border-color: rgba(0, 255, 120, 0.5);
  background: rgba(0, 255, 120, 0.12);
}

.download-link-hint {
  margin: 0;
  color: rgba(234, 255, 242, 0.5);
  font-size: 12px;
  font-weight: 620;
  line-height: 1.5;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .mind-home-screen {
    grid-template-columns: 1fr;
  }

  .mind-sidebar {
    height: auto;
    max-height: 440px;
    border-top: 1px solid rgba(0, 255, 120, 0.13);
    border-right: 0;
    border-bottom: 1px solid rgba(0, 255, 120, 0.13);
  }

  .mind-sidebar-inner {
    min-height: 440px;
  }

  .mind-project-panel {
    grid-column: 1 / -1;
    border-left: 0;
  }

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

  .story-grid,
  .local-first,
  .demo-panel {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .feature-grid-visual,
  .feature-pillars,
  .hero-capability-grid,
  .download-platforms,
  .why-grid,
  .security-grid,
  .placeholder-grid,
  .output-grid,
  .gallery-grid,
  .workflow-grid,
  .timeline,
  .roadmap-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card-wide {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }

  .gallery-card-large {
    grid-column: span 2;
  }

  .gallery-card-large img {
    height: 420px;
  }
}

@media (max-width: 680px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    border-radius: 22px;
  }

  .header-cta {
    display: none;
  }

  .language-switch button {
    min-width: 32px;
  }

  .hero {
    min-height: auto;
    padding: 118px 18px 80px;
  }

  .hero-showcase {
    width: 100%;
    margin-top: 42px;
    border-radius: 24px;
  }

  .hero-showcase-bar {
    grid-template-columns: 70px 1fr;
    min-height: 42px;
    padding: 0 13px;
  }

  .hero-showcase-bar {
    min-height: 30px;
    padding: 0 13px;
  }

  .hero-showcase-dots {
    gap: 5px;
  }

  .hero-showcase-dots i {
    width: 7px;
    height: 7px;
  }

  .mind-window {
    border-radius: 23px;
  }

  .mind-window-bar {
    grid-template-columns: 74px 1fr;
    min-height: 52px;
    padding: 0 12px;
  }

  .mind-window-status {
    display: none;
  }

  .mind-window-title {
    justify-self: end;
    font-size: 10px;
  }

  .mind-window-controls span {
    width: 10px;
    height: 10px;
  }

  .mind-home-screen {
    grid-template-columns: 1fr;
  }

  .mind-animated-area {
    display: grid;
    gap: 12px;
    min-height: auto;
    padding: 26px 14px;
  }

  .mind-scene-noise {
    display: none;
  }

  .mind-scene-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    max-width: none;
    padding: 13px 16px;
    border-radius: 18px;
    animation: none;
  }

  .mind-scene-card-a { order: 2; }
  .mind-scene-card-b { order: 3; }
  .mind-scene-card-c { order: 4; }
  .mind-scene-card-d { order: 5; }

  .mind-pulse-core {
    position: relative;
    left: auto;
    top: auto;
    order: 1;
    width: 168px;
    height: 168px;
    margin: 10px auto 104px;
    transform: none;
    animation: none;
  }

  .mind-core-ring {
    inset: -26px;
  }

  .mind-core-ring-b {
    inset: -44px;
  }

  .mind-core-orb {
    width: 104px;
    height: 104px;
  }

  .mind-core-logo {
    width: 92px;
    height: 92px;
  }

  .mind-core-caption {
    top: 184px;
  }

  .mind-floating-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-height: auto;
    padding: 14px;
    border-radius: 17px;
    animation: none;
  }

  .mind-floating-card strong {
    font-size: 13px;
  }

  .mind-floating-card span {
    font-size: 9px;
  }

  .mind-connection-lines {
    display: none;
  }

  .mind-project-panel {
    padding: 18px;
  }

  .mind-project-list {
    grid-template-columns: 1fr;
  }

  .mind-project-card {
    padding: 13px;
  }


  .hero-lead {
    font-size: 19px;
  }

  /* Keep primary and secondary CTAs equally sized on phone screens. */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 360px);
    margin-right: auto;
    margin-left: auto;
    gap: 10px;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 52px;
    padding: 11px 18px;
    line-height: 1.22;
    text-align: center;
    white-space: normal;
  }

  .button:hover {
    transform: none;
  }

  .hero-stats div {
    min-width: 132px;
  }

  .section,
  .demo-section {
    width: min(100% - 24px, var(--max));
    padding: 62px 0;
  }

  .story-copy,
  .local-first,
  .cta-panel {
    padding: 28px;
    border-radius: 26px;
  }

  .feature-grid,
  .feature-grid-visual,
  .feature-pillars,
  .hero-capability-grid,
  .download-platforms,
  .why-grid,
  .security-grid,
  .placeholder-grid,
  .output-grid,
  .gallery-grid,
  .workflow-grid,
  .timeline,
  .roadmap-track {
    grid-template-columns: 1fr;
  }

  .feature-card-wide {
    grid-column: auto;
  }

  .feature-pillars article {
    min-height: 0;
  }

  .gallery-card-large {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-card img,
  .gallery-card-large img {
    height: 250px;
  }

  .roadmap-track::before {
    display: none;
  }

  .feature-card {
    padding: 20px;
  }

  .legal-dialog {
    padding: 30px 22px;
    border-radius: 26px;
  }

  .download-dialog {
    padding: 30px 20px;
    border-radius: 26px;
  }

  .download-platform-card {
    min-height: 0;
  }

  .demo-tabs {
    overflow-x: auto;
  }

  .demo-stage {
    padding: 16px;
  }

  .mini-map,
  .transcript-preview,
  .chart-preview {
    min-height: 290px;
  }

  .transcript-preview {
    grid-template-columns: 1fr;
  }

  .section-heading h2,
  .story-copy h2,
  .local-copy h2,
  .cta-panel h2 {
    letter-spacing: -0.045em;
  }
}

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

/* Daylight Matrix theme. The schedule is controlled in site.js (08:00-20:00). */
html[data-site-theme="light"] {
  color-scheme: light;
  --bg: #edf4fb;
  --paper: rgba(255, 255, 255, 0.86);
  --paper-strong: #ffffff;
  --ink: #142137;
  --muted: #60748b;
  --soft: #e8f0f8;
  --line: rgba(65, 119, 174, 0.20);
  --blue: #4c86c6;
  --blue-ink: #285f9c;
  --green: #4c86c6;
  --green-ink: #245b96;
  --amber: #9b741d;
  --red: #c74662;
  --violet: #6757aa;
  --shadow: 0 28px 90px rgba(45, 86, 130, 0.14);
  --shadow-soft: 0 18px 52px rgba(45, 86, 130, 0.10);
}

html.is-theme-transitioning body,
html.is-theme-transitioning .site-header,
html.is-theme-transitioning .hero::before,
html.is-theme-transitioning .hero-showcase,
html.is-theme-transitioning .hero-showcase-bar,
html.is-theme-transitioning article,
html.is-theme-transitioning .table-wrap,
html.is-theme-transitioning .cta-panel,
html.is-theme-transitioning .download-dialog {
  transition: color 360ms ease, background 360ms ease, border-color 360ms ease, box-shadow 360ms ease;
}

html[data-site-theme="light"] body {
  background:
    radial-gradient(circle at 18% 8%, rgba(73, 139, 204, 0.16), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(112, 176, 224, 0.12), transparent 32%),
    linear-gradient(90deg, rgba(57, 109, 162, 0.055) 1px, transparent 1px),
    linear-gradient(0deg, rgba(57, 109, 162, 0.045) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
}

html[data-site-theme="light"] body::before {
  background:
    linear-gradient(rgba(40, 86, 132, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 0%, rgba(75, 139, 201, 0.14), transparent 44%);
  mix-blend-mode: multiply;
  opacity: 0.34;
}

html[data-site-theme="light"] body::after {
  color: rgba(36, 91, 150, 0.12);
}

html[data-site-theme="light"] .site-header {
  border-color: rgba(65, 119, 174, 0.22);
  background: rgba(246, 250, 254, 0.82);
  box-shadow: 0 20px 70px rgba(45, 86, 130, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

html[data-site-theme="light"] .site-header.is-scrolled {
  background: rgba(248, 251, 255, 0.94);
}

html[data-site-theme="light"] .main-nav a,
html[data-site-theme="light"] .language-switch button {
  color: rgba(20, 33, 55, 0.66);
}

html[data-site-theme="light"] .main-nav a:hover,
html[data-site-theme="light"] .header-cta,
html[data-site-theme="light"] .language-switch button.active {
  color: #245b96;
  background: rgba(76, 134, 198, 0.11);
}

html[data-site-theme="light"] .header-cta,
html[data-site-theme="light"] .language-switch {
  border-color: rgba(65, 119, 174, 0.22);
}

html[data-site-theme="light"] .language-switch {
  background: rgba(76, 134, 198, 0.055);
}

html[data-site-theme="light"] .hero::before {
  background:
    radial-gradient(circle at 50% 18%, rgba(86, 153, 216, 0.22), transparent 33%),
    radial-gradient(circle at 50% 52%, rgba(119, 174, 220, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(236, 244, 252, 0.98) 0%, rgba(242, 248, 253, 0.80) 58%, rgba(237, 244, 251, 0) 100%);
}

html[data-site-theme="light"] .hero-glow-a {
  background: linear-gradient(135deg, rgba(72, 139, 207, 0.48), rgba(111, 178, 223, 0.28));
}

html[data-site-theme="light"] .hero-glow-b {
  background: linear-gradient(135deg, rgba(117, 171, 219, 0.30), rgba(201, 111, 166, 0.16));
}

html[data-site-theme="light"] .hero h1 {
  color: #15243a;
  text-shadow: 0 0 28px rgba(67, 132, 196, 0.18), 0 0 86px rgba(67, 132, 196, 0.10);
}

html[data-site-theme="light"] .hero-lead {
  color: rgba(20, 33, 55, 0.82);
}

html[data-site-theme="light"] .hero-note {
  color: rgba(38, 92, 150, 0.82);
}

html[data-site-theme="light"] .button-primary {
  color: #f7fbff;
  background: linear-gradient(135deg, #2f6da9, #68a9de);
  box-shadow: 0 18px 48px rgba(57, 115, 172, 0.20);
}

html[data-site-theme="light"] .button-secondary,
html[data-site-theme="light"] .button-ghost {
  color: #285f9c;
  border-color: rgba(65, 119, 174, 0.22);
  background: rgba(255, 255, 255, 0.72);
}

html[data-site-theme="light"] .hero-showcase {
  border-color: rgba(67, 126, 184, 0.30);
  background: linear-gradient(135deg, rgba(112, 171, 221, 0.42), rgba(255, 255, 255, 0.54) 40%, rgba(205, 111, 166, 0.17));
  box-shadow: 0 42px 130px rgba(45, 86, 130, 0.17), 0 0 0 1px rgba(255, 255, 255, 0.72);
}

html[data-site-theme="light"] .hero-showcase::before {
  background: radial-gradient(circle, rgba(91, 149, 207, 0.18), transparent 70%);
}

html[data-site-theme="light"] .hero-showcase-bar {
  border-color: rgba(65, 119, 174, 0.18);
  color: rgba(43, 74, 107, 0.62);
  background: rgba(246, 250, 254, 0.94);
}

html[data-site-theme="light"] .hero-media-viewport,
html[data-site-theme="light"] .mind-hero-media {
  background: #eaf2fa;
}

html[data-site-theme="light"] .hero-media-viewport::after {
  background: linear-gradient(110deg, transparent 30%, rgba(255, 255, 255, 0.34) 49%, transparent 68%);
}

html[data-site-theme="light"] .matrix-rain {
  opacity: 0.18;
}

html[data-site-theme="light"] .matrix-rain span {
  color: rgba(46, 105, 165, 0.72);
  text-shadow: 0 0 14px rgba(83, 145, 204, 0.28);
}

html[data-site-theme="light"] .hero-capability-grid article,
html[data-site-theme="light"] .feature-pillars article,
html[data-site-theme="light"] .story-copy,
html[data-site-theme="light"] .principles,
html[data-site-theme="light"] .local-first,
html[data-site-theme="light"] .demo-shell,
html[data-site-theme="light"] .table-wrap,
html[data-site-theme="light"] .cta-panel,
html[data-site-theme="light"] .why-card,
html[data-site-theme="light"] .output-card,
html[data-site-theme="light"] .gallery-card,
html[data-site-theme="light"] .roadmap-card,
html[data-site-theme="light"] .faq-list details,
html[data-site-theme="light"] .feature-card,
html[data-site-theme="light"] .workflow-card,
html[data-site-theme="light"] .timeline article,
html[data-site-theme="light"] .security-card,
html[data-site-theme="light"] .placeholder-card {
  border-color: rgba(65, 119, 174, 0.19);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 252, 0.84));
  box-shadow: 0 16px 48px rgba(45, 86, 130, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.90);
}

html[data-site-theme="light"] .hero-capability-grid article:hover,
html[data-site-theme="light"] .feature-pillars article:hover,
html[data-site-theme="light"] .why-card:hover,
html[data-site-theme="light"] .output-card:hover,
html[data-site-theme="light"] .gallery-card:hover,
html[data-site-theme="light"] .roadmap-card:hover,
html[data-site-theme="light"] .feature-card:hover,
html[data-site-theme="light"] .workflow-card:hover,
html[data-site-theme="light"] .security-card:hover {
  border-color: rgba(61, 122, 182, 0.40);
  box-shadow: 0 22px 64px rgba(45, 86, 130, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

html[data-site-theme="light"] .hero-capability-grid span,
html[data-site-theme="light"] .feature-pillars span,
html[data-site-theme="light"] .why-card span,
html[data-site-theme="light"] .roadmap-card span,
html[data-site-theme="light"] .security-card span,
html[data-site-theme="light"] .placeholder-card span,
html[data-site-theme="light"] .arch-col::before,
html[data-site-theme="light"] .comparison .mind-column::before {
  border-color: rgba(65, 119, 174, 0.20);
  color: #285f9c;
  background: rgba(76, 134, 198, 0.09);
}

html[data-site-theme="light"] .hero-capability-grid strong,
html[data-site-theme="light"] .feature-pillars strong,
html[data-site-theme="light"] .download-platform-card strong {
  color: #15243a;
}

html[data-site-theme="light"] .section-heading p:last-child,
html[data-site-theme="light"] .story-copy p,
html[data-site-theme="light"] .local-copy p,
html[data-site-theme="light"] .cta-panel p,
html[data-site-theme="light"] .hero-capability-grid p,
html[data-site-theme="light"] .feature-pillars p,
html[data-site-theme="light"] .why-card p,
html[data-site-theme="light"] .output-card span,
html[data-site-theme="light"] .roadmap-card p,
html[data-site-theme="light"] .principles p,
html[data-site-theme="light"] .feature-card p,
html[data-site-theme="light"] .workflow-card p,
html[data-site-theme="light"] .demo-panel p,
html[data-site-theme="light"] .timeline p,
html[data-site-theme="light"] .security-card p,
html[data-site-theme="light"] .placeholder-card p,
html[data-site-theme="light"] .gallery-card span,
html[data-site-theme="light"] td,
html[data-site-theme="light"] .site-footer {
  color: rgba(37, 57, 80, 0.68);
}

html[data-site-theme="light"] .principles article,
html[data-site-theme="light"] .local-list div {
  border-color: rgba(65, 119, 174, 0.16);
  background: rgba(76, 134, 198, 0.055);
}

html[data-site-theme="light"] .local-list span {
  color: rgba(37, 57, 80, 0.66);
}

html[data-site-theme="light"] .arch-col {
  border-color: rgba(65, 119, 174, 0.23);
  background:
    linear-gradient(90deg, rgba(65, 119, 174, 0.05) 1px, transparent 1px),
    linear-gradient(0deg, rgba(65, 119, 174, 0.04) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(237, 245, 252, 0.92));
  background-size: 26px 26px, 26px 26px, auto;
  box-shadow: 0 20px 70px rgba(45, 86, 130, 0.10), inset 0 1px 0 #fff;
}

html[data-site-theme="light"] .arch-col h3 {
  color: #15243a;
  text-shadow: none;
}

html[data-site-theme="light"] .arch-col p {
  color: rgba(37, 57, 80, 0.70);
}

html[data-site-theme="light"] .arch-arrow {
  border-color: rgba(65, 119, 174, 0.22);
  color: #2d68a3;
  background: rgba(76, 134, 198, 0.09);
  text-shadow: none;
  box-shadow: 0 0 28px rgba(45, 86, 130, 0.09);
}

html[data-site-theme="light"] th,
html[data-site-theme="light"] td {
  border-color: rgba(65, 119, 174, 0.14);
}

html[data-site-theme="light"] .comparison .mind-column {
  color: #214d7d;
  background: linear-gradient(90deg, rgba(76, 134, 198, 0.12), rgba(76, 134, 198, 0.035));
  box-shadow: inset 3px 0 0 rgba(61, 122, 182, 0.45);
}

html[data-site-theme="light"] .gallery-card img {
  border-color: rgba(65, 119, 174, 0.16);
  background: #eaf2fa;
  filter: saturate(0.92) contrast(1.02) brightness(1);
}

html[data-site-theme="light"] .gallery-card:hover img {
  filter: saturate(1) contrast(1.04) brightness(1.01);
}

html[data-site-theme="light"] .cta-panel {
  background:
    radial-gradient(circle at 18% 18%, rgba(76, 134, 198, 0.18), transparent 38%),
    radial-gradient(circle at 82% 42%, rgba(202, 111, 166, 0.10), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(237, 245, 252, 0.86));
}

html[data-site-theme="light"] .footer-contact a,
html[data-site-theme="light"] .site-footer button {
  border-color: rgba(65, 119, 174, 0.18);
  color: rgba(40, 95, 152, 0.72);
  background: rgba(76, 134, 198, 0.055);
}

html[data-site-theme="light"] .download-backdrop {
  background: rgba(33, 50, 70, 0.36);
}

html[data-site-theme="light"] .download-dialog {
  border-color: rgba(65, 119, 174, 0.24);
  background:
    radial-gradient(circle at 16% 10%, rgba(76, 134, 198, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(237, 245, 252, 0.96));
  box-shadow: 0 34px 100px rgba(31, 53, 77, 0.24), inset 0 1px 0 #fff;
}

html[data-site-theme="light"] .download-dialog h2 {
  color: #15243a;
}

html[data-site-theme="light"] .download-modal-lead,
html[data-site-theme="light"] .download-platform-card p,
html[data-site-theme="light"] .download-link-hint {
  color: rgba(37, 57, 80, 0.66);
}

html[data-site-theme="light"] .download-platform-card {
  border-color: rgba(65, 119, 174, 0.18);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 #fff;
}

html[data-site-theme="light"] .download-platform-icon,
html[data-site-theme="light"] .download-link,
html[data-site-theme="light"] .download-close {
  border-color: rgba(65, 119, 174, 0.22);
  color: #285f9c;
  background: rgba(76, 134, 198, 0.08);
}

html[data-site-theme="light"] .download-link:hover,
html[data-site-theme="light"] .download-link:focus-visible,
html[data-site-theme="light"] .download-close:hover {
  border-color: rgba(61, 122, 182, 0.45);
  color: #214f80;
  background: rgba(76, 134, 198, 0.14);
}
