:root {
  --bg: #050d1d;
  --bg-soft: #0a1730;
  --surface: rgba(10, 23, 45, 0.76);
  --surface-strong: #0d213f;
  --border: rgba(188, 214, 255, 0.16);
  --glass-border-strong: rgba(226, 238, 255, 0.24);
  --glass-bg: linear-gradient(180deg, rgba(232, 243, 255, 0.2), rgba(186, 214, 255, 0.075));
  --glass-panel: linear-gradient(180deg, rgba(18, 36, 68, 0.72), rgba(7, 17, 34, 0.62));
  --glass-edge: rgba(255, 255, 255, 0.28);
  --glass-sheen: rgba(208, 230, 255, 0.22);
  --text: #eef4ff;
  --muted: #99a9c3;
  --primary: #62f2c9;
  --primary-dark: #21c79c;
  --accent: #9ec0ff;
  --panel-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --panel-transition: 1s var(--panel-ease);
  --panel-transition-soft: 1.08s var(--panel-ease);
  --shadow: 0 24px 80px rgba(2, 8, 20, 0.45);
  --glass-shadow:
    0 42px 96px rgba(2, 10, 24, 0.5),
    0 18px 40px rgba(2, 8, 20, 0.22),
    0 6px 18px rgba(2, 8, 20, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 1px 0 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(116, 149, 199, 0.11),
    inset -1px 0 0 rgba(116, 149, 199, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.container {
  width: 100%;
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  margin-right: auto;
  margin-left: auto;
}

.row {
  --gutter-x: 1.5rem;
  --gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--gutter-y) * -1);
  margin-right: calc(var(--gutter-x) / -2);
  margin-left: calc(var(--gutter-x) / -2);
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--gutter-x) / 2);
  padding-left: calc(var(--gutter-x) / 2);
  margin-top: var(--gutter-y);
}

