:root {
  color-scheme: dark;
  --bg: #070a0f;
  --bg-2: #0d1119;
  --panel: rgba(18, 20, 26, 0.84);
  --panel-strong: rgba(18, 20, 26, 0.94);
  --panel-soft: rgba(42, 47, 58, 0.54);
  --line: rgba(36, 42, 54, 1);
  --line-bright: rgba(77, 181, 106, 0.78);
  --line-soft: rgba(77, 181, 106, 0.24);
  --green: #4db56a;
  --green-2: #2e7f4b;
  --green-3: #36985a;
  --teal: #00c6b2;
  --cyan: #35ffe4;
  --gold: #ebaa3c;
  --text: #f5f7fb;
  --muted: #9aa3b5;
  --muted-2: #ccd3df;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.44);
  --radius-xl: 28px;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 9px;
  --max: 1180px;
  --topbar: 76px;
  --ease: cubic-bezier(.2, .85, .22, 1);
}

* { box-sizing: border-box; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100svh;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(77, 181, 106, 0.14), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(0, 198, 178, 0.12), transparent 30rem),
    linear-gradient(180deg, #05070b 0%, #0a0e15 44%, #070a0f 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), rgba(0,0,0,.18) 65%, transparent);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(circle 420px at var(--cursor-x, 50%) var(--cursor-y, 12%), rgba(77,181,106,.12), transparent 68%);
  opacity: .95;
}

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

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--green-2);
  color: var(--text);
  transition: top .2s var(--ease);
}

.skip-link:focus { top: 16px; }

.topbar {
  position: fixed;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 28px), var(--max));
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 58px;
  padding: 9px 10px 9px 12px;
  background: rgba(12, 15, 21, .68);
  border: 1px solid rgba(77, 181, 106, .28);
  border-radius: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(18px) saturate(140%);
}

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

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--text);
  font-weight: 900;
  letter-spacing: -.08em;
  background:
    radial-gradient(circle at 50% 18%, rgba(130,255,182,.22), transparent 44%),
    linear-gradient(145deg, rgba(42,47,58,.92), rgba(10,13,18,.96));
  border: 1px solid var(--line-bright);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), inset 0 -12px 26px rgba(0,0,0,.34), 0 0 22px rgba(77,181,106,.18);
}

.brand-logo-img {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.brand-name {
  display: grid;
  gap: 1px;
  line-height: 1;
}

.brand-name strong {
  font-size: 15px;
  letter-spacing: -.03em;
}

.brand-name span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a {
  color: rgba(245, 247, 251, .82);
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 750;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}

.nav a:hover, .nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(42,47,58,.62);
}

.nav .nav-cta {
  color: var(--text);
  background: rgba(46,127,75,.72);
  border: 1px solid rgba(77,181,106,.7);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(77, 181, 106, .38);
  border-radius: 13px;
  background: rgba(42,47,58,.62);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
}

.site-main {
  min-height: 100svh;
}

.section {
  position: relative;
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  padding: 96px 0;
}

.section-tight { padding: 54px 0; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 128px 0 52px;
  background: #05070b;
}

.hero--short {
  min-height: 68svh;
  align-items: center;
  padding-bottom: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: -8% -8% -12%;
  width: 116%;
  height: 120%;
  object-fit: cover;
  opacity: .62;
  filter: saturate(1.05) contrast(1.05) brightness(.72);
  transform: translate3d(0, var(--video-y, 0px), 0) scale(1.02);
  will-change: transform;
}

.hero-fallback {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(77,181,106,.26), transparent 24rem),
    radial-gradient(circle at 72% 60%, rgba(0,198,178,.15), transparent 28rem),
    linear-gradient(135deg, #111923, #05070b 60%);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,7,11,.18), rgba(5,7,11,.72) 58%, rgba(5,7,11,.96)),
    radial-gradient(circle at 18% 72%, rgba(77,181,106,.16), transparent 30rem);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 72px 72px;
  transform: translate3d(0, var(--grid-y, 0px), 0);
  will-change: transform;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .72fr);
  align-items: end;
  gap: 28px;
}

.hero--short .hero-inner { align-items: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 7px 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: rgba(245,247,251,.86);
  background: rgba(42,47,58,.56);
  border: 1px solid rgba(77,181,106,.28);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px rgba(77,181,106,.85);
}

.hero-title {
  margin: 0;
  max-width: 850px;
  font-size: clamp(48px, 8vw, 104px);
  line-height: .88;
  letter-spacing: -.075em;
  text-wrap: balance;
}

