/* =========================================================
   AccuSentry — Production Actionable Intelligence
   Industrial Dark Mode design system
   ========================================================= */

:root, [data-theme="dark"] {
  /* Surface */
  --bg: #060A14;
  --bg-1: #0A101E;
  --bg-2: #0F172A;
  --bg-3: #16203A;
  --surface: #0E1626;
  --surface-2: #131D32;
  --surface-3: #1A2540;
  --border: rgba(140, 170, 220, 0.10);
  --border-strong: rgba(140, 170, 220, 0.22);

  /* Brand — AccuSentry green (signal/action) */
  --brand: #16D67D;
  --brand-2: #00B96B;
  --brand-glow: rgba(22, 214, 125, 0.45);
  --brand-soft: rgba(22, 214, 125, 0.10);

  /* Data accents */
  --teal: #19E0C5;
  --cyan: #4FC3F7;
  --amber: #FFB020;
  --red: #FF5C7A;
  --violet: #B084F0;

  /* Text */
  --text: #F2F5FB;
  --text-2: #A9B5CC;
  --text-3: #6B7A95;
  --text-dim: #4A5572;

  /* Theme-specific helpers */
  --hero-grid-line: rgba(140, 170, 220, 0.05);
  --input-bg: rgba(0, 0, 0, 0.30);
  --input-bg-strong: rgba(0, 0, 0, 0.50);
  --card-overlay: rgba(255, 255, 255, 0.02);
  --card-overlay-2: rgba(255, 255, 255, 0.05);
  --shadow-strong: 0, 0, 0;
  --float-tag-bg: rgba(14, 22, 38, 0.92);
  --header-bg-scrolled: rgba(8, 12, 22, 0.78);
  /* Logo is now a transparent-background PNG (vector-quality wordmark), so no
     white-knockout hack is needed — brighten the dark-green so it pops on the
     near-black header. */
  --logo-filter: brightness(1.7) saturate(1.3);
  --logo-filter-hover: brightness(1.95) saturate(1.4)
                       drop-shadow(0 4px 18px rgba(22, 214, 125, 0.35));
  --logo-blend: normal;
  --map-land-fill: rgba(140, 180, 230, 0.13);
  --map-land-stroke: rgba(140, 180, 230, 0.32);
  --map-grid-line: rgba(140, 170, 220, 0.04);
  --customer-logo-filter: brightness(0) invert(1);
  --customer-logo-opacity: .68;
}

/* =========================================================
   LIGHT THEME — muted, premium feel (not pure-white-bright)
   ========================================================= */
[data-theme="light"] {
  --bg: #E4E9F1;
  --bg-1: #EEF2F8;
  --bg-2: #D8DFEA;
  --bg-3: #CCD3E0;
  --surface: #ECF0F6;
  --surface-2: #E4E9F1;
  --surface-3: #DAE0EA;
  --border: rgba(15, 25, 50, 0.18);
  --border-strong: rgba(15, 25, 50, 0.30);

  --brand-glow: rgba(0, 154, 80, 0.30);
  --brand-soft: rgba(0, 154, 80, 0.10);

  /* High-contrast text for easy reading on muted gray bg */
  --text: #0A101E;
  --text-2: #1F2937;
  --text-3: #374151;
  --text-dim: #6B7280;

  /* Theme helpers */
  --hero-grid-line: rgba(15, 25, 50, 0.06);
  --input-bg: rgba(15, 25, 50, 0.04);
  --input-bg-strong: #FFFFFF;
  --card-overlay: rgba(15, 25, 50, 0.03);
  --card-overlay-2: rgba(15, 25, 50, 0.06);
  --shadow-strong: 15, 25, 50;
  --float-tag-bg: rgba(255, 255, 255, 0.95);
  --header-bg-scrolled: rgba(222, 229, 238, 0.88);
  /* Transparent-background logo — no blend hack needed on the light theme. */
  --logo-filter: contrast(1.02) saturate(1.05);
  --logo-filter-hover: contrast(1.08) saturate(1.15);
  --logo-blend: normal;
  --map-land-fill: rgba(15, 35, 70, 0.10);
  --map-land-stroke: rgba(15, 35, 70, 0.28);
  --map-grid-line: rgba(15, 25, 50, 0.06);
  --customer-logo-filter: brightness(0);
  --customer-logo-opacity: .58;
}

/* Theme-independent layout / type / motion tokens */
:root {
  /* Type */
  --font-display: "Sora", "Inter", system-ui, sans-serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Consolas, monospace;

  /* Layout — generous, calm whitespace */
  --container: 1060px;
  --container-narrow: 800px;
  --gutter: clamp(2.5rem, 8vw, 7rem);
  --radius: 18px;
  --radius-lg: 26px;
  --radius-sm: 10px;

  /* Motion */
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* { box-sizing: border-box; }
*::selection { background: var(--brand); color: #0A0F1C; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-2);
  background: var(--bg);
  background-image:
    radial-gradient(1200px 800px at 80% -10%, rgba(22, 214, 125, 0.08), transparent 60%),
    radial-gradient(900px 700px at 0% 30%, rgba(25, 224, 197, 0.05), transparent 60%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--teal); }

button { font: inherit; cursor: pointer; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 0 .6em;
  line-height: 1.1;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.75rem); }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow { max-width: var(--container-narrow); }

/* =========================================================
   Utilities
   ========================================================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-mono);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
  padding: .55rem .95rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--brand-soft);
  margin-bottom: 1.1rem;   /* breathing room before the heading that follows */
}
.eyebrow::before {
  content: "";
  width: .5rem; height: .5rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(22, 214, 125, 0.18);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(22, 214, 125, 0.10); }
  50%      { box-shadow: 0 0 0 8px rgba(22, 214, 125, 0.04); }
}

/* Default emphasis — solid brand color. Used across most section headlines.
   Reserved for the visually punchy gradient: .gradient-text--vivid (hero only). */
