@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/montserrat-400-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/roboto-400-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Roboto Mono';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('assets/fonts/roboto-mono-300-latin.woff2') format('woff2');
}

:root {
/*Backgrounds*/
 --bg: #0A0C18; /*rgb(10, 12, 24)*/
 --surface: #111B2E; /*rgb(17, 27, 46)*/
 --surface-2: #162438; /*rgb(22, 36, 56)*/
 --surface-light: #E8EAF0; /*rgb(232, 234, 240) */
 --surface-white: rgba(255, 255, 255, 0.4);
 --surface-white2: rgba(255, 255, 255, 0.78);
 --bg_white_tint: rgba(255, 255, 255, 0.03);
 
 --code-bg: rgba(17, 27, 46, 0.5); 
 
 /* Primary palette */
 --primary: #1d91c7; /*rgb(29, 145, 199)*/
 --primary-hover: #2AA3D8; /*rgb(42, 163, 216)*/
 --primary-active: #1579A8; /*rgb(21, 121, 168)*/
 --info-bg: rgba(29,145,199,0.10);
 --primary-tint: rgba(29,145,199,0.12);
 --border-active: rgba(29,145,199,0.45);
 --secondary: #5CC8E8; /*rgb(92, 200, 232)*/
 --selection: rgba(92,200,232,0.20);

 /* Accent and status colors */
 --accent: #D41563; /* rgb(212, 21, 99) */
 --accent-hover: #E02372; /*rgb(224, 35, 114)*/
 --accent-active: #B01252; /*rgb(176, 18, 82)*/
 --accent-bg: rgba(212,21,99,0.10);
 --accent-tint: rgba(212,21,99,0.12);
 --border-accent: rgba(212,21,99,0.45);

 --warning-amber: #f5a623; /*rgb(245, 166, 35)*/
 --warning-hover: #FFB84E; /*rgb(255, 184, 78)*/
 --warning-active: #D88A10; /*rgb(216, 138, 16)*/
 --warning-bg: rgba(245,166,35,0.10);
 --warning-tint: rgba(245,166,35,0.12);
 
 /*Text and UI elements*/
 --text: #E8EAF0; /*rgb(232, 234, 240) */
 --text-muted: rgba(232, 234, 240, 0.9);
 --text-dim: rgba(232,234,240,0.5);
 --text-on-light: #111b2e; /*rgb(17, 27, 46)*/
 --text-on-light-muted: rgba(17,27,46,0.7);
 --text-on-light-dim: rgba(17,27,46,0.5);
 
 --border: rgba(255,255,255,0.07);
 --border-surface: rgba(17,27,46,0.12);
 --divider: rgba(255,255,255,0.04);
 /* Corner radius scale */
 --radius-tight: 4px;
 --radius-default: 12px;
 --radius-panel: 20px;
 --radius-pill: 999px;

 /* Font stacks */
 --ff-display: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
 --ff-body: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
 --ff-mono: 'Roboto Mono', 'Courier New', Courier, monospace;

 --shadow-soft: 0 18px 36px -30px rgba(0, 0, 0, 0.16);
 --shadow: 0 24px 50px -34px rgba(0, 0, 0, 0.24);
 --shadow-dark: 0 24px 48px -34px rgba(0, 0, 0, 0.78);

 --topbar-offset: 0.9rem;
 --topbar-height: 72px;
 --topbar-clearance: calc(var(--topbar-offset) + var(--topbar-height));

  --scroll-progress: 0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--text-on-light);
  background:
    radial-gradient(circle at 12% 9%, var(--info-bg), transparent 26%),
    radial-gradient(circle at 88% 8%, var(--accent-bg), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, var(--surface-light) 45%, #ffffff 100%);
  line-height: 1.65;
}

.font-body {
  font-family: var(--ff-body);
  font-weight: 400;
}

.font-display {
  font-family: var(--ff-display);
  font-weight: 400;
}

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

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

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

h1,
h2,
h3,
.font-display {
  margin: 0;
  font-family: var(--ff-display);
  line-height: 1.08;
  font-weight: 400;
}

h1  {
  font-size: 2.5rem;
}

h2 {
  font-size: 1.75rem;
}

h3 {
  font-size: 1.25rem;
}

p strong {
  color: var(--accent);
}

strong,
b {
  font-weight: 400;
}

p,
ul {
  margin: 0;
}

::selection {
  background: var(--selection);
  color: var(--text-on-light);
}

:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
}

.container {
  width: min(1120px, calc(100vw - 48px));
  margin: 0 auto;
}

section {
  padding: clamp(2.5rem, 5vw, 4.75rem) 0;
}

#capabilities,
#workflow,
#about,
#benchmarks,
#team,
#timeline,
#contact {
  scroll-margin-top: 7.5rem;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 3px;
  z-index: 60;
  transform-origin: left center;
  transform: scaleX(var(--scroll-progress));
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.topbar {
  position: fixed;
  top: var(--topbar-offset);
  left: 0;
  right: 0;
  z-index: 50;
}

.nav-shell {
  min-height: 72px;
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px -32px rgba(17, 27, 46, 0.3);
  backdrop-filter: blur(18px);
}

.nav-logo {
  width: clamp(155px, 16vw, 220px);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.1rem;
  color: var(--text-on-light-muted);
  font-size: 0.95rem;
}

.nav-links a:not(.cta-mini) {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.nav-links a:not(.cta-mini):hover,
.nav-links a:not(.cta-mini):focus-visible {
  color: var(--primary);
  border-color: rgba(29, 145, 199, 0.4);
  outline: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid var(--border-surface);
  border-radius: 999px;
  background: var(--surface-light);
  color: var(--text-on-light);
  box-shadow: 0 12px 24px -22px rgba(17, 27, 46, 0.35);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: var(--primary);
  border-color: var(--border-active);
  color: var(--text);
  outline: none;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle-bar + .nav-toggle-bar {
  margin-top: 4px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.cta-mini,
.btn-primary,
.btn-secondary,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.cta-mini {
  padding: 0.58rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border-accent);
  background: var(--accent-bg);
  color: var(--accent);
  font-weight: 400;
}

.cta-mini:hover,
.cta-mini:focus-visible {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
  outline: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(clamp(3.75rem, 8vw, 6.5rem) + var(--topbar-clearance));
  padding-bottom: clamp(2.5rem, 6vw, 5rem);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  pointer-events: none;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.orb-a {
  width: min(24rem, 52vw);
  height: min(24rem, 52vw);
  left: -8rem;
  top: -5rem;
  background: radial-gradient(circle at center, rgba(29, 145, 199, 0.16), rgba(29, 145, 199, 0));
}

.orb-b {
  width: min(28rem, 58vw);
  height: min(28rem, 58vw);
  right: -10rem;
  top: 0;
  background: radial-gradient(circle at center, var(--accent-tint), rgba(212, 21, 99, 0));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--text-on-light-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8125rem;
  font-weight: 400;
}

.dark-zone .eyebrow {
  color: var(--text-dim);
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  background: var(--accent);
}

.section-kicker,
.dash-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.24rem 0.6rem;
  border-radius: var(--radius-tight);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  font-weight: 400;
}

.section-kicker {
  border: 1px solid var(--warning-tint);
  color: var(--warning-amber);
  background: var(--warning-bg);
}

.hero-copy h1 {
  max-width: 10.75ch;
  font-size: clamp(2.5rem, 5vw, 4.5rem); /* 40px to 72 px*/
  letter-spacing: -0.03em;
  margin-top: 1rem;
}

.hero-copy h1 strong {
  color: var(--accent);
  font-weight: 400;
}

.hero-copy p {
  margin-top: 1.2rem;
  max-width: 62ch;
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  color: var(--text-on-light-muted);
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.btn-primary,
.btn-secondary {
  padding: 0.78rem 1.18rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 400;
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--primary-hover));
  color: #fff;
  box-shadow: 0 16px 32px -24px rgba(29, 145, 199, 0.6);
}

.cta-action {
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  box-shadow: 0 16px 32px -24px rgba(212, 21, 99, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(17, 27, 46, 0.12);
  color: var(--text-on-light);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-secondary:hover,
.btn-secondary:focus-visible,
.status-pill:hover,
.status-pill:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.status-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.status-pill {
  padding: 0.48rem 0.82rem;
  border-radius: 999px;
  background: var(--code-bg);
  border: 1px solid var(--border);;
  font-family: var(--ff-mono);
  font-weight: 300;
  font-size: 0.8125rem;
  color: var(--secondary);
}

.hero-card {
  border-radius: 24px;
  padding: clamp(1.2rem, 2.4vw, 1.6rem);
  background: linear-gradient(160deg, rgba(10, 12, 24, 0.98), rgba(22, 36, 56, 0.96));
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-dark);
  animation: card-float 8s ease-in-out infinite;
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.dotrow {
  display: flex;
  gap: 0.4rem;
}

.dotrow span {
  display: block;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
}

.dotrow span:nth-child(1) {
  background: var(--primary);
}

.dotrow span:nth-child(2) {
  background: var(--secondary);
}

.dotrow span:nth-child(3) {
  background: var(--warning-amber);
}

.metric {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
}

.metric strong,
.mini-signal span,
.kpi-value,
.bar-val,
.sc-pct,
.tl-year,
.dash-updated,
.cta-line {
  font-family: var(--ff-mono);
  font-weight: 300;
}

.metric strong {
  color: var(--text);
  font-size: 1.45rem;
}

.metric p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.mini-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.mini-signal {
  padding: 0.8rem 0.75rem;
  border-radius: var(--radius-default);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
}

.mini-signal span {
  display: block;
  color: var(--warning-amber);
  font-size: 1rem;
}

.mini-signal .mini-signal-infinity {
  font-size: 2rem;
  line-height: 1.65rem;
}

.mini-signal small {
  display: block;
  margin-top: 0.25rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-head {
  margin-top: 1rem;
  margin-bottom: 1.35rem;
}

.section-head h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.5rem);
  letter-spacing: -0.02em;
}

.section-head p {
  margin-top: 0.75rem;
  max-width: 67ch;
  color: var(--text-on-light-muted);
}

.problem-resolution {
  position: relative;
  width: min(54rem, 100%);
  margin: clamp(1.5rem, 4vw, 2.3rem) auto 0;
  padding: clamp(1.4rem, 3vw, 1.9rem) clamp(1.5rem, 3vw, 2.1rem) clamp(1.35rem, 3vw, 1.8rem) clamp(2.4rem, 5vw, 3.4rem);
  border: 1px solid rgba(17, 27, 46, 0.12);
  border-left: 5px solid var(--accent);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(232, 234, 240, 0.72));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.problem-resolution::before {
  content: "\201C";
  position: absolute;
  left: clamp(0.85rem, 2vw, 1.2rem);
  top: clamp(0.35rem, 1vw, 0.55rem);
  color: rgba(29, 145, 199, 0.18);
  font-family: var(--ff-display);
  font-size: clamp(3rem, 7vw, 4.75rem);
  line-height: 1;
}

.problem-resolution::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--info-bg), transparent 42%, transparent 68%, var(--accent-bg));
  opacity: 0.7;
  pointer-events: none;
}

