:root {
  --color-bg: #141412;
  --color-surface: #1C1C1A;
  --color-surface-2: #222220;
  --color-primary: #5BBF8A;
  --color-primary-dim: #3D9E6E;
  --color-primary-glow: rgba(91, 191, 138, 0.25);
  --color-primary-xray: rgba(91, 191, 138, 0.08);
  --color-accent: #7DCFA0;
  --color-text: #F0EDE8;
  --color-text-muted: #8A8880;
  --color-border: rgba(91, 191, 138, 0.18);
  --color-border-strong: rgba(91, 191, 138, 0.35);
  --color-footer: #0E0E0C;
  --color-overlay-top: rgba(20, 20, 18, 0.82);
  --color-overlay-bottom: rgba(20, 20, 18, 0.92);
  --color-nav-glass: rgba(20, 20, 18, 0.78);
  --color-nav-solid: rgba(20, 20, 18, 0.9);
  --color-shadow: rgba(0, 0, 0, 0.48);
  --font-heading: "Playfair Display", Georgia, serif;
  --font-ui: "DM Sans", Arial, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --nav-height: 72px;
  --nav-height-mobile: 60px;
  --page-max: 1180px;
  --radius: 8px;
}

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

html {
  min-width: 320px;
  background: var(--color-bg);
  color-scheme: dark;
  scroll-behavior: auto;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 20% 10%, var(--color-primary-xray), transparent 30rem),
    radial-gradient(circle at 80% 0%, var(--color-primary-xray), transparent 24rem),
    var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

body.no-transition .page-transition {
  display: none;
}

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

video,
canvas {
  pointer-events: none;
}

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

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

button {
  cursor: pointer;
}

::selection {
  background: var(--color-primary);
  color: var(--color-bg);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 4000;
  transform: translateY(-160%);
  border: 1px solid var(--color-border-strong);
  background: var(--color-surface-2);
  color: var(--color-text);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.bg-video {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at center, var(--color-primary-xray), transparent 36rem),
    var(--color-bg);
}

.bg-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.62;
  filter: saturate(0.82) contrast(1.08);
}

.bg-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(var(--color-overlay-top), var(--color-overlay-bottom));
}

.site-shell {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  overflow-x: clip;
}

.container {
  width: min(var(--page-max), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  position: relative;
  z-index: 3;
  padding: clamp(72px, 9vw, 128px) 0;
  overflow-x: clip;
}

.section.compact {
  padding: clamp(48px, 7vw, 88px) 0;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}

.section-grid.reverse {
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1fr);
}

.section-grid.reverse .section-copy {
  order: 2;
}

.section-grid.reverse .section-visual {
  order: 1;
}

.kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-primary-xray);
  color: var(--color-primary);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  padding: 8px 12px;
}

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

h1,
h2 {
  font-family: var(--font-heading);
  letter-spacing: 0;
  line-height: 1.2;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  word-break: normal;
  overflow-wrap: anywhere;
  hyphens: none;
  -webkit-hyphens: none;
  -ms-hyphens: none;
  white-space: normal;
  max-width: 100%;
}

h1 {
  font-size: clamp(42px, 8vw, 80px);
  font-weight: 700;
  margin-bottom: 18px;
  padding-top: 0.06em;
  padding-bottom: 0.18em;
}

h2 {
  padding-top: 0.04em;
  padding-bottom: 0.14em;
}

h2 {
  font-size: clamp(34px, 5.6vw, 58px);
  font-weight: 700;
  margin-bottom: 18px;
}

h3 {
  font-family: var(--font-ui);
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.18;
  margin-bottom: 14px;
}

h4 {
  font-family: var(--font-ui);
  margin-bottom: 8px;
}

.accent {
  color: var(--color-primary);
}

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

.lead {
  max-width: 680px;
  color: var(--color-text-muted);
  font-size: clamp(16px, 1.65vw, 18px);
}

.center {
  text-align: center;
}