.gradient-text {
  color: var(--brand);
}
[data-theme="light"] .gradient-text {
  color: var(--brand-2);
}

/* Vivid multi-color gradient — only used in the landing hero "Hard Profit." moment */
.gradient-text--vivid {
  background: linear-gradient(120deg, var(--brand) 0%, var(--teal) 60%, var(--cyan) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
[data-theme="light"] .gradient-text--vivid {
  background: none;
  color: var(--brand-2);
  -webkit-text-fill-color: var(--brand-2);
}

.text-2 { color: var(--text-2); }
.text-3 { color: var(--text-3); }
.mono { font-family: var(--font-mono); }

.section {
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  position: relative;
}
.section--tight { padding: clamp(3rem, 5vw, 5rem) 0; }

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}
.section-head--left { text-align: left; margin-left: 0; }
.section-head p { color: var(--text-2); font-size: 1.05rem; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  margin: 0;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .95rem 1.5rem;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .2s var(--ease), background .25s var(--ease), color .2s var(--ease), box-shadow .25s var(--ease), border-color .2s var(--ease);
  position: relative;
}
.btn svg { width: 18px; height: 18px; }

.btn--primary {
  background: var(--brand);
  color: #042312;
  box-shadow: 0 14px 40px -12px var(--brand-glow), 0 0 0 1px rgba(22, 214, 125, 0.4) inset;
}
.btn--primary:hover {
  background: #1ee78a;
  color: #042312;
  transform: translateY(-2px);
  box-shadow: 0 22px 50px -12px var(--brand-glow), 0 0 0 1px rgba(22, 214, 125, 0.6) inset;
}

.btn--ghost {
  background: var(--card-overlay);
  color: var(--text);
  border-color: var(--border-strong);
}
.btn--ghost:hover {
  background: var(--card-overlay-2);
  border-color: var(--brand);
  color: var(--text);
}

.btn--sm { padding: .65rem 1.1rem; font-size: .85rem; }
.btn--lg { padding: 1.1rem 1.85rem; font-size: 1rem; }

/* =========================================================
   Header / Navigation
   ========================================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: var(--header-bg-scrolled);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 2.5rem;        /* less than the page gutter so the full nav fits on one line */
  max-width: 1200px;           /* a touch wider than --container to fit logo + links + CTA */
  margin: 0 auto;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;              /* keep the logo from collapsing when the nav is tight */
  gap: .65rem;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}
.nav__logo {
  /* Theme-aware logo treatment.
     Dark mode: invert + hue-rotate + screen blend knocks out the white PNG background
                while preserving the brand-green wordmark.
     Light mode: multiply blend makes the white background blend into the muted gray page bg. */
  height: 42px;
  width: auto;
  display: block;
  filter: var(--logo-filter);
  mix-blend-mode: var(--logo-blend);
  transition: filter .25s var(--ease), transform .25s var(--ease);
}
.nav__brand:hover .nav__logo {
  filter: var(--logo-filter-hover);
  transform: translateY(-1px);
}

/* Footer logo larger still */
.footer__brand .nav__logo { height: 48px; }

@media (max-width: 540px) {
  .nav__logo { height: 36px; }
  .footer__brand .nav__logo { height: 42px; }
}

.nav__menu {
  display: flex;
  gap: .35rem;
  margin-left: auto;
  align-items: center;
  list-style: none;            /* boss markup omitted this — removes the stray bullets */
  padding-left: 0;
}
.nav__link {
  padding: .55rem .9rem;
  border-radius: 8px;
  color: var(--text-2);
  font-size: .92rem;
  font-weight: 500;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav__link:hover { color: var(--text); background: rgba(255, 255, 255, 0.04); }
.nav__link.active { color: var(--brand); }

.nav__cta { margin-left: 1rem; }

.nav__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 40px; height: 40px;
  border-radius: 8px;
  align-items: center; justify-content: center;
  margin-left: auto;
}

/* Theme toggle button — sits in the right-side nav menu, before the CTA */
.theme-toggle {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--text-2);
  cursor: pointer;
  transition: all .25s var(--ease);
  flex-shrink: 0;
  padding: 0;
}
.theme-toggle:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
  transform: rotate(15deg);
}
.theme-toggle svg {
  width: 17px;
  height: 17px;
  transition: transform .3s var(--ease);
}
/* Show sun in dark mode (click to go light), moon in light mode (click to go dark) */
.theme-toggle__sun  { display: block; }
.theme-toggle__moon { display: none; }
[data-theme="light"] .theme-toggle__sun  { display: none; }
[data-theme="light"] .theme-toggle__moon { display: block; }

/* Wrapper li in nav menu */
.nav__menu .theme-toggle-item {
  display: flex;
  align-items: center;
  margin-right: .35rem;
}

@media (max-width: 1180px) {
  .nav__menu {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    gap: 0;
    background: rgba(8, 12, 22, 0.96);
    backdrop-filter: blur(20px);
    padding: 1rem var(--gutter) 1.5rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-110%);
    transition: transform .35s var(--ease);
  }
  .nav__menu.open { transform: translateY(0); }
  .nav__link { width: 100%; padding: .9rem 0; border-bottom: 1px solid var(--border); }
  .nav__cta { margin: .5rem 0 0; width: 100%; justify-content: center; }
  .nav__toggle { display: inline-flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 6rem 0 1.75rem;   /* tighter so the whole hero fits one viewport */
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero__bg::before,
.hero__bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .55;
}
.hero__bg::before {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(22, 214, 125, 0.45), transparent 60%);
  top: -200px; right: -100px;
}
.hero__bg::after {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(25, 224, 197, 0.30), transparent 60%);
  bottom: -200px; left: -100px;
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--hero-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--hero-grid-line) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 80%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;   /* wider copy column so the H1 wraps to fewer lines */
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
}