.problem-resolution p {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 58ch;
  color: var(--text-on-light);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.72;
  font-style: italic;
}

.problem-resolution strong {
  color: var(--accent);
}

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

.uc {
  padding: 1.2rem;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  font-size: 0.8125rem;
  line-height: 1.55;
}
.uc-dark { background: var(--bg); color: var(--text-muted); }
.uc-surface { background: var(--surface); color: var(--text) }
.uc-surface2 { background: var(--surface-2); color: var(--text); border-left: 5px solid var(--warning-amber); }

.uc-surface2.red { border-color: var(--accent);}
.uc-surface2.blue { border-color: var(--primary);}

.uc-light { background: var(--surface-light); border: 1px solid var(--border); color: var(--text-on-light); }
.uc-white { background: var(--surface-white); border: 1px solid var(--border); color: var(--text-on-light); border-left: 5px solid var(--primary); }
.uc-bar {
  height: 3px;
  width: 32px;
  margin-bottom: 0.85rem;
  border-radius: 0;
}
.bar-blue { background: var(--primary); }
.bar-red { background: var(--accent); }
.bar-yellow { background: var(--warning-amber); }
.uc-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: var(--radius-tight);
  margin-bottom: 0.5rem;
}
.blue-tag-on-dark { background: var(--info-bg); color: var(--secondary); }
.blue-tag-on-light { background: var(--info-bg); color: var(--primary); }
.yellow-tag { background: var(--warning-bg); color: var(--warning-amber); }
.red-tag { background: var(--accent-bg); color: var(--accent); }
.grey-tag-on-light { background: rgba(18,32,51,0.06); color: var(--text-on-light); }
.uc-note { font-size: 1rem; margin-top: 8px; }

.uc-light .uc-hl { color: var(--text-on-light); }
.uc-light .uc-note { color: var(--text-on-light-muted); }
.uc-surface2 .uc-note { color: var(--text-muted); }
.uc-surface .uc-note { color: var(--text-muted); }
.uc-dark .uc-note { color: var(--text-muted); }