.center .lead {
  margin-left: auto;
  margin-right: auto;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--color-primary);
  padding: 12px 20px;
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 600;
  color: var(--color-primary);
  background: transparent;
  box-shadow: none;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--color-bg);
  box-shadow: 0 0 20px var(--color-primary-glow);
  outline: none;
}

.btn.primary {
  background: var(--color-primary);
  color: var(--color-bg);
}

.btn.primary:hover,
.btn.primary:focus-visible {
  background: var(--color-accent);
}

.btn.small {
  min-height: 40px;
  padding: 8px 14px;
  font-size: 14px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-nav-glass);
  backdrop-filter: blur(24px) saturate(180%);
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--color-border-strong);
  background: var(--color-nav-solid);
}

.nav-wrap {
  width: min(1280px, calc(100% - 32px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
}

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

.brand img {
  max-height: 40px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.4vw, 30px);
}

.nav-links a {
  position: relative;
  padding: 24px 0 23px;
  color: var(--color-text-muted);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 18px;
  width: 100%;
  height: 1px;
  background: var(--color-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-primary-xray);
}

.hamburger-lines {
  width: 20px;
  height: 14px;
  position: relative;
}

.hamburger-lines span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--color-primary);
  transform-origin: center;
}

.hamburger-lines span:nth-child(1) {
  top: 0;
}

.hamburger-lines span:nth-child(2) {
  top: 6px;
}

.hamburger-lines span:nth-child(3) {
  bottom: 0;
}

.mobile-menu {
  position: fixed;
  inset: var(--nav-height-mobile) 0 0 0;
  z-index: 900;
  transform: none;
  clip-path: inset(0 0 0 100%);
  visibility: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 24px;
  background: var(--color-bg);
  border-left: 1px solid var(--color-border);
  transition: clip-path 0.42s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.42s;
}

.mobile-menu.open {
  clip-path: inset(0);
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 48px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-ui);
  font-size: 24px;
}

.hero {
  position: relative;
  display: grid;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  place-items: center;
  padding: calc(var(--nav-height) + 48px) 0 72px;
  overflow-x: hidden;
  overflow-y: visible;
}

.hero.hero-left {
  place-items: center;
}

.hero-canvas,
.scene-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 12;
  width: 100%;
  max-width: min(1320px, 100%);
  margin: 0 auto;
  padding-inline: 20px;
  text-align: center;
}

.hero-left .hero-content {
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  color: var(--color-text-muted);
  font-size: clamp(16px, 2vw, 19px);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 {
  max-width: min(1320px, 100%);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  text-wrap: balance;
}

.hero .btn-row {
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 12;
  width: 32px;
  height: 32px;
  transform: translateX(-50%);
  color: var(--color-primary);
  animation: bounce 1.6s ease-in-out infinite;
}

.stats-strip {
  position: relative;
  z-index: 4;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}

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

.stat-item {
  padding: 28px 18px;
  text-align: center;
  border-right: 1px solid var(--color-border);
}

.stat-item:last-child {
  border-right: 0;
}

.stat-number {
  display: block;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1;
}

.stat-label {
  color: var(--color-text-muted);
  font-family: var(--font-ui);
  font-size: 13px;
}

.stat-sub-label {
  display: block;
  margin-top: 4px;
  color: var(--color-primary);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.card,
.glass-panel {
  position: relative;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--color-surface), var(--color-surface-2));
  box-shadow: 0 18px 60px var(--color-shadow);
}

.card {
  min-height: 100%;
  padding: 26px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--color-primary-xray), transparent 56%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-strong);
  background: var(--color-surface-2);
  box-shadow: 0 8px 40px var(--color-primary-glow);
}

.card:hover::before {
  opacity: 1;
}

.card > * {
  position: relative;
  z-index: 1;
}

.icon {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  color: var(--color-primary);
}

.icon svg {
  width: 100%;
  height: 100%;
  stroke-width: 1.5;
}

.card h3,
.card h4 {
  color: var(--color-text);
}