.hero-title .title-accent {
  color: var(--green);
  text-shadow: 0 0 34px rgba(77,181,106,.22);
}

.hero-title--wide { letter-spacing: -.045em; font-stretch: expanded; }
.hero-title--compact { letter-spacing: -.095em; }
.hero-title--mono { font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace; letter-spacing: -.08em; }
.hero-title--soft { letter-spacing: -.055em; font-weight: 750; }

.title-accent.accent-green { color: var(--green); }
.title-accent.accent-cyan { color: var(--cyan); }
.title-accent.accent-purple { color: #b993ff; }
.title-accent.accent-gold { color: #ffd36b; }
.title-accent.accent-white { color: #ffffff; }
.title-accent.accent-pink { color: #ff8fc7; }

.title-accent.accent-style-solid { text-shadow: none; }
.title-accent.accent-style-glow { text-shadow: 0 0 34px currentColor; }
.title-accent.accent-style-gradient {
  background: linear-gradient(90deg, currentColor, #ffffff 46%, var(--green));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
}
.title-accent.accent-style-underline {
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .12em;
}
.title-accent.accent-style-boxed {
  display: inline-block;
  padding: .02em .12em .08em;
  border: 1px solid currentColor;
  border-radius: .16em;
  background: rgba(255,255,255,.05);
  box-shadow: 0 0 34px rgba(77,181,106,.18);
}
.title-accent.accent-style-outline {
  color: transparent;
  -webkit-text-stroke: .018em currentColor;
  text-shadow: 0 0 28px rgba(255,255,255,.18);
}
.title-accent.accent-bold { font-weight: 950; }
.title-accent.accent-italic { font-style: italic; }
.title-accent.accent-uppercase { text-transform: uppercase; letter-spacing: -.035em; }

.hero-copy {
  max-width: 720px;
  margin: 24px 0 0;
  color: rgba(245,247,251,.78);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions, .actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 12px;
  border: 1px solid rgba(36,42,54,1);
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -.01em;
  background: rgba(42,47,58,.68);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
  transition: transform .18s var(--ease), border-color .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(77,181,106,.72);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 18px 40px rgba(0,0,0,.24);
}

.btn-primary {
  background: linear-gradient(180deg, rgba(54,152,90,.96), rgba(46,127,75,.94));
  border-color: rgba(77,181,106,.84);
}

.btn-ghost { background: rgba(42,47,58,.46); }

.btn-subtle {
  background: transparent;
  color: var(--muted-2);
  border-color: rgba(77,181,106,.22);
}

.glass-card, .tool-card, .feature-card, .quote-card, .stat-card, .timeline-card {
  position: relative;
  border: 1px solid rgba(77,181,106,.25);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent 28%),
    var(--panel);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.055);
  overflow: hidden;
}

.glass-card::before, .tool-card::before, .feature-card::before, .quote-card::before, .stat-card::before, .timeline-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: radial-gradient(circle 420px at var(--card-x, 50%) var(--card-y, 0%), rgba(77,181,106,.13), transparent 60%);
  opacity: .9;
}

.hero-panel {
  padding: 18px;
  align-self: stretch;
  min-height: 340px;
  display: grid;
}

.hero-panel-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  align-content: space-between;
}

.micro-window {
  border: 1px solid rgba(36,42,54,1);
  border-radius: 16px;
  background: rgba(7,10,15,.62);
  overflow: hidden;
}

.micro-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  color: var(--muted);
  border-bottom: 1px solid rgba(36,42,54,.9);
  font-size: 12px;
  font-weight: 800;
}

.micro-dots { display: inline-flex; gap: 5px; }
.micro-dots i { width: 7px; height: 7px; border-radius: 50%; background: rgba(77,181,106,.9); }
.micro-dots i:nth-child(2) { background: rgba(235,170,60,.88); }
.micro-dots i:nth-child(3) { background: rgba(0,198,178,.88); }

.micro-body { padding: 16px 14px 18px; }

.slider-line {
  position: relative;
  height: 30px;
  margin: 16px 0;
}

.slider-line::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 14px;
  height: 4px;
  border-radius: 99px;
  background: linear-gradient(90deg, rgba(40,40,40,.6), rgba(0,210,120,.72));
}

.slider-line::after {
  content: "";
  position: absolute;
  top: 5px;
  width: 34px;
  height: 16px;
  border-radius: 999px;
  left: var(--knob, 58%);
  background: linear-gradient(135deg, rgb(0,150,110), rgb(0,110,80));
  border: 2px solid rgb(15,85,70);
  box-shadow: 0 0 26px rgba(0,210,120,.25);
}

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; }

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(42,47,58,.6);
  color: rgba(245,247,251,.78);
  border: 1px solid rgba(36,42,54,1);
  font-size: 12px;
  font-weight: 800;
}