.hero__title {
  margin-top: 0;                              /* eyebrow now carries the spacing */
  margin-bottom: 1rem;
  font-size: clamp(2.1rem, 3.7vw, 3.25rem);   /* smaller max so the hero fits the fold */
  line-height: 1.06;
  letter-spacing: -0.025em;
}
.hero__title em {
  font-style: normal;
  position: relative;
  white-space: nowrap;
}
.hero__title em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -0.08em; /* proportional so it tracks the clamp() font size */
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--teal), transparent);
  border-radius: 4px;
  animation: drawline 1.4s var(--ease) .4s both;
  transform-origin: left;
}
@keyframes drawline {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

.hero__lede {
  font-size: 1.08rem;
  color: var(--text-2);
  max-width: 560px;
  margin: .9rem 0 1.3rem;
  line-height: 1.5;
}
.hero__cta { display: flex; gap: .7rem; flex-wrap: wrap; }
/* keep the two hero CTAs on one row (smaller than the global btn--lg) */
.hero__cta .btn--lg { padding: .85rem 1.35rem; font-size: .92rem; }
.hero__meta {
  margin-top: 1rem;
  display: flex;
  gap: .8rem 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
  padding-top: .9rem;
}
.hero__meta-item .num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  letter-spacing: -0.02em;
}
.hero__meta-item .lbl {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* Live dashboard mockup */
.live-dash {
  position: relative;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow:
    0 40px 80px -20px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(22, 214, 125, 0.12) inset,
    0 0 60px -10px rgba(22, 214, 125, 0.18);
  overflow: hidden;
}
.live-dash::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--map-grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--map-grid-line) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 0;
}
.live-dash > * { position: relative; z-index: 1; }

.live-dash__header {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--border);
}
.live-dash__title {
  font-family: var(--font-mono);
  font-size: .88rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-2);
}
.live-dash__pill {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  padding: .3rem .7rem;
  background: var(--brand-soft);
  border: 1px solid rgba(22, 214, 125, 0.3);
  border-radius: 999px;
}
.live-dash__pill::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand);
  animation: pulse-dot 1.4s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: .35; }
}

.live-dash__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem;
  padding-top: .8rem;
}
.kpi {
  background: var(--card-overlay);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .8rem;
  position: relative;
  overflow: hidden;
}
.kpi__head {
  display: flex; justify-content: space-between; align-items: baseline;
  flex-wrap: wrap;            /* long index labels (e.g. "Worldwide") drop to their
                                own line instead of clipping; short ones (Otx) stay inline */
  gap: .1rem .5rem;
  margin-bottom: .6rem;
}
.kpi__name {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-2);
  min-width: 0;
}
.kpi__index {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.01em;
  white-space: nowrap;        /* keep the index word intact (wraps as a unit, never mid-word) */
}
.kpi__index--otx { color: var(--brand); }
.kpi__index--stx { color: var(--teal); }
.kpi__index--mpx { color: var(--cyan); }
.kpi__index--rjx { color: var(--amber); }

.kpi__value {
  font-family: var(--font-display);
  font-size: 1.62rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.025em;
  display: flex; align-items: baseline; gap: .25rem;
}
.kpi__unit { font-size: 1rem; color: var(--text-3); font-weight: 500; }

.kpi__bars {
  display: flex; align-items: end;
  gap: 3px;
  height: 22px;
  margin-top: .5rem;
}
.kpi__bars span {
  flex: 1;
  background: var(--brand);
  border-radius: 2px;
  opacity: .15;
  animation: barpulse 2.6s ease-in-out infinite;
}
.kpi__bars span:nth-child(1) { animation-delay: 0s; height: 30%; }
.kpi__bars span:nth-child(2) { animation-delay: .1s; height: 55%; }
.kpi__bars span:nth-child(3) { animation-delay: .2s; height: 75%; }
.kpi__bars span:nth-child(4) { animation-delay: .3s; height: 90%; }
.kpi__bars span:nth-child(5) { animation-delay: .4s; height: 70%; }
.kpi__bars span:nth-child(6) { animation-delay: .5s; height: 85%; }
.kpi__bars span:nth-child(7) { animation-delay: .6s; height: 95%; opacity: .9; }
.kpi--stx .kpi__bars span { background: var(--teal); }
.kpi--mpx .kpi__bars span { background: var(--cyan); }
.kpi--rjx .kpi__bars span { background: var(--amber); }

@keyframes barpulse {
  0%, 100% { opacity: .25; }
  50% { opacity: .9; }
}

.live-dash__ticker {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: .9rem;
  font-family: var(--font-mono);
  font-size: .78rem;
}
.live-dash__ticker .lbl { color: var(--text-3); letter-spacing: .14em; text-transform: uppercase; font-size: .65rem; }
.live-dash__ticker .val { color: var(--brand); font-weight: 600; }
.live-dash__ticker .speed {
  margin-left: auto;
  color: var(--text);
  display: flex; align-items: baseline; gap: .25rem;
}
.live-dash__ticker .speed b { font-size: 1.05rem; color: var(--text); }
.live-dash__ticker .speed span { color: var(--text-3); font-size: .7rem; }

/* Pillar badges below the dashboard. These were a floating absolute overlay
   that covered the live KPI data; now a static centered group beneath the
   container so they never overlap it. */
.hero__pillars {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .35rem;
  margin-top: .65rem;
}
.hero__pillar {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem .7rem;
  background: var(--float-tag-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-2);
  white-space: nowrap;
}
.hero__pillar::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 8px var(--brand);
  flex: none;
}