.col {
  flex: 1 0 0%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.g-3 {
  --gutter-x: 1rem;
  --gutter-y: 1rem;
}

.g-4 {
  --gutter-x: 1.5rem;
  --gutter-y: 1.5rem;
}

.g-5 {
  --gutter-x: 3rem;
  --gutter-y: 3rem;
}

.d-flex {
  display: flex;
}

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

.flex-wrap {
  flex-wrap: wrap;
}

.align-items-center {
  align-items: center;
}

.align-items-start {
  align-items: flex-start;
}

.justify-content-between {
  justify-content: space-between;
}

.gap-3 {
  gap: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.ms-auto {
  margin-left: auto;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.px-3 {
  padding-right: 1rem;
  padding-left: 1rem;
}

.px-4 {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.h-100 {
  height: 100%;
}

.rounded-pill {
  border-radius: 999px;
}

.display-3 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
}

body {
  position: relative;
  margin: 0;
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  color-scheme: dark;
  background:
    radial-gradient(circle at 18% 10%, rgba(125, 176, 255, 0.09), transparent 20%),
    radial-gradient(circle at 84% 16%, rgba(132, 218, 255, 0.075), transparent 18%),
    radial-gradient(circle at 50% 100%, rgba(101, 154, 255, 0.045), transparent 20%),
    linear-gradient(180deg, #020713 0%, #030d19 34%, #020710 100%);
  min-height: 100vh;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: 0;
  opacity: 0.8;
  background-image:
    linear-gradient(135deg, rgba(98, 242, 201, 0.2) 0%, rgba(112, 222, 255, 0.13) 42%, rgba(208, 226, 255, 0.06) 72%, rgba(208, 226, 255, 0.02) 100%),
    radial-gradient(circle, rgba(92, 244, 202, 0.2) 0 3.3px, transparent 5.2px),
    radial-gradient(circle, rgba(236, 248, 255, 0.5) 0 1.05px, transparent 1.8px);
  background-size:
    100% 100%,
    46px 46px,
    46px 46px;
  background-position: center top;
  background-blend-mode: screen, normal, normal;
  filter:
    drop-shadow(0 0 8px rgba(98, 242, 201, 0.16))
    drop-shadow(0 0 18px rgba(108, 159, 255, 0.1))
    drop-shadow(0 0 28px rgba(92, 140, 255, 0.05));
  -webkit-mask-image: radial-gradient(ellipse 120% 88% at 50% 18%, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.62) 62%, rgba(0, 0, 0, 0.2) 88%, transparent 100%);
  mask-image: radial-gradient(ellipse 120% 88% at 50% 18%, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.62) 62%, rgba(0, 0, 0, 0.2) 88%, transparent 100%);
}

body::after {
  z-index: 0;
  background:
    radial-gradient(circle at 14% 10%, rgba(8, 18, 34, 0.12) 0%, rgba(8, 18, 34, 0.03) 28%, transparent 48%),
    linear-gradient(180deg, rgba(14, 24, 44, 0.07), rgba(8, 16, 30, 0.12)),
    radial-gradient(circle at 50% 34%, rgba(222, 236, 255, 0.014) 0%, rgba(222, 236, 255, 0.006) 20%, rgba(2, 7, 16, 0.09) 58%, rgba(2, 6, 14, 0.28) 100%),
    radial-gradient(circle at top, rgba(18, 34, 62, 0.055), rgba(2, 6, 14, 0.25) 76%);
  -webkit-backdrop-filter: blur(6px) saturate(114%);
  backdrop-filter: blur(6px) saturate(114%);
  filter: blur(1px);
  transform: scale(1.012);
}

a {
  text-decoration: none;
}

.site-shell {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  z-index: 1;
}

.site-shell::before,
.site-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(28px);
  opacity: 0.14;
  pointer-events: none;
}

.site-shell::before {
  top: 2rem;
  right: -8rem;
  background: radial-gradient(circle, rgba(150, 205, 255, 0.18) 0%, rgba(117, 208, 255, 0.1) 34%, rgba(59, 106, 205, 0.04) 62%, transparent 76%);
}

.site-shell::after {
  top: 34rem;
  left: -10rem;
  background: radial-gradient(circle, rgba(128, 161, 255, 0.16) 0%, rgba(90, 152, 255, 0.1) 36%, rgba(255, 255, 255, 0.03) 56%, transparent 72%);
}

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

.navbar {
  position: relative;
  z-index: 2;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-item {
  list-style: none;
}

.navbar-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.9rem;
  height: 2.9rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 1rem;
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(8, 16, 28, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.navbar-toggler-icon,
.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  display: block;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.navbar-toggler-icon {
  position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.navbar-toggler-icon::before {
  top: -0.38rem;
}

.navbar-toggler-icon::after {
  top: 0.38rem;
}

.collapse {
  display: none;
}

.collapse.show {
  display: block;
}

.navbar-collapse {
  width: 100%;
  padding-top: 1rem;
}

.navbar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(8, 16, 28, 0.38);
  box-shadow:
    0 18px 44px rgba(2, 9, 20, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(24px) saturate(150%);
}

.brand-mark,
.hero-title,
.section-heading h2,
.feature-card h3,
.timeline-item h3,
.result-card h3,
.showcase-panel h2 {
  font-family: "Space Grotesk", sans-serif;
}

.brand-mark {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  color: rgba(238, 244, 255, 0.78);
}

.nav-link:hover,
.nav-link:focus,
.brand-mark:hover,
.brand-mark:focus {
  color: var(--text);
}

.hero-section {
  padding-bottom: 5rem;
}

.hero-content,
#services .container,
#process .container,
#results .container,
.contact-section .container {
  position: relative;
  isolation: isolate;
}

.hero-content::before,
#services .container::before,
#process .container::before,
#results .container::before,
.contact-section .container::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 6%;
  bottom: 4%;
  border-radius: 2.25rem;
  background: radial-gradient(ellipse at center, rgba(2, 7, 16, 0.34) 0%, rgba(2, 7, 16, 0.2) 42%, transparent 78%);
  filter: blur(34px);
  opacity: 0.82;
  pointer-events: none;
  z-index: 0;
  transition:
    opacity 0.32s ease,
    filter 0.32s ease,
    transform 0.32s ease,
    background 0.32s ease;
}

.hero-content > *,
#services .container > *,
#process .container > *,
#results .container > *,
.contact-section .container > * {
  position: relative;
  z-index: 1;
}

.hero-content {
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.8rem;
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(9, 23, 42, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-title {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.2rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy,
.section-heading p,
.timeline-item p,
.result-card p,
.feature-card p,
.contact-note span,
.showcase-stat span {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.btn-primary {
  color: #04111c;
  background: rgba(98, 242, 201, 0.86);
  border-color: rgba(221, 255, 245, 0.22);
  font-weight: 700;
  box-shadow:
    0 18px 45px rgba(98, 242, 201, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(18px);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: rgba(98, 242, 201, 0.96);
  border-color: rgba(221, 255, 245, 0.4);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  padding: 0.78rem 1.2rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.58rem 1rem;
  font-size: 0.92rem;
}

.btn-lg {
  padding: 0.98rem 1.45rem;
  font-size: 1rem;
}

.btn-ghost,
.btn-outline-light {
  border-color: rgba(238, 244, 255, 0.16);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(20px) saturate(150%);
}

.btn-ghost:hover,
.btn-ghost:focus,
.btn-outline-light:hover,
.btn-outline-light:focus {
  color: var(--text);
  border-color: rgba(238, 244, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.hero-metrics {
  max-width: 48rem;
}

.metric-card,
.feature-card,
.result-card,
.contact-form,
.contact-note,
.stack-card,
.showcase-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--glass-border-strong);
  outline: 1px solid rgba(255, 255, 255, 0.04);
  outline-offset: -2px;
  border-radius: 1.5rem;
  background:
    var(--glass-bg),
    var(--glass-panel);
  backdrop-filter: blur(28px) saturate(165%);
  box-shadow: var(--glass-shadow);
  transition:
    transform var(--panel-transition),
    border-color var(--panel-transition),
    box-shadow var(--panel-transition),
    background var(--panel-transition);
}

.metric-card > *,
.feature-card > *,
.result-card > *,
.contact-form > *,
.contact-note > *,
.stack-card > *,
.showcase-card > * {
  position: relative;
  z-index: 1;
}

.metric-card::before,
.feature-card::before,
.result-card::before,
.contact-form::before,
.contact-note::before,
.stack-card::before,
.showcase-card::before,
.metric-card::after,
.feature-card::after,
.result-card::after,
.contact-form::after,
.contact-note::after,
.stack-card::after,
.showcase-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition:
    opacity var(--panel-transition-soft),
    filter var(--panel-transition-soft),
    transform var(--panel-transition-soft);
}

.metric-card::before,
.feature-card::before,
.result-card::before,
.contact-form::before,
.contact-note::before,
.stack-card::before,
.showcase-card::before {
  inset: 0 0 auto 0;
  height: 46%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.24) 1.5px, rgba(255, 255, 255, 0.08) 3px, transparent 11px),
    radial-gradient(120% 78% at 50% 0%, rgba(236, 245, 255, 0.22) 0%, rgba(189, 221, 255, 0.1) 32%, transparent 72%),
    linear-gradient(180deg, rgba(228, 241, 255, 0.16), rgba(168, 216, 255, 0.07) 36%, transparent 80%);
  opacity: 0.84;
}

.metric-card::after,
.feature-card::after,
.result-card::after,
.contact-form::after,
.contact-note::after,
.stack-card::after,
.showcase-card::after {
  top: -24%;
  right: -14%;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(circle, rgba(214, 233, 255, 0.2) 0%, rgba(144, 205, 255, 0.1) 42%, transparent 72%);
  filter: blur(12px);
  opacity: 0.85;
  transform: none;
}

.metric-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  height: 100%;
  padding: 1.1rem 1rem;
}

.metric-value {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.metric-label {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.showcase-card {
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    linear-gradient(180deg, rgba(15, 31, 57, 0.8), rgba(8, 18, 34, 0.72));
}

.showcase-bar {
  display: flex;
  gap: 0.45rem;
  padding: 0.25rem 0.2rem 0.9rem;
}

.showcase-bar span {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  filter: saturate(106%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 4px 12px rgba(2, 8, 20, 0.18);
}

.showcase-bar span:nth-child(1) {
  border-color: rgba(62, 141, 134, 0.26);
  background: linear-gradient(180deg, rgba(145, 228, 214, 0.9), rgba(88, 176, 163, 0.8));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 14px rgba(145, 228, 214, 0.18),
    0 0 26px rgba(145, 228, 214, 0.12),
    0 4px 12px rgba(2, 8, 20, 0.2);
}

.showcase-bar span:nth-child(2) {
  border-color: rgba(48, 136, 126, 0.28);
  background: linear-gradient(180deg, rgba(108, 231, 203, 0.94), rgba(60, 172, 151, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 14px rgba(108, 231, 203, 0.2),
    0 0 28px rgba(108, 231, 203, 0.13),
    0 4px 12px rgba(2, 8, 20, 0.2);
}

.showcase-bar span:nth-child(3) {
  border-color: rgba(44, 151, 138, 0.3);
  background: linear-gradient(180deg, rgba(98, 242, 201, 0.96), rgba(44, 188, 164, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 0 16px rgba(98, 242, 201, 0.22),
    0 0 32px rgba(98, 242, 201, 0.15),
    0 4px 12px rgba(2, 8, 20, 0.2);
}

.showcase-panel {
  padding: 1rem 1rem 1.12rem;
}

.showcase-label,
.stack-pill,
.feature-kicker,
.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-label {
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.showcase-panel h2 {
  font-size: clamp(1.58rem, 3.8vw, 2.1rem);
  font-weight: 500;
  line-height: 1.06;
  margin-bottom: 0.8rem;
}

.showcase-copy {
  color: var(--muted);
  margin: 0 0 1rem;
  font-size: 0.96rem;
  line-height: 1.58;
}

.flow-board {
  --flow-step-transition: 620ms cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: stretch;
}

.flow-board:focus-visible {
  outline: 1px solid rgba(158, 192, 255, 0.26);
  outline-offset: 0.45rem;
}

.flow-board::before {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 2.2rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(98, 242, 201, 0.42), rgba(158, 192, 255, 0.28), rgba(255, 255, 255, 0.03));
  background-size: 220% 100%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 18px rgba(98, 242, 201, 0.14);
  opacity: 0.96;
  pointer-events: none;
  animation: flow-stream 4.8s linear infinite;
}

.flow-step {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
  align-content: start;
  gap: 0.28rem;
  align-items: start;
  padding: 0.72rem 0.62rem 0.78rem;
  border: 1px solid rgba(226, 238, 255, 0.18);
  border-radius: 1.15rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.022);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 24px rgba(2, 8, 20, 0.12);
  opacity: 0.94;
  transform-origin: center bottom;
  transition:
    transform var(--flow-step-transition),
    border-color var(--flow-step-transition),
    box-shadow var(--flow-step-transition),
    background var(--flow-step-transition),
    opacity var(--flow-step-transition);
  min-height: 7.8rem;
}

.flow-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.94);
  background:
    radial-gradient(circle at 50% 16%, rgba(98, 242, 201, 0.14), transparent 54%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 42%);
  transition:
    opacity var(--flow-step-transition),
    transform var(--flow-step-transition);
}

.flow-step:first-child {
  border-color: rgba(98, 242, 201, 0.2);
  background:
    linear-gradient(180deg, rgba(98, 242, 201, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.022);
}

.flow-step:last-child {
  border-color: rgba(158, 192, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(158, 192, 255, 0.085), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.022);
}

.flow-step.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateY(-0.62rem) scale(1.03);
  border-color: rgba(98, 242, 201, 0.34);
  background:
    linear-gradient(180deg, rgba(154, 193, 255, 0.08), rgba(98, 242, 201, 0.045)),
    rgba(5, 15, 30, 0.86);
  box-shadow:
    0 26px 48px rgba(1, 8, 18, 0.34),
    0 0 18px rgba(98, 242, 201, 0.08),
    0 0 0 1px rgba(98, 242, 201, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 1px 0 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(98, 242, 201, 0.14),
    inset -1px 0 0 rgba(98, 242, 201, 0.1);
}

.flow-step.is-active::after {
  opacity: 1;
  transform: scale(1);
}

.flow-step:last-child.is-active {
  border-color: rgba(158, 192, 255, 0.34);
  box-shadow:
    0 26px 48px rgba(1, 8, 18, 0.34),
    0 0 18px rgba(158, 192, 255, 0.08),
    0 0 0 1px rgba(158, 192, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 1px 0 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(158, 192, 255, 0.14),
    inset -1px 0 0 rgba(158, 192, 255, 0.1);
}

.flow-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.95rem;
  height: 2.95rem;
  margin-bottom: 0.06rem;
  border: 1px solid rgba(98, 242, 201, 0.24);
  border-radius: 1rem;
  color: var(--primary);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(8, 21, 38, 0.7);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 24px rgba(98, 242, 201, 0.11),
    0 12px 28px rgba(2, 8, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  animation: flow-icon-float 4.2s ease-in-out infinite;
  transition:
    transform var(--panel-transition),
    box-shadow var(--panel-transition),
    border-color var(--panel-transition),
    background var(--panel-transition);
}

.flow-step:nth-child(2) .flow-icon {
  animation-delay: 0.35s;
}

.flow-step:nth-child(3) .flow-icon {
  animation-delay: 0.7s;
}

.flow-step:nth-child(4) .flow-icon {
  animation-delay: 1.05s;
}

.flow-step:last-child .flow-icon {
  border-color: rgba(158, 192, 255, 0.26);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 24px rgba(158, 192, 255, 0.11),
    0 12px 28px rgba(2, 8, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.flow-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-step-number {
  color: rgba(184, 208, 255, 0.92);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    color var(--flow-step-transition),
    opacity var(--flow-step-transition),
    text-shadow var(--flow-step-transition);
}

.flow-step strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.1;
  transition:
    color var(--flow-step-transition),
    transform var(--flow-step-transition);
}

.flow-step-note {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.35;
  transition:
    color var(--flow-step-transition),
    opacity var(--flow-step-transition);
}

.flow-step.is-active .flow-icon {
  animation: none;
  transform: translateY(-5px) scale(1.08);
  border-color: rgba(98, 242, 201, 0.4);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.05)),
    rgba(6, 18, 34, 0.86);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 32px rgba(98, 242, 201, 0.17),
    0 18px 34px rgba(2, 8, 20, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.flow-step:last-child.is-active .flow-icon {
  border-color: rgba(158, 192, 255, 0.42);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 32px rgba(158, 192, 255, 0.16),
    0 18px 34px rgba(2, 8, 20, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.flow-step.is-active .flow-step-number {
  color: rgba(226, 237, 255, 0.98);
  text-shadow: 0 0 16px rgba(134, 212, 255, 0.14);
}

.flow-step.is-active strong {
  color: #f7faff;
  transform: translateY(-1px);
}

.flow-step.is-active .flow-step-note {
  color: rgba(183, 197, 220, 0.98);
}

.flow-footer {
  display: block;
  margin-top: 0.8rem;
  padding-top: 0.7rem;
  min-height: 4.15rem;
  border-top: 1px solid rgba(226, 238, 255, 0.08);
}

.flow-detail-copy {
  margin: 0;
  max-width: 34rem;
  color: rgba(192, 205, 226, 0.94);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.52;
  letter-spacing: 0.01em;
  transition:
    opacity 240ms ease,
    transform 240ms ease,
    filter 240ms ease;
}

.flow-detail-copy.is-transitioning {
  opacity: 0;
  transform: translateY(4px);
  filter: blur(3px);
}

.showcase-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0 0 1.5rem;
  list-style: none;
}

.showcase-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text);
}

.showcase-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0.3rem rgba(98, 242, 201, 0.12);
}

.showcase-stat {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid rgba(226, 238, 255, 0.2);
  outline: 1px solid rgba(255, 255, 255, 0.035);
  outline-offset: -2px;
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow:
    0 18px 34px rgba(2, 8, 20, 0.16),
    0 8px 18px rgba(2, 8, 20, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.025),
    inset 0 1px 0 rgba(255, 255, 255, 0.19),
    inset 1px 0 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(116, 149, 199, 0.08),
    inset -1px 0 0 rgba(116, 149, 199, 0.06);
}

.dashboard-board {
  display: grid;
  gap: 1rem;
}

.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.dashboard-metric {
  display: grid;
  gap: 0.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(226, 238, 255, 0.16);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    0 12px 24px rgba(2, 8, 20, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition:
    transform var(--panel-transition),
    border-color var(--panel-transition),
    box-shadow var(--panel-transition),
    background var(--panel-transition);
}

.dashboard-caption,
.dashboard-metric small,
.dashboard-person span,
.dashboard-meta small {
  color: var(--muted);
}

.dashboard-caption {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dashboard-metric strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  font-weight: 500;
  line-height: 1;
}

.dashboard-list {
  display: grid;
  gap: 0.7rem;
}

.dashboard-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(226, 238, 255, 0.14);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 10px 22px rgba(2, 8, 20, 0.1);
  transition:
    transform var(--panel-transition),
    border-color var(--panel-transition),
    box-shadow var(--panel-transition),
    background var(--panel-transition);
}

.dashboard-person,
.dashboard-meta {
  display: grid;
  gap: 0.2rem;
}

.dashboard-meta {
  justify-items: end;
}

.dashboard-person strong {
  font-weight: 500;
}

.dashboard-person span,
.dashboard-meta small {
  font-size: 0.9rem;
}

.dashboard-status,
.dashboard-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.34rem 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.dashboard-status-new {
  color: var(--primary);
  background: rgba(98, 242, 201, 0.08);
  border: 1px solid rgba(98, 242, 201, 0.16);
}

.dashboard-status-live {
  color: var(--accent);
  background: rgba(138, 180, 255, 0.09);
  border: 1px solid rgba(138, 180, 255, 0.16);
}

.dashboard-status-booked {
  color: var(--text);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(226, 238, 255, 0.16);
}

.dashboard-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.dashboard-chip {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(226, 238, 255, 0.12);
}

@keyframes flow-stream {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 220%;
  }
}

@keyframes flow-icon-float {
  0%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.03),
      0 0 18px rgba(98, 242, 201, 0.07),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }

  50% {
    transform: translateY(-3px);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.04),
      0 0 24px rgba(98, 242, 201, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }
}

.section-space {
  padding: 5.5rem 0;
}

.alt-section {
  background: transparent;
}

#services .container::before,
#process .container::before {
  top: 12%;
  bottom: 8%;
  opacity: 0.68;
}

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

.section-heading h2 {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 1rem;
}

.feature-card,
.result-card {
  padding: 1.6rem;
}

.feature-kicker {
  min-width: 3rem;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  color: var(--primary);
  background: rgba(98, 242, 201, 0.08);
  border: 1px solid rgba(98, 242, 201, 0.16);
}

.feature-card h3,
.result-card h3,
.timeline-item h3 {
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 0.85rem;
}

.result-stat {
  margin-bottom: 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.05em;
  color: var(--text);
  text-shadow: 0 0 26px rgba(98, 242, 201, 0.12);
}

.result-card .result-source {
  margin-top: 0.95rem;
  color: rgba(153, 169, 195, 0.72);
  font-size: 0.69rem;
  line-height: 1.45;
}

.flow-tree-section {
  overflow: clip;
}

.flow-tree-heading {
  max-width: 54rem;
}

.flow-tree {
  display: grid;
  gap: 1.25rem;
  max-width: 74rem;
  margin: 0 auto;
}

.tree-stage {
  position: relative;
}

.tree-stage--root,
.tree-stage--single,
.tree-stage--outcomes {
  display: grid;
  justify-items: center;
}

.tree-stage--root {
  margin-bottom: 0.15rem;
}

.tree-stage--single {
  padding-top: 4rem;
}

.tree-stage--branches {
  padding-top: 5rem;
}

.tree-stage--outcomes {
  padding-top: 3.75rem;
  gap: 1rem;
}

.tree-anchor {
  position: absolute;
  top: -5.5rem;
  left: 0;
  width: 1px;
  height: 1px;
}

.tree-node,
.tree-leaf {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--glass-border-strong);
  outline: 1px solid rgba(255, 255, 255, 0.04);
  outline-offset: -2px;
  border-radius: 1.5rem;
  background:
    var(--glass-bg),
    var(--glass-panel);
  backdrop-filter: blur(28px) saturate(165%);
  box-shadow: var(--glass-shadow);
}

.tree-node::before,
.tree-leaf::before,
.tree-node::after,
.tree-leaf::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition:
    opacity var(--panel-transition-soft),
    filter var(--panel-transition-soft),
    transform var(--panel-transition-soft);
}

.tree-node::before,
.tree-leaf::before {
  inset: 0 0 auto 0;
  height: 46%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0.24) 1.5px, rgba(255, 255, 255, 0.08) 3px, transparent 11px),
    radial-gradient(120% 78% at 50% 0%, rgba(236, 245, 255, 0.22) 0%, rgba(189, 221, 255, 0.1) 32%, transparent 72%),
    linear-gradient(180deg, rgba(228, 241, 255, 0.16), rgba(168, 216, 255, 0.07) 36%, transparent 80%);
  opacity: 0.84;
}

.tree-node::after,
.tree-leaf::after {
  top: -24%;
  right: -14%;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  z-index: 0;
  background: radial-gradient(circle, rgba(214, 233, 255, 0.2) 0%, rgba(144, 205, 255, 0.1) 42%, transparent 72%);
  filter: blur(12px);
  opacity: 0.85;
  transform: none;
}

.tree-node > *,
.tree-leaf > * {
  position: relative;
  z-index: 1;
}

.tree-node,
.tree-leaf,
.tree-line {
  opacity: 0;
}

.tree-node,
.tree-leaf {
  transform: translateY(24px) scale(0.986);
  transition:
    opacity 0.72s var(--panel-ease),
    transform 0.72s var(--panel-ease),
    border-color var(--panel-transition),
    box-shadow var(--panel-transition),
    background var(--panel-transition);
}

.tree-node {
  width: min(100%, 34rem);
  padding: 1.45rem 1.55rem;
}

.tree-node--root {
  width: min(100%, 43rem);
  text-align: center;
}

.tree-node--capture,
.tree-node--backend {
  width: min(100%, 32rem);
  text-align: center;
}

.tree-node-kicker,
.tree-outcomes-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4rem;
  margin-bottom: 0.95rem;
  padding: 0.38rem 0.82rem;
  border-radius: 999px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: rgba(98, 242, 201, 0.08);
  border: 1px solid rgba(98, 242, 201, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 18px rgba(98, 242, 201, 0.08);
}

.tree-node h3,
.tree-leaf strong {
  font-family: "Space Grotesk", sans-serif;
}

.tree-node h3 {
  margin-bottom: 0.82rem;
  font-size: 1.45rem;
  font-weight: 500;
  line-height: 1.12;
}

.tree-node p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.66;
}

