:root {
  --bg: #020807;
  --bg-deep: #000302;
  --surface: rgba(8, 24, 21, 0.74);
  --surface-strong: rgba(12, 37, 32, 0.92);
  --surface-soft: rgba(85, 255, 203, 0.08);
  --text: #effff8;
  --muted: #9ab8ad;
  --line: rgba(163, 255, 221, 0.16);
  --brand: #28f7a8;
  --brand-deep: #00b874;
  --accent: #d7ff65;
  --cyan: #56f3ff;
  --ink: #03110d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --glow: 0 0 28px rgba(40, 247, 168, 0.28);
  --radius: 8px;
  --radius-sm: 6px;
  --shell: 1180px;
}

body[data-theme="light"] {
  --bg: #eef9f4;
  --bg-deep: #dbeee7;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(246, 255, 251, 0.94);
  --surface-soft: rgba(0, 184, 116, 0.08);
  --text: #08231b;
  --muted: #47665d;
  --line: rgba(0, 90, 62, 0.16);
  --brand: #00b874;
  --brand-deep: #007a52;
  --accent: #7aa900;
  --cyan: #008ea1;
  --ink: #f4fff9;
  --shadow: 0 24px 70px rgba(0, 55, 40, 0.14);
  --glow: 0 0 28px rgba(0, 184, 116, 0.22);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Aptos, "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 12%), rgba(40, 247, 168, 0.18), transparent 22rem),
    radial-gradient(circle at 78% 8%, rgba(86, 243, 255, 0.16), transparent 24rem),
    radial-gradient(circle at 12% 36%, rgba(215, 255, 101, 0.08), transparent 22rem),
    linear-gradient(180deg, #071512 0%, var(--bg) 46%, var(--bg-deep) 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

body[data-theme="light"] {
  background:
    radial-gradient(circle at var(--cursor-x, 50%) var(--cursor-y, 12%), rgba(0, 184, 116, 0.18), transparent 22rem),
    radial-gradient(circle at 78% 8%, rgba(0, 142, 161, 0.14), transparent 24rem),
    radial-gradient(circle at 12% 36%, rgba(122, 169, 0, 0.12), transparent 22rem),
    linear-gradient(180deg, #f8fffb 0%, var(--bg) 50%, var(--bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(163, 255, 221, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(163, 255, 221, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 78%);
}

body[data-theme="light"]::before {
  background:
    linear-gradient(90deg, rgba(0, 90, 62, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 90, 62, 0.08) 1px, transparent 1px);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle at 50% -10%, transparent 0, rgba(0, 0, 0, 0.72) 58%);
}

body[data-theme="light"]::after {
  background: radial-gradient(circle at 50% -10%, transparent 0, rgba(255, 255, 255, 0.52) 60%);
}

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

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--brand);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(1, 8, 7, 0.76);
  backdrop-filter: blur(20px);
}

body[data-theme="light"] .site-header {
  background: rgba(246, 255, 251, 0.78);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 1rem;
}

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

.brand-logo {
  width: 112px;
  height: auto;
  filter: drop-shadow(0 0 18px rgba(40, 247, 168, 0.32));
}

body[data-theme="light"] .brand-logo {
  filter: drop-shadow(0 0 16px rgba(0, 184, 116, 0.24));
}

.site-nav,
.nav-list {
  display: flex;
  align-items: center;
}

.site-nav {
  gap: 1.1rem;
}