.uc-light .uc-hl {
  color: var(--text-on-light);
}

.uc-light .uc-note {
  color: var(--text-on-light-muted);
}



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

.do-card,
.dn-card,
.final-cta,
.tl-card {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px var(--border) solid;
  border-radius: var(--radius-default);
  box-shadow: var(--shadow-soft);
}

.about-wrap {
  display: grid;
  font-weight: 300;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.do-card { 
  background: var(--info-bg); 
  border-color: var(--border-active); 
  color: var(--text-on-light); 
  padding: 1.2rem;
}
.dn-card {
  background: var(--accent-bg); border-color: 
  var(--border-accent); 
  color: var(--text-on-light); 
  padding: 1.2rem;
}
  
.cl { list-style: none; padding: 0; }
.cl li { padding: 3px 0 3px 18px; position: relative; color: var(--text-on-light-muted); }
.cl li::before { position: absolute; left: 0; top: 3px; font-size: 13px; }
.do-card .cl li::before { content: '✓'; color: var(--secondary); }
.dn-card .cl li::before { content: '✗'; color: var(--accent); }

.do-card h3 {
  color: var(--primary);
  padding-bottom: 1rem;
}

.dn-card h3 {
  color: var(--accent);
  padding-bottom: 1rem;
}

/* .about-card {
  padding: 1.2rem;
  background: var(--surface-white);
}

.about-card h3 {
  color: var(--text-on-light);
} */

.about-card ul {
  margin-top: 0.8rem;
  padding-left: 1.1rem;
  color: var(--text-on-light-muted);
}

.about-card li + li {
  margin-top: 0.35rem;
}

.dark-zone {
  position: relative;
  overflow: hidden;
  /* margin: clamp(2.5rem, 5vw, 5rem) 0; */
  padding: clamp(4rem, 6vw, 5.5rem) 0;
  background:
    radial-gradient(circle at 14% 16%, var(--info-bg), transparent 34%),
    radial-gradient(circle at 86% 76%, var(--accent-bg), transparent 28%),
    linear-gradient(160deg, var(--bg) 0%, var(--surface) 55%, var(--surface-2) 100%);
  color: var(--text);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.dark-zone .section-head h2 {
  color: var(--text);
}

.dark-zone .section-head p {
  color: var(--text-muted);
}

.dash-band .interactive {
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease,
    opacity 220ms ease;
}

.dash-band .interactive:hover,
.dash-band .interactive:focus-visible {
  transform: translateY(-2px);
  border-color: var(--border-active);
  box-shadow: 0 18px 34px -26px rgba(29, 145, 199, 0.35);
  outline: none;
}

.dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.logo-b {
  width: min(220px, 52vw);
}

.dash-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.dash-tag {
  border: 1px solid var(--border-active);
  color: var(--secondary);
  background: var(--info-bg);
}

.dash-updated {
  font-size: 0.76rem;
  color: var(--text-dim);
}

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

.kpi-card,
.chart-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.kpi-card {
  position: relative;
  padding: 1rem;
}

.kpi-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 220ms ease;
}

.kpi-card:hover::before,
.kpi-card:focus-visible::before {
  opacity: 1;
}

.kpi-label,
.chart-title {
  color: var(--text-dim);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kpi-label {
  margin-bottom: 0.4rem;
}

.kpi-value {
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  color: var(--text);
}

.kpi-value .unit {
  font-size: 0.8em;
  color: var(--text-dim);
}

.kpi-delta {
  margin-top: 0.35rem;
  font-size: 0.76rem;
}

.kpi-delta.up {
  color: var(--secondary);
}

.kpi-delta.down {
  color: var(--accent);
}

.dash-charts {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.dash-charts-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.chart-card {
  padding: 1rem;
}

.chart-card.is-dimmed {
  opacity: 0.72;
}

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

.chart-title em {
  font-style: normal;
  color: var(--secondary);
  font-size: 0.72rem;
}

.bar-chart {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.bar-row {
  display: grid;
  grid-template-columns: 11ch 1fr 5ch;
  gap: 0.55rem;
  align-items: center;
  padding: 0.2rem 0.25rem;
  border-radius: 10px;
  cursor: pointer;
}

.bar-label {
  color: var(--text-muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.bar-track {
  height: 7px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 220ms ease, background-color 220ms ease;
}

.bar-fill {
  height: 100%;
  width: 0;
  border-radius: 999px;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease;
}

.bar-val {
  color: var(--text);
  font-size: 0.78rem;
  text-align: right;
}

.bar-row:hover,
.bar-row:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  outline: none;
}

.bar-row:hover .bar-track,
.bar-row:focus-visible .bar-track {
  transform: scaleY(1.18);
  background: rgba(255, 255, 255, 0.14);
}

.bar-row:hover .bar-fill,
.bar-row:focus-visible .bar-fill {
  filter: brightness(1.08);
}

.scenario-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.sc-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.6rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.sc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sc-dot.pass {
  background: var(--primary);
}

.sc-dot.warn {
  background: var(--warning-amber);
}

.sc-dot.fail {
  background: var(--accent);
}

.sc-name {
  flex: 1;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.sc-pct {
  font-size: 0.76rem;
  color: var(--text);
}

.sc-item:hover,
.sc-item:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(29, 145, 199, 0.28);
  outline: none;
}

.commit-grid {
  display: grid;
  grid-template-columns: repeat(26, 1fr);
  gap: 3px;
}

.commit-cell {
  aspect-ratio: 1;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition:
    background 200ms ease,
    transform 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.commit-cell[data-level="1"] {
  background: rgba(29, 145, 199, 0.26);
}

.commit-cell[data-level="2"] {
  background: rgba(29, 145, 199, 0.52);
}

.commit-cell[data-level="3"] {
  background: rgba(29, 145, 199, 0.78);
}

.commit-cell[data-level="4"] {
  background: var(--primary);
}

.commit-grid:hover .commit-cell {
  opacity: 0.7;
}

.commit-grid .commit-cell:hover,
.commit-grid .commit-cell:focus-visible {
  opacity: 1;
  transform: scale(1.42);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
  outline: none;
}

.commit-legend {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.55rem;
  color: var(--text-dim);
  font-size: 0.72rem;
}

.commit-legend .commit-cell {
  width: 10px;
  height: 10px;
}

.sparkline-wrap {
  position: relative;
  height: 72px;
  margin-top: 0.35rem;
  border-radius: 10px;
  cursor: crosshair;
}

.sparkline-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
}

.dash-tooltip {
  position: fixed;
  z-index: 70;
  max-width: 220px;
  padding: 0.58rem 0.72rem;
  border-radius: 10px;
  background: rgba(10, 12, 24, 0.96);
  border: 1px solid var(--border-active);
  box-shadow: 0 14px 26px -18px rgba(0, 0, 0, 0.7);
  color: var(--text);
  font-size: 0.76rem;
  line-height: 1.45;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 4px, 0);
  transition: opacity 140ms ease, transform 140ms ease;
}

.dash-tooltip.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.dash-tooltip strong {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--text);
  font-weight: 400;
}

.people-shell {
  margin-top: 1rem;
}

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

.team-card {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem;
  background:
    radial-gradient(circle at 14% 18%, rgba(92, 200, 232, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-dark);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.team-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-active);
  border-left: 5px solid var(--warning-amber);
  box-shadow: 0 20px 34px -28px rgba(29, 145, 199, 0.35);
}

.team-card img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: var(--bg_white_tint);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 14px 26px -18px rgba(0, 0, 0, 0.55),
    0 0 0 5px rgba(29, 145, 199, 0.08);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.team-card:hover img {
  transform: scale(1.03);
  border-color: var(--border-active);
  box-shadow:
    0 16px 30px -20px rgba(0, 0, 0, 0.6),
    0 0 0 5px rgba(29, 145, 199, 0.14);
}

.team-body {
  min-width: 0;
  padding: 0;
  display: grid;
  align-content: start;
  gap: 0.38rem;
}

.team-role {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  padding: 0.28rem 0.55rem;
  margin-bottom: 0.22rem;
  border-radius: 999px;
  border: 1px solid rgba(92, 200, 232, 0.24);
  background: rgba(29, 145, 199, 0.1);
  color: var(--secondary);
  font-size: 0.66rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.team-card h3 {
  color: var(--text);
  font-size: 1.08rem;
  line-height: 1.08;
}

.team-card p {
  margin-top: 0.15rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.founders-block {
  margin-top: 1.25rem;
  padding: 1.1rem;
  border-radius: 20px;
  background: var(--bg_white_tint);
  border: 1px solid var(--border);
}

.founders-head {
  /* display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap; */
  gap: 1rem;
  margin-bottom: 1rem;
}

.founders-head h3 {
  margin-top: 0.35rem;
  color: var(--text);
  font-size: 1.15rem;
}

.founders-head p {
  max-width: 56ch;
  color: var(--text-muted);
}

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

.founder-card {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.8rem;
  align-items: center;
  padding: 0.8rem;
  border-radius: 16px;
  background: var(--bg_white_tint);
  border: 1px solid var(--border);
}

.founder-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.founder-card strong {
  display: block;
  color: var(--text);
  font-family: var(--ff-display);
  font-size: 1rem;
}

.founder-card span {
  display: block;
  margin-top: 0.22rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.team-card span {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

.founder-card p {
  margin-top: 0.45rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.timeline-section {
  padding-top: clamp(2.5rem, 5vw, 5rem);
}

.timeline {
  position: relative;
  margin-top: 2.25rem;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, var(--primary), var(--warning-amber) 72%, rgba(245, 166, 35, 0.16));
}

.tl-row {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  column-gap: 16px;
  align-items: start;
  margin-bottom: 1.8rem;
}

.tl-center {
  display: flex;
  justify-content: center;
  padding-top: 1.12rem;
  position: relative;
  z-index: 1;
}

.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px var(--primary);
}

.tl-dot.future {
  background: var(--warning-amber);
  box-shadow: 0 0 0 2px var(--warning-amber);
}

.tl-filler {
  min-height: 0;
}

.tl-card {
  padding: 1rem 1.1rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.timeline .tl-card:hover {
  transform: translateY(-0.5rem);
  border-left: 5px solid var(--warning-amber);
  box-shadow: 0 18px 34px -26px rgba(245, 166, 32, 0.5);
}

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


.tl-card.now {
  background: linear-gradient(180deg, var(--warning-amber), var(--warning-tint)); 
  border-color: var(--warning-tint);
  border-bottom: none;
}

.tl-card.now:hover,
.tl-card.future:hover {
  border-left: 5px solid var(--warning-active);
  box-shadow: 0 18px 34px -26px rgba(245, 166, 32, 0.5);
}

.tl-card.future {
  background: linear-gradient(180deg, var(--warning-tint), rgba(255, 255, 255, 0.96));
  border-color: var(--warning-tint);
  border-style: dashed;
  border-bottom: none;
}

.tl-card.future h3, .tl-card.now h3 {
  color: var(--text-on-light);
}

.tl-card.future p, .tl-card.now p {
  color: var(--text-on-light-muted);
}

.tl-year {
  display: block;
  margin-bottom: 0;
  font-size: 0.8125rem;
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--warning-amber);
}
  
.tl-card.now .tl-year {
  color: var(--text-on-light-dim);
}

.tl-card h3 {
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 1.25rem;
}

.tl-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

.tl-badge {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-top: 0;
  padding: 0.24rem 0.58rem;
  border-radius: var(--radius-tight);
  background: var(--info-bg);
  color: var(--warning-amber);
  font-size: 0.8125rem;
  line-height: 1;
  font-weight: 400;
  font-family: var(--ff-mono);
  white-space: nowrap;
}

.tl-card.now .tl-badge{
  background: var(--code-bg);
  color: var(--warning-amber);
}

.tl-card.future .tl-badge {
  font-family: var(--ff-mono);
  background: var(--warning-tint);
  color: var(--warning-amber);
  border: 1px dashed var(--warning-tint);
}

.final-cta {
  display: block;
  padding: clamp(1.3rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 18% 22%, rgba(29, 145, 199, 0.12), transparent 40%),
    radial-gradient(circle at 88% 76%, rgba(212, 21, 99, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 245, 250, 0.98));
  border-color: rgba(29, 145, 199, 0.18);
}

.final-cta-copy {
  display: grid;
  gap: 0.8rem;
}

.final-cta-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem 1.2rem;
  align-items: start;
}

.final-cta .section-kicker {
  justify-self: start;
  border-color: rgba(212, 21, 99, 0.24);
  color: var(--accent);
  background: rgba(212, 21, 99, 0.08);
}

.final-cta h2 {
  margin-top: 0;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: -0.02em;
}

.final-cta p {
  margin: 0;
  max-width: 60ch;
  color: var(--text-on-light-muted);
}

.cta-aside {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1rem;
  align-items: center;
  align-content: start;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 27, 46, 0.08);
}

.cta-contact-list {
  display: grid;
  gap: 0.6rem;
  min-width: 0;
}

.cta-line {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-on-light);
  font-size: 0.92rem;
  min-width: 0;
}

.cta-link {
  transition: color 180ms ease;
}

.cta-link:hover,
.cta-link:focus-visible {
  color: var(--primary-active);
  outline: none;
}

.cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(29, 145, 199, 0.08);
  border: 1px solid rgba(29, 145, 199, 0.16);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.cta-icon svg {
  width: 0.82rem;
  height: 0.82rem;
  fill: currentColor;
}

.cta-text {
  min-width: 0;
  overflow-wrap: anywhere;
}

.cta-action {
  align-self: center;
  justify-self: end;
  white-space: nowrap;
}

.blue-band {
  /* background: linear-gradient(180deg, var(--primary-active) 0%, var(--surface-2) 100%); */
    background:
    radial-gradient(circle at 82% 18%, rgba(92, 200, 232, 0.24), transparent 40%),
    linear-gradient(140deg, var(--primary-active) 0%, var(--primary) 58%, var(--surface-2) 100%);
  color: var(--text);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 2fr) minmax(0, 2fr);
  gap: clamp(0.5rem, 3vw, 1rem);
  padding: clamp(1.6rem, 3.8vw, 2.6rem) 0;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 0.9rem;
  min-width: 0;
  justify-items: start;
  text-align: left;
}

.footer-brand a {
  width: fit-content;
}

.footer-brand img {
  width: min(220px, 100%);
}

.blue-band .footer-icon {
  filter: invert(1);
}

.footer-slogan {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.15;
}

.footer-note {
  max-width: 34ch;
  color: var(--text-muted);
}

.footer-group {
  display: grid;
  gap: 0.7rem;
  min-width: 0;
}

.footer-heading {
  margin: 0;
  color: #fff;
  font-family: var(--ff-display);
  font-size: 1rem;
}

.footer-group a {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  width: fit-content;
  max-width: 100%;
  white-space: nowrap;
  color: var(--text-muted);
  transition: color 180ms ease;
}

.footer-group a:hover,
.footer-group a:focus-visible {
  color: #fff;
  outline: none;
}

.footer-group span {
  min-width: 0;
}

.footer-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.footer-project-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 2rem;
  padding: 0.15rem;
}
.footer-project-logo:hover {
  background-color: var(--selection);
  border-radius: var(--radius-pill);
}

.footer-project-logo-white {
  filter: brightness(0) invert(1);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) auto;
  gap: 0.75rem 1.25rem;
  align-items: center;
  margin-top: clamp(0.4rem, 1vw, 0.8rem);
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-meta {
  color: var(--text-muted);
}

.footer-bottom p {
  color: var(--text-dim);
}

.footer-bottom a {
  color: var(--text-dim);
  padding: 0.28rem 0.55rem;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.12rem;
  white-space: nowrap;
}

.footer-legal a {
  padding-inline: 0.2rem;
}

.footer-legal span {
  color: var(--text-dim);
}

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

.imprint-page {
  padding: calc(var(--topbar-clearance) + clamp(2rem, 5vw, 3rem)) 0 clamp(4rem, 7vw, 5rem);
}

.imprint-header h1 {
  font-size: clamp(1.25rem, 6vw, 2.5rem);
}

.imprint-document {
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-panel);
  background: var(--surface-white);
  border: 1px solid rgba(78, 84, 89, 0.12);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(10px);
}


