:root {
  color-scheme: dark light;
  --bg: #061014;
  --bg-deep: #020617;
  --surface: rgba(14, 25, 32, 0.82);
  --surface-strong: rgba(12, 30, 38, 0.94);
  --surface-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(203, 213, 225, 0.16);
  --line-strong: rgba(45, 212, 191, 0.38);
  --accent: #2dd4bf;
  --accent-2: #f59e0b;
  --accent-3: #7dd3fc;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --subtle: #94a3b8;
  --ink: #020617;
  --radius-sm: 0.875rem;
  --radius-md: 1.5rem;
  --radius-lg: 2rem;
  --radius-xl: 2.6rem;
  --shadow-soft: 0 24px 80px rgba(2, 6, 23, 0.32);
  --shadow-lift: 0 30px 100px rgba(2, 6, 23, 0.42);
  --max: 84rem;
}

html:not(.dark) {
  --bg: #edfdfa;
  --bg-deep: #dff8f3;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.95);
  --surface-soft: rgba(2, 6, 23, 0.045);
  --line: rgba(15, 23, 42, 0.16);
  --line-strong: rgba(15, 118, 110, 0.28);
  --text: #0f172a;
  --muted: #334155;
  --subtle: #64748b;
  --ink: #020617;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18% 8%, rgba(45, 212, 191, 0.18), transparent 28rem),
    radial-gradient(circle at 84% 18%, rgba(245, 158, 11, 0.12), transparent 24rem),
    linear-gradient(rgba(148, 163, 184, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.055) 1px, transparent 1px),
    linear-gradient(180deg, var(--bg-deep), var(--bg) 38rem, var(--bg-deep));
  background-size: auto, auto, 52px 52px, 52px 52px, auto;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

a:hover {
  color: #ffffff;
}

html:not(.dark) a:hover {
  color: #0f766e;
}

img,
svg {
  display: block;
}

.hidden {
  display: none !important;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-shell::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0, rgba(125, 211, 252, 0.08), transparent 42rem);
  content: "";
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid var(--line);
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(22px);
}

html:not(.dark) .site-header {
  background: rgba(255, 255, 255, 0.76);
}

.site-header__inner,
.mobile-nav,
.section,
.footer__inner {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
}

.site-header__inner {
  display: grid;
  min-height: 4.75rem;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
}

.site-logo img {
  height: 1.65rem;
  max-width: 10rem;
}

html:not(.dark) .site-logo img,
html:not(.dark) .site-footer img {
  filter: invert(1);
}

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

.site-nav {
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.8rem);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.site-nav a {
  position: relative;
  padding: 0.4rem 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: right 180ms ease;
  content: "";
}

.site-nav a:hover::after {
  right: 0;
}

.site-actions {
  justify-content: flex-end;
  gap: 0.65rem;
}

.mobile-nav {
  display: none;
  gap: 1rem;
  overflow-x: auto;
  border-top: 1px solid var(--line);
  padding: 0.72rem 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.button,
.icon-button,
.legal-button-link {
  -webkit-tap-highlight-color: transparent;
}

.button,
.icon-button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.78rem 1.12rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.icon-button:hover {
  border-color: rgba(45, 212, 191, 0.45);
  background: rgba(45, 212, 191, 0.1);
  box-shadow: 0 14px 40px rgba(45, 212, 191, 0.12);
  transform: translateY(-2px);
}

.button--primary {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--ink);
}

.button--primary:hover {
  background: #e2e8f0;
  color: var(--ink);
}

.button--accent {
  border-color: rgba(45, 212, 191, 0.55);
  background: rgba(45, 212, 191, 0.16);
  color: #ccfbf1;
}

html:not(.dark) .button--accent {
  color: #0f766e;
}

.button--quiet {
  background: transparent;
}

.icon-button {
  width: 2.75rem;
  padding: 0;
}

.icon-button svg {
  width: 1.12rem;
  height: 1.12rem;
}

.locale {
  position: relative;
}

.locale-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 0.8rem);
  width: min(19rem, calc(100vw - 2rem));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  box-shadow: var(--shadow-lift);
  padding: 1rem;
}