.nav-list {
  gap: 1.15rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list a,
.search-trigger {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.search-trigger:hover,
.search-trigger:focus-visible {
  color: var(--text);
  text-shadow: 0 0 14px rgba(40, 247, 168, 0.55);
}

.search-trigger,
.nav-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.search-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(2, 12, 10, 0.94);
}

body[data-theme="light"] .search-panel {
  background: rgba(246, 255, 251, 0.94);
}

.search-shell {
  padding: 1rem 0 1.2rem;
}

.search-label {
  display: block;
  margin-bottom: 0.65rem;
  font-family: Aptos Display, Aptos, "Segoe UI", sans-serif;
  font-weight: 800;
}

.search-row {
  display: flex;
  gap: 0.75rem;
}

.search-row input {
  flex: 1;
  min-width: 0;
  padding: 0.9rem 1rem;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

body[data-theme="light"] .search-row input {
  background: rgba(255, 255, 255, 0.72);
}

.search-row input:focus {
  border-color: rgba(40, 247, 168, 0.65);
  box-shadow: var(--glow);
}

.search-hint {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 5.2rem 0 4rem;
  overflow: hidden;
}

.hero-ambient {
  position: absolute;
  inset: 8% -10% auto;
  height: 44rem;
  pointer-events: none;
  background:
    radial-gradient(circle at 66% 36%, rgba(40, 247, 168, 0.38), transparent 19rem),
    radial-gradient(circle at 30% 66%, rgba(86, 243, 255, 0.12), transparent 18rem);
  filter: blur(12px);
  opacity: 0.9;
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Aptos Display, Aptos, "Segoe UI", sans-serif;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3.1rem, 6vw, 5.8rem);
}

h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 4vw, 3.1rem);
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
}

.hero-intro,
.section-heading p,
.about-copy p,
.cta-actions p,
.content-card p,
.industry-card p,
.story-card p,
.insight-card p,
.panel-card p,
.footer-shell p,
.engine-core p {
  color: var(--muted);
}

.hero-intro {
  max-width: 58ch;
  margin: 1.35rem 0 0;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 16px 38px rgba(40, 247, 168, 0.26);
}

body[data-theme="light"] .button-primary {
  color: #03110d;
}

.button-secondary,
.button-ghost {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
}

body[data-theme="light"] .button-secondary,
body[data-theme="light"] .button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.72);
}

.button-ghost:hover,
.button-secondary:hover {
  border-color: rgba(40, 247, 168, 0.55);
  box-shadow: var(--glow);
}

.hero-signals {
  display: grid;
  gap: 0.7rem;
  max-width: 34rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-signals li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0.95rem;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

body[data-theme="light"] .hero-signals li {
  background: rgba(255, 255, 255, 0.68);
}

.hero-signals span {
  color: var(--muted);
  font-weight: 700;
}

.hero-signals strong {
  color: var(--accent);
  white-space: nowrap;
}

.hero-panel,
.panel-card,
.content-card,
.industry-card,
.story-card,
.insight-card,
.cta-shell,
.trust-shell,
.about-shell {
  border: 1px solid var(--line);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-panel {
  position: relative;
  min-height: 620px;
  padding: 1.05rem;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 75%, rgba(50, 255, 181, 0.52), transparent 18rem),
    radial-gradient(circle at 86% 30%, rgba(40, 247, 168, 0.44), transparent 16rem),
    linear-gradient(180deg, rgba(5, 35, 27, 0.94), rgba(0, 2, 1, 0.96));
}

body[data-theme="light"] .hero-panel {
  background:
    radial-gradient(circle at 22% 75%, rgba(0, 184, 116, 0.32), transparent 18rem),
    radial-gradient(circle at 86% 30%, rgba(0, 142, 161, 0.18), transparent 16rem),
    linear-gradient(180deg, rgba(245, 255, 250, 0.92), rgba(220, 243, 234, 0.9));
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, 0.11) 42%, transparent 48%),
    radial-gradient(circle at 50% 42%, rgba(0, 0, 0, 0.55), transparent 16rem);
  opacity: 0.78;
  animation: panelSheen 8s ease-in-out infinite;
}

body[data-theme="light"] .hero-panel::before {
  background:
    linear-gradient(115deg, transparent 0 36%, rgba(255, 255, 255, 0.42) 42%, transparent 48%),
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.24), transparent 16rem);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(163, 255, 221, 0.14);
  border-radius: 22px;
  pointer-events: none;
}

.hero-panel-top,
.engine-core,
.panel-grid,
.orb-field {
  position: relative;
  z-index: 1;
}

.hero-panel-top {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.8rem;
  color: var(--text);
}

.hero-panel-top span:last-child {
  margin-left: auto;
  color: var(--brand);
  font-size: 0.82rem;
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 18px var(--brand);
}

.orb-field {
  position: absolute;
  inset: 3rem 1rem 1rem;
}