/* Marquee logos / trust strip */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  background: linear-gradient(180deg, transparent, rgba(22, 214, 125, 0.02));
}
.trust-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.trust-strip__label {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-3);
}
.trust-strip__metrics {
  display: flex;
  gap: clamp(1.4rem, 4vw, 3.2rem);
  flex-wrap: wrap;
}
.trust-strip__metrics b {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  display: block;
  letter-spacing: -0.02em;
}
.trust-strip__metrics span {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* =========================================================
   PILLARS — In Tune · Empowered · In Control
   ========================================================= */
.pillars {
  position: relative;
  background:
    radial-gradient(700px 500px at 20% 50%, rgba(22, 214, 125, 0.05), transparent 60%),
    radial-gradient(700px 500px at 80% 50%, rgba(25, 224, 197, 0.05), transparent 60%);
}
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) { .pillars__grid { grid-template-columns: 1fr; } }

.pillar {
  position: relative;
  text-align: center;
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.6rem 1.8rem 2.2rem;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.pillar::before {
  content: "";
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--brand);
  opacity: .05;
  filter: blur(60px);
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.pillar:hover {
  transform: translateY(-3px);
  border-color: rgba(22, 214, 125, 0.4);
  box-shadow: 0 20px 50px -18px var(--brand-glow);
}
.pillar:hover::before { opacity: .18; }

.pillar__icon {
  position: relative;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  display: grid;
  place-items: center;
  margin: 0 auto 1.5rem;
  color: #042312;
  box-shadow:
    0 12px 30px -10px var(--brand-glow),
    inset 0 -4px 8px rgba(0,0,0,0.15),
    inset 0 4px 8px rgba(255,255,255,0.20);
}
.pillar__icon svg { width: 30px; height: 30px; stroke-width: 2; }

.pillar__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  color: var(--text);
  margin: 0 0 .55rem;
  text-transform: uppercase;
}
.pillar__sub {
  color: var(--text-2);
  font-size: 1.05rem;
  font-weight: 500;
  margin: 0 0 1.6rem;
}
.pillar__mantra {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: .85rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand);
}

/* When the three pillars are introduced inline (smaller, inside another section) */
.pillars--inline .pillar { padding: 1.8rem 1.4rem 1.6rem; }
.pillars--inline .pillar__icon { width: 52px; height: 52px; margin-bottom: 1rem; }
.pillars--inline .pillar__icon svg { width: 24px; height: 24px; }
.pillars--inline .pillar__title { font-size: 1.1rem; }
.pillars--inline .pillar__sub { margin-bottom: 1.2rem; font-size: .9rem; }
.pillars--inline .pillar__mantra { padding-top: 1.1rem; font-size: .68rem; }

/* =========================================================
   FINANCIAL GAP / PROFIT LEAK
   ========================================================= */
.gap {
  position: relative;
  background:
    radial-gradient(800px 500px at 90% 20%, rgba(255, 176, 32, 0.07), transparent 60%),
    radial-gradient(900px 600px at 10% 80%, rgba(22, 214, 125, 0.06), transparent 60%);
}

.gap__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) {
  .gap__grid { grid-template-columns: 1fr; }
}

.gap__copy h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}
.gap__copy .stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin: 2rem 0;
}
.gap__copy .stat-row .stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
}
.gap__copy .stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--brand);
  letter-spacing: -0.02em;
  margin-bottom: .25rem;
}
.gap__copy .stat span {
  font-size: .85rem;
  color: var(--text-2);
}

/* ROI Calculator */
.calc {
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}
.calc::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--brand), var(--teal), transparent 60%);
  border-radius: var(--radius-lg);
  opacity: .3;
  z-index: -1;
  filter: blur(20px);
}
.calc__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 1.4rem;
}
.calc__head h3 { margin: 0; font-size: 1.15rem; }
.calc__head .live {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-mono); font-size: .65rem;
  color: var(--brand); letter-spacing: .15em; text-transform: uppercase;
  padding: .2rem .55rem; background: var(--brand-soft);
  border: 1px solid rgba(22, 214, 125, 0.3); border-radius: 999px;
}
.calc__field { margin-bottom: 1.1rem; }
.calc__field label {
  display: flex; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .5rem;
}
.calc__field label b {
  color: var(--text);
  font-family: var(--font-display);
  font-size: .95rem;
  letter-spacing: -0.01em;
}
.calc__field input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 6px;
  background: rgba(140, 170, 220, 0.1);
  border-radius: 4px;
  outline: none;
}
.calc__field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(22, 214, 125, 0.18), 0 0 20px var(--brand-glow);
  transition: transform .15s var(--ease);
}
.calc__field input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
.calc__field input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--brand);
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(22, 214, 125, 0.18), 0 0 20px var(--brand-glow);
}

.calc__regions {
  display: flex; gap: .35rem;
  background: var(--input-bg);
  border-radius: 10px;
  padding: 4px;
  margin-bottom: 1.2rem;
}
.calc__regions button {
  flex: 1;
  padding: .55rem .7rem;
  border: none;
  background: transparent;
  color: var(--text-3);
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: all .2s var(--ease);
}
.calc__regions button.active {
  background: var(--brand);
  color: #042312;
  font-weight: 600;
}

/* Calculator: full formula numeric inputs */
.calc__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.calc__grid--full { grid-template-columns: 1fr; }
@media (max-width: 480px) { .calc__grid { grid-template-columns: 1fr; } }

.calc__num {
  position: relative;
}
.calc__num label {
  display: block;
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: .5rem;
  font-weight: 500;
}
.calc__num-input,
.contact-form__field input,
.contact-form__field textarea,
.contact-form__field select {
  width: 100%;
  padding: .75rem .9rem;
  background: var(--input-bg);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.calc__num-input:focus,
.contact-form__field input:focus,
.contact-form__field textarea:focus,
.contact-form__field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(22, 214, 125, 0.15);
  background: var(--input-bg-strong);
}

/* number input — strip browser spinner styling, custom prefix/suffix */
.calc__num-input::-webkit-outer-spin-button,
.calc__num-input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.calc__num-input { -moz-appearance: textfield; }