.pill.is-on {
  background: rgba(46,127,75,.72);
  border-color: rgba(77,181,106,.82);
  color: var(--text);
}

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

.stat-card {
  padding: 16px;
  min-height: 96px;
}

.stat-card strong {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 28px;
  letter-spacing: -.05em;
}

.stat-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 800px;
  margin-bottom: 34px;
}

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

.kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: .96;
  letter-spacing: -.055em;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  letter-spacing: -.03em;
}

.section-head p, .lead {
  color: rgba(245,247,251,.72);
  font-size: 17px;
  line-height: 1.65;
}

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

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

.feature-card, .tool-card, .quote-card, .timeline-card {
  padding: 22px;
  min-height: 220px;
}

.feature-card > *, .tool-card > *, .quote-card > *, .timeline-card > * { position: relative; z-index: 1; }

.feature-card p, .tool-card p, .quote-card p, .timeline-card p {
  color: rgba(245,247,251,.68);
  line-height: 1.62;
  margin-bottom: 0;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(46,127,75,.9), rgba(42,47,58,.72));
  border: 1px solid rgba(77,181,106,.66);
  color: var(--text);
  font-weight: 950;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.09), 0 0 28px rgba(77,181,106,.12);
}

.tool-card {
  min-height: 320px;
  display: grid;
  align-content: space-between;
  gap: 20px;
}

.tool-card.featured {
  grid-column: span 2;
  min-height: 360px;
  border-color: rgba(77,181,106,.5);
  background:
    radial-gradient(circle at 80% 0%, rgba(77,181,106,.22), transparent 34rem),
    linear-gradient(180deg, rgba(255,255,255,.04), transparent 40%),
    rgba(18,20,26,.88);
}

.tool-logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.tool-logo-row img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(245,247,251,.8);
  background: rgba(42,47,58,.6);
  border: 1px solid rgba(77,181,106,.28);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 850;
}

.status-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.feature-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(245,247,251,.74);
  line-height: 1.5;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(77,181,106,.42);
}

.video-panel {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(77,181,106,.28);
  background: rgba(18,20,26,.78);
  box-shadow: var(--shadow);
}

.video-panel video, .video-panel .video-fallback {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  opacity: .72;
  filter: saturate(1.05) contrast(1.02) brightness(.8);
}

.video-panel .video-copy {
  position: absolute;
  inset: auto 22px 22px 22px;
  max-width: 600px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(7,10,15,.72);
  border: 1px solid rgba(77,181,106,.25);
  backdrop-filter: blur(14px);
}

.video-panel h3 { margin-bottom: 8px; }
.video-panel p { color: rgba(245,247,251,.72); line-height: 1.55; margin-bottom: 0; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
}

.product-shot {
  min-height: 440px;
  padding: 18px;
}