.data-orb {
  position: absolute;
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  padding: 0;
  color: rgba(255, 255, 255, 0.86);
  cursor: pointer;
  border: 1px solid rgba(206, 255, 236, 0.24);
  border-radius: 50%;
  background: rgba(202, 255, 229, 0.17);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.08), 0 0 28px rgba(40, 247, 168, 0.16);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  animation: floatOrb 7s ease-in-out infinite;
}

body[data-theme="light"] .data-orb {
  color: rgba(8, 35, 27, 0.9);
  background: rgba(255, 255, 255, 0.48);
  box-shadow: inset 0 0 28px rgba(255, 255, 255, 0.24), 0 0 28px rgba(0, 184, 116, 0.14);
}

.data-orb:hover,
.data-orb:focus-visible {
  transform: translateY(-5px) scale(1.06);
  border-color: rgba(215, 255, 101, 0.62);
  background: rgba(215, 255, 101, 0.2);
  box-shadow: 0 0 36px rgba(40, 247, 168, 0.38);
  outline: none;
}

.data-orb span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
}

.orb-large {
  width: 118px;
  height: 118px;
  font-size: 1.5rem;
  font-weight: 900;
}

.orb-icon {
  width: 72px;
  height: 72px;
  font-size: 1.8rem;
}

.orb-photo {
  width: 78px;
  height: 78px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(40, 247, 168, 0.08)),
    radial-gradient(circle at 50% 34%, #f2d3c4 0 18%, transparent 19%),
    radial-gradient(circle at 50% 68%, #15312a 0 25%, transparent 26%),
    #bde7da;
}

.orb-soft {
  width: 96px;
  height: 96px;
  opacity: 0.72;
}

.orb-a { left: 2%; top: 52%; }
.orb-b { left: 16%; top: 46%; animation-delay: -1.2s; }
.orb-c { left: 21%; top: 18%; animation-delay: -2.4s; }
.orb-d { right: 4%; top: 40%; animation-delay: -3s; }
.orb-e { right: 21%; top: 25%; animation-delay: -1.8s; }
.orb-f { right: 7%; bottom: 16%; animation-delay: -4s; }
.orb-g { left: 8%; bottom: 6%; animation-delay: -3.4s; }
.orb-h { right: 18%; bottom: 3%; animation-delay: -2.8s; }

.engine-core {
  display: grid;
  justify-items: center;
  max-width: 28rem;
  margin: 9rem auto 5.8rem;
  text-align: center;
}

.engine-core h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.engine-core p:not(.eyebrow) {
  max-width: 34ch;
  margin: 0.85rem 0 1.15rem;
}

.engine-readout {
  min-width: 13rem;
  padding: 0.62rem 0.9rem;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--text), #bbffe7);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

body[data-theme="light"] .engine-readout {
  color: #03110d;
  background: linear-gradient(135deg, #ffffff, #bfffe6);
}

.panel-grid,
.card-grid,
.industry-grid,
.insights-grid,
.story-list {
  display: grid;
  gap: 1rem;
}

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

.panel-card,
.content-card,
.industry-card,
.story-card,
.insight-card {
  position: relative;
  padding: 1.35rem;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.panel-card::before,
.content-card::before,
.industry-card::before,
.story-card::before,
.insight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(40, 247, 168, 0.16), transparent 44%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.panel-card:hover,
.content-card:hover,
.industry-card:hover,
.story-card:hover,
.insight-card:hover,
.panel-card.is-active {
  transform: translateY(-4px);
  border-color: rgba(40, 247, 168, 0.48);
  background: var(--surface-strong);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.36), var(--glow);
}

.panel-card:hover::before,
.content-card:hover::before,
.industry-card:hover::before,
.story-card:hover::before,
.insight-card:hover::before,
.panel-card.is-active::before {
  opacity: 1;
}

.panel-card span {
  display: inline-block;
  margin-bottom: 0.9rem;
  color: var(--brand);
  font-family: Aptos Display, Aptos, "Segoe UI", sans-serif;
  font-weight: 900;
}

.panel-card h2 {
  font-size: 1.25rem;
}

.section {
  padding: 4rem 0 1rem;
}

.section-alt {
  padding-top: 4.2rem;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading p {
  max-width: 66ch;
}

.trust-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
}

.trust-shell p {
  margin: 0;
  color: var(--brand);
  font-weight: 800;
}

.trust-shell ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.7rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-shell li {
  padding: 0.45rem 0.8rem;
  color: var(--text);
  border: 1px solid rgba(163, 255, 221, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(40, 247, 168, 0.08);
  font-weight: 700;
}

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

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

.split-shell,
.about-shell,
.cta-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

body[data-theme="light"] .cta-shell {
  background:
    radial-gradient(circle at 78% 12%, rgba(122, 169, 0, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(0, 184, 116, 0.14), rgba(255, 255, 255, 0.88) 42%);
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 62px;
  height: 34px;
  padding: 3px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 18px rgba(40, 247, 168, 0.08);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: rgba(40, 247, 168, 0.52);
  box-shadow: var(--glow);
  outline: none;
}

.theme-toggle::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  box-shadow: 0 0 18px rgba(40, 247, 168, 0.42);
  transition: transform 220ms ease;
}

body[data-theme="light"] .theme-toggle {
  background: rgba(255, 255, 255, 0.72);
}

body[data-theme="light"] .theme-toggle::before {
  transform: translateX(28px);
}

.theme-toggle span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--text);
  font-size: 0.82rem;
  line-height: 1;
}

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

.story-card,
.insight-card {
  display: flex;
  flex-direction: column;
}

.story-tag,
.insight-card > p:first-child {
  color: var(--brand);
  font-weight: 800;
}

.story-card a {
  margin-top: auto;
  color: var(--accent);
  font-weight: 800;
}

.about-shell,
.cta-shell {
  padding: 1.4rem;
  border-radius: var(--radius);
}

.cta-section {
  padding-bottom: 4rem;
}

.cta-shell {
  background:
    radial-gradient(circle at 78% 12%, rgba(215, 255, 101, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(40, 247, 168, 0.14), rgba(10, 28, 24, 0.92) 42%);
}

.site-footer {
  padding: 0 0 2rem;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
}

.page-hero {
  position: relative;
  padding: 5rem 0 2.5rem;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 18%, rgba(40, 247, 168, 0.28), transparent 22rem),
    radial-gradient(circle at 18% 68%, rgba(86, 243, 255, 0.12), transparent 20rem);
}

.page-hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 2rem;
  align-items: end;
}