/* Anchoring idiom for an adornment overlaid on an input:
   wrap the input + adornment in `.calc__input-wrap` (sized to the input) and
   center the adornment to the input with translateY(-50%). This stays centered
   regardless of label line count, input height, font scaling, or zoom — unlike
   a hard-coded `bottom:Npx` anchored to the outer field. */
.calc__input-wrap { position: relative; display: block; }
.calc__num-suffix {
  position: absolute;
  top: 50%;
  right: .9rem;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--text-3);
  pointer-events: none;
  letter-spacing: .04em;
}
.calc__num-prefix {
  position: absolute;
  top: 50%;
  left: .9rem;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brand);
  pointer-events: none;
}
.calc__num-input.has-prefix { padding-left: 2.2rem; }
.calc__num-input.has-suffix { padding-right: 2.4rem; }

.calc__currency-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: .5rem;
}
.calc__currency-row select {
  padding: .75rem .6rem;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23A9B5CC' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 28px;
  cursor: pointer;
}

.calc__formula {
  font-family: var(--font-mono);
  font-size: .85rem;
  color: var(--text-2);
  line-height: 1.7;
  background: var(--input-bg);
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px dashed var(--border-strong);
  margin-top: .8rem;
}
.calc__formula b { color: var(--brand); font-weight: 600; }

/* =========================================================
   Contact Form
   ========================================================= */
.contact-form {
  display: grid;
  gap: 1rem;
  margin: 0 auto;
  max-width: 560px;
  text-align: left;
}
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 540px) { .contact-form__row { grid-template-columns: 1fr; } }

.contact-form__field {
  display: flex;
  flex-direction: column;
}
.contact-form__field label {
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: .5rem;
  font-weight: 500;
}
.contact-form__field label .req { color: var(--brand); }
.contact-form__field input,
.contact-form__field textarea {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0;
}
.contact-form__field textarea { resize: vertical; min-height: 90px; font-family: var(--font-sans); }

.contact-form__field input:invalid:not(:placeholder-shown),
.contact-form__field textarea:invalid:not(:placeholder-shown) {
  border-color: rgba(255, 92, 122, 0.5);
}

.contact-form__actions {
  display: flex; gap: .8rem; flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: .4rem;
}
.contact-form__hint {
  text-align: center;
  font-size: .92rem;
  color: var(--text-2);
  margin: .3rem 0 0;
  line-height: 1.55;
}
.contact-form__hint a { color: var(--text-2); text-decoration: underline; text-underline-offset: 2px; }

.contact-form__success {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(22, 214, 125, 0.35);
  background: var(--brand-soft);
}
.contact-form__success h3 { margin-bottom: .4rem; color: var(--text); }
.contact-form__success p { color: var(--text-2); margin: 0; font-size: .95rem; }
.contact-form__success svg {
  width: 48px; height: 48px;
  margin: 0 auto .8rem;
  color: var(--brand);
  display: block;
}

.calc__result {
  border-top: 1px solid var(--border);
  padding-top: 1.4rem;
  margin-top: 1rem;
}
.calc__result-label {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .35rem;
}
.calc__result-value {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  background: linear-gradient(120deg, var(--brand), var(--teal));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  line-height: 1;
}
[data-theme="light"] .calc__result-value {
  background: none;
  color: var(--brand-2);
  -webkit-text-fill-color: var(--brand-2);
}
.calc__result-sub {
  margin-top: .5rem;
  color: var(--text-2);
  font-size: .9rem;
}

/* =========================================================
   5-STEP METHODOLOGY
   ========================================================= */
.method {
  position: relative;
}

.method__roadmap {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
  position: relative;
  margin-top: 3rem;
  /* break out wider than the 1060px container so 5 step cards get comfortable
     width (~235px) instead of a cramped ~190px. Centered via margin (not
     transform) so it doesn't fight the .reveal-stagger transform animation. */
  width: min(1260px, 94vw);
  margin-left: calc((100% - min(1260px, 94vw)) / 2);
}
@media (max-width: 1024px) { .method__roadmap { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px)  { .method__roadmap { grid-template-columns: 1fr; } }

.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.3rem;
  position: relative;
  transition: transform .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  overflow: hidden;
}
.step:hover {
  transform: translateY(-4px);
  border-color: rgba(22, 214, 125, 0.4);
  box-shadow: 0 18px 50px -16px rgba(22, 214, 125, 0.25);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(22, 214, 125, 0.04) 100%);
}
.step__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(180deg, var(--brand), transparent 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: .8rem;
  display: block;
}
[data-theme="light"] .step__num {
  background: none;
  color: var(--brand-2);
  -webkit-text-fill-color: var(--brand-2);
}
.step__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: .55rem;
  letter-spacing: -0.01em;
}
.step__desc {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.5;
}
.step__tag {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
}

/* Connector line on desktop */
@media (min-width: 1025px) {
  .method__roadmap::before {
    content: "";
    position: absolute;
    top: 2.6rem; left: 4%; right: 4%;
    height: 2px;
    background: linear-gradient(90deg, var(--brand) 0%, var(--teal) 50%, transparent 100%);
    opacity: .25;
    z-index: 0;
  }
}

/* =========================================================
   FOUR INDICES (BENTO)
   ========================================================= */
.indices {
  position: relative;
}

.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
@media (max-width: 720px) { .bento { grid-template-columns: 1fr; } }

.idx {
  position: relative;
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.idx:hover {
  transform: translateY(-3px);
  border-color: var(--idx-color, var(--brand));
  box-shadow: 0 20px 50px -18px var(--idx-glow, var(--brand-glow));
}
.idx::before {
  content: "";
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: var(--idx-color, var(--brand));
  opacity: .08;
  filter: blur(40px);
}

.idx__head { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.2rem; }
.idx__symbol {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.1rem;
  letter-spacing: -0.04em;
  color: var(--idx-color, var(--brand));
  line-height: 1;
}
.idx__symbol b { font-size: 1.2rem; opacity: .6; }
.idx__name {
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-2);
  font-weight: 500;
}
.idx__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.idx__desc {
  color: var(--text-2);
  font-size: 1rem;
  margin-bottom: 1.4rem;
  line-height: 1.6;
}