.imprint-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-on-light-muted);
  font-size: 0.875rem;
}

.imprint-breadcrumb a {
  color: var(--primary);
  transition: color 180ms ease;
}

.imprint-breadcrumb a:hover,
.imprint-breadcrumb a:focus-visible {
  color: var(--secondary);
}

.policy-last-updated {
  margin: 0.45rem 0 0;
  color: var(--text-on-light-muted);
  font-family: var(--ff-mono);
  font-weight: 300;
  font-size: 0.8125rem;
  font-size: 0.9rem;
}

.imprint-section {
  margin-top: clamp(1.35rem, 3vw, 1.8rem);
  padding-top: clamp(1.35rem, 3vw, 1.8rem);
  border-top: 1px solid rgba(78, 84, 89, 0.12);
}

.imprint-section strong { 
  color: var(--text-on-light);
}

.imprint-facts {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.9rem;
}

.imprint-fact {
  display: grid;
  grid-template-columns: minmax(18rem, max-content) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
  margin: 0;
  max-width: none;
}

.imprint-section p{
  color: var(--text-on-light-muted);
}

.imprint-section a {
  color: var(--primary);
}

.imprint-section a:hover,
.imprint-section a:focus-visible {
  color: var(--secondary);
  outline: none;
}

.policy-copy {
  display: grid;
  gap: 0.95rem;
  margin-top: 0.9rem;
}