.card p {
  color: var(--color-text-muted);
  font-size: 15px;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--color-primary);
  font-family: var(--font-ui);
  font-weight: 600;
  transition: transform 0.25s ease;
}

.arrow-link:hover {
  transform: translateX(4px);
}

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

.feature-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--color-text-muted);
}

.feature-list .check {
  display: inline-grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  color: var(--color-primary);
  font-size: 13px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag {
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-primary-xray);
  color: var(--color-accent);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 10px;
}

.dashboard {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: 0 28px 80px var(--color-shadow);
}

.dashboard-top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-2);
  color: var(--color-text-muted);
  font-family: var(--font-ui);
  font-size: 13px;
}

.dash-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--color-primary-dim);
}

.dashboard-body {
  padding: 18px;
}

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

.metric {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  padding: 12px;
}

.metric strong {
  display: block;
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1;
}

.metric span {
  display: block;
  color: var(--color-text-muted);
  font-family: var(--font-ui);
  font-size: 12px;
}

.kanban {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 10px;
  overflow-x: auto;
  scrollbar-color: var(--color-primary-dim) var(--color-bg);
}

.kanban-col {
  min-height: 184px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  padding: 10px;
}

.kanban-title {
  margin-bottom: 10px;
  color: var(--color-text-muted);
  font-family: var(--font-ui);
  font-size: 12px;
}

.deal-card,
.mini-row {
  border: 1px solid var(--color-border);
  border-radius: 7px;
  background: var(--color-surface);
  padding: 10px;
  color: var(--color-text);
  font-size: 13px;
}

.deal-card + .deal-card,
.mini-row + .mini-row {
  margin-top: 8px;
}

.progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--color-bg);
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-primary-dim), var(--color-primary));
}

.sparkline {
  width: 100%;
  height: 86px;
  overflow: visible;
}

.sparkline path {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-wrap {
  position: relative;
  margin-top: 46px;
}

.process-svg {
  position: absolute;
  top: 44px;
  left: 0;
  width: 100%;
  height: 120px;
  overflow: visible;
  pointer-events: none;
}

.process-path {
  fill: none;
  stroke: var(--color-primary);
  stroke-width: 2;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  opacity: 0.78;
}

.process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  padding: 0 14px;
  text-align: center;
}

.step-node {
  position: relative;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-primary);
  font-family: var(--font-heading);
  font-size: 22px;
  box-shadow: 0 0 30px var(--color-primary-glow);
}

.step-node::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--color-primary);
  border-radius: inherit;
  opacity: 0;
  transform: scale(1);
}

.step-node.pulse::after {
  animation: nodePulse 1.1s ease-out;
}

.testimonial-stage {
  position: relative;
  width: min(980px, 100%);
  min-height: 300px;
  margin: 46px auto 0;
  perspective: 1200px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  width: min(620px, 82vw);
  min-height: 270px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  padding: clamp(22px, 4vw, 34px);
  opacity: 0;
  transform: translateX(0) scale(0.8) rotateY(0);
  transition: transform 0.6s ease, opacity 0.6s ease;
  box-shadow: 0 24px 80px var(--color-shadow);
}

.testimonial-card.active {
  opacity: 1;
  transform: translateX(0) scale(1) rotateY(0);
  z-index: 3;
}

.testimonial-card.prev {
  opacity: 0.7;
  transform: translateX(-42%) scale(0.85) rotateY(15deg);
  z-index: 2;
}

.testimonial-card.next {
  opacity: 0.7;
  transform: translateX(42%) scale(0.85) rotateY(-15deg);
  z-index: 2;
}

.stars {
  color: var(--color-primary);
  letter-spacing: 0;
}

.quote {
  margin: 18px 0;
  color: var(--color-text);
  font-family: var(--font-heading);
  font-size: clamp(21px, 3vw, 28px);
  font-style: italic;
  line-height: 1.35;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border: 1px solid var(--color-border-strong);
  border-radius: 999px;
  background: transparent;
  padding: 0;
}

.testimonial-dots button.active {
  background: var(--color-primary);
}