.idx__viz {
  height: 80px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.25);
  padding: .8rem;
  display: flex;
  align-items: end;
  gap: 4px;
  position: relative;
  overflow: hidden;
}

/* Color tokens per index */
.idx--otx { --idx-color: var(--brand);  --idx-glow: rgba(22, 214, 125, 0.35); }
.idx--stx { --idx-color: var(--teal);   --idx-glow: rgba(25, 224, 197, 0.30); }
.idx--rjx { --idx-color: var(--amber);  --idx-glow: rgba(255, 176, 32, 0.30); }
.idx--mpx { --idx-color: var(--cyan);   --idx-glow: rgba(79, 195, 247, 0.30); }

.idx__viz-bar {
  flex: 1;
  background: var(--idx-color);
  opacity: .2;
  border-radius: 3px;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.idx:hover .idx__viz-bar { opacity: .85; }

/* Bullseye for OTx */
.idx__bullseye {
  position: absolute;
  inset: 0;
  display: grid; place-items: center;
}
.idx__bullseye span {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--idx-color);
  opacity: .3;
}
.idx__bullseye span:nth-child(1) { width: 70px; height: 70px; }
.idx__bullseye span:nth-child(2) { width: 48px; height: 48px; opacity: .5; }
.idx__bullseye span:nth-child(3) { width: 24px; height: 24px; background: var(--idx-color); opacity: .8; }
.idx__bullseye::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 0 2px var(--idx-color), 0 0 12px var(--idx-color);
  top: 38%; left: 54%;
  transform: translate(-50%, -50%); /* center the dot on its coordinate, not its top-left corner */
  animation: targetshift 3.5s ease-in-out infinite;
}
@keyframes targetshift {
  0%, 100% { top: 38%; left: 54%; }
  33% { top: 46%; left: 49%; }
  66% { top: 41%; left: 52%; }
}

/* Cluster for STx */
.idx__cluster {
  position: absolute; inset: 0;
}
.idx__cluster span {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--idx-color);
  box-shadow: 0 0 8px var(--idx-color);
}

/* =========================================================
   THE TRANSLATION GAP — Universal Language section
   ========================================================= */
.translation-gap {
  position: relative;
  background:
    radial-gradient(700px 500px at 20% 50%, rgba(22, 214, 125, 0.04), transparent 60%),
    radial-gradient(700px 500px at 80% 50%, rgba(25, 224, 197, 0.04), transparent 60%);
}

/* Top: four stakeholder roles */
.roles-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 800px) { .roles-row { grid-template-columns: 1fr 1fr; gap: .8rem; } }
@media (max-width: 480px) { .roles-row { grid-template-columns: 1fr; } }

.role-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.2rem;
  text-align: center;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .9rem;
}
.role-card:hover {
  border-color: rgba(22, 214, 125, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px -16px var(--brand-glow);
}
.role-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--brand-soft);
  border: 1px solid rgba(22, 214, 125, 0.30);
  color: var(--brand);
  display: grid;
  place-items: center;
}
.role-card__icon svg { width: 24px; height: 24px; }
.role-card h4 {
  font-size: 1.05rem;
  margin: 0;
  letter-spacing: -0.01em;
  color: var(--text);
}
.role-card__quote {
  font-family: var(--font-mono);
  font-size: .9rem;
  font-style: italic;
  color: var(--text-2);
  margin: 0;
  padding: .6rem .85rem;
  background: var(--card-overlay);
  border: 1px dashed var(--border-strong);
  border-radius: 10px;
  width: 100%;
  text-align: center;
  line-height: 1.4;
}
.role-card__quote::before { content: "\201C"; opacity: .55; margin-right: 1px; }
.role-card__quote::after  { content: "\201D"; opacity: .55; margin-left: 1px; }

/* Translation gap divider */
.translation-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  margin: 3rem 0;
  position: relative;
}
.translation-arrow::before,
.translation-arrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
}
.translation-arrow__label {
  font-family: var(--font-mono);
  font-size: .9rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 600;
  white-space: nowrap;
  padding: .55rem 1.1rem;
  background: var(--brand-soft);
  border: 1px solid rgba(22, 214, 125, 0.30);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}
.translation-arrow__label::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 10px var(--brand);
}

/* Bottom: Otx & Stx as the bridge */
.universal-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 800px) { .universal-pair { grid-template-columns: 1fr; } }

.universal-card {
  position: relative;
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.universal-card::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 260px; height: 260px;
  border-radius: 50%;
  background: var(--uc-color, var(--brand));
  opacity: .08;
  filter: blur(40px);
  pointer-events: none;
}
.universal-card:hover {
  transform: translateY(-3px);
  border-color: var(--uc-color, var(--brand));
  box-shadow: 0 18px 50px -18px var(--uc-glow, var(--brand-glow));
}
.universal-card--otx { --uc-color: var(--brand); --uc-glow: var(--brand-glow); }
.universal-card--stx { --uc-color: var(--teal);  --uc-glow: rgba(25, 224, 197, 0.30); }

.universal-card__head {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  margin-bottom: 1.4rem;
}
.universal-card__symbol {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3rem;
  letter-spacing: -0.04em;
  color: var(--uc-color, var(--brand));
  line-height: 1;
  flex-shrink: 0;
}
.universal-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--text);
  letter-spacing: -0.01em;
  margin: .2rem 0 .25rem;
}
.universal-card__sub {
  font-family: var(--font-mono);
  font-size: .85rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-2);
  margin: 0;
  font-weight: 500;
}