.policy-copy h2,
.policy-copy h3 {
  margin: 0;
  color: var(--text-on-light);
}

.policy-copy h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.policy-copy h3 {
  font-size: 1rem;
}

.policy-copy p,
.policy-copy ul {
  margin: 0;
}

.policy-copy .imprint-facts {
  margin-top: 0;
}

.policy-highlight {
  padding: 1rem 1.05rem;
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-default);
  background: var(--info-bg);
  color: var(--text-on-light);
}

.policy-list {
  display: grid;
  gap: 0.8rem;
  padding-left: 1.25rem;
  color: var(--text-on-light-muted);
}

footer {
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 480ms ease, transform 480ms ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@keyframes card-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

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

  .reveal,
  .cta-mini,
  .btn-primary,
  .btn-secondary,
  .nav-toggle,
  .nav-toggle-bar,
  .status-pill,
  .dash-band .interactive,
  .bar-track,
  .bar-fill,
  .commit-cell,
  .dash-tooltip,
  .team-card,
  .footer-group a,
  .footer-bottom a {
    transition: none;
  }

  .hero-card {
    animation: none;
  }
}

@media (max-width: 640px) {
  .imprint-fact {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .feature-grid,
  .about-wrap,
  .dash-charts,
  .dash-charts-bottom,
  .workflow-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-brand,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .dash-kpis {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .problem-resolution {
    width: 100%;
    padding: 1.2rem 1.15rem 1.2rem 1.95rem;
  }

  .problem-resolution::before {
    left: 0.65rem;
    top: 0.2rem;
    font-size: 2.7rem;
  }

  .team-grid,
  .founder-grid
  {
    grid-template-columns: 1fr;
  }

  .imprint-page {
    padding-top: clamp(3rem, 8vw, 4.25rem);
  }

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

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

  .footer-legal {
    justify-self: start;
  }

  .topbar {
    position: static;
    top: auto;
    left: auto;
    right: auto;
  }

  .hero {
    padding-top: clamp(3.75rem, 8vw, 6.5rem);
  }

  .nav-shell {
    padding: 0.9rem 1rem;
    border-radius: 24px;
  }

  .nav-links {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  body.nav-enhanced .nav-toggle {
    display: inline-flex;
  }

  .nav-shell {
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }

  body.nav-enhanced .nav-links {
    display: none;
    order: 3;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(17, 27, 46, 0.08);
  }

  body.nav-enhanced .nav-links.is-open {
    display: flex;
  }

  body.nav-enhanced .nav-links a:not(.cta-mini) {
    display: block;
    padding: 0.4rem 0;
    border-bottom: 0;
  }

  body.nav-enhanced .nav-links .cta-mini {
    width: 100%;
    margin-top: 0.3rem;
  }
}

@media (max-width: 560px) {
  .team-card {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .team-role {
    justify-self: center;
  }

  .team-card p {
    margin-top: 0.2rem;
  }
}

@media (max-width: 700px) {
  .timeline::before {
    left: 20px;
    transform: none;
  }

  .tl-row {
    grid-template-columns: 40px 1fr;
    column-gap: 12px;
  }

  .tl-center {
    grid-column: 1;
    grid-row: 1;
  }

  .tl-card {
    grid-column: 2;
    grid-row: 1;
  }

  .tl-filler {
    display: none;
  }

  .dash-kpis {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 600px) {
  .container {
    width: min(1120px, calc(100vw - 32px));
  }

  .footer-group a {
    width: fit-content;
  }

  .footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem 0;
    white-space: normal;
  }

  .footer-legal a {
    width: 100%;
    padding-inline: 0;
  }

  .footer-legal span {
    display: none;
  }

  .hero-actions {
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

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

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

  .bar-val {
    text-align: left;
  }

  .commit-grid {
    grid-template-columns: repeat(13, 1fr);
  }

  .founder-card {
    grid-template-columns: 64px 1fr;
  }

  .founder-card img {
    width: 64px;
    height: 64px;
  }

}