.product-shot .micro-window { min-height: 100%; }

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-card {
  min-height: unset;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.timeline-card .step {
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.cta-band {
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(77,181,106,.34);
  background:
    radial-gradient(circle at 15% 0%, rgba(77,181,106,.22), transparent 32rem),
    linear-gradient(145deg, rgba(18,20,26,.96), rgba(11,14,20,.88));
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
}

.cta-band p { margin-bottom: 0; color: rgba(245,247,251,.7); line-height: 1.6; }

.footer {
  border-top: 1px solid rgba(36,42,54,.92);
  padding: 32px 0 42px;
  color: rgba(245,247,251,.58);
}

.footer-inner {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer a { color: rgba(245,247,251,.82); }
.footer a:hover { color: var(--green); }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.tilt {
  transform-style: preserve-3d;
  transition: transform .22s var(--ease), border-color .22s var(--ease);
}

.tilt:hover { border-color: rgba(77,181,106,.54); }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.breadcrumb a { color: rgba(245,247,251,.8); }
.breadcrumb a:hover { color: var(--green); }

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border: 1px solid rgba(77,181,106,.28);
  border-radius: 18px;
  background: rgba(18,20,26,.7);
}

.compare-table th, .compare-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(36,42,54,.88);
  text-align: left;
}

.compare-table th {
  color: var(--text);
  background: rgba(42,47,58,.54);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.compare-table td { color: rgba(245,247,251,.74); }
.compare-table tr:last-child td { border-bottom: 0; }

.notice {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(235,170,60,.45);
  background: rgba(235,170,60,.09);
  color: rgba(245,247,251,.78);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .hero-inner, .split, .cta-band { grid-template-columns: 1fr; }
  .hero-panel { min-height: unset; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .tool-card.featured { grid-column: span 1; }
}

@media (max-width: 760px) {
  .topbar { top: 10px; width: calc(100% - 20px); }
  .brand-name span { display: none; }
  .menu-toggle { display: block; }
  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: min(360px, calc(100vw - 20px));
    display: none;
    padding: 10px;
    background: rgba(12,15,21,.92);
    border: 1px solid rgba(77,181,106,.28);
    border-radius: 16px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
  }
  .topbar.is-open .nav { display: grid; }
  .nav a { width: 100%; }
  .hero { padding-top: 112px; }
  .section { width: min(calc(100% - 28px), var(--max)); padding: 76px 0; }
  .grid-3, .grid-2, .metric-grid { grid-template-columns: 1fr; }
  .timeline-card { grid-template-columns: 1fr; }
  .video-panel, .video-panel video, .video-panel .video-fallback { min-height: 520px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
  .hero-video { transform: none !important; }
  .hero-grid { transform: none !important; }
}
.hero-fallback { z-index: 0; }
.hero-video { z-index: 1; }
.hero-shade { z-index: 2; }
.hero-grid { z-index: 3; mix-blend-mode: screen; }

/* Added for AnimFray Site Manager generated sections */
.showcase-media {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(77, 181, 106, 0.34);
  background: rgba(8, 10, 14, 0.82);
}
.rich-text {
  padding: clamp(22px, 4vw, 44px);
}
.rich-text p,
.rich-text li {
  color: var(--muted);
  line-height: 1.75;
}

/* Inline formatting generated by AnimFray Site Manager.
   These classes are intentionally generic so formatting can be used in hero text,
   section text, cards, timeline items, and future content blocks. */
.fmt-accent,
.format-accent {
  color: var(--green);
  font-weight: 900;
  text-shadow: 0 0 22px rgba(77,181,106,.2);
}
.fmt-highlight,
.format-highlight {
  color: var(--text);
  background: rgba(77,181,106,.18);
  border: 1px solid rgba(77,181,106,.36);
  border-radius: .38em;
  padding: .02em .24em .08em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
.fmt-soft,
.format-soft {
  color: var(--muted-2);
}
.fmt-keyword,
.format-keyword {
  color: var(--cyan);
  font-weight: 850;
}
.fmt-callout,
.format-callout {
  color: #ffd36b;
  font-weight: 850;
}
.fmt-code,
.format-code,
.rich-text code,
p code,
li code {
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-size: .92em;
  color: rgba(245,247,251,.92);
  background: rgba(7,10,15,.7);
  border: 1px solid rgba(77,181,106,.22);
  border-radius: .42em;
  padding: .08em .32em;
}
.fmt-bold,
.format-bold { font-weight: 950; }
.fmt-italic,
.format-italic { font-style: italic; }
.fmt-underline,
.format-underline {
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .14em;
}
.fmt-no-underline,
.format-no-underline {
  text-decoration: none !important;
}

.section-head a:not(.btn),
.hero-copy a:not(.btn),
.feature-card a:not(.btn),
.tool-card a:not(.btn),
.timeline-card a:not(.btn),
.cta-band a:not(.btn),
.rich-text a:not(.btn) {
  color: var(--green);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: .06em;
  text-underline-offset: .18em;
}

/* Button text defaults: keep button labels visually consistent and white unless a future explicit option overrides it. */
.btn,
.btn-primary,
.btn-ghost,
.btn-subtle,
.hero-actions .btn,
.actions .btn {
  color: var(--text);
  font-family: inherit;
  font-style: normal;
  font-weight: 850;
}
.btn:hover,
.btn-primary:hover,
.btn-ghost:hover,
.btn-subtle:hover {
  color: var(--text);
}

/* Button text formatting controlled from the Site Manager button tables. */
.btn,
.btn-primary,
.btn-ghost,
.btn-subtle,
.hero-actions .btn,
.actions .btn {
  text-decoration: none;
}
.btn-text-default,
.btn-text-no-underline {
  color: var(--text);
  text-decoration: none !important;
}
.btn-text-underline {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: .07em;
  text-underline-offset: .18em;
}
.btn-text-accent {
  color: var(--green);
  text-decoration: none;
}
.btn-text-soft {
  color: var(--muted-2);
  text-decoration: none;
}