.universal-card__question {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
  margin: 0 0 1.4rem;
  padding: 1rem 1.2rem;
  background: var(--card-overlay);
  border: 1px solid var(--border);
  border-left: 3px solid var(--uc-color, var(--brand));
  border-radius: 10px;
  line-height: 1.4;
}

.universal-card__viz {
  height: 170px;
  margin-bottom: 1.6rem;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--input-bg);
  overflow: hidden;
}
.universal-card__viz svg {
  width: 100%;
  height: 100%;
  display: block;
}

.universal-card__lens-title {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-2);
  margin: 0 0 .9rem;
  font-weight: 600;
}

.universal-card__lens {
  list-style: none;
  padding: 1.4rem 0 0;
  margin: 0;
  border-top: 1px solid var(--border);
  display: grid;
  gap: .85rem;
}
.universal-card__lens li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  align-items: baseline;
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.45;
}
.universal-card__lens li b {
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--uc-color, var(--brand));
  font-weight: 600;
}
@media (max-width: 540px) {
  .universal-card__lens li {
    grid-template-columns: 1fr;
    gap: .15rem;
  }
}

/* =========================================================
   PERFORMANCE ZONES MATRIX
   ========================================================= */
.zones {
  background:
    radial-gradient(800px 500px at 0% 50%, rgba(22, 214, 125, 0.05), transparent 60%),
    radial-gradient(800px 500px at 100% 50%, rgba(255, 92, 122, 0.05), transparent 60%);
}

.zones__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
@media (max-width: 900px) { .zones__grid { grid-template-columns: minmax(0, 1fr); } }

.matrix {
  position: relative;
  aspect-ratio: 1;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2.4rem 1.8rem 2.6rem 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}
.matrix::before {
  content: "";
  position: absolute;
  inset: 2.4rem 1.8rem 2.6rem 3.2rem;
  background-image:
    linear-gradient(rgba(140, 170, 220, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 170, 220, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  border-radius: 8px;
}
.matrix__y, .matrix__x {
  position: absolute;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  font-weight: 500;
}
.matrix__y {
  top: 50%; left: .25rem;
  transform: rotate(-90deg);
  transform-origin: left center;
}
.matrix__x { bottom: .9rem; left: 50%; transform: translateX(-50%); }
.matrix__y b, .matrix__x b { color: var(--text); font-weight: 700; }

.zone {
  border-radius: 10px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .5rem;
  transition: transform .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease);
  border: 1px solid transparent;
  cursor: pointer;
}
.zone:hover { transform: scale(1.03); }
.zone__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.zone__tag {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
}
.zone--fire { background: rgba(255, 92, 122, 0.08); border-color: rgba(255, 92, 122, 0.25); }
.zone--fire:hover { background: rgba(255, 92, 122, 0.14); }
.zone--fire .zone__tag { color: var(--red); }
.zone--easy { background: rgba(255, 176, 32, 0.08); border-color: rgba(255, 176, 32, 0.25); }
.zone--easy:hover { background: rgba(255, 176, 32, 0.14); }
.zone--easy .zone__tag { color: var(--amber); }
.zone--hidden { background: rgba(176, 132, 240, 0.08); border-color: rgba(176, 132, 240, 0.25); }
.zone--hidden:hover { background: rgba(176, 132, 240, 0.14); }
.zone--hidden .zone__tag { color: var(--violet); }
.zone--exc { background: rgba(22, 214, 125, 0.10); border-color: rgba(22, 214, 125, 0.35); }
.zone--exc:hover { background: rgba(22, 214, 125, 0.18); }
.zone--exc .zone__tag { color: var(--brand); }

.zones__copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.zones__list {
  list-style: none; padding: 0; margin: 1.5rem 0 0;
  display: grid; gap: 1rem;
}
.zones__list li {
  display: flex; gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.zones__list li b {
  font-family: var(--font-display);
  color: var(--text);
  display: block;
  margin-bottom: .15rem;
  font-size: 1rem;
}
.zones__list li span { color: var(--text-2); font-size: .9rem; }
.zones__list li::before {
  content: "";
  width: 4px; flex: 0 0 4px;
  border-radius: 2px;
  background: var(--bullet, var(--brand));
}
.zones__list li.fire::before  { background: var(--red); }
.zones__list li.easy::before  { background: var(--amber); }
.zones__list li.hidden::before { background: var(--violet); }
.zones__list li.exc::before   { background: var(--brand); }

/* =========================================================
   PLATFORM (SentryNEXus + SentryDash)
   ========================================================= */
.platform {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.platform__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: stretch;
}
@media (max-width: 900px) { .platform__split { grid-template-columns: 1fr; } }

.product-card {
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, transparent 60%, rgba(22, 214, 125, 0.4));
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: .25;
}
.product-card__eyebrow {
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .85rem;
  font-weight: 500;
}
.product-card h3 { font-size: 1.75rem; margin-bottom: .9rem; }
.product-card p { color: var(--text-2); margin-bottom: 1.6rem; font-size: 1.02rem; line-height: 1.65; }
.product-card__features {
  list-style: none;
  padding: 0; margin: 0 0 1.5rem;
  display: grid; gap: .75rem;
  grid-template-columns: minmax(0, 1fr); /* cap track so list items wrap, not overflow */
}
.product-card__features li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr); /* icon | text — forces text to wrap, not overflow */
  gap: .8rem; align-items: start;
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.55;
}
.product-card__features li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316D67D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
}
.product-card__visual {
  margin-top: auto;
  padding: 1rem;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

/* SentryNEXus device viz */
.device-viz {
  height: 220px;
  display: grid;
  place-items: center;
  position: relative;
}
.device-viz__core {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--brand), var(--brand-2));
  box-shadow: 0 0 40px var(--brand-glow), inset 0 0 20px rgba(0,0,0,0.3);
  position: relative;
  display: grid; place-items: center;
}
.device-viz__core::before {
  content: ""; position: absolute; inset: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
}
.device-viz__core::after {
  content: ""; position: absolute; inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255,255,255,0.4), transparent 50%);
}
.device-viz__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--brand);
  opacity: .35;
}
.device-viz__ring--1 { width: 160px; height: 160px; animation: rotate 14s linear infinite; }
.device-viz__ring--2 { width: 200px; height: 200px; animation: rotate 22s linear infinite reverse; opacity: .2; }
.device-viz__ring--1::before {
  content: "";
  position: absolute;
  top: -3px; left: 50%;
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--brand);
  transform: translateX(-50%);
}
@keyframes rotate { to { transform: rotate(360deg); } }