.tree-node-visual {
  margin-top: 1.15rem;
}

.tree-node-visual--site {
  width: min(100%, 31rem);
  margin-left: auto;
  margin-right: auto;
}

.tree-shot-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 1.3rem;
  border: 1px solid rgba(226, 238, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(7, 18, 34, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 40px rgba(2, 8, 20, 0.24),
    0 0 24px rgba(98, 242, 201, 0.04);
}

.tree-shot-frame::before,
.tree-shot-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
}

.tree-shot-frame::before {
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(255, 255, 255, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 20%, transparent 80%, rgba(7, 18, 34, 0.12));
  mix-blend-mode: screen;
}

.tree-shot-frame::after {
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 0 24px rgba(7, 18, 34, 0.14),
    inset 0 -28px 36px rgba(7, 18, 34, 0.12);
}

.tree-shot-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: inherit;
  filter: saturate(1.02) contrast(1.02);
}

.tree-shot-frame--website {
  width: 100%;
}

.tree-shot-frame--dashboard {
  width: 100%;
}

.tree-shot-frame--dashboard img {
  object-fit: contain;
}

.tree-node-visual--site > .mini-site,
.tree-node-visual--dashboard > .mini-dashboard {
  display: none;
}

.mini-site,
.mini-email,
.mini-dashboard {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(226, 238, 255, 0.12);
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(7, 18, 34, 0.78);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 18px 34px rgba(2, 8, 20, 0.22),
    0 0 20px rgba(98, 242, 201, 0.04);
}