.locale-panel p {
  margin: 0.4rem 0 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.locale-panel label {
  display: block;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.locale-panel select {
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(2, 6, 23, 0.75);
  color: var(--text);
  padding: 0.72rem;
}

html:not(.dark) .locale-panel select {
  background: #ffffff;
}

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

.section--tight {
  padding-top: 3rem;
}

.section-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
}

.hero {
  display: grid;
  min-height: calc(100vh - 4.75rem);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.hero--compact {
  min-height: auto;
  padding-top: clamp(3rem, 6vw, 5rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.hero--split,
.two-column {
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
}

.two-column {
  display: grid;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.sticky-copy {
  position: sticky;
  top: 7rem;
}

.eyebrow,
.section-code {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-code::before {
  width: 0.56rem;
  height: 0.56rem;
  border-radius: 99px;
  background: var(--accent-2);
  box-shadow: 0 0 0 0.35rem rgba(245, 158, 11, 0.12);
  content: "";
}

.section-code {
  color: var(--accent-2);
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  max-width: 62rem;
  margin-bottom: 1.45rem;
  font-size: clamp(3.4rem, 7.8vw, 7.8rem);
  line-height: 0.92;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 1.1rem;
  font-size: clamp(2.4rem, 5.1vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.12rem, 1.4vw, 1.35rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.lead {
  max-width: 54rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

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

.hero-actions,
.action-row,
.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-actions {
  margin-top: 2rem;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 2.5rem;
  color: var(--subtle);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scroll-cue span {
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-visual {
  position: relative;
  min-height: min(38rem, 75vh);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(45, 212, 191, 0.11), transparent 30%),
    linear-gradient(315deg, rgba(245, 158, 11, 0.1), transparent 32%),
    rgba(2, 6, 23, 0.5);
  box-shadow: var(--shadow-lift);
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: calc(var(--radius-xl) - 0.8rem);
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 32px 32px;
  content: "";
}

.workflow-orbit {
  position: absolute;
  inset: 2rem;
  display: grid;
  place-items: center;
}

.workflow-core {
  position: relative;
  z-index: 3;
  width: min(76%, 25rem);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: rgba(7, 20, 26, 0.88);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  padding: 1.25rem;
}

html:not(.dark) .workflow-core {
  background: rgba(255, 255, 255, 0.92);
}

.workflow-core__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.workflow-core__bars {
  display: grid;
  gap: 0.65rem;
  margin-top: 1rem;
}

.workflow-core__bar {
  height: 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.workflow-core__bar::before {
  display: block;
  width: var(--bar, 64%);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  content: "";
}

.float-card {
  position: absolute;
  z-index: 4;
  min-width: 9rem;
  max-width: 13rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(14, 25, 32, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  animation: floatY var(--float-duration, 7s) ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

html:not(.dark) .float-card {
  background: rgba(255, 255, 255, 0.86);
}

.float-card strong {
  display: block;
  color: var(--text);
  font-size: 0.94rem;
}

.float-card span {
  display: block;
  margin-top: 0.2rem;
  color: var(--subtle);
  font-size: 0.78rem;
}

.float-card--customer { top: 9%; left: 9%; }
.float-card--catalog { top: 15%; right: 7%; --float-duration: 8s; --float-delay: -1.5s; }
.float-card--pricing { bottom: 16%; left: 6%; --float-duration: 7.5s; --float-delay: -2s; }
.float-card--proposal { bottom: 9%; right: 12%; --float-duration: 8.8s; --float-delay: -3s; }
.float-card--followup { top: 50%; right: 4%; --float-duration: 7.2s; --float-delay: -1s; }

.parallax-glow {
  position: absolute;
  width: 18rem;
  height: 18rem;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(34px);
  opacity: 0.28;
}

.parallax-glow--one {
  left: -6rem;
  top: 9rem;
  background: var(--accent);
}

.parallax-glow--two {
  right: -5rem;
  bottom: 4rem;
  background: var(--accent-2);
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee__track span {
  padding: 1rem 1.2rem;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  white-space: nowrap;
}

.section-heading {
  max-width: 60rem;
  margin-bottom: 2.5rem;
}

.overview-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

.statement {
  max-width: 72rem;
  font-size: clamp(2.6rem, 5.6vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.metric-grid,
.card-grid,
.module-grid,
.workflow-grid,
.footer-grid,
.setup-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.module-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
}

.module-card:nth-child(1),
.module-card:nth-child(4),
.module-card:nth-child(9) {
  grid-column: span 3;
}

.module-card:nth-child(2),
.module-card:nth-child(3),
.module-card:nth-child(5),
.module-card:nth-child(6),
.module-card:nth-child(7),
.module-card:nth-child(8) {
  grid-column: span 2;
}

.card,
.metric,
.note-band,
.module-card,
.workflow-step,
.plan-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.card::before,
.metric::before,
.module-card::before,
.workflow-step::before,
.plan-card::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 8%, rgba(45, 212, 191, 0.16), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
  content: "";
}

.card:hover,
.metric:hover,
.module-card:hover,
.workflow-step:hover,
.plan-card:hover {
  border-color: var(--line-strong);
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.card:hover::before,
.metric:hover::before,
.module-card:hover::before,
.workflow-step:hover::before,
.plan-card:hover::before {
  opacity: 1;
}

.card,
.metric,
.note-band,
.workflow-step {
  padding: clamp(1.2rem, 2vw, 1.6rem);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.module-card {
  min-height: 15rem;
  padding: clamp(1.4rem, 2.6vw, 2.1rem);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.module-card__index {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--accent-2);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.8;
  opacity: 0.72;
}

.metric strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--text);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: -0.02em;
}

.metric span,
.card p,
.note-band p,
.module-card p,
.workflow-step p {
  color: var(--muted);
}

.timeline {
  position: relative;
  display: grid;
  gap: 1rem;
}

.timeline::before {
  position: absolute;
  left: 1.4rem;
  top: 1rem;
  bottom: 1rem;
  width: 1px;
  background: linear-gradient(var(--accent), rgba(45, 212, 191, 0.05));
  content: "";
}

.timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
}

.timeline-step__number {
  z-index: 2;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep);
  color: var(--accent);
  font-weight: 900;
}

.timeline-step__body {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 1.2rem;
}

.pricing-links {
  justify-content: center;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.92rem;
}

#pricing-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  align-items: stretch;
  gap: 1.1rem;
  max-width: var(--max);
  margin: 1.8rem auto 0;
}

#pricing-plans[data-count="1"] {
  max-width: 31rem;
}

.pricing-state {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.pricing-skeleton {
  display: grid;
  gap: 0.75rem;
  max-width: 48rem;
  margin: 0 auto;
}

.pricing-skeleton span {
  display: block;
  height: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.08), rgba(45,212,191,0.2), rgba(255,255,255,0.08));
  background-size: 180% 100%;
  animation: shimmer 1.8s ease-in-out infinite;
}

.pricing-skeleton span:nth-child(1) { width: 88%; }
.pricing-skeleton span:nth-child(2) { width: 72%; }
.pricing-skeleton span:nth-child(3) { width: 54%; }

.plan-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: clamp(1.4rem, 2.5vw, 2rem);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.plan-card--highlighted {
  border-color: var(--line-strong);
  background:
    radial-gradient(circle at 20% 0, rgba(45, 212, 191, 0.16), transparent 18rem),
    rgba(10, 45, 48, 0.72);
}

.plan-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.plan-card__eyebrow {
  margin: 0 0 0.6rem;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card__title {
  color: var(--text);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 900;
}

.plan-card__description,
.plan-card__cycle,
.plan-card__notes,
.plan-feature {
  color: var(--muted);
}

.plan-card__badge {
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.18);
  color: #fde68a;
  padding: 0.35rem 0.68rem;
  font-size: 0.72rem;
  font-weight: 900;
}

.plan-card__price-row {
  margin-top: 1.6rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.plan-card__price {
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: clamp(2.3rem, 4vw, 3.4rem);
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 1;
}

.plan-card__notes {
  margin-top: 0.75rem;
  font-size: 0.88rem;
}

.plan-card__notes p {
  margin-bottom: 0.25rem;
}

.plan-features {
  display: grid;
  gap: 0.72rem;
  margin: 1.35rem 0 1.6rem;
  padding: 0;
  list-style: none;
}

.plan-feature {
  display: flex;
  gap: 0.62rem;
}

.plan-feature-dot {
  width: 0.48rem;
  height: 0.48rem;
  flex: 0 0 auto;
  margin-top: 0.55rem;
  border-radius: 99px;
  background: var(--accent);
  box-shadow: 0 0 0 0.35rem rgba(45, 212, 191, 0.08);
}

.plan-feature-more {
  color: var(--text);
  font-weight: 900;
}

.plan-card__button {
  margin-top: auto;
  border: 1px solid #ffffff;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  padding: 0.95rem 1.1rem;
  text-align: center;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.plan-card__button:hover {
  background: #e2e8f0;
  color: var(--ink);
  transform: translateY(-2px);
}

.plan-card__button--disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.contact-list {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 20% 0, rgba(45, 212, 191, 0.14), transparent 30rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(2, 6, 23, 0.82));
}

.footer__inner {
  padding: clamp(4rem, 8vw, 7rem) 0 1.6rem;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 2rem;
  align-items: end;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.4rem, 4vw, 3rem);
}

.footer-cta h2 {
  max-width: 55rem;
  margin-bottom: 0.9rem;
}

.footer-grid {
  grid-template-columns: 1fr 1fr 1.5fr 1.5fr;
  margin-top: 3rem;
}

.footer-title {
  margin-bottom: 0.8rem;
  color: var(--text);
  font-weight: 900;
}

.footer-list {
  display: grid;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
}

.footer-contact {
  margin: 0;
  color: var(--muted);
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
  color: var(--subtle);
  font-size: 0.92rem;
}

.footer-wordmark {
  max-width: 100%;
  margin: clamp(2.5rem, 7vw, 5rem) 0 0;
  color: rgba(255, 255, 255, 0.09);
  font-size: clamp(4.6rem, 16vw, 14rem);
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.82;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

html:not(.dark) .footer-wordmark {
  color: rgba(15, 23, 42, 0.09);
}

.link {
  color: #99f6e4;
  text-decoration: underline;
  text-decoration-color: rgba(153, 246, 228, 0.45);
  text-underline-offset: 0.18rem;
}

html:not(.dark) .link {
  color: #0f766e;
}

.legal-button-link {
  border: 0;
  padding: 0;
  color: #99f6e4;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: rgba(153, 246, 228, 0.45);
  text-underline-offset: 0.18rem;
}

html:not(.dark) .legal-button-link {
  color: #0f766e;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes shimmer {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

@media (max-width: 72rem) {
  .site-header__inner {
    min-height: auto;
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: stretch;
    gap: 0.85rem;
    padding: 0.75rem 0;
  }

  .site-nav {
    display: none;
  }

  .site-actions {
    width: auto;
    min-width: 0;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  .site-actions .button {
    min-height: 2.5rem;
    padding: 0.68rem 0.85rem;
    white-space: nowrap;
  }

  .mobile-nav {
    display: flex;
  }

  .hero--split,
  .two-column,
  .overview-layout,
  .contact-grid,
  .footer-cta {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .sticky-copy {
    position: static;
  }

  .hero-visual {
    min-height: 34rem;
  }

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

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

  .module-card:nth-child(n) {
    grid-column: span 1;
  }
}

@media (max-width: 42rem) {
  .site-header__inner {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 0.7rem 0 0.55rem;
  }

  .site-logo img {
    height: 1.5rem;
  }

  .site-actions {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto auto;
    gap: 0.45rem;
  }

  .site-actions .button {
    width: auto;
    min-width: 0;
    min-height: 2.35rem;
    padding: 0.55rem 0.56rem;
    font-size: 0.8rem;
  }

  .icon-button {
    width: 2.35rem;
    min-width: 2.35rem;
    min-height: 2.35rem;
    padding: 0;
  }

  .mobile-nav {
    gap: 0.82rem;
    padding: 0.55rem 0 0.6rem;
    font-size: 0.8rem;
  }

  .hero .hero-actions {
    max-width: 100%;
    flex-wrap: wrap;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .hero .hero-actions .button {
    flex: 0 1 auto;
    min-height: 2.45rem;
    padding: 0.62rem 0.78rem;
    font-size: 0.82rem;
  }

  .metric-grid,
  .card-grid,
  .setup-grid,
  .module-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    overflow-wrap: normal;
    font-size: 2.78rem;
    line-height: 1.04;
  }

  .hero-visual {
    min-height: 36rem;
  }

  .float-card {
    min-width: 8rem;
    max-width: 10.5rem;
    padding: 0.82rem;
  }

  .float-card--customer { top: 8%; left: 5%; }
  .float-card--catalog { top: 20%; right: 4%; }
  .float-card--pricing { bottom: 20%; left: 5%; }
  .float-card--proposal { bottom: 8%; right: 7%; }
  .float-card--followup { top: 50%; right: 5%; }

  .workflow-core {
    width: 84%;
  }

  .footer-wordmark {
    white-space: normal;
    word-break: break-word;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 24rem) {
  h1 {
    font-size: 2.52rem;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .marquee__track {
    animation: none;
  }
}