.page-hero h1 {
  max-width: 13ch;
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.page-intro {
  max-width: 58ch;
  margin: 1.2rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.page-console {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(40, 247, 168, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(5, 20, 17, 0.82);
  box-shadow: var(--shadow), var(--glow);
}

body[data-theme="light"] .page-console {
  background:
    linear-gradient(135deg, rgba(0, 184, 116, 0.12), rgba(255, 255, 255, 0.5)),
    rgba(255, 255, 255, 0.72);
}

.console-line,
.signal-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.85rem;
  border-bottom: 1px solid rgba(163, 255, 221, 0.1);
  color: var(--muted);
  font-weight: 700;
}

.console-line:last-child,
.signal-row:last-child {
  border-bottom: 0;
}

.console-line strong,
.signal-row strong {
  color: var(--accent);
  white-space: nowrap;
}

.stat-grid,
.feature-grid,
.timeline-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.stat-card,
.feature-band,
.timeline-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.2rem;
}

.stat-card strong {
  display: block;
  color: var(--brand);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.stat-card span,
.timeline-item span {
  color: var(--muted);
  font-weight: 700;
}

.feature-band {
  position: relative;
  min-height: 100%;
  padding: 1.35rem;
  overflow: hidden;
}

.feature-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 100% 0%, rgba(40, 247, 168, 0.18), transparent 12rem);
}

.feature-band > * {
  position: relative;
}

.timeline-item {
  padding: 1.35rem;
}