.cta-banner {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  background: radial-gradient(circle at center, var(--color-primary-glow) 0%, transparent 48%), var(--color-surface);
  animation: breathe 7s ease-in-out infinite;
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: center;
  margin-top: 20px;
  color: var(--color-text-muted);
  font-family: var(--font-ui);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--color-text-muted);
  font-family: var(--font-ui);
  font-size: 13px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-bg);
  color: var(--color-text);
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-border-strong);
  box-shadow: 0 0 0 3px var(--color-primary-xray);
}

.site-footer {
  position: relative;
  z-index: 3;
  overflow: hidden;
  background: var(--color-footer);
  padding: 80px 0 40px;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  animation: shimmerLine 4s linear infinite;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 34px;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 18px;
}

.footer-logo img {
  max-height: 46px;
  max-width: 260px;
  width: auto;
}

.footer-tagline {
  max-width: 330px;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-style: italic;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.socials a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-muted);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.socials a:hover {
  color: var(--color-primary);
  border-color: var(--color-border-strong);
  transform: translateY(-2px);
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-col h4 {
  color: var(--color-text);
  font-family: var(--font-ui);
  font-size: 15px;
}

.footer-col ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col a,
.footer-col li,
.footer-bottom {
  color: var(--color-text-muted);
  font-size: 14px;
}

.footer-col a:hover,
.footer-bottom a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 46px;
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 5000;
  transform: scaleY(0);
  transform-origin: bottom;
  background: var(--color-primary);
  pointer-events: none;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 6000;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-dot {
  width: 12px;
  height: 12px;
  background: var(--color-primary);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-primary);
  mix-blend-mode: normal;
  transition: width 0.2s ease, height 0.2s ease, mix-blend-mode 0.2s ease;
}

.cursor-ring.hover {
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  mix-blend-mode: difference;
}

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

@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -10px);
  }
}

@keyframes nodePulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

@keyframes breathe {
  0%,
  100% {
    background-size: 100% 100%;
  }
  50% {
    background-size: 120% 120%;
  }
}

@media (max-width: 1024px) {
  .section-grid,
  .section-grid.reverse {
    grid-template-columns: 1fr;
  }

  .section-grid.reverse .section-copy,
  .section-grid.reverse .section-visual {
    order: initial;
  }

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

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

  .process-svg {
    display: none;
  }

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

@media (max-width: 767px) {
  :root {
    --nav-height: var(--nav-height-mobile);
  }

  body {
    font-size: 15px;
  }

  .site-header {
    height: var(--nav-height-mobile);
  }

  .nav-wrap {
    width: min(100% - 20px, 1280px);
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .brand img {
    max-height: 34px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }

  .hero {
    min-height: 92vh;
    padding: calc(var(--nav-height-mobile) + 36px) 0 56px;
  }

  .hero-content,
  .hero-left .hero-content {
    width: min(100% - 30px, 680px);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .btn-row {
    justify-content: center;
  }

  .btn {
    width: 100%;
  }

  .stats-grid,
  .card-grid,
  .metric-grid,
  .process-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: 0;
    border-bottom: 1px solid var(--color-border);
  }

  .stat-item:last-child {
    border-bottom: 0;
  }

  .process-step {
    text-align: left;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 16px;
    padding: 0;
  }

  .step-node {
    margin: 0;
  }

  .testimonial-stage {
    min-height: 360px;
  }

  .testimonial-card.prev,
  .testimonial-card.next {
    opacity: 0;
    transform: translateX(0) scale(0.85);
  }

  .footer-bottom {
    flex-direction: column;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

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

.hero,
.hero-content,
[class*="hero"],
.section,
section {
  overflow-x: hidden;
  padding-left: clamp(16px, 4vw, 80px);
  padding-right: clamp(16px, 4vw, 80px);
  max-width: 100vw;
}

.hero {
  width: 100%;
}

.hero-canvas,
.scene-canvas,
.scroll-indicator {
  padding-left: 0;
  padding-right: 0;
  max-width: none;
}