/* SentryDash chart viz */
.chart-viz {
  position: relative;
  height: 220px;
  padding: 1rem .5rem 0;
}
.chart-viz svg { width: 100%; height: 100%; }

/* =========================================================
   GLOBAL FOOTPRINT
   ========================================================= */
.global {
  position: relative;
}
.global__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
@media (max-width: 900px) { .global__grid { grid-template-columns: 1fr; } }

.world-map {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.world-map svg { width: 100%; height: 100%; }
.world-map__legend {
  position: absolute;
  bottom: 1rem; left: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
}
.world-map__legend span { display: inline-flex; align-items: center; gap: .35rem; }
.world-map__legend i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--brand);
}
.world-map__legend i.hq { background: var(--teal); box-shadow: 0 0 8px var(--teal); }

.global__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
}
.global__stats .stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
}
.global__stats .stat b {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
  letter-spacing: -0.02em;
  display: block;
}
.global__stats .stat span {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* =========================================================
   COMPETITION
   ========================================================= */
.compete {
  background:
    radial-gradient(1000px 600px at 50% 0%, rgba(22, 214, 125, 0.04), transparent 60%);
}
.compete__pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 720px) { .compete__pair { grid-template-columns: 1fr; } }

.compete-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.compete-card--accu {
  border-color: rgba(22, 214, 125, 0.3);
  background: linear-gradient(180deg, var(--surface) 0%, rgba(22, 214, 125, 0.04) 100%);
  box-shadow: 0 16px 50px -18px var(--brand-glow);
}
.compete-card h4 {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .55rem;
}
.compete-card--others h4 { color: var(--text-3); }
.compete-card--accu h4 { color: var(--brand); }
.compete-card ul {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: .7rem;
}
.compete-card li {
  font-size: .93rem;
  display: flex; gap: .55rem;
  color: var(--text-2);
}
.compete-card li::before {
  content: "—"; color: var(--text-dim);
  flex: 0 0 16px;
}
.compete-card--accu li::before { content: "→"; color: var(--brand); }
.compete-card--accu li b { color: var(--text); }

/* =========================================================
   CTA
   ========================================================= */
.cta {
  position: relative;
  padding: clamp(4rem, 7vw, 7rem) 0;
  background:
    radial-gradient(700px 500px at 50% 50%, rgba(22, 214, 125, 0.12), transparent 70%);
  text-align: center;
}
.cta__inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: linear-gradient(160deg, var(--surface) 0%, var(--surface-2) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.cta__inner::before, .cta__inner::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .4;
  pointer-events: none;
}
.cta__inner::before { background: var(--brand); top: -120px; left: -120px; }
.cta__inner::after { background: var(--teal); bottom: -120px; right: -120px; }
.cta__inner > * { position: relative; }
.cta h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
.cta p { color: var(--text-2); font-size: 1.05rem; margin-bottom: 2rem; }
.cta__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta__event {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: .92rem;
  color: var(--text-2);
  letter-spacing: .06em;
  line-height: 1.55;
}
.cta__event b { color: var(--text); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-1);
  padding: 4rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand p {
  color: var(--text-3);
  font-size: .9rem;
  margin: .8rem 0 1.2rem;
  max-width: 360px;
}
.footer__col h5 {
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: .65rem; }
.footer__col a {
  color: var(--text-2);
  font-size: .98rem;
  transition: color .2s var(--ease);
}
.footer__col a:hover { color: var(--brand); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .92rem;
  color: var(--text-2);
}

.social {
  display: flex; gap: .5rem;
}
.social a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-2);
  transition: all .2s var(--ease);
}
.social a:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-soft);
}

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }

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

/* =========================================================
   PAGE: Subpage hero
   ========================================================= */
.page-hero {
  padding: 6.5rem 0 3rem;   /* was 11rem top — far more than the nav needs; tighten to fit the fold */
  position: relative;
  overflow: hidden; /* clip decorative .hero__bg glow (matches .hero) */
  border-bottom: 1px solid var(--border);
}
.page-hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(1.75rem, 4vw, 3.25rem);
  align-items: center;
}
@media (max-width: 900px) { .page-hero__inner { grid-template-columns: 1fr; } }
.page-hero h1 { font-size: clamp(2rem, 3.6vw, 3rem); margin-bottom: .9rem; }
.page-hero p { font-size: 1rem; color: var(--text-2); max-width: 560px; margin: 0 0 .8rem; line-height: 1.5; }

/* feature columns */
.cols-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
@media (max-width: 900px) { .cols-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 580px) { .cols-3 { grid-template-columns: minmax(0, 1fr); } }

.feat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  min-width: 0; /* let grid/flex item shrink rather than overflow on small screens */
  transition: all .25s var(--ease);
}
.feat:hover { border-color: var(--brand); transform: translateY(-2px); }
.feat__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--brand-soft);
  border: 1px solid rgba(22, 214, 125, 0.25);
  display: grid; place-items: center;
  margin-bottom: 1rem;
  color: var(--brand);
}
.feat h4 { font-size: 1.15rem; margin-bottom: .5rem; letter-spacing: -0.01em; }
.feat p { font-size: 1rem; color: var(--text-2); margin: 0; line-height: 1.6; }