.timeline-item h3,
.feature-band h3 {
  margin-top: 0.55rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 1rem;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.contact-list li {
  padding: 0.9rem;
  border: 1px solid rgba(163, 255, 221, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.qa-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.45fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.qa-list {
  display: grid;
  gap: 0.85rem;
}

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

.qa-item summary {
  position: relative;
  padding: 1.05rem 3rem 1.05rem 1.15rem;
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
  list-style: none;
}

.qa-item summary::-webkit-details-marker {
  display: none;
}

.qa-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--ink);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  transform: translateY(-50%);
}

.qa-item[open] summary::after {
  content: "-";
}

.qa-item p {
  margin: 0;
  padding: 0 1.15rem 1.15rem;
  color: var(--muted);
}

.qa-item[open] {
  border-color: rgba(40, 247, 168, 0.48);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.36), var(--glow);
}

.ai-chat-launcher {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 120;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  padding: 0;
  cursor: pointer;
  border: 1px solid rgba(163, 255, 221, 0.32);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.38), transparent 34%),
    linear-gradient(135deg, rgba(40, 247, 168, 0.96), rgba(86, 243, 255, 0.78));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.42), 0 0 34px rgba(40, 247, 168, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ai-chat-launcher:hover,
.ai-chat-launcher:focus-visible,
.ai-chat-launcher.is-awake {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.48), 0 0 44px rgba(40, 247, 168, 0.52);
  outline: none;
}

.ai-chat-pulse {
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(40, 247, 168, 0.34);
  border-radius: 50%;
  animation: chatPulse 2.4s ease-out infinite;
}

.ai-chat-face {
  position: relative;
  display: block;
  width: 34px;
  height: 26px;
  border: 2px solid rgba(3, 17, 13, 0.9);
  border-radius: 10px;
  background: rgba(239, 255, 248, 0.72);
}

.ai-chat-face::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -9px;
  width: 2px;
  height: 8px;
  background: rgba(3, 17, 13, 0.9);
  transform: translateX(-50%);
}

.ai-chat-face::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -13px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(3, 17, 13, 0.32);
}

.ai-chat-face span {
  position: absolute;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink);
}

.ai-chat-face span:first-child {
  left: 8px;
}

.ai-chat-face span:last-child {
  right: 8px;
}

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

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

@keyframes floatOrb {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -16px;
  }
}

@keyframes panelSheen {
  0%,
  100% {
    transform: translateX(-6%);
    opacity: 0.62;
  }
  50% {
    transform: translateX(6%);
    opacity: 0.9;
  }
}

@keyframes chatPulse {
  0% {
    transform: scale(0.82);
    opacity: 0.74;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .card-grid-large,
  .story-list,
  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-shell,
  .page-hero-shell,
  .split-shell,
  .about-shell,
  .cta-shell,
  .contact-panel,
  .qa-shell {
    grid-template-columns: 1fr;
  }

  h1,
  h2 {
    max-width: unset;
  }

  .hero-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .header-shell {
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(2, 12, 10, 0.96);
    box-shadow: var(--shadow);
  }

  body[data-theme="light"] .site-nav {
    background: rgba(246, 255, 251, 0.96);
  }

  .site-nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-row,
  .trust-shell,
  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .industry-grid,
  .card-grid-large,
  .story-list,
  .insights-grid,
  .panel-grid,
  .stat-grid,
  .feature-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 3rem;
  }

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

  .hero-panel {
    min-height: 560px;
    border-radius: 18px;
  }

  .engine-core {
    margin: 8rem auto 3rem;
  }

  .panel-grid {
    position: relative;
    z-index: 2;
  }

  .panel-card {
    padding: 1rem;
  }

  .orb-large {
    width: 92px;
    height: 92px;
    font-size: 1.1rem;
  }

  .orb-icon,
  .orb-photo {
    width: 60px;
    height: 60px;
  }

  .orb-soft {
    width: 76px;
    height: 76px;
  }

  .orb-a { left: 0; top: 48%; }
  .orb-b { left: 12%; top: 34%; }
  .orb-c { left: 18%; top: 14%; }
  .orb-d { right: 0; top: 37%; }
  .orb-e { right: 18%; top: 19%; }
  .orb-f { right: 3%; bottom: 24%; }
  .orb-g { left: 6%; bottom: 18%; }
  .orb-h { right: 24%; bottom: 10%; }

  h1 {
    font-size: clamp(2.4rem, 14vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .ai-chat-launcher {
    right: 1rem;
    bottom: 1rem;
    width: 60px;
    height: 60px;
  }
}

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