.mini-site {
  aspect-ratio: 1879 / 857;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05)),
    #eef1f5;
}

.mini-site-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid rgba(13, 39, 69, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 247, 250, 0.92));
}

.mini-site-brand {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  min-width: 0;
}

.mini-site-logo {
  width: 1.4rem;
  height: 1.65rem;
  flex-shrink: 0;
  clip-path: polygon(50% 0%, 92% 16%, 92% 58%, 50% 100%, 8% 58%, 8% 16%);
  position: relative;
  background:
    radial-gradient(circle at 32% 30%, #ff8f43 0 11%, transparent 12%),
    radial-gradient(circle at 52% 25%, #ffd764 0 9%, transparent 10%),
    radial-gradient(circle at 42% 46%, #61c8ff 0 8%, transparent 9%),
    linear-gradient(180deg, #1f79c3, #0d5d99);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    0 0 0 1px rgba(7, 48, 82, 0.22);
}

.mini-site-logo::before {
  content: "";
  position: absolute;
  inset: 28% 22% 26% 22%;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.1));
  transform: rotate(-30deg);
  opacity: 0.42;
}

.mini-site-brand-copy {
  display: grid;
  gap: 0.04rem;
  min-width: 0;
}

.mini-site-brand-copy strong,
.mini-site-copy strong,
.mini-email-body strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
}

.mini-site-brand-copy strong {
  font-size: 0.82rem;
  color: #163455;
}

.mini-site-brand-copy span {
  color: rgba(45, 67, 95, 0.72);
  font-size: 0.56rem;
  line-height: 1.2;
}

.mini-site-nav,
.mini-site-actions {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.mini-site-nav {
  justify-content: center;
  color: #183a5f;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

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

.mini-site-phone,
.mini-site-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.45rem;
  padding: 0.18rem 0.48rem;
  border-radius: 0.45rem;
  font-size: 0.58rem;
  font-weight: 700;
}

.mini-site-phone {
  border: 1px solid rgba(24, 58, 95, 0.18);
  color: #173b60;
  background: rgba(255, 255, 255, 0.82);
}

.mini-site-quote {
  border: 1px solid rgba(255, 137, 67, 0.32);
  color: #ffffff;
  background: linear-gradient(180deg, #ff9a4d, #ff7a26);
  box-shadow:
    0 8px 18px rgba(255, 125, 49, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.mini-site-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(10rem, 0.95fr);
  gap: 0.9rem;
  height: calc(100% - 3.1rem);
  padding: 0.85rem;
  background:
    linear-gradient(90deg, #1a456f 0%, #1a456f 62%, #23527c 62%, #23527c 100%);
}

.mini-site-stage::before,
.mini-site-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.mini-site-stage::before {
  left: -2%;
  bottom: 6%;
  width: 34%;
  height: 42%;
  background: radial-gradient(circle, rgba(31, 121, 195, 0.26) 0%, rgba(31, 121, 195, 0.08) 48%, transparent 74%);
  filter: blur(10px);
}

.mini-site-stage::after {
  right: 31%;
  top: 4%;
  width: 22%;
  height: 18%;
  background: linear-gradient(135deg, rgba(255, 145, 67, 0.34), rgba(255, 145, 67, 0.04));
  filter: blur(16px);
}

.mini-site-copy {
  display: grid;
  align-content: center;
  gap: 0.72rem;
  min-height: 0;
  padding: 1rem 0.75rem 1rem 0.9rem;
}

.mini-site-badge {
  display: inline-flex;
  width: fit-content;
  padding: 0.26rem 0.42rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-site-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  width: fit-content;
  color: rgba(235, 241, 248, 0.92);
  font-size: 0.58rem;
  font-weight: 700;
}

.mini-site-stars {
  font-size: 0;
}

.mini-site-stars::before {
  content: "\2605\2605\2605\2605\2605";
  color: #ffb548;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-shadow: 0 0 12px rgba(255, 181, 72, 0.2);
}

.mini-site-copy strong {
  font-size: clamp(1.05rem, 1vw + 0.7rem, 1.55rem);
  line-height: 0.94;
  color: var(--text);
}

.mini-site-copy p,
.mini-email-header span,
.mini-email-body p {
  color: rgba(183, 197, 220, 0.88);
  font-size: 0.82rem;
  line-height: 1.45;
  margin: 0;
}

.mini-site-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.mini-site-services span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.28rem;
  padding: 0.16rem 0.46rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(234, 240, 248, 0.86);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

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

.mini-site-proof {
  display: grid;
  gap: 0.12rem;
  padding: 0.52rem 0.52rem 0.48rem;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mini-site-proof strong {
  font-size: 0.58rem;
  font-weight: 700;
  line-height: 1.15;
  color: rgba(248, 250, 253, 0.95);
}

.mini-site-proof span {
  color: rgba(183, 197, 220, 0.82);
  font-size: 0.5rem;
  line-height: 1.25;
}

.mini-site-form-card {
  display: grid;
  gap: 0.5rem;
  align-content: start;
  padding: 0.9rem 0.88rem 0.82rem;
  border-radius: 1.1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(251, 252, 253, 0.98));
  box-shadow:
    0 18px 34px rgba(12, 28, 49, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mini-site-form-kicker {
  color: #123d66;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-site-form-card strong {
  font-size: 0.95rem;
  color: #202a35;
}

.mini-site-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.42rem;
}

.mini-site-inline-field {
  display: grid;
  gap: 0.16rem;
  margin: -0.02rem 0 0.1rem;
}

.mini-site-field-group {
  display: grid;
  gap: 0.16rem;
}

.mini-site-field-group--full {
  grid-column: 1 / -1;
}

.mini-site-label {
  color: #173b60;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mini-site-field {
  display: block;
  min-height: 1.35rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(18, 61, 102, 0.16);
  background: rgba(237, 241, 246, 0.78);
}

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

.mini-site-field--message {
  min-height: 2rem;
}

.mini-site-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff8f43, #ff7123);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(255, 125, 49, 0.22);
}

.mini-site-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.16rem;
}

.mini-site-form-trust {
  color: rgba(37, 71, 106, 0.82);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-site-fab {
  position: absolute;
  left: 0.7rem;
  bottom: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.72rem 0.42rem 0.5rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff9347, #ff7a26);
  color: #ffffff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow:
    0 14px 30px rgba(255, 125, 49, 0.28),
    0 6px 12px rgba(12, 28, 49, 0.18);
  transform: translateY(18%);
}

.mini-site-fab-icon {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 42%, rgba(13, 49, 83, 0.88) 0 18%, transparent 19%),
    radial-gradient(circle at 40% 42%, rgba(13, 49, 83, 0.88) 0 14%, transparent 15%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 248, 252, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.tree-node-visual--email {
  width: 100%;
}

.tree-node-visual--dashboard {
  width: min(100%, 14.75rem);
  margin-left: auto;
  margin-right: auto;
}

.mini-email {
  padding: 0.8rem;
}

.mini-email-header {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.72rem;
  padding: 0 0.1rem;
}

.mini-email-body {
  display: grid;
  gap: 0.48rem;
  padding: 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgba(98, 242, 201, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(10, 23, 42, 0.82);
}

.mini-email-body p {
  margin: 0;
}

.mini-email-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  background: rgba(98, 242, 201, 0.12);
  border: 1px solid rgba(98, 242, 201, 0.22);
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.mini-dashboard {
  aspect-ratio: 452 / 795;
  position: relative;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.995), rgba(246, 249, 252, 0.985)),
    #ffffff;
  color: #1f2835;
  box-shadow:
    0 22px 42px rgba(7, 18, 34, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mini-dashboard::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(28, 174, 205, 0.06), transparent 18%),
    radial-gradient(circle at 84% 88%, rgba(28, 174, 205, 0.08), transparent 22%);
}

.mini-dashboard-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
  padding: 0.8rem 0.9rem 0.7rem;
  border-bottom: 1px solid rgba(23, 37, 57, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 252, 254, 0.95));
}

.mini-dashboard-menu {
  width: 1rem;
  height: 0.72rem;
  border-radius: 0.12rem;
  background:
    linear-gradient(180deg, #3c4757, #3c4757) top/100% 2px no-repeat,
    linear-gradient(180deg, #3c4757, #3c4757) center/100% 2px no-repeat,
    linear-gradient(180deg, #3c4757, #3c4757) bottom/100% 2px no-repeat;
}

.mini-dashboard-brand {
  position: relative;
  padding-left: 0.95rem;
  justify-self: start;
  color: #1f8ecc;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.mini-dashboard-brand::before {
  content: "</>";
  position: absolute;
  left: 0;
  top: 0.02rem;
  color: #38baf4;
  font-size: 0.42rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.mini-dashboard-tools {
  display: flex;
  align-items: center;
  gap: 0.34rem;
}

.mini-dashboard-tools span {
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 0.2rem;
  border: 1px solid rgba(27, 43, 63, 0.28);
  background: rgba(246, 248, 250, 0.95);
}

.mini-dashboard-tools span:nth-child(2) {
  border-radius: 999px;
}

.mini-dashboard-tools span:nth-child(3) {
  border-color: rgba(18, 174, 202, 0.34);
  background: rgba(18, 174, 202, 0.08);
}

.mini-dashboard-search {
  margin: 0.58rem 0.9rem 0.42rem;
  padding: 0.42rem 0.62rem;
  border: 1px solid rgba(31, 40, 53, 0.08);
  border-radius: 0.5rem;
  background: rgba(244, 247, 250, 0.95);
  color: #121923;
  font-size: 0.66rem;
  font-weight: 500;
  line-height: 1.1;
}

.mini-dashboard-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0 0.9rem 0.34rem;
}

.mini-dashboard-filter {
  display: inline-flex;
  align-items: center;
  min-height: 1.2rem;
  padding: 0.14rem 0.45rem;
  border-radius: 999px;
  background: rgba(18, 174, 202, 0.08);
  border: 1px solid rgba(18, 174, 202, 0.16);
  color: #137e98;
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.mini-dashboard-count {
  color: rgba(56, 71, 89, 0.78);
  font-size: 0.56rem;
  font-weight: 700;
}

.mini-dashboard-list {
  display: grid;
  position: relative;
  padding-bottom: 4rem;
}

.mini-dashboard-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  align-items: start;
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid rgba(31, 40, 53, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.46), rgba(255, 255, 255, 0.16));
}

.mini-dashboard-person {
  display: grid;
  gap: 0.16rem;
}

.mini-dashboard-person strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: #121923;
}

.mini-dashboard-person span {
  color: rgba(56, 71, 89, 0.85);
  font-size: 0.58rem;
  line-height: 1.3;
}

.mini-dashboard-actions {
  display: flex;
  align-items: center;
  gap: 0.34rem;
  margin-top: 0.18rem;
}

.mini-dashboard-actions span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(27, 43, 63, 0.24);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.mini-dashboard-actions span:nth-child(4) {
  border-radius: 0.18rem;
}

.mini-dashboard-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 1.1rem;
  padding: 0.08rem 0.4rem;
  border-radius: 999px;
  background: rgba(18, 174, 202, 0.08);
  border: 1px solid rgba(18, 174, 202, 0.16);
  color: #2f5164;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.mini-dashboard-scrollbar {
  position: absolute;
  top: 3.2rem;
  right: 0.32rem;
  width: 0.32rem;
  height: calc(100% - 6.2rem);
  border-radius: 999px;
  background: rgba(31, 40, 53, 0.08);
}

.mini-dashboard-scrollbar::after {
  content: "";
  position: absolute;
  top: 0.64rem;
  left: 0;
  right: 0;
  height: 1.9rem;
  border-radius: 999px;
  background: rgba(56, 71, 89, 0.4);
}

.mini-dashboard-fab {
  position: absolute;
  right: 0.72rem;
  bottom: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 0.8rem;
  background: linear-gradient(180deg, #17bfd0, #10a9c5);
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 400;
  box-shadow: 0 10px 24px rgba(16, 169, 197, 0.24);
}

.mini-dashboard-tabs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.4rem;
  align-items: center;
  padding: 0.7rem 0.7rem 0.78rem;
  border-top: 1px solid rgba(31, 40, 53, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.mini-dashboard-tabs span {
  text-align: center;
  color: rgba(55, 67, 85, 0.9);
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.22rem 0.2rem;
  border-radius: 999px;
}

.mini-dashboard-tabs .is-active {
  color: #12aeca;
  background: rgba(18, 174, 202, 0.14);
}

.tree-line {
  display: block;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(98, 242, 201, 0.96), rgba(113, 193, 255, 0.4));
  box-shadow:
    0 0 0 1px rgba(98, 242, 201, 0.08),
    0 0 14px rgba(98, 242, 201, 0.18),
    0 0 28px rgba(98, 242, 201, 0.08);
  transition:
    opacity 0.24s ease,
    transform 0.8s var(--panel-ease);
}

.tree-stage--single .tree-line--vertical,
.tree-stage--outcomes .tree-line--vertical,
.tree-line--branch-stem {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  transform-origin: top center;
  transform: scaleY(0);
}

.tree-stage--single .tree-line--vertical {
  height: 3.3rem;
}

.tree-line--branch-stem {
  height: 2.1rem;
}

.tree-line--outcomes-stem {
  height: 2.65rem;
}

.tree-branch-lines {
  position: absolute;
  top: 2.05rem;
  left: 50%;
  width: min(78%, 52rem);
  height: 2.65rem;
  transform: translateX(-50%);
  pointer-events: none;
}

.tree-line--horizontal {
  position: absolute;
  top: 0;
  width: 50%;
  height: 2px;
}

.tree-line--left {
  right: 50%;
  transform-origin: right center;
  transform: scaleX(0);
}

.tree-line--right {
  left: 50%;
  transform-origin: left center;
  transform: scaleX(0);
}

.tree-line--left-drop,
.tree-line--right-drop {
  position: absolute;
  top: 0;
  width: 2px;
  height: 2.45rem;
  transform-origin: top center;
  transform: scaleY(0);
}

.tree-line--left-drop {
  left: 0;
}

.tree-line--right-drop {
  right: 0;
}

.tree-branch-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem 1.9rem;
}

.tree-branch-column {
  display: grid;
  align-content: start;
}

.tree-branch-column--left {
  gap: 1rem;
  padding-right: 0.8rem;
}

.tree-branch-column--right {
  padding-left: 0.8rem;
}

.tree-node--branch,
.tree-node--dashboard {
  width: 100%;
}

.tree-line--branch-link {
  position: relative;
  width: 2px;
  height: 2.35rem;
  margin: -0.05rem auto 0;
  transform-origin: top center;
  transform: scaleY(0);
}

.tree-stage--outcomes .tree-outcomes-intro {
  position: relative;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.72s var(--panel-ease),
    transform 0.72s var(--panel-ease);
}

.tree-outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: 100%;
}

.tree-leaf {
  padding: 1.08rem 1.2rem 1.15rem;
}

.tree-leaf span {
  display: block;
  margin-bottom: 0.56rem;
  color: rgba(184, 208, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.tree-leaf strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.38;
  color: var(--text);
}

.tree-stage.is-visible .tree-node,
.tree-stage.is-visible .tree-leaf {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.tree-stage--root.is-visible .tree-node {
  transition-delay: 0.12s;
}

.tree-stage--single.is-visible .tree-line--vertical,
.tree-stage--outcomes.is-visible .tree-line--vertical,
.tree-stage--branches.is-visible .tree-line--branch-stem,
.tree-stage--branches.is-visible .tree-line--branch-link {
  opacity: 1;
  transform: scaleY(1);
}

.tree-stage--single.is-visible .tree-node,
.tree-stage--outcomes.is-visible .tree-outcomes-intro {
  transition-delay: 0.22s;
}

.tree-stage--outcomes.is-visible .tree-outcomes-intro {
  opacity: 1;
  transform: translateY(0);
}

.tree-stage--branches.is-visible .tree-line--left,
.tree-stage--branches.is-visible .tree-line--right {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: 0.12s;
}

.tree-stage--branches.is-visible .tree-line--left-drop,
.tree-stage--branches.is-visible .tree-line--right-drop {
  opacity: 1;
  transform: scaleY(1);
  transition-delay: 0.3s;
}

.tree-stage--branches.is-visible .tree-branch-column--left > .tree-node:first-child,
.tree-stage--branches.is-visible .tree-branch-column--right > .tree-node {
  transition-delay: 0.42s;
}

.tree-stage--branches.is-visible .tree-line--branch-link {
  transition-delay: 0.58s;
}

.tree-stage--branches.is-visible .tree-node--followup {
  transition-delay: 0.72s;
}

.tree-stage--outcomes.is-visible .tree-leaf:nth-child(1) {
  transition-delay: 0.32s;
}

.tree-stage--outcomes.is-visible .tree-leaf:nth-child(2) {
  transition-delay: 0.42s;
}

.tree-stage--outcomes.is-visible .tree-leaf:nth-child(3) {
  transition-delay: 0.52s;
}

.tree-stage--outcomes.is-visible .tree-leaf:nth-child(4) {
  transition-delay: 0.62s;
}

@media (hover: hover) and (pointer: fine) {
  .tree-node:hover,
  .tree-leaf:hover {
    transform: translateY(-4px) scale(1.008);
    border-color: rgba(98, 242, 201, 0.28);
    background:
      linear-gradient(180deg, rgba(160, 201, 255, 0.08), rgba(98, 242, 201, 0.03)),
      linear-gradient(180deg, rgba(10, 23, 44, 0.92), rgba(4, 11, 24, 0.84));
    box-shadow:
      0 52px 116px rgba(1, 8, 20, 0.68),
      0 24px 52px rgba(1, 6, 16, 0.36),
      0 0 0 1px rgba(98, 242, 201, 0.12),
      0 0 18px rgba(98, 242, 201, 0.07),
      0 0 34px rgba(98, 242, 201, 0.035),
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      inset 1px 0 0 rgba(255, 255, 255, 0.07),
      inset 0 -1px 0 rgba(98, 242, 201, 0.12),
      inset -1px 0 0 rgba(98, 242, 201, 0.09);
  }

  .tree-node:hover::before,
  .tree-leaf:hover::before {
    opacity: 0.8;
    transform: translateY(-1px);
  }

  .tree-node:hover::after,
  .tree-leaf:hover::after {
    opacity: 0.88;
    filter: blur(16px);
    transform: scale(1.08);
  }
}

.timeline-list {
  display: grid;
  gap: 1.25rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem;
  border: 1px solid rgba(226, 238, 255, 0.2);
  outline: 1px solid rgba(255, 255, 255, 0.035);
  outline-offset: -2px;
  border-radius: 1.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    0 18px 34px rgba(2, 8, 20, 0.14),
    0 8px 18px rgba(2, 8, 20, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.025),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 1px 0 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(116, 149, 199, 0.08),
    inset -1px 0 0 rgba(116, 149, 199, 0.06);
  backdrop-filter: blur(18px) saturate(145%);
  transition:
    transform var(--panel-transition),
    border-color var(--panel-transition),
    box-shadow var(--panel-transition),
    background var(--panel-transition);
}

.timeline-item,
.flow-step,
.dashboard-metric,
.dashboard-row,
.sms-consent-card,
.legal-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.timeline-item > *,
.flow-step > *,
.dashboard-metric > *,
.dashboard-row > *,
.sms-consent-card > *,
.legal-card > * {
  position: relative;
  z-index: 1;
}

.timeline-step,
.stack-pill {
  padding: 0.45rem 0.8rem;
  color: var(--accent);
  background: rgba(138, 180, 255, 0.09);
  border: 1px solid rgba(138, 180, 255, 0.16);
}

.stack-card {
  padding: 1.6rem;
}

#process .stack-card {
  margin-top: 4.5rem;
}

.stack-pill {
  margin-bottom: 1.2rem;
}

.stack-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

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

.stack-item span {
  color: var(--muted);
}

.stack-item strong {
  max-width: 16rem;
  text-align: right;
}

.contact-section {
  padding-bottom: 6rem;
}

@media (hover: hover) and (pointer: fine) {
  .metric-card:hover,
  .feature-card:hover,
  .result-card:hover,
  .contact-form:hover,
  .contact-note:hover,
  .stack-card:hover,
  .showcase-card:hover {
    transform: translateY(-5px) scale(1.01);
    border-color: rgba(98, 242, 201, 0.28);
    background:
      linear-gradient(180deg, rgba(160, 201, 255, 0.08), rgba(98, 242, 201, 0.03)),
      linear-gradient(180deg, rgba(10, 23, 44, 0.92), rgba(4, 11, 24, 0.84));
    box-shadow:
      0 52px 116px rgba(1, 8, 20, 0.68),
      0 24px 52px rgba(1, 6, 16, 0.36),
      0 0 0 1px rgba(98, 242, 201, 0.12),
      0 0 18px rgba(98, 242, 201, 0.07),
      0 0 34px rgba(98, 242, 201, 0.035),
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 1px 0 0 rgba(255, 255, 255, 0.06),
      inset 0 -1px 0 rgba(98, 242, 201, 0.16),
      inset -1px 0 0 rgba(98, 242, 201, 0.12);
  }

  .metric-card:hover::before,
  .feature-card:hover::before,
  .result-card:hover::before,
  .contact-form:hover::before,
  .contact-note:hover::before,
  .stack-card:hover::before,
  .showcase-card:hover::before {
    opacity: 0.8;
    transform: translateY(-1px);
  }

  .metric-card:hover::after,
  .feature-card:hover::after,
  .result-card:hover::after,
  .contact-form:hover::after,
  .contact-note:hover::after,
  .stack-card:hover::after,
  .showcase-card:hover::after {
    opacity: 0.88;
    filter: blur(16px);
    transform: scale(1.08);
  }

  .timeline-item:hover,
  .flow-step:hover:not(.is-active),
  .dashboard-metric:hover,
  .dashboard-row:hover,
  .sms-consent-card:hover,
  .legal-card:hover {
    transform: translateY(-4px) scale(1.006);
    border-color: rgba(98, 242, 201, 0.24);
    background:
      linear-gradient(180deg, rgba(156, 196, 255, 0.055), rgba(98, 242, 201, 0.025)),
      rgba(7, 18, 34, 0.78);
    box-shadow:
      0 28px 54px rgba(1, 7, 18, 0.28),
      0 0 14px rgba(98, 242, 201, 0.06),
      0 0 0 1px rgba(98, 242, 201, 0.09),
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      inset 1px 0 0 rgba(255, 255, 255, 0.06),
      inset 0 -1px 0 rgba(98, 242, 201, 0.12),
      inset -1px 0 0 rgba(98, 242, 201, 0.09);
  }

  .flow-step:hover:not(.is-active) .flow-icon {
    animation: none;
    transform: translateY(-3px) scale(1.04);
    box-shadow:
      0 0 0 1px rgba(255, 255, 255, 0.04),
      0 0 24px rgba(98, 242, 201, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.16);
  }
}

.contact-note {
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem;
}

.contact-direct {
  display: grid;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.contact-direct-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-direct a,
.legal-card a {
  color: var(--text);
}

.contact-direct a:hover,
.legal-card a:hover {
  color: var(--primary);
}

.contact-form {
  padding: 1.75rem;
}

.hp-field {
  position: absolute;
  top: 0;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-label {
  display: inline-block;
  margin-bottom: 0.55rem;
  color: var(--text);
  font-weight: 700;
}

.required-mark {
  color: var(--primary);
}

.form-control,
.form-select {
  display: block;
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.form-control::placeholder {
  color: rgba(153, 169, 195, 0.7);
}

.form-control:focus,
.form-select:focus {
  outline: none;
  color: var(--text);
  border-color: rgba(98, 242, 201, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.06);
  box-shadow:
    0 0 0 0.25rem rgba(98, 242, 201, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.form-select option {
  color: #04111c;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.sms-consent-card {
  display: grid;
  gap: 0.8rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(226, 238, 255, 0.2);
  outline: 1px solid rgba(255, 255, 255, 0.035);
  outline-offset: -2px;
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(18px) saturate(150%);
  box-shadow:
    0 18px 34px rgba(2, 8, 20, 0.16),
    0 8px 18px rgba(2, 8, 20, 0.12),
    0 0 0 1px rgba(255, 255, 255, 0.025),
    inset 0 1px 0 rgba(255, 255, 255, 0.19),
    inset 1px 0 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(116, 149, 199, 0.08),
    inset -1px 0 0 rgba(116, 149, 199, 0.06);
  transition:
    transform var(--panel-transition),
    border-color var(--panel-transition),
    box-shadow var(--panel-transition),
    background var(--panel-transition);
}

.form-check-input {
  width: 1rem;
  height: 1rem;
  margin: 0.2rem 0 0;
  flex: 0 0 auto;
  accent-color: var(--primary);
}

.form-check-label,
.sms-disclosure {
  color: var(--muted);
  line-height: 1.6;
}

.sms-disclosure {
  font-size: 0.84rem;
  line-height: 1.5;
}

.sms-disclosure a,
.footer-links a {
  color: var(--primary);
}

.sms-disclosure a:hover,
.footer-links a:hover {
  color: var(--text);
}

.form-status {
  min-height: 1.5rem;
  color: var(--muted);
}

.form-status.is-success {
  color: var(--primary);
}

.form-status.is-error {
  color: #ff9ea9;
}

.site-footer {
  padding: 0 0 2.5rem;
}

.floating-contact-cta {
  position: fixed;
  right: 1.35rem;
  bottom: 1.35rem;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  padding: 0.8rem 1rem 0.8rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #e6edf8;
  background:
    linear-gradient(180deg, rgba(74, 86, 108, 0.94), rgba(46, 56, 74, 0.92)),
    rgba(40, 49, 65, 0.92);
  box-shadow:
    0 20px 44px rgba(2, 9, 20, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(18px) saturate(145%);
  transition:
    transform var(--panel-transition),
    box-shadow var(--panel-transition),
    border-color var(--panel-transition),
    background var(--panel-transition);
}

.floating-contact-cta:hover,
.floating-contact-cta:focus-visible {
  color: #f2f6fd;
  border-color: rgba(98, 242, 201, 0.32);
  background:
    linear-gradient(180deg, rgba(82, 95, 118, 0.96), rgba(50, 61, 80, 0.94)),
    rgba(44, 54, 72, 0.94);
  box-shadow:
    0 24px 52px rgba(2, 9, 20, 0.4),
    0 0 22px rgba(98, 242, 201, 0.08),
    0 0 0 1px rgba(98, 242, 201, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.floating-contact-icon {
  display: grid;
  place-items: center;
  width: 2.05rem;
  height: 2.05rem;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--primary-dark);
  background:
    linear-gradient(180deg, rgba(98, 242, 201, 0.18), rgba(98, 242, 201, 0.06)),
    rgba(98, 242, 201, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 0 0 1px rgba(98, 242, 201, 0.08);
}

.floating-contact-icon svg {
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.floating-contact-label {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.site-footer p,
.footer-links a {
  color: var(--muted);
}

.footer-meta {
  margin-top: 1.25rem;
  font-size: 0.92rem;
  color: rgba(153, 169, 195, 0.88);
}

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

@media (min-width: 768px) {
  .footer-meta {
    text-align: right;
  }
}

.legal-page {
  padding: 4rem 0 5rem;
}

.legal-card {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2rem;
  border: 1px solid var(--glass-border-strong);
  border-radius: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(12, 25, 46, 0.52);
  backdrop-filter: blur(28px) saturate(155%);
  box-shadow: var(--glass-shadow);
  transition:
    transform var(--panel-transition),
    border-color var(--panel-transition),
    box-shadow var(--panel-transition),
    background var(--panel-transition);
}

.legal-card h1,
.legal-card h2 {
  font-family: "Space Grotesk", sans-serif;
}

.legal-card h1 {
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.legal-card h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-top: 1.75rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card ul {
  padding-left: 1.15rem;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }

  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .flex-sm-row {
    flex-direction: row;
  }

  .align-items-sm-center {
    align-items: center;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .align-items-md-center {
    align-items: center;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.333333%;
  }

  .gap-lg-3 {
    gap: 1rem;
  }

  .align-items-lg-center {
    align-items: center;
  }

  .navbar-expand-lg .navbar-toggler {
    display: none;
  }

  .navbar-expand-lg .navbar-collapse {
    display: flex !important;
    width: auto;
    padding-top: 0;
  }

  .navbar-expand-lg .navbar-nav {
    flex-direction: row;
    align-items: center;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (max-width: 991.98px) {
  .flow-tree {
    gap: 1rem;
  }

  .tree-stage--single {
    padding-top: 3.45rem;
  }

  .tree-stage--branches,
  .tree-stage--outcomes {
    padding-top: 3.2rem;
  }

  .tree-stage--single .tree-line--vertical,
  .tree-line--outcomes-stem {
    left: 1.35rem;
    margin-left: 0;
    height: 2.5rem;
  }

  .tree-stage--branches .tree-line--branch-stem {
    left: 1.35rem;
    margin-left: 0;
    height: 2.15rem;
  }

  .tree-branch-lines {
    top: 2.05rem;
    left: 1.35rem;
    width: calc(100% - 1.35rem);
    height: 2.15rem;
    transform: none;
  }

  .tree-line--left {
    display: none;
  }

  .tree-line--right {
    left: 0;
    width: clamp(2rem, 10vw, 3rem);
  }

  .tree-line--left-drop {
    display: none;
  }

  .tree-line--right-drop {
    left: clamp(2rem, 10vw, 3rem);
    right: auto;
    height: 2.15rem;
  }

  .tree-stage--single,
  .tree-stage--root,
  .tree-stage--outcomes {
    justify-items: stretch;
  }

  .tree-node--root,
  .tree-node--capture,
  .tree-node--backend,
  .tree-node {
    width: 100%;
  }

  .tree-stage--single .tree-node,
  .tree-stage--outcomes .tree-outcomes-intro,
  .tree-stage--outcomes .tree-outcome-grid {
    margin-left: clamp(2.8rem, 11vw, 3.5rem);
    width: calc(100% - clamp(2.8rem, 11vw, 3.5rem));
  }

  .tree-branch-grid,
  .tree-outcome-grid {
    grid-template-columns: 1fr;
  }

  .tree-branch-column--left,
  .tree-branch-column--right {
    padding: 0;
  }

  .tree-stage--branches .tree-branch-grid {
    margin-left: clamp(2.8rem, 11vw, 3.5rem);
    width: calc(100% - clamp(2.8rem, 11vw, 3.5rem));
  }

  .tree-node-visual--site {
    width: min(100%, 26rem);
  }

  .tree-node-visual--dashboard {
    width: min(100%, 13.5rem);
  }

  .mini-site-topbar {
    gap: 0.55rem;
    padding: 0.58rem 0.72rem;
  }

  .mini-site-nav {
    gap: 0.48rem;
    font-size: 0.58rem;
  }

  .mini-site-actions {
    gap: 0.36rem;
  }

  .mini-site-phone,
  .mini-site-quote {
    min-height: 1.3rem;
    padding: 0.16rem 0.38rem;
    font-size: 0.52rem;
  }

  .mini-site-stage {
    gap: 0.7rem;
    padding: 0.7rem;
  }

  .mini-site-copy {
    gap: 0.58rem;
    padding: 0.78rem 0.4rem 0.78rem 0.58rem;
  }

  .mini-site-rating {
    font-size: 0.52rem;
  }

  .mini-site-copy strong {
    font-size: 1.08rem;
  }

  .mini-site-copy p {
    font-size: 0.68rem;
  }

  .mini-site-services span {
    min-height: 1.16rem;
    padding: 0.14rem 0.36rem;
    font-size: 0.5rem;
  }

  .mini-site-proof-grid {
    gap: 0.36rem;
  }

  .mini-site-proof {
    padding: 0.42rem;
  }

  .mini-site-form-card {
    gap: 0.42rem;
    padding: 0.72rem 0.7rem;
  }

  .mini-site-form-card strong {
    font-size: 0.82rem;
  }

  .mini-site-form-trust {
    font-size: 0.5rem;
  }

  .mini-site-label {
    font-size: 0.44rem;
  }

  .mini-site-inline-field {
    margin-bottom: 0.06rem;
  }

  .mini-site-field {
    min-height: 1.1rem;
  }

  .mini-site-field--message {
    min-height: 1.7rem;
  }

  .mini-site-fab {
    left: 0.62rem;
    bottom: 0.6rem;
    padding: 0.34rem 0.58rem 0.34rem 0.42rem;
    font-size: 0.54rem;
  }

  .mini-site-fab-icon {
    width: 0.98rem;
    height: 0.98rem;
  }

  .mini-dashboard-topbar {
    padding: 0.7rem 0.78rem 0.62rem;
  }

  .mini-dashboard-filter-row {
    padding: 0 0.78rem 0.3rem;
  }

  .mini-dashboard-actions span {
    width: 0.64rem;
    height: 0.64rem;
  }

  .mini-dashboard-scrollbar {
    right: 0.28rem;
  }

  .mini-dashboard-row {
    padding: 0.72rem 0.78rem;
  }

  .tree-line--branch-link {
    margin-left: 1.35rem;
  }

  .hero-content {
    padding-top: 3rem;
  }

  .hero-title {
    max-width: 14ch;
  }

  #process .stack-card {
    margin-top: 0;
  }

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

  .dashboard-meta {
    justify-items: start;
  }

  .stack-item {
    flex-direction: column;
  }

  .stack-item strong {
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .flow-tree-heading {
    margin-bottom: 2rem;
  }

  .tree-node,
  .tree-leaf {
    padding: 1.2rem 1.1rem;
    border-radius: 1.35rem;
  }

  .tree-node h3 {
    font-size: 1.22rem;
    margin-bottom: 0.72rem;
  }

  .tree-node p {
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .mini-email {
    padding: 0.72rem;
  }

  .mini-site-topbar {
    grid-template-columns: 1fr auto;
    padding: 0.5rem 0.56rem;
  }

  .mini-site-nav,
  .mini-site-phone {
    display: none;
  }

  .mini-site-stage {
    gap: 0.5rem;
    padding: 0.5rem;
    grid-template-columns: minmax(0, 1.18fr) minmax(7rem, 0.92fr);
  }

  .mini-site-copy {
    gap: 0.45rem;
    padding: 0.62rem 0.2rem 0.6rem 0.28rem;
  }

  .mini-site-copy strong {
    font-size: 0.9rem;
  }

  .mini-site-copy p {
    font-size: 0.56rem;
    line-height: 1.38;
  }

  .mini-site-rating {
    font-size: 0.46rem;
  }

  .mini-site-badge,
  .mini-site-form-kicker {
    font-size: 0.46rem;
  }

  .mini-site-services {
    gap: 0.26rem;
  }

  .mini-site-services span {
    min-height: 0.96rem;
    padding: 0.1rem 0.28rem;
    font-size: 0.44rem;
  }

  .mini-site-proof-grid {
    gap: 0.28rem;
  }

  .mini-site-proof {
    padding: 0.32rem;
    border-radius: 0.58rem;
  }

  .mini-site-proof strong {
    font-size: 0.48rem;
  }

  .mini-site-proof span {
    font-size: 0.42rem;
  }

  .mini-site-form-card {
    gap: 0.34rem;
    padding: 0.58rem;
    border-radius: 0.9rem;
  }

  .mini-site-form-card strong {
    font-size: 0.68rem;
  }

  .mini-site-form-trust,
  .mini-site-label {
    font-size: 0.42rem;
  }

  .mini-site-inline-field {
    margin-bottom: 0.04rem;
  }

  .mini-site-field {
    min-height: 0.86rem;
    border-radius: 0.36rem;
  }

  .mini-site-field--message {
    min-height: 1.25rem;
  }

  .mini-site-cta {
    padding: 0.32rem 0.56rem;
    font-size: 0.56rem;
  }

  .mini-site-form-footer {
    gap: 0.32rem;
  }

  .mini-site-fab {
    left: 0.42rem;
    bottom: 0.42rem;
    gap: 0.24rem;
    padding: 0.26rem 0.46rem 0.26rem 0.32rem;
    font-size: 0.46rem;
  }

  .mini-site-fab-icon {
    width: 0.78rem;
    height: 0.78rem;
  }

  .mini-email-header {
    display: grid;
    gap: 0.3rem;
  }

  .tree-node-visual--dashboard {
    width: min(100%, 12rem);
  }

  .mini-dashboard-topbar {
    padding: 0.6rem 0.68rem 0.54rem;
  }

  .mini-dashboard-search {
    padding: 0.38rem 0.58rem 0.32rem;
    margin: 0.46rem 0.68rem 0.32rem;
  }

  .mini-dashboard-filter-row {
    padding: 0 0.68rem 0.26rem;
  }

  .mini-dashboard-filter,
  .mini-dashboard-count {
    font-size: 0.46rem;
  }

  .mini-dashboard-row {
    padding: 0.62rem 0.68rem;
    gap: 0.55rem;
  }

  .mini-dashboard-actions {
    gap: 0.24rem;
  }

  .mini-dashboard-actions span {
    width: 0.56rem;
    height: 0.56rem;
  }

  .mini-dashboard-status {
    min-height: 0.95rem;
    padding: 0.06rem 0.3rem;
    font-size: 0.44rem;
  }

  .mini-dashboard-scrollbar {
    top: 3.05rem;
    width: 0.26rem;
    height: calc(100% - 5.9rem);
  }

  .mini-dashboard-fab {
    right: 0.58rem;
    bottom: 2.55rem;
    width: 1.95rem;
    height: 1.95rem;
    font-size: 1.32rem;
  }

  .mini-dashboard-tabs {
    padding: 0.56rem 0.5rem 0.64rem;
  }

  .tree-node-kicker,
  .tree-outcomes-pill {
    min-width: 0;
    padding: 0.34rem 0.72rem;
    font-size: 0.74rem;
    margin-bottom: 0.8rem;
  }

  .tree-stage--single {
    padding-top: 3rem;
  }

  .tree-stage--branches,
  .tree-stage--outcomes {
    padding-top: 2.85rem;
  }

  .tree-stage--single .tree-line--vertical,
  .tree-line--outcomes-stem,
  .tree-stage--branches .tree-line--branch-stem {
    left: 1.05rem;
  }

  .tree-branch-lines {
    left: 1.05rem;
    width: calc(100% - 1.05rem);
  }

  .tree-line--right {
    width: 2.25rem;
  }

  .tree-line--right-drop {
    left: 2.25rem;
  }

  .tree-stage--single .tree-node,
  .tree-stage--outcomes .tree-outcomes-intro,
  .tree-stage--outcomes .tree-outcome-grid,
  .tree-stage--branches .tree-branch-grid {
    margin-left: 2.45rem;
    width: calc(100% - 2.45rem);
  }

  .tree-leaf span {
    font-size: 0.72rem;
  }

  .tree-leaf strong {
    font-size: 0.98rem;
  }

  .section-space {
    padding: 4rem 0;
  }

  .hero-section {
    padding-bottom: 3rem;
  }

  .showcase-panel,
  .contact-form,
  .stack-card,
  .feature-card,
  .result-card,
  .legal-card {
    padding: 1.3rem;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .dashboard-metrics {
    grid-template-columns: 1fr;
  }

  .showcase-panel h2 {
    font-size: clamp(1.34rem, 6.6vw, 1.72rem);
    margin-bottom: 0.78rem;
  }

  .showcase-copy {
    margin-bottom: 0.9rem;
    font-size: 0.92rem;
  }

  .flow-board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .flow-board::before {
    content: none;
  }

  .flow-step {
    gap: 0.26rem;
    min-height: 7rem;
    padding: 0.72rem 0.56rem 0.72rem;
  }

  .flow-icon {
    width: 2.42rem;
    height: 2.42rem;
  }

  .flow-step strong {
    font-size: 0.88rem;
  }

  .flow-step-note {
    font-size: 0.73rem;
  }

  .flow-footer {
    margin-top: 0.72rem;
    padding-top: 0.62rem;
    min-height: 3.7rem;
  }

  .flow-detail-copy {
    max-width: none;
    font-size: 0.95rem;
    line-height: 1.46;
  }

  #process .stack-card {
    margin-top: 0;
  }

  .floating-contact-cta {
    right: 1rem;
    bottom: 1rem;
    gap: 0.6rem;
    padding: 0.72rem 0.9rem 0.72rem 0.76rem;
  }

  .floating-contact-label {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flow-board::before,
  .flow-icon {
    animation: none;
  }

  .tree-node,
  .tree-leaf,
  .tree-line {
    opacity: 1;
  }

  .tree-node,
  .tree-leaf {
    transform: none;
    transition: none;
  }

  .tree-stage--single .tree-line--vertical,
  .tree-stage--outcomes .tree-line--vertical,
  .tree-stage--branches .tree-line--branch-stem,
  .tree-stage--branches .tree-line--left,
  .tree-stage--branches .tree-line--right,
  .tree-stage--branches .tree-line--left-drop,
  .tree-stage--branches .tree-line--right-drop,
  .tree-stage--branches .tree-line--branch-link {
    transform: none;
    transition: none;
  }

  .flow-step,
  .flow-step::after,
  .flow-step-number,
  .flow-step strong,
  .flow-step-note,
  .flow-detail-copy {
    transition: none;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
