:root {
  --bg: #0a1018;
  --bg-2: #0e1622;
  --surface: rgba(17, 26, 39, 0.78);
  --surface-solid: #121b28;
  --surface-2: rgba(22, 34, 49, 0.88);
  --surface-3: rgba(12, 19, 28, 0.9);
  --text: #ebf3ff;
  --muted: #a8b4c7;
  --muted-2: #8794ab;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --brand: #5af2c7;
  --brand-2: #4ea9ff;
  --accent: #ffd37a;
  --danger: #ff7f7f;
  --ok: #68f2b0;
  --warn: #ffcc66;
  --shadow-xl: 0 30px 90px rgba(0, 0, 0, 0.45);
  --shadow-md: 0 14px 32px rgba(0, 0, 0, 0.28);
  --radius-xl: 26px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: 1200px;
  --header-height: 78px;
  --section-y: clamp(4.5rem, 7vw, 7.5rem);
  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(90, 242, 199, 0.14), transparent 42%),
    radial-gradient(circle at 88% 18%, rgba(78, 169, 255, 0.16), transparent 46%),
    radial-gradient(circle at 60% 80%, rgba(255, 211, 122, 0.08), transparent 42%),
    linear-gradient(180deg, var(--bg), #080d13 62%, #070b10);
  min-height: 100vh;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

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

p,
h1,
h2,
h3,
h4 {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #0a1018;
  font-weight: 700;
  transition: top 0.2s ease;
}

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

.ambient {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  z-index: -2;
  opacity: 0.8;
}

.ambient-a {
  width: 22rem;
  height: 22rem;
  top: 7rem;
  left: -5rem;
  background: rgba(90, 242, 199, 0.12);
  animation: driftA 18s ease-in-out infinite;
}

.ambient-b {
  width: 26rem;
  height: 26rem;
  top: 20rem;
  right: -8rem;
  background: rgba(78, 169, 255, 0.14);
  animation: driftB 22s ease-in-out infinite;
}

.ambient-c {
  width: 20rem;
  height: 20rem;
  bottom: 6rem;
  left: 45%;
  background: rgba(255, 211, 122, 0.08);
  animation: driftC 24s ease-in-out infinite;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 100%);
  opacity: 0.25;
  z-index: -3;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: linear-gradient(
    180deg,
    rgba(10, 16, 24, 0.85),
    rgba(10, 16, 24, 0.62)
  );
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-row {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-mark {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.95rem;
  display: grid;
  place-items: center;
  background:
    linear-gradient(145deg, rgba(90, 242, 199, 0.12), rgba(78, 169, 255, 0.13)),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
}

.brand-mark svg {
  width: 1.65rem;
  height: 1.65rem;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-text {
  display: grid;
  gap: 0.08rem;
}

.brand-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-subtitle {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.primary-nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.94rem;
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  outline: none;
}

.primary-nav a.active {
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(90, 242, 199, 0.12), rgba(78, 169, 255, 0.12)),
    rgba(255, 255, 255, 0.03);
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.2rem;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle span + span {
  margin-top: 0.3rem;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.section {
  padding-block: var(--section-y);
}

.section-tight {
  padding-block: 1.4rem 2rem;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), rgba(255, 255, 255, 0.004));
  border-block: 1px solid rgba(255, 255, 255, 0.04);
}

.hero {
  padding-top: clamp(3.5rem, 6vw, 5.5rem);
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  align-items: start;
}

.hero-copy {
  padding-top: 1rem;
}

.hero-logo-lockup {
  width: min(100%, 22rem);
  height: auto;
  margin-bottom: 0.55rem;
  filter: drop-shadow(0 14px 28px rgba(78, 169, 255, 0.14));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.pulse-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 0 rgba(90, 242, 199, 0.45);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.6vw, 4.5rem);
  line-height: 0.97;
  letter-spacing: -0.045em;
  margin-bottom: 1rem;
  text-wrap: balance;
}

.highlight {
  color: var(--brand);
}

.highlight-secondary {
  background: linear-gradient(90deg, var(--brand-2), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-intro {
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  max-width: 62ch;
  text-wrap: pretty;
}

.hero-intro strong {
  color: var(--text);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.85rem;
  padding: 0.65rem 1rem;
  border-radius: 0.95rem;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.btn-primary {
  color: #071017;
  background:
    linear-gradient(120deg, var(--brand), #7debd0 32%, var(--brand-2) 75%);
  box-shadow: 0 12px 28px rgba(78, 169, 255, 0.18), 0 8px 16px rgba(90, 242, 199, 0.12);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 18px 36px rgba(78, 169, 255, 0.22), 0 10px 18px rgba(90, 242, 199, 0.15);
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-strong);
}

.btn-outline {
  border-color: rgba(90, 242, 199, 0.25);
  background: rgba(90, 242, 199, 0.07);
  color: var(--text) !important;
}

.btn-sm {
  min-height: 2.4rem;
  padding-inline: 0.85rem;
  font-size: 0.9rem;
}

.btn-full {
  width: 100%;
  min-height: 3rem;
  margin-top: 0.4rem;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  list-style: none;
  margin-top: 1.5rem;
}

.quick-facts li {
  padding: 0.95rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.015);
}

.fact-number,
.fact-suffix {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.fact-number {
  color: var(--text);
}

.fact-suffix {
  color: var(--brand);
}

.fact-label {
  display: block;
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.keyword-pills {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.keyword-pills span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.018);
  border-radius: 999px;
  padding: 0.38rem 0.62rem;
}

.hero-panel {
  position: relative;
}

.panel-shell {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(145deg, rgba(78, 169, 255, 0.06), rgba(90, 242, 199, 0.03)),
    rgba(10, 15, 22, 0.72);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.panel-topbar {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
}

.panel-topbar p {
  margin-left: 0.45rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
}

.dot-red { background: #ff6f6f; }
.dot-yellow { background: #ffcf70; }
.dot-green { background: #61efab; }

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  padding: 0.95rem;
}

.panel-card {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.9rem;
  min-height: 8.4rem;
}

.panel-card p {
  margin: 0;
}

.panel-label {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-value {
  font-family: var(--font-display);
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-top: 0.45rem;
}

.panel-note {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 0.55rem;
}

.meter {
  margin-top: 0.75rem;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.panel-headline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.trend {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  border-radius: 999px;
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.trend-up {
  color: var(--ok);
  background: rgba(104, 242, 176, 0.08);
}

.trend-neutral {
  color: var(--brand-2);
  background: rgba(78, 169, 255, 0.08);
}

.sparkline {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 0.3rem;
  align-items: end;
  height: 4.9rem;
  margin-top: 0.8rem;
  padding: 0.15rem 0;
}

.sparkline span {
  height: var(--h);
  background: linear-gradient(180deg, rgba(90, 242, 199, 0.95), rgba(78, 169, 255, 0.75));
  border-radius: 999px 999px 0 0;
  opacity: 0.95;
}

.flow-list {
  list-style: none;
  display: grid;
  gap: 0.42rem;
  margin-top: 0.75rem;
}

.flow-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text);
  font-size: 0.87rem;
}

.flow-list li span {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.log-lines {
  list-style: none;
  margin-top: 0.75rem;
  display: grid;
  gap: 0.45rem;
}

.log-lines li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.log-lines code {
  font-family: var(--font-mono);
  color: var(--text);
  font-size: 0.76rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.1rem 0.35rem;
  border-radius: 0.45rem;
}

.status {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.status.ok { background: var(--ok); }
.status.warn { background: var(--warn); }

.signal-strip {
  position: relative;
}

.signal-row {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.015);
}

.signal-row h2 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.signal-items {
  margin-top: 0.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.signal-items span {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  color: var(--muted);
}

.section-heading {
  max-width: 78ch;
  margin-bottom: 1.35rem;
}

.section-heading.left {
  margin-bottom: 1.1rem;
}

.section-heading h2 {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.section-heading p:last-child {
  margin-top: 0.8rem;
  color: var(--muted);
}

.section-heading strong {
  color: var(--text);
}

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

.info-card {
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.01);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.card-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.7rem;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: #071017;
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  margin-bottom: 0.75rem;
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: -0.03em;
}

.info-card p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.info-card ul {
  list-style: none;
  margin-top: 0.75rem;
  display: grid;
  gap: 0.4rem;
}

.info-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--text);
  font-size: 0.86rem;
}

.info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
}

.case-list {
  display: grid;
  gap: 1rem;
}

.case-card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(circle at 100% 0%, rgba(78, 169, 255, 0.08), transparent 45%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), rgba(255, 255, 255, 0.005));
  padding: 1rem;
  display: grid;
  gap: 1rem;
}

.case-type {
  color: var(--brand-2);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-top h3 {
  margin-top: 0.45rem;
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.case-summary {
  margin-top: 0.55rem;
  color: var(--muted);
}

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

.case-metrics div {
  padding: 0.8rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.015);
}

.case-metrics span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.case-metrics small {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
  line-height: 1.35;
}

.case-points {
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.case-points li {
  color: var(--muted);
  position: relative;
  padding-left: 1.1rem;
}

.case-points li::before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.split-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: start;
}

.stack-groups {
  display: grid;
  gap: 0.8rem;
}

.stack-group {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.012);
  padding: 0.9rem;
}

.stack-group h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.stack-group p {
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.workflow-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(12, 19, 28, 0.75);
  box-shadow: var(--shadow-md);
  padding: 1rem;
}

.workflow-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.workflow-list {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.75rem;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.75rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.015);
}

.step-num {
  font-family: var(--font-mono);
  color: var(--brand);
  font-size: 0.8rem;
  border: 1px solid rgba(90, 242, 199, 0.22);
  background: rgba(90, 242, 199, 0.07);
  border-radius: 999px;
  padding: 0.18rem 0.46rem;
  align-self: start;
}

.workflow-list h4 {
  font-size: 0.95rem;
  letter-spacing: -0.015em;
}

.workflow-list p {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.87rem;
}

.workflow-cta {
  margin-top: 0.8rem;
  padding: 0.8rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 211, 122, 0.18);
  background: rgba(255, 211, 122, 0.05);
  color: var(--muted);
}

.workflow-cta strong {
  color: var(--text);
}

.about-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
  align-items: start;
}

.about-card {
  border-radius: var(--radius-lg);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.012);
}

.about-card h2 {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.7vw, 2.35rem);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.about-card p + p {
  margin-top: 0.75rem;
}

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

.about-card strong {
  color: var(--text);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.mini-panel {
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
  padding: 0.9rem;
}

.mini-panel h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.mini-panel ul {
  list-style: none;
  margin-top: 0.55rem;
  display: grid;
  gap: 0.45rem;
}

.mini-panel li {
  color: var(--muted);
  font-size: 0.88rem;
  position: relative;
  padding-left: 0.9rem;
}

.mini-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: var(--brand-2);
}

.mini-panel p {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.text-link {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--brand);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  border-radius: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.013);
  padding: 0.15rem 0.75rem;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  padding: 0.8rem 1.75rem 0.8rem 0;
  position: relative;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 0.1rem;
  top: 0.72rem;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  color: var(--muted);
  padding-bottom: 0.8rem;
  font-size: 0.94rem;
}

.contact-section {
  padding-bottom: calc(var(--section-y) + 1rem);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
  align-items: start;
}

.contact-copy h2 {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.contact-copy > p:not(.eyebrow):not(.contact-note) {
  margin-top: 0.8rem;
  color: var(--muted);
}

.contact-cards {
  margin-top: 1rem;
  display: grid;
  gap: 0.7rem;
}

.contact-card {
  padding: 0.85rem 0.95rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.014);
}

.contact-label {
  color: var(--muted-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-card a {
  display: inline-block;
  margin-top: 0.15rem;
  color: var(--text);
  font-weight: 700;
  word-break: break-word;
}

.contact-note {
  margin-top: 0.85rem;
  color: var(--muted-2);
  font-size: 0.88rem;
}

.form-wrap {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(90, 242, 199, 0.08), transparent 45%),
    rgba(12, 19, 28, 0.78);
  padding: 1rem;
  box-shadow: var(--shadow-md);
}

.status-banner {
  margin-bottom: 0.8rem;
  border-radius: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.75rem 0.85rem;
  font-weight: 600;
}

.status-banner.success {
  background: rgba(104, 242, 176, 0.08);
  border-color: rgba(104, 242, 176, 0.2);
  color: #c8ffea;
}

.status-banner.error {
  background: rgba(255, 127, 127, 0.08);
  border-color: rgba(255, 127, 127, 0.22);
  color: #ffd8d8;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-size: 0.85rem;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border-radius: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  padding: 0.72rem 0.8rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.field textarea {
  resize: vertical;
  min-height: 7.5rem;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8190a8;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(78, 169, 255, 0.4);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 0 0 3px rgba(78, 169, 255, 0.12);
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-footnote {
  color: var(--muted-2);
  font-size: 0.81rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(5, 9, 14, 0.45);
  padding: 1.4rem 0 2rem;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.75fr 0.9fr;
  gap: 1rem;
  align-items: start;
}

.footer-brand .brand-mark {
  width: 2.35rem;
  height: 2.35rem;
}

.footer-copy {
  margin-top: 0.7rem;
  color: var(--muted);
  max-width: 55ch;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.6rem;
  align-content: start;
}

.footer-links a {
  color: var(--muted);
  padding: 0.2rem 0;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
  outline: none;
}

.footer-meta {
  color: var(--muted-2);
  font-size: 0.86rem;
  display: grid;
  gap: 0.35rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.reveal-delay-1 { transition-delay: 0.06s; }
.reveal-delay-2 { transition-delay: 0.12s; }

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(90, 242, 199, 0.35);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(90, 242, 199, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(90, 242, 199, 0);
  }
}

@keyframes driftA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(26px, 22px, 0); }
}

@keyframes driftB {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-30px, 18px, 0); }
}

@keyframes driftC {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(18px, -26px, 0); }
}

@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    order: 2;
  }

  .hero-copy {
    order: 1;
  }

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

  .footer-layout {
    grid-template-columns: 1fr;
  }
}

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

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

  .case-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: inline-grid;
    place-content: center;
  }

  .primary-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.5rem);
    padding: 0.75rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 16, 24, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-md);
    display: none;
    flex-direction: column;
    align-items: stretch;
  }

  .primary-nav a {
    width: 100%;
    text-align: left;
  }

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

  .primary-nav .btn-outline {
    justify-content: center;
    text-align: center;
  }

  .quick-facts {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .hero-logo-lockup {
    width: min(100%, 17rem);
  }

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

  .field-row {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .signal-row h2 {
    font-size: 1rem;
  }

  .section {
    padding-block: clamp(3.4rem, 9vw, 4.5rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.no-js .reveal {
  opacity: 1;
  transform: none;
}

.no-js .primary-nav {
  display: flex !important;
}

.no-js .menu-toggle {
  display: none !important;
}

@media (max-width: 860px) {
  .no-js .primary-nav {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    gap: 0.4rem;
  }
}
