:root {
  --ink: #14140f;
  --paper: #f3f0e6;
  --white: #fffdf5;
  --muted: #69675d;
  --line: #d6d1c3;
  --lime: #caff20;
  --blue: #168ee5;
  --red: #f03e28;
  --violet: #9b8cff;
  --radius: 12px;
  --page: clamp(20px, 5vw, 80px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@font-face {
  font-family: "Instrument Sans";
  src: url("fonts/instrument-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/space-grotesk-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}


* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  position: relative;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: "Instrument Sans", system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(20, 20, 15, 0.052) 1px, transparent 1px) 0 0 / 8.333vw 100%;
  pointer-events: none;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 12px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  translate: 0 -180%;
  transition: translate 160ms ease;
}

.skip-link:focus { translate: 0; }

::selection { color: var(--ink); background: var(--lime); }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: "Space Grotesk", system-ui, sans-serif; }

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.process-line:focus-visible,
.package-grid:focus-visible,
.recurring-list:focus-visible,
.case-grid:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

#signal-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.signal-thread {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 12;
  display: block;
  overflow: visible;
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease;
}

.signal-thread.is-ready {
  opacity: 1;
}

.thread-base,
.thread-progress {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.thread-base {
  stroke: rgba(111, 109, 101, 0.36);
  stroke-width: 1;
  stroke-dasharray: 3 5;
  opacity: 0.68;
}

.thread-progress {
  stroke: url("#thread-gradient");
  stroke-width: 1.5;
  filter: drop-shadow(0 0 4px rgba(202, 255, 32, 0.22));
}

.thread-node {
  stroke: var(--white);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  transition: r 260ms var(--ease), opacity 260ms ease;
}

.thread-node:not(.is-active) {
  opacity: 0.42;
}

.thread-node.is-active {
  opacity: 1;
}

.thread-node.is-current {
  filter: drop-shadow(0 0 8px currentColor);
}

.thread-node-label {
  fill: var(--muted);
  stroke: var(--white);
  stroke-width: 3px;
  paint-order: stroke;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.thread-dot-halo {
  fill: none;
  stroke: var(--lime);
  stroke-width: 1;
  opacity: 0.52;
  vector-effect: non-scaling-stroke;
  animation: threadPulse 1.8s ease-in-out infinite;
}

.thread-dot {
  fill: var(--lime);
  stroke: var(--ink);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 4px 7px rgba(20, 20, 15, 0.28));
}

.thread-message {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 24;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  width: min(330px, calc(100vw - 48px));
  padding: 11px 14px 11px 11px;
  border: 1px solid rgba(20, 20, 15, 0.18);
  border-radius: 99px;
  background: rgba(255, 253, 245, 0.9);
  box-shadow: 0 16px 42px rgba(20, 20, 15, 0.14);
  backdrop-filter: blur(16px);
  opacity: 0;
  translate: 0 14px;
  scale: 0.96;
  pointer-events: none;
  transition: opacity 260ms ease, translate 320ms var(--ease), scale 320ms var(--ease);
}

.thread-message.is-visible {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}

.thread-message > span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--thread-message-color, var(--lime));
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.06em;
  transition: background 260ms ease;
}

.thread-message p {
  margin: 0;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 25;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(255, 253, 245, 0.22);
  border-radius: 50%;
  color: var(--lime);
  background: rgba(20, 20, 15, 0.94);
  box-shadow: 0 12px 28px rgba(20, 20, 15, 0.16);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  translate: 0 10px;
  scale: 0.86;
  cursor: pointer;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease, translate 280ms var(--ease), scale 280ms var(--ease), background 220ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  translate: 0 0;
  scale: 1;
  pointer-events: auto;
}

.back-to-top > span {
  font-size: 18px;
  line-height: 1;
  transition: translate 220ms var(--ease);
}

.back-to-top > small {
  position: absolute;
  top: 50%;
  left: 48px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--ink);
  background: rgba(255, 253, 245, 0.92);
  box-shadow: 0 8px 20px rgba(20, 20, 15, 0.1);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0;
  translate: -5px -50%;
  pointer-events: none;
  transition: opacity 180ms ease, translate 220ms var(--ease);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--ink);
  translate: 0 -3px;
}

.back-to-top:hover > span,
.back-to-top:focus-visible > span {
  translate: 0 -2px;
}

.back-to-top:hover > small,
.back-to-top:focus-visible > small {
  opacity: 1;
  translate: 0 -50%;
}

.back-to-top:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 76px;
  padding: 0 var(--page);
  border-bottom: 1px solid rgba(20, 20, 15, 0.16);
  background: rgba(255, 253, 245, 0.84);
  backdrop-filter: blur(20px);
  transition: min-height 240ms var(--ease), background 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  background: rgba(255, 253, 245, 0.96);
  box-shadow: 0 12px 40px rgba(20, 20, 15, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  width: max-content;
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.brand > span:first-child {
  display: inline-grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 7px;
  color: var(--lime);
  background: var(--ink);
  font-size: 10px;
  font-weight: 800;
}

.brand b { font-size: 17px; }

.brand small {
  display: inline-grid;
  width: auto;
  height: 24px;
  padding: 0 9px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 99px;
  color: var(--muted);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 9px;
  font-weight: 800;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.site-header nav a {
  position: relative;
}

.site-header nav > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease);
}

.site-header nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 99px;
  background: var(--lime);
  font-size: 13px;
  font-weight: 800;
  transition: transform 220ms var(--ease), box-shadow 220ms ease;
}

.nav-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(20, 20, 15, 0.14);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(390px, 0.65fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
  min-height: 90svh;
  padding: 132px var(--page) 54px;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 98px 16px 24px;
  z-index: -2;
  border-radius: 16px;
  background: rgba(20, 20, 15, 0.98);
  box-shadow: 0 32px 90px rgba(20, 20, 15, 0.18);
}

.hero::after {
  content: "";
  position: absolute;
  top: 18%;
  left: 38%;
  z-index: -1;
  width: min(520px, 40vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  opacity: 0.07;
  filter: blur(100px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.eyebrow,
.status,
.goal-state {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.status i,
.goal-state i,
.board-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(202, 255, 32, 0.1);
  animation: pulse 2s ease-in-out infinite;
}

h1 {
  max-width: 940px;
  margin: 28px 0 28px;
  font-size: clamp(56px, 7vw, 112px);
  line-height: 0.86;
  letter-spacing: -0.075em;
}

h1 > span { display: block; }

.hero-title-context {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  max-width: 100%;
  margin-bottom: 28px;
  color: var(--lime);
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-title-context i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(202, 255, 32, 0.1);
  animation: pulse 2s ease-in-out infinite;
}

.lime-text {
  width: max-content;
  max-width: 100%;
  color: var(--lime);
  letter-spacing: -0.08em;
}

.hero-lead {
  max-width: 650px;
  color: rgba(255, 253, 245, 0.7);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.5;
}

.hero-lead::before {
  content: "";
  display: inline-block;
  width: 44px;
  height: 2px;
  margin: 0 14px 6px 0;
  background: var(--lime);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 38px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 700px;
  margin: 44px 0 0;
  border-top: 1px solid rgba(255, 253, 245, .16);
}

.hero-facts > div {
  padding: 17px 18px 0 0;
}

.hero-facts > div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 253, 245, .16);
}

.hero-facts dt {
  margin-bottom: 6px;
  color: rgba(255, 253, 245, .38);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.hero-facts dd {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 21px;
  border: 1px solid;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 220ms var(--ease), background 220ms ease, box-shadow 220ms ease;
}

.button.primary { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.button.ghost { color: var(--white); border-color: rgba(255, 253, 245, 0.55); }

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.2);
}

.button.ghost:hover { background: rgba(255, 253, 245, 0.09); }

.signal-board {
  position: relative;
  z-index: 3;
  min-height: 480px;
  padding: 54px 18px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 245, 0.17);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(255, 253, 245, 0.075) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(255, 253, 245, 0.075) 1px, transparent 1px) 0 0 / 48px 48px,
    rgba(255, 253, 245, 0.035);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  transform: rotate(1.3deg);
  transition: transform 550ms var(--ease);
}

.signal-board:hover { transform: rotate(0deg) translateY(-5px); }

.board-top {
  position: absolute;
  top: 18px;
  right: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 253, 245, 0.52);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.board-top i { color: var(--lime); }

.board-lines {
  position: absolute;
  inset: 62px 18px 18px;
  width: calc(100% - 36px);
  height: calc(100% - 80px);
  fill: none;
  stroke: rgba(255, 253, 245, 0.32);
  stroke-width: 0.65;
  stroke-dasharray: 3 3;
}

.signal {
  position: absolute;
  z-index: 2;
  display: flex;
  width: 132px;
  min-height: 112px;
  flex-direction: column;
  justify-content: space-between;
  padding: 13px;
  border-radius: 9px;
  color: var(--ink);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
  transition: transform 260ms var(--ease), box-shadow 260ms ease;
}

.signal:hover {
  z-index: 5;
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.signal.is-pulsing {
  z-index: 4;
  transform: translateY(-5px) scale(1.035);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.3);
}

.signal small { font-size: 8px; font-weight: 800; opacity: 0.56; text-transform: uppercase; }
.signal strong { font-size: 30px; line-height: 1; }
.signal span { font-size: 10px; font-weight: 800; }
.signal-web { top: 72px; left: 18px; background: var(--lime); }
.signal-seo { top: 92px; right: 18px; color: var(--white); background: var(--blue); }
.signal-ads { bottom: 24px; left: 28px; color: var(--white); background: var(--red); }
.signal-crm { right: 24px; bottom: 38px; background: var(--violet); }

.board-center {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 253, 245, 0.5);
  border-radius: 50%;
  background: rgba(20, 20, 15, 0.78);
  transform: translate(-50%, -50%);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.board-center i {
  position: absolute;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--lime);
  animation: orbit 6s linear infinite;
  transform-origin: 5px 46px;
}

.hero-side {
  position: absolute;
  right: 28px;
  bottom: 41px;
  color: rgba(255, 253, 245, 0.32);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--lime);
  transform: rotate(-0.8deg) scale(1.012);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 27px;
  padding: 15px 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(18px, 2vw, 27px);
  font-weight: 700;
  text-transform: uppercase;
  animation: ticker 25s linear infinite;
}

.ticker-track i { font-style: normal; font-size: 0.66em; }

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.section-label i { width: 38px; height: 1px; background: currentColor; }
.section-label.light { color: rgba(255, 253, 245, 0.42); }

.intro {
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) minmax(0, 1.2fr) minmax(260px, 0.45fr);
  gap: clamp(28px, 5vw, 78px);
  align-items: end;
  padding: 132px var(--page);
  border-bottom: 1px solid var(--line);
}

.intro h2,
.diagnostic-heading h2,
.service-intro h2,
.packages-heading h2,
.process > h2 {
  margin: 0;
  font-size: clamp(46px, 6.2vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.062em;
}

.intro h2 em { color: var(--blue); font-style: normal; }

.intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.diagnostic {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.55fr) minmax(460px, 1fr);
  gap: 28px;
  padding: 120px var(--page);
  color: var(--white);
  background: var(--ink);
}

.diagnostic-heading {
  min-width: 0;
  padding-right: 30px;
}

.diagnostic-heading h2 {
  margin: 50px 0 24px;
}

.diagnostic-heading > p,
.service-intro > p,
.packages-heading > p {
  max-width: 400px;
  color: rgba(255, 253, 245, 0.5);
  line-height: 1.55;
}

.goal-selector {
  display: grid;
  align-content: start;
  gap: 8px;
  min-width: 0;
}

.goal-selector button {
  display: grid;
  grid-template-columns: 26px 1fr 24px;
  gap: 12px;
  align-items: center;
  min-height: 72px;
  padding: 0 16px;
  border: 1px solid rgba(255, 253, 245, 0.14);
  border-radius: 9px;
  color: rgba(255, 253, 245, 0.54);
  background: rgba(255, 253, 245, 0.03);
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, border 220ms ease, transform 220ms var(--ease);
}

.goal-selector button:hover { border-color: rgba(255, 253, 245, 0.36); transform: translateX(5px); }
.goal-selector button[aria-pressed="true"] { color: var(--ink); border-color: var(--lime); background: var(--lime); }
.goal-selector button span { font-size: 9px; font-weight: 800; opacity: 0.5; }
.goal-selector button strong { font-size: 13px; }
.goal-selector button i { font-style: normal; font-size: 17px; transition: transform 220ms var(--ease); }
.goal-selector button:hover i { transform: translate(3px, -3px); }

.goal-output {
  --goal-accent: var(--lime);
  position: relative;
  min-height: 520px;
  padding: 26px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--goal-accent);
  transition: background 320ms ease;
}

.goal-output-head,
.goal-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.goal-output-head > span:first-child {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.goal-state {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 99px;
  color: var(--white);
  background: var(--ink);
  font-size: 8px;
  white-space: nowrap;
}
.goal-state i {
  background: var(--goal-accent);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--goal-accent) 20%, transparent);
}

.goal-output-main {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  align-items: end;
  margin: 78px 0 40px;
}

.goal-output-main > div > p {
  margin-bottom: 13px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.goal-output-main h3 {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.goal-output-main > p { margin: 0; color: rgba(20, 20, 15, 0.66); line-height: 1.5; }

.goal-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 62px;
}

.goal-stack span {
  height: max-content;
  padding: 8px 11px;
  border: 1px solid rgba(20, 20, 15, 0.3);
  border-radius: 99px;
  background: rgba(255, 253, 245, 0.17);
  font-size: 10px;
  font-weight: 800;
}

.goal-footer {
  align-items: end;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(20, 20, 15, 0.3);
}

.goal-footer > div { display: grid; gap: 6px; }
.goal-footer > div span { font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.55; }
.goal-footer > div strong { font-size: 12px; }

.goal-footer > a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 99px;
  color: var(--white);
  background: var(--ink);
  font-size: 11px;
  font-weight: 800;
}

.goal-visual {
  position: absolute;
  top: -150px;
  right: -110px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(20, 20, 15, 0.2);
  border-radius: 50%;
}

.goal-visual::before,
.goal-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(20, 20, 15, 0.18);
  border-radius: 50%;
}

.goal-visual::before { inset: 55px; }
.goal-visual::after { inset: 125px; background: var(--ink); }
.goal-visual i { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--ink); }
.goal-visual i:nth-child(1) { top: 86px; left: 38px; }
.goal-visual i:nth-child(2) { right: 36px; bottom: 90px; }
.goal-visual i:nth-child(3) { bottom: 12px; left: 170px; }
.goal-visual i:nth-child(4) { top: 172px; left: -5px; }

.goal-runner {
  position: absolute;
  top: -9px;
  left: calc(50% - 9px);
  z-index: 4;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 253, 245, 0.78);
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 6px 18px rgba(20, 20, 15, 0.3);
  transform-origin: 9px 189px;
  animation: routeRunner 5s var(--ease) infinite alternate;
  will-change: transform;
}

.goal-runner::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(20, 20, 15, 0.28);
  border-radius: 50%;
  animation: runnerHalo 1.8s ease-in-out infinite;
}

.service-system {
  display: grid;
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(40px, 7vw, 110px);
  padding: 128px var(--page);
  color: var(--white);
  background: #202019;
}

.service-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.service-intro h2 { margin: 48px 0 24px; }

.service-browser {
  display: grid;
  grid-template-columns: minmax(190px, 0.4fr) minmax(0, 1fr);
  min-height: 610px;
  border: 1px solid rgba(255, 253, 245, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-scope {
  grid-column: 2;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 36px;
  margin-top: 18px;
  padding: 22px 26px;
  border: 1px solid rgba(255, 253, 245, .14);
  border-radius: 11px;
  background: rgba(255, 253, 245, .035);
}

.service-scope span {
  color: var(--lime);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.service-scope p {
  margin: 0;
  color: rgba(255, 253, 245, .58);
  font-size: 12px;
  line-height: 1.6;
}

.service-tabs {
  display: grid;
  align-content: start;
  border-right: 1px solid rgba(255, 253, 245, 0.14);
  background: rgba(255, 253, 245, 0.025);
}

.service-tabs button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
  padding: 0 17px;
  border: 0;
  border-bottom: 1px solid rgba(255, 253, 245, 0.12);
  color: rgba(255, 253, 245, 0.48);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: color 220ms ease, background 220ms ease, padding 220ms var(--ease);
}

.service-tabs button span { font-size: 8px; opacity: 0.5; }
.service-tabs button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.45;
  transition: transform 260ms var(--ease), background 220ms ease, opacity 220ms ease;
}
.service-tabs button:hover { color: var(--white); padding-left: 23px; }
.service-tabs button[aria-selected="true"] { color: var(--ink); background: var(--preview-accent, var(--lime)); }
.service-tabs button[aria-selected="true"]::after {
  border-color: var(--ink);
  background: var(--ink);
  opacity: 1;
  transform: scale(1.18);
  box-shadow: 0 0 0 5px rgba(20, 20, 15, 0.1);
}

.service-preview {
  --preview-accent: var(--lime);
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(255, 253, 245, 0.055) 1px, transparent 1px) 0 0 / 54px 54px,
    linear-gradient(rgba(255, 253, 245, 0.055) 1px, transparent 1px) 0 0 / 54px 54px,
    rgba(255, 253, 245, 0.025);
  transition: background 260ms ease;
}

.service-preview::before {
  content: "";
  position: absolute;
  top: -215px;
  right: -190px;
  z-index: 0;
  width: 390px;
  height: 390px;
  border: 72px solid color-mix(in srgb, var(--preview-accent) 32%, transparent);
  border-radius: 50%;
  opacity: 0.72;
  transition: border-color 320ms ease, transform 500ms var(--ease);
  pointer-events: none;
}

.service-preview::after {
  content: "";
  position: absolute;
  top: 0;
  right: -12%;
  left: -12%;
  z-index: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--preview-accent), transparent);
  box-shadow: 0 0 20px color-mix(in srgb, var(--preview-accent) 55%, transparent);
  opacity: 0.46;
  animation: serviceScan 7s ease-in-out infinite;
  pointer-events: none;
}

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

.service-preview[hidden] {
  display: none;
}

.service-preview.is-switching::before {
  animation: serviceEnergy 680ms var(--ease);
}

.preview-top,
.preview-title-row,
.preview-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.preview-top { color: rgba(255, 253, 245, 0.42); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; }
.preview-top span:last-child {
  padding: 6px 9px;
  border: 1px solid color-mix(in srgb, var(--preview-accent) 58%, transparent);
  border-radius: 99px;
  color: var(--preview-accent);
  background: color-mix(in srgb, var(--preview-accent) 8%, transparent);
  transition: color 260ms ease, border-color 260ms ease, background 260ms ease;
}
.preview-title-row { align-items: end; margin: 70px 0 24px; }
.preview-title-row h3 { margin: 0; font-size: clamp(44px, 5vw, 72px); line-height: 0.9; letter-spacing: -0.06em; }

.preview-symbol {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--preview-accent);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 26px;
  font-weight: 800;
  transition: background 280ms ease, transform 280ms var(--ease);
}

.service-preview.is-switching .preview-symbol {
  animation: serviceSymbol 620ms var(--ease);
}

.service-preview.is-switching .preview-title-row h3,
.service-preview.is-switching > p {
  animation: serviceCopy 520ms var(--ease) both;
}

.service-preview > p { max-width: 520px; color: rgba(255, 253, 245, 0.53); line-height: 1.55; }

.service-preview ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  align-items: start;
  margin: 32px 0 58px;
  padding: 0;
  list-style: none;
}

.service-preview li {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 245, 0.14);
  border-radius: 7px;
  color: rgba(255, 253, 245, 0.7);
  font-size: 11px;
  font-weight: 700;
  animation: serviceItem 460ms var(--ease) both;
  transition: grid-column 260ms var(--ease), border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.service-preview li:nth-child(1) { animation-delay: 40ms; }
.service-preview li:nth-child(2) { animation-delay: 80ms; }
.service-preview li:nth-child(3) { animation-delay: 120ms; }
.service-preview li:nth-child(4) { animation-delay: 160ms; }
.service-preview li:nth-child(5) { animation-delay: 200ms; }
.service-preview li:nth-child(6) { animation-delay: 240ms; }

.service-detail-trigger {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 13px;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  transition: color 220ms ease, background 220ms ease;
}

.service-detail-trigger:hover {
  color: var(--white);
  background: rgba(255, 253, 245, 0.045);
}

.service-detail-trigger:focus-visible {
  outline: 2px solid var(--preview-accent);
  outline-offset: -3px;
}

.service-detail-trigger i {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--preview-accent) 60%, transparent);
  border-radius: 50%;
  color: var(--preview-accent);
  font-size: 14px;
  font-style: normal;
  line-height: 1;
  transition: color 260ms ease, background 260ms ease, transform 300ms var(--ease);
}

.service-detail {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 380ms var(--ease), opacity 280ms ease;
}

.service-detail-inner {
  overflow: hidden;
}

.service-detail-inner > span {
  display: block;
  width: max-content;
  margin: 2px 13px 9px;
  padding: 4px 7px;
  border-radius: 99px;
  color: var(--ink);
  background: var(--preview-accent);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.service-detail-inner p {
  max-width: 580px;
  margin: 0;
  padding: 0 13px 15px;
  color: rgba(255, 253, 245, 0.62);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.service-page-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 42px;
  margin: 0 13px 15px;
  padding: 0 12px 0 14px;
  border: 1px solid color-mix(in srgb, var(--preview-accent) 55%, transparent);
  border-radius: 99px;
  color: var(--preview-accent);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
  transition: color 220ms ease, background 220ms ease, translate 220ms var(--ease);
}

.service-page-link:hover {
  color: var(--ink);
  background: var(--preview-accent);
  translate: 0 -2px;
}

.service-page-link > span {
  font-size: 14px;
  transition: translate 220ms var(--ease);
}

.service-page-link:hover > span {
  translate: 3px -3px;
}

.service-preview li.is-open {
  grid-column: 1 / -1;
  border-color: color-mix(in srgb, var(--preview-accent) 72%, transparent);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--preview-accent) 9%, transparent), transparent 70%),
    rgba(255, 253, 245, 0.035);
  box-shadow: inset 4px 0 0 var(--preview-accent), 0 12px 28px rgba(0, 0, 0, 0.12);
}

.service-preview li.is-open .service-detail-trigger {
  color: var(--white);
}

.service-preview li.is-open .service-detail-trigger i {
  color: var(--ink);
  background: var(--preview-accent);
  transform: rotate(45deg);
}

.service-preview li.is-open .service-detail {
  grid-template-rows: 1fr;
  opacity: 1;
}

.preview-foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 253, 245, 0.14);
}

.preview-foot span { color: var(--preview-accent); font-size: 8px; font-weight: 800; letter-spacing: 0.14em; }
.preview-foot strong { max-width: 310px; font-size: 12px; text-align: right; }

.packages { padding: 128px var(--page); background: var(--paper); }

.packages-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.3fr) minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 74px;
}

.packages-heading > p { margin: 0; color: var(--muted); }

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.package-card {
  position: relative;
  display: flex;
  min-height: 570px;
  flex-direction: column;
  padding: 27px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 245, 0.78);
  transition: transform 280ms var(--ease), box-shadow 280ms ease, border 280ms ease;
}

.package-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--ink);
}

.package-card.featured { color: var(--white); background: var(--ink); transform: translateY(-24px); }
.package-card.featured::before { background: var(--lime); }
.package-card:hover { border-color: var(--ink); transform: translateY(-8px); box-shadow: 0 24px 60px rgba(20, 20, 15, 0.12); }
.package-card.featured:hover { transform: translateY(-32px); }

.package-top { display: flex; align-items: center; justify-content: space-between; color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.11em; }
.package-top i { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.featured .package-top { color: rgba(255, 253, 245, 0.42); }

.recommended { width: max-content; margin: 30px 0 14px; padding: 5px 8px; border: 1px solid rgba(255, 253, 245, 0.3); border-radius: 99px; font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
.package-card:not(.featured) h3 { margin-top: 70px; }
.package-card h3 { margin-bottom: 22px; font-size: 38px; }
.price { color: var(--muted); }
.price strong { display: block; margin-top: 7px; color: var(--ink); font-family: "Space Grotesk", system-ui, sans-serif; font-size: clamp(38px, 4vw, 52px); line-height: 1; }
.featured .price, .featured > p:not(.price, .recommended) { color: rgba(255, 253, 245, 0.56); }
.featured .price strong { color: var(--lime); }
.package-card > p:not(.price, .recommended) { color: var(--muted); line-height: 1.5; }
.package-card > .package-scope {
  margin: 0 0 24px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-size: 10px;
  font-weight: 700;
}
.package-card.featured > .package-scope {
  color: rgba(255, 253, 245, 0.6);
  border-color: rgba(255, 253, 245, 0.18);
}

.package-card ul { display: grid; gap: 13px; margin: 32px 0; padding: 0; list-style: none; }
.package-card li { position: relative; padding-left: 18px; color: var(--muted); font-size: 13px; font-weight: 700; }
.package-card li::before { content: ""; position: absolute; top: 0.48em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.featured li { color: rgba(255, 253, 245, 0.65); }
.package-card > a { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 22px; border-top: 1px solid var(--line); font-weight: 800; }
.featured > a { color: var(--lime); border-color: rgba(255, 253, 245, 0.18); }
.package-card > a span { transition: transform 220ms var(--ease); }
.package-card > a:hover span { transform: translateX(6px); }

.pricing-info {
  width: min(100%, 680px);
  margin: 32px auto 0;
  color: var(--muted);
  font-size: 11px;
}

.pricing-info summary {
  display: flex;
  width: max-content;
  max-width: 100%;
  min-height: 38px;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding: 5px 7px 5px 5px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255, 253, 245, 0.62);
  font-weight: 800;
  cursor: pointer;
  list-style: none;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}

.pricing-info summary::-webkit-details-marker { display: none; }
.pricing-info summary:hover { color: var(--ink); border-color: var(--ink); background: var(--white); }
.pricing-info summary:focus-visible { outline: 2px solid var(--ink); outline-offset: 3px; }

.pricing-info-icon {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--lime);
  background: var(--ink);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 12px;
}

.pricing-info summary > i {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: var(--ink);
  font-size: 15px;
  font-style: normal;
  transition: transform 260ms var(--ease);
}

.pricing-info[open] summary > i { transform: rotate(45deg); }

.pricing-info > div {
  margin-top: 10px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(20, 20, 15, 0.08);
  animation: serviceCopy 280ms var(--ease) both;
}

.pricing-info p {
  margin: 0;
  line-height: 1.55;
  text-align: center;
}

.recurring {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: 60px;
  padding: 110px var(--page);
  border-top: 1px solid var(--line);
}

.recurring-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.recurring-heading > span {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.recurring-heading h2 {
  max-width: 540px;
  margin: 28px 0 22px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.96;
  letter-spacing: -0.06em;
}

.recurring-heading > p {
  max-width: 410px;
  color: var(--muted);
  line-height: 1.55;
}

.monthly-note {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: rgba(255, 253, 245, 0.7);
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.monthly-note i {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(240, 62, 40, 0.1);
}

.compact-carousel-nav { display: none; }

.recurring-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  perspective: 1400px;
}

.recurring-card {
  --card-accent: var(--lime);
  position: relative;
  min-height: 330px;
  border-radius: var(--radius);
  transform-style: preserve-3d;
}

.recurring-lime { --card-accent: var(--lime); }
.recurring-blue { --card-accent: var(--blue); }
.recurring-violet { --card-accent: var(--violet); }
.recurring-red { --card-accent: var(--red); }

.recurring-toggle {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 330px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transform-style: preserve-3d;
}

.recurring-toggle:focus-visible {
  outline: 3px solid var(--card-accent);
  outline-offset: 4px;
}

.recurring-inner {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: var(--radius);
  transform-style: preserve-3d;
  transition: transform 760ms var(--ease);
}

.recurring-card.is-flipped .recurring-inner {
  transform: rotateY(180deg);
}

.recurring-face {
  position: absolute;
  inset: 0;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 14px 36px rgba(20, 20, 15, 0.07);
}

.recurring-front {
  color: var(--ink);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--card-accent) 10%, transparent), transparent 48%),
    rgba(255, 253, 245, 0.94);
  transition: border-color 260ms ease, box-shadow 260ms ease;
}

.recurring-front::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--card-accent);
}

.recurring-front::after {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -48px;
  width: 134px;
  height: 134px;
  border: 24px solid var(--card-accent);
  border-radius: 50%;
  opacity: 0.78;
  transition: transform 380ms var(--ease);
}

.recurring-card:not(.is-flipped):hover .recurring-front {
  border-color: var(--ink);
  box-shadow: 0 24px 52px rgba(20, 20, 15, 0.13);
}

.recurring-card:not(.is-flipped):hover .recurring-front::after {
  transform: scale(1.16) rotate(12deg);
}

.recurring-number {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.recurring-symbol {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  margin: 48px 0 34px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--card-accent);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 23px;
  font-weight: 800;
  transition: transform 320ms var(--ease);
}

.recurring-card:not(.is-flipped):hover .recurring-symbol {
  transform: rotate(-10deg) scale(1.08);
}

.recurring-front > strong {
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 25px;
}

.recurring-front > span:last-child {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: 13px;
}

.recurring-back {
  color: var(--white);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--card-accent) 18%, transparent), transparent 58%),
    var(--ink);
  border-color: color-mix(in srgb, var(--card-accent) 55%, var(--ink));
  transform: rotateY(180deg);
}

.recurring-back::before {
  content: "";
  position: absolute;
  top: -75px;
  right: -65px;
  width: 180px;
  height: 180px;
  border: 35px solid color-mix(in srgb, var(--card-accent) 40%, transparent);
  border-radius: 50%;
}

.back-label {
  width: max-content;
  margin-bottom: 17px;
  padding: 5px 8px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 52%, transparent);
  border-radius: 99px;
  color: var(--card-accent);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.recurring-back > strong {
  margin-bottom: 9px;
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 23px;
}

.back-copy {
  color: rgba(255, 253, 245, 0.58);
  font-size: 11px;
  line-height: 1.45;
}

.back-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 14px 0;
}

.back-list i {
  padding: 5px 7px;
  border: 1px solid rgba(255, 253, 245, 0.14);
  border-radius: 99px;
  color: rgba(255, 253, 245, 0.68);
  font-size: 8px;
  font-style: normal;
  font-weight: 700;
}

.monthly-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: auto;
}

.monthly-price small {
  color: rgba(255, 253, 245, 0.44);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.monthly-price b {
  color: var(--card-accent);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 34px;
  line-height: 1;
}

.monthly-price em {
  color: rgba(255, 253, 245, 0.55);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.back-action {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 253, 245, 0.14);
  color: rgba(255, 253, 245, 0.4);
  font-size: 8px;
}

.flip-control {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 5;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--card-accent);
  font-size: 23px;
  line-height: 1;
  box-shadow: 0 8px 22px rgba(20, 20, 15, 0.13);
  transition: color 320ms ease, background 320ms ease, transform 760ms var(--ease);
}

.recurring-card.is-flipped .flip-control {
  color: var(--card-accent);
  background: var(--ink);
  border-color: var(--card-accent);
  transform: rotate(135deg);
}

.flip-hint {
  position: absolute;
  top: 25px;
  right: 62px;
  z-index: 5;
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0;
  translate: 8px 0;
  transition: opacity 220ms ease, translate 220ms var(--ease);
  pointer-events: none;
}

.recurring-card:not(.is-flipped):hover .flip-hint {
  opacity: 1;
  translate: 0 0;
}

.recurring-card.is-flipped .flip-hint {
  display: none;
}

.process {
  padding: 124px var(--page);
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.process-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.28fr) minmax(0, 1fr) minmax(180px, 0.3fr);
  gap: 38px;
  align-items: end;
  margin-bottom: 72px;
}

.process-heading h2 {
  margin: 0;
  font-size: clamp(46px, 6.2vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.065em;
}

.process-heading h2 em {
  color: var(--blue);
  font-style: normal;
}

.process-heading > div:nth-child(2) > p {
  max-width: 540px;
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.process-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 245, 0.7);
}

.process-summary strong {
  color: var(--red);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 48px;
  line-height: 0.8;
}

.process-summary span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.process-board {
  position: relative;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(20, 20, 15, 0.045) 1px, transparent 1px) 0 0 / 56px 56px,
    linear-gradient(rgba(20, 20, 15, 0.045) 1px, transparent 1px) 0 0 / 56px 56px,
    rgba(255, 253, 245, 0.68);
  box-shadow: 0 28px 70px rgba(20, 20, 15, 0.08);
}

.process-path {
  position: absolute;
  top: 94px;
  right: 4%;
  left: 4%;
  z-index: 0;
  width: 92%;
  height: 120px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 0.35;
  stroke-dasharray: 1.5 1.5;
  opacity: 0.38;
}

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

.process-line article {
  --step: var(--lime);
  position: relative;
  display: flex;
  min-height: 390px;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 245, 0.92);
  box-shadow: 0 14px 34px rgba(20, 20, 15, 0.06);
  transition: transform 280ms var(--ease), border 280ms ease, box-shadow 280ms ease;
}

.process-line article::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: var(--step);
}

.process-line article:hover {
  z-index: 3;
  border-color: var(--ink);
  transform: translateY(-9px) rotate(-0.5deg);
  box-shadow: 0 24px 54px rgba(20, 20, 15, 0.13);
}

.step-lime { --step: var(--lime) !important; }
.step-blue { --step: var(--blue) !important; }
.step-red { --step: var(--red) !important; }
.step-violet { --step: var(--violet) !important; }

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
}

.step-top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--step);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--step) 18%, transparent);
}

.step-symbol {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin: 42px 0 38px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--step);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 25px;
  font-weight: 800;
  transition: transform 300ms var(--ease);
}

.process-line article:hover .step-symbol {
  transform: scale(1.1) rotate(-10deg);
}

.process-line h3 {
  margin-bottom: 13px;
  font-size: 27px;
}

.process-line article > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.step-output {
  display: grid;
  gap: 6px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid var(--line);
}

.step-output span {
  color: var(--muted);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.step-output strong {
  font-size: 11px;
}

.process-mobile-nav {
  display: none;
}

.process-result {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 14px;
  padding: 20px 22px;
  overflow: hidden;
  border-radius: 10px;
  color: var(--white);
  background: var(--ink);
}

.process-result > span {
  color: var(--lime);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.process-result > strong {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(17px, 2vw, 26px);
}

.process-result > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.process-result > div i {
  width: 12px;
  height: 12px;
  border-radius: 3px;
}

.process-result > div i:nth-child(1) { background: var(--lime); }
.process-result > div i:nth-child(2) { background: var(--blue); }
.process-result > div i:nth-child(3) { background: var(--red); }
.process-result > div i:nth-child(4) { background: var(--violet); }

.portfolio {
  padding: 128px var(--page);
  color: var(--white);
  background: var(--ink);
}

.portfolio-heading {
  display: grid;
  grid-template-columns: minmax(170px, 0.3fr) minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 72px;
}

.portfolio-heading h2 {
  margin: 0;
  font-size: clamp(48px, 6.2vw, 94px);
  line-height: 0.92;
  letter-spacing: -0.065em;
}

.portfolio-heading h2 em { color: var(--lime); font-style: normal; }
.portfolio-heading > p { margin: 0; color: rgba(255, 253, 245, 0.58); line-height: 1.55; }

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.case-card {
  --case-bg: #24241e;
  --case-accent: var(--lime);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 245, 0.16);
  border-radius: 14px;
  background: rgba(255, 253, 245, 0.035);
  transition: border-color 280ms ease, transform 280ms var(--ease), box-shadow 280ms ease;
}

.case-card:hover {
  border-color: var(--case-accent);
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.case-odisea { --case-bg: #171714; --case-accent: #d8ff37; }
.case-detalle { --case-bg: #eadbd6; --case-accent: #9b6a78; }
.case-repup { --case-bg: #102925; --case-accent: #7df1bd; }
.case-mundial { --case-bg: #142a5e; --case-accent: #ff5d4a; }

.case-preview {
  padding: 14px 14px 0;
  overflow: hidden;
  background: color-mix(in srgb, var(--case-accent) 11%, var(--case-bg));
}

.case-browser {
  display: flex;
  height: 34px;
  align-items: center;
  gap: 5px;
  padding: 0 11px;
  border-radius: 8px 8px 0 0;
  color: rgba(255, 253, 245, 0.48);
  background: rgba(20, 20, 15, 0.72);
  font-size: 8px;
  font-weight: 700;
}

.case-browser i { width: 5px; height: 5px; border-radius: 50%; background: rgba(255, 253, 245, 0.28); }
.case-browser span { margin-left: 6px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

.case-screen {
  position: relative;
  min-height: 300px;
  padding: 38px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px) 0 0 / 48px 48px,
    var(--case-bg);
}

.case-detalle .case-screen { color: #2b2022; }
.case-screen small { color: var(--case-accent); font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.case-screen > strong { display: block; margin-top: 22px; font-family: "Space Grotesk", system-ui, sans-serif; font-size: clamp(42px, 5vw, 72px); line-height: .86; letter-spacing: -.07em; }

.case-bars { display: flex; gap: 8px; align-items: end; margin-top: 38px; }
.case-bars i { width: 18%; height: 10px; border-radius: 99px; background: var(--case-accent); }
.case-bars i:nth-child(2) { width: 32%; opacity: .6; }
.case-bars i:nth-child(3) { width: 12%; opacity: .3; }

.case-products { position: absolute; right: 28px; bottom: 24px; display: flex; gap: 8px; }
.case-products i { width: 64px; height: 82px; border: 1px solid rgba(43,32,34,.2); border-radius: 7px; background: rgba(255,255,255,.38); box-shadow: 0 12px 24px rgba(43,32,34,.08); }
.case-products i:nth-child(2) { translate: 0 -18px; background: color-mix(in srgb, var(--case-accent) 28%, white); }

.case-dashboard { position: absolute; right: 28px; bottom: 24px; display: grid; grid-template-columns: 70px 54px; gap: 7px; }
.case-dashboard i { grid-row: 1 / 4; border-radius: 8px; background: var(--case-accent); opacity: .88; }
.case-dashboard span { height: 30px; border-radius: 6px; background: rgba(255,255,255,.12); }

.case-score { position: absolute; right: 28px; bottom: 28px; display: flex; align-items: center; gap: 14px; padding: 12px 16px; border: 1px solid rgba(255,255,255,.2); border-radius: 9px; background: rgba(0,0,0,.18); }
.case-score span { font-size: 9px; font-weight: 800; }
.case-score b { color: var(--case-accent); font-size: 21px; }

.case-copy { padding: 26px; }
.case-meta { display: flex; justify-content: space-between; gap: 16px; color: rgba(255,253,245,.42); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.case-meta i { color: var(--case-accent); font-style: normal; }
.case-copy h3 { margin: 34px 0 14px; font-size: clamp(30px, 3vw, 44px); letter-spacing: -.045em; }
.case-copy > p { max-width: 620px; color: rgba(255,253,245,.58); line-height: 1.55; }
.case-facts { display: grid; margin: 28px 0 0; border-top: 1px solid rgba(255,253,245,.14); }
.case-facts > div { display: grid; grid-template-columns: 72px 1fr; gap: 14px; padding: 13px 0; border-bottom: 1px solid rgba(255,253,245,.1); }
.case-facts dt { color: var(--case-accent); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.case-facts dd { margin: 0; color: rgba(255,253,245,.66); font-size: 11px; line-height: 1.45; }
.case-copy > .case-proof { display: grid; grid-template-columns: 9px 1fr; gap: 11px; align-items: start; margin: 18px 0 0; padding: 14px; border: 1px solid color-mix(in srgb, var(--case-accent) 42%, transparent); border-radius: 8px; color: rgba(255,253,245,.64); background: color-mix(in srgb, var(--case-accent) 8%, transparent); font-size: 10px; line-height: 1.5; }
.case-proof > i { width: 7px; height: 7px; margin-top: 3px; border-radius: 50%; background: var(--case-accent); box-shadow: 0 0 0 4px color-mix(in srgb, var(--case-accent) 14%, transparent); }
.case-proof span, .case-proof strong { display: block; }
.case-proof strong { margin-bottom: 4px; color: var(--case-accent); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.case-expand { display: none; }
.case-more { display: grid; grid-template-rows: 1fr; }
.case-more > div { min-height: 0; }
.case-searches { display: grid; margin-top: 18px; border: 1px solid rgba(255,253,245,.13); border-radius: 8px; overflow: hidden; }
.case-searches > span { padding: 10px 13px; color: rgba(255,253,245,.38); background: rgba(255,255,255,.035); font-size: 7px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.case-searches > a { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 14px; align-items: center; padding: 12px 13px; border-top: 1px solid rgba(255,253,245,.1); color: rgba(255,253,245,.72); transition: color 200ms ease, background 200ms ease; }
.case-searches > a:hover { color: var(--case-accent); background: color-mix(in srgb, var(--case-accent) 7%, transparent); }
.case-searches b { overflow: hidden; font-size: 9px; font-weight: 700; text-overflow: ellipsis; white-space: nowrap; }
.case-searches small { color: var(--case-accent); font-size: 7px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }
.case-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 26px 0 30px; }
.case-tags span { padding: 7px 10px; border: 1px solid rgba(255,253,245,.17); border-radius: 99px; color: rgba(255,253,245,.68); font-size: 9px; font-weight: 700; }
.case-link { display: flex; align-items: center; justify-content: space-between; padding-top: 20px; border-top: 1px solid rgba(255,253,245,.14); color: var(--case-accent); font-size: 12px; }
.case-link span { transition: transform 220ms var(--ease); }
.case-card:hover .case-link span { transform: translate(4px, -4px); }
.portfolio-verification { max-width: 920px; margin: 24px 0 0; color: rgba(255,253,245,.38); font-size: 9px; line-height: 1.55; }

.trust {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(420px, 1fr);
  gap: clamp(70px, 10vw, 160px);
  padding: 128px var(--page);
  background:
    linear-gradient(90deg, rgba(20,20,15,.055) 1px, transparent 1px) 0 0 / 84px 84px,
    var(--paper);
}

.trust-intro { align-self: start; }
.trust-kicker { margin: 76px 0 18px; color: var(--blue); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .13em; }
.trust h2 { margin: 0; font-size: clamp(48px, 6vw, 86px); line-height: .92; letter-spacing: -.065em; }
.trust h2 em { color: transparent; font-style: normal; -webkit-text-stroke: 1.3px var(--ink); }
.trust-lead { max-width: 600px; margin: 34px 0 0; color: var(--muted); font-size: 17px; line-height: 1.65; }
.trust-principles { display: grid; margin-top: 50px; border-top: 1px solid var(--line); }
.trust-principles span { display: flex; gap: 18px; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 11px; font-weight: 700; }
.trust-principles i { color: var(--blue); font-size: 8px; font-style: normal; letter-spacing: .08em; }
.trust-studio-link { display:flex; justify-content:space-between; align-items:center; max-width:600px; margin-top:26px; padding:16px 18px; border:1px solid var(--ink); border-radius:999px; font-size:11px; font-weight:800; transition:background 180ms ease,color 180ms ease; }
.trust-studio-link:hover { background:var(--ink); color:var(--white); }

.faq { align-self: start; overflow: hidden; border: 1px solid var(--ink); border-radius: 14px; background: var(--white); box-shadow: 16px 16px 0 var(--lime); }
.faq-heading { padding: 30px; color: var(--white); background: var(--ink); }
.faq-heading > span { color: var(--lime); font-size: 8px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.faq-heading h3 { margin: 42px 0 0; font-size: clamp(38px, 4vw, 58px); line-height: .95; letter-spacing: -.055em; }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 0; }
.faq-list summary { display: grid; grid-template-columns: 1fr 34px; gap: 20px; align-items: center; min-height: 76px; padding: 15px 24px; cursor: pointer; list-style: none; font-size: 13px; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { display: grid; width: 30px; height: 30px; place-items: center; border: 1px solid var(--ink); border-radius: 50%; font-size: 16px; font-weight: 500; transition: color 220ms ease, background 220ms ease, transform 280ms var(--ease); }
.faq-list details[open] summary span { color: var(--ink); background: var(--lime); transform: rotate(45deg); }
.faq-list details[open] summary { color: var(--blue); }
.faq-list details > p { margin: 0; padding: 0 70px 24px 24px; color: var(--muted); font-size: 13px; line-height: 1.65; animation: faqIn 260ms var(--ease) both; }

.contact {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.55fr);
  gap: 52px;
  align-items: end;
  margin: 18px;
  padding: 92px var(--page);
  overflow: hidden;
  border-radius: 16px;
  background: var(--lime);
  box-shadow: 0 30px 80px rgba(20, 20, 15, 0.13);
}

.contact-copy, .contact-side { position: relative; z-index: 2; }
.contact-copy > p { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; }
.contact h2 { margin: 0; font-size: clamp(58px, 8vw, 118px); line-height: 0.88; letter-spacing: -0.075em; }
.contact h2 span { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.contact-side > p { color: rgba(20, 20, 15, 0.65); font-size: 17px; line-height: 1.55; }
.contact-choice-trigger { display:flex; width:100%; align-items:center; justify-content:space-between; min-height:64px; margin:25px 0 12px; padding:0 10px 0 22px; border:1px solid var(--ink); border-radius:99px; color:var(--white); background:var(--ink); font:inherit; font-weight:800; cursor:pointer; transition:transform 240ms var(--ease),box-shadow 240ms ease; }
.contact-choice-trigger span { display:grid; width:46px; height:46px; place-items:center; border-radius:50%; color:var(--ink); background:var(--white); }
.contact-choice-trigger:hover { transform:translateY(-3px); box-shadow:0 14px 30px rgba(20,20,15,.14); }
.service-contact .contact-side > a { display:flex; align-items:center; justify-content:space-between; min-height:64px; margin:25px 0 12px; padding:0 10px 0 22px; border-radius:99px; color:var(--white); background:var(--ink); font-weight:800; transition:transform 240ms var(--ease),box-shadow 240ms ease; }
.service-contact .contact-side > a span { display:grid; width:46px; height:46px; place-items:center; border-radius:50%; color:var(--ink); background:var(--white); }
.service-contact .contact-side > a:hover { transform:translateY(-4px); box-shadow:0 16px 36px rgba(20,20,15,.18); }
.contact-side .contact-pending { display: flex; align-items: center; justify-content: space-between; min-height: 64px; margin: 25px 0 12px; padding: 0 22px; border: 1px solid rgba(20, 20, 15, 0.28); border-radius: 99px; color: var(--ink); font-size: 15px; font-weight: 800; letter-spacing: 0.02em; }
.contact-side .contact-pending span { color: var(--lime-deep); font-size: 24px; line-height: 1; }
.contact-side small { color: rgba(20, 20, 15, 0.5); }
.contact-side small a { color: inherit; text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.proposal-form { position:relative; z-index:3; grid-column:1/-1; margin-top:34px; overflow:hidden; border:1px solid var(--ink); border-radius:16px; background:var(--white); box-shadow:14px 14px 0 rgba(20,20,15,.14); }
.proposal-form > header { display:grid; grid-template-columns:.65fr 1.35fr; gap:32px; padding:28px; border-bottom:1px solid var(--ink); background:var(--ink); color:var(--white); }
.proposal-form > header > span { color:var(--lime); font-size:9px; font-weight:800; letter-spacing:.12em; }
.proposal-form > header > div > span { color:var(--lime); font-size:9px; font-weight:800; letter-spacing:.12em; }
.proposal-form > header h3 { margin:0; font-size:clamp(30px,4vw,54px); line-height:.95; letter-spacing:-.055em; }
.proposal-form > header p { margin:10px 0 0; color:rgba(255,253,245,.58); font-size:13px; }
.proposal-form fieldset { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:1px; margin:0; padding:1px; border:0; background:var(--line); }
.proposal-form fieldset[disabled] { opacity:.58; }
.proposal-form label, .proposal-captcha { display:grid; gap:9px; align-content:start; min-width:0; padding:20px; background:var(--white); }
.proposal-form label > span, .proposal-captcha > span { color:var(--muted); font-size:8px; font-weight:800; letter-spacing:.1em; text-transform:uppercase; }
.proposal-form input, .proposal-form select, .proposal-form textarea { width:100%; min-height:46px; padding:10px 0; border:0; border-bottom:1px solid var(--ink); border-radius:0; outline:0; color:var(--ink); background:transparent; font:inherit; }
.proposal-form textarea { min-height:116px; resize:vertical; line-height:1.5; }
.proposal-form input:focus, .proposal-form select:focus, .proposal-form textarea:focus { border-color:var(--blue); box-shadow:0 2px 0 var(--blue); }
.proposal-message { grid-column:1/3; }
.proposal-captcha label { display:grid; grid-template-columns:auto 1fr; gap:12px; align-items:center; padding:0; }
.proposal-captcha b { color:var(--ink); white-space:nowrap; font-size:20px; }
.proposal-captcha > button { width:max-content; padding:8px 12px; border:1px solid var(--ink); border-radius:99px; color:var(--ink); background:transparent; font:inherit; font-size:9px; font-weight:800; cursor:pointer; }
.proposal-captcha.is-error { background:#fff1ed; }
.proposal-consent { grid-column:1/3; grid-template-columns:22px 1fr; align-items:center; }
.proposal-consent input { width:20px; min-height:20px; margin:0; accent-color:var(--ink); }
.proposal-consent span { font-size:11px !important; font-weight:600 !important; line-height:1.5; letter-spacing:0 !important; text-transform:none !important; }
.proposal-consent a { color:inherit; text-decoration:underline; text-underline-offset:3px; }
.proposal-form button[type="submit"] { display:flex; align-items:center; justify-content:space-between; min-height:76px; padding:0 20px; border:0; color:var(--white); background:var(--ink); font:inherit; font-weight:800; cursor:pointer; }
.proposal-form button[type="submit"] span { display:grid; width:42px; height:42px; place-items:center; border-radius:50%; color:var(--ink); background:var(--lime); }
.proposal-form button:disabled { cursor:not-allowed; }
.proposal-honeypot { position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; overflow:hidden !important; }
.proposal-availability, .proposal-status { margin:0; padding:14px 20px; color:var(--muted); background:var(--paper); font-size:11px; line-height:1.5; }
.proposal-status:empty { display:none; }
.proposal-status[data-state="success"] { color:#265c29; background:#e9f5df; }
.proposal-status[data-state="error"] { color:#852918; background:#fae8e3; }
.contact-dialog { width:min(960px,calc(100vw - 28px)); max-width:none; max-height:min(900px,calc(100vh - 28px)); padding:0; overflow:hidden; border:1px solid rgba(255,253,245,.24); border-radius:18px; color:var(--white); background:var(--ink); box-shadow:0 34px 100px rgba(0,0,0,.4); }
.contact-dialog::backdrop { background:rgba(20,20,15,.72); backdrop-filter:blur(10px); }
.contact-dialog[open] { animation:contactDialogIn 320ms var(--ease); }
.contact-dialog-shell { max-height:min(900px,calc(100vh - 28px)); overflow:auto; }
.contact-dialog-head { display:flex; justify-content:space-between; align-items:flex-start; gap:24px; padding:28px; border-bottom:1px solid rgba(255,253,245,.14); }
.contact-dialog-head span { color:var(--lime); font-size:8px; font-weight:800; letter-spacing:.12em; }
.contact-dialog-head h2 { max-width:650px; margin:10px 0 0; font-size:clamp(34px,6vw,72px); line-height:.9; letter-spacing:-.06em; }
.contact-dialog-head > button { display:grid; flex:0 0 44px; width:44px; height:44px; place-items:center; border:1px solid rgba(255,253,245,.3); border-radius:50%; color:var(--white); background:transparent; font:inherit; font-size:26px; cursor:pointer; }
.contact-dialog.is-form .contact-dialog-head { display:none; }
.contact-channel-choice { padding:30px; }
.contact-channel-choice > p { max-width:560px; margin:0 0 28px; color:rgba(255,253,245,.55); font-size:13px; line-height:1.6; }
.contact-channel-choice > div { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.contact-channel-choice a,.contact-channel-choice button { display:flex; justify-content:space-between; align-items:end; min-height:230px; padding:26px; border:1px solid rgba(255,253,245,.22); border-radius:14px; color:var(--white); background:rgba(255,253,245,.035); font:inherit; text-align:left; cursor:pointer; transition:transform 220ms var(--ease),border-color 220ms ease,background 220ms ease; }
.contact-channel-choice :is(a,button):hover { transform:translateY(-4px); border-color:var(--lime); background:rgba(202,255,32,.07); }
.contact-channel-choice :is(a,button) span { display:grid; gap:8px; }
.contact-channel-choice small { color:var(--lime); font-size:8px; font-weight:800; letter-spacing:.1em; }
.contact-channel-choice strong { font-size:clamp(32px,5vw,56px); letter-spacing:-.055em; }
.contact-channel-choice em { color:rgba(255,253,245,.5); font-size:11px; font-style:normal; }
.contact-channel-choice i { display:grid; width:42px; height:42px; place-items:center; border-radius:50%; color:var(--ink); background:var(--lime); font-style:normal; }
.proposal-form-dialog { margin:0; border:0; border-radius:0; box-shadow:none; }
.proposal-form-dialog > header > button { align-self:start; width:max-content; padding:8px 0; border:0; color:rgba(255,253,245,.58); background:transparent; font:inherit; font-size:10px; font-weight:800; cursor:pointer; }
@keyframes contactDialogIn { from { opacity:0; transform:translateY(18px) scale(.985); } to { opacity:1; transform:none; } }
.contact-orbit { position: absolute; top: 50%; right: -170px; width: 450px; height: 450px; border: 1px solid rgba(20, 20, 15, 0.22); border-radius: 50%; transform: translateY(-50%); }
.contact-orbit::before, .contact-orbit::after { content: ""; position: absolute; border: 1px solid rgba(20, 20, 15, 0.18); border-radius: 50%; }
.contact-orbit::before { inset: 65px; }
.contact-orbit::after { inset: 150px; background: var(--ink); }
.contact-orbit span { position: absolute; top: 57px; left: 80px; width: 17px; height: 17px; border-radius: 50%; background: var(--red); animation: orbitLarge 8s linear infinite; transform-origin: 144px 167px; }

.site-footer { position:relative; margin:18px; overflow:hidden; border-radius:16px; color:var(--white); background:var(--ink); }
.footer-signal { display:grid; grid-template-columns:auto 1fr auto; gap:18px; align-items:center; min-height:48px; padding:0 24px; border-bottom:1px solid rgba(255,253,245,.14); color:rgba(255,253,245,.48); font-size:8px; font-weight:800; letter-spacing:.12em; }
.footer-signal i { height:1px; background:linear-gradient(90deg,var(--lime),rgba(202,255,32,.08)); }
.footer-main { display:grid; grid-template-columns:minmax(230px,.72fr) 1.4fr; gap:70px; padding:72px var(--page); }
.footer-brand { display:grid; grid-template-columns:54px 1fr; align-content:start; gap:12px 16px; color:var(--white); }
.footer-brand > span { display:grid; width:54px; height:54px; place-items:center; border-radius:13px; color:var(--ink); background:var(--lime); font-size:17px; font-weight:800; }
.footer-brand strong { align-self:center; font-size:clamp(30px,4vw,54px); letter-spacing:-.065em; }
.footer-brand small { grid-column:2; color:rgba(255,253,245,.48); font-size:12px; line-height:1.5; }
.footer-nav { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:32px; }
.footer-nav > div { display:grid; align-content:start; gap:12px; }
.footer-nav > div > span { margin-bottom:8px; color:var(--lime); font-size:8px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.footer-nav a { width:max-content; max-width:100%; color:rgba(255,253,245,.78); font-size:12px; transition:color 180ms ease,transform 180ms ease; }
.footer-nav a:hover { color:var(--lime); transform:translateX(3px); }
.footer-nav small { max-width:190px; margin-top:8px; color:rgba(255,253,245,.34); font-size:9px; line-height:1.5; }
.footer-bottom { display:grid; grid-template-columns:1fr 1fr; gap:24px; padding:22px 24px 38px; border-top:1px solid rgba(255,253,245,.14); color:rgba(255,253,245,.38); font-size:9px; }
.footer-bottom p { margin:0; }
.footer-bottom p:last-child { text-align:right; }
.site-footer .cc-trigger,
.legal-footer .cc-trigger {
  width: max-content;
  max-width: 100%;
  border: 0;
  padding: 0;
  color: rgba(255,253,245,.56);
  background: transparent;
  font: inherit;
  font-size: 9px;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.site-footer .cc-trigger:hover,
.legal-footer .cc-trigger:hover {
  color: var(--lime);
}

.legal-page { min-height:100vh; color:var(--ink); background:var(--paper); }
.legal-header { display:flex; justify-content:space-between; align-items:center; min-height:86px; padding:0 var(--page); border-bottom:1px solid var(--line); }
.legal-header > a:first-child { display:flex; align-items:center; gap:12px; color:var(--ink); }
.legal-header > a:first-child span { display:grid; width:42px; height:42px; place-items:center; border-radius:10px; color:var(--lime); background:var(--ink); font-size:10px; font-weight:900; }
.legal-header > a:first-child strong { font-size:20px; }
.legal-header > a:last-child { color:var(--ink); font-size:12px; font-weight:800; }
.legal-hero { display:grid; grid-template-columns:.45fr 1.1fr .7fr; gap:clamp(24px,4vw,70px); align-items:end; padding:clamp(70px,10vw,140px) var(--page) 80px; border-bottom:1px solid var(--ink); }
.legal-hero > p { align-self:start; margin:8px 0 0; color:var(--muted); font-size:9px; font-weight:800; letter-spacing:.12em; }
.legal-hero h1 { margin:0; font-size:clamp(62px,10vw,150px); line-height:.82; letter-spacing:-.075em; }
.legal-draft { padding:24px; border:1px solid var(--ink); border-radius:12px; background:var(--lime); box-shadow:8px 9px 0 var(--ink); }
.legal-draft strong { display:block; margin-bottom:10px; font-size:15px; }
.legal-draft p { margin:0; font-size:11px; line-height:1.55; }
.legal-content { max-width:1160px; margin:0 auto; padding:40px var(--page) 110px; }
.legal-content > section { display:grid; grid-template-columns:90px minmax(0,1fr); gap:30px; padding:58px 0; border-bottom:1px solid var(--line); }
.legal-content > section > span { color:var(--blue); font-size:11px; font-weight:900; }
.legal-content h2 { margin:0 0 20px; font-size:clamp(30px,4vw,54px); letter-spacing:-.05em; }
.legal-content p { max-width:760px; margin:0; color:var(--muted); font-size:15px; line-height:1.75; }
.legal-content dl { max-width:760px; margin:30px 0 0; border-top:1px solid var(--ink); }
.legal-content dl > div { display:grid; grid-template-columns:220px 1fr; gap:24px; padding:15px 0; border-bottom:1px solid var(--line); }
.legal-content dt { color:var(--muted); font-size:10px; font-weight:800; text-transform:uppercase; }
.legal-content dd { margin:0; font-size:13px; font-weight:700; }
.legal-footer { display:grid; grid-template-columns:1fr auto 1fr; gap:30px; align-items:center; margin:18px; padding:34px; border-radius:16px; color:var(--white); background:var(--ink); }
.legal-footer > a { color:var(--lime); font-size:22px; font-weight:900; }
.legal-footer nav { display:flex; gap:24px; }
.legal-footer nav a { color:var(--white); font-size:11px; font-weight:800; }
.legal-footer p { justify-self:end; margin:0; color:rgba(255,253,245,.48); font-size:9px; font-weight:800; }

@media (min-width: 1281px) {
  .diagnostic-heading h2 {
    max-width: 100%;
    font-size: clamp(52px, 4.4vw, 68px);
  }
}

@media (min-width: 1181px) and (max-width: 1280px) {
  .diagnostic {
    grid-template-columns: minmax(240px, 0.4fr) minmax(420px, 0.6fr);
  }

  .diagnostic-heading {
    grid-column: 1 / -1;
    padding: 0 0 30px;
  }

  .diagnostic-heading h2 {
    margin-top: 40px;
  }
}

.error-page {
  min-height: 100vh;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.error-page::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 245, 0.07) 1px, transparent 1px) 0 0 / 100px 100%,
    linear-gradient(rgba(255, 253, 245, 0.07) 1px, transparent 1px) 0 0 / 100px 100%;
}

.error-header {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 86px;
  align-items: center;
  padding: 0 var(--page);
  border-bottom: 1px solid rgba(255, 253, 245, 0.14);
}

.error-header .brand small { border-color: rgba(255, 253, 245, 0.22); color: rgba(255, 253, 245, 0.58); }
.error-header .brand > span:first-child { color: var(--ink); background: var(--lime); }

.error-main {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: calc(100vh - 86px);
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding: 70px var(--page);
  overflow: hidden;
}

.error-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.error-label i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 6px rgba(202,255,32,.1); }
.error-code { position: absolute; right: -3vw; bottom: -14vw; margin: 0; color: transparent; font: 800 min(46vw, 610px)/.8 "Space Grotesk", system-ui, sans-serif; letter-spacing: -.1em; -webkit-text-stroke: 1px rgba(255,253,245,.12); }
.error-main h1 { position: relative; z-index: 1; max-width: 980px; margin: 0; font-size: clamp(58px, 8vw, 118px); }
.error-main h1 span { color: var(--lime); }
.error-main > p:not(.error-label, .error-code) { position: relative; z-index: 1; max-width: 560px; margin: 34px 0; color: rgba(255,253,245,.62); font-size: 17px; line-height: 1.65; }
.error-main > .button { position: relative; z-index: 1; }

.error-orbit {
  position: absolute;
  top: 50%;
  right: -70px;
  width: min(38vw, 470px);
  aspect-ratio: 1;
  border: 1px solid rgba(255,253,245,.16);
  border-radius: 50%;
  transform: translateY(-50%);
}

.error-orbit::before { content: ""; position: absolute; inset: 22%; border: 1px dashed rgba(255,253,245,.2); border-radius: 50%; }
.error-orbit i { position: absolute; width: 16px; height: 16px; border-radius: 50%; }
.error-orbit i:first-child { top: 12%; right: 19%; background: var(--blue); }
.error-orbit i:nth-child(2) { bottom: 12%; left: 20%; background: var(--violet); }
.error-orbit span { position: absolute; inset: calc(50% - 13px); width: 26px; height: 26px; border-radius: 50%; background: var(--lime); }

.motion-ready [data-reveal] {
  opacity: 0;
  translate: 0 24px;
  transition: opacity 700ms var(--ease), translate 700ms var(--ease);
}

.motion-ready [data-reveal].is-visible { opacity: 1; translate: 0 0; }

@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.82); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes orbitLarge { to { transform: rotate(360deg); } }
@keyframes routeRunner {
  from { transform: rotate(-166deg); }
  to { transform: rotate(-88deg); }
}
@keyframes runnerHalo {
  0%, 100% { opacity: 0.25; transform: scale(0.72); }
  50% { opacity: 0.75; transform: scale(1); }
}
@keyframes serviceScan {
  0%, 14% { translate: 0 -8px; opacity: 0; }
  24% { opacity: 0.48; }
  82% { opacity: 0.32; }
  100% { translate: 0 610px; opacity: 0; }
}
@keyframes serviceEnergy {
  0% { transform: scale(0.72) rotate(-16deg); opacity: 0.2; }
  58% { transform: scale(1.1) rotate(4deg); opacity: 0.9; }
  100% { transform: scale(1) rotate(0); opacity: 0.72; }
}
@keyframes serviceSymbol {
  0% { transform: scale(0.5) rotate(-22deg); opacity: 0; }
  65% { transform: scale(1.14) rotate(7deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}
@keyframes serviceCopy {
  from { opacity: 0; translate: 0 14px; }
  to { opacity: 1; translate: 0 0; }
}
@keyframes serviceItem {
  from { opacity: 0; translate: 12px 8px; border-color: var(--preview-accent); }
  to { opacity: 1; translate: 0 0; border-color: rgba(255, 253, 245, 0.14); }
}
@keyframes swipeCue {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}
@keyframes threadPulse {
  0%, 100% { opacity: 0.18; stroke-width: 1; }
  50% { opacity: 0.7; stroke-width: 3; }
}

@media (max-width: 1180px) {
  .hero { grid-template-columns: minmax(0, 1fr) 380px; }
  h1 { font-size: clamp(60px, 7.7vw, 105px); }
  .diagnostic { grid-template-columns: minmax(240px, 0.4fr) minmax(420px, 0.6fr); }
  .diagnostic-heading { grid-column: 1 / -1; padding: 0 0 30px; }
  .diagnostic-heading h2 { margin-top: 40px; }
  .service-system { grid-template-columns: 280px minmax(0, 1fr); }
}

@media (max-width: 920px) {
  .site-header { grid-template-columns: 1fr auto auto; gap: 14px; }
  .site-header nav { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 132px; }
  .signal-board { width: min(100%, 620px); transform: none; }
  .hero-side { display: none; }
  .intro, .packages-heading { grid-template-columns: 1fr; }
  .diagnostic { grid-template-columns: 1fr; }
  .goal-selector { grid-template-columns: 1fr 1fr; }
  .goal-output { min-height: 500px; }
  .service-system { grid-template-columns: 1fr; }
  .service-intro { position: static; }
  .service-browser { grid-template-columns: 190px 1fr; }
  .service-scope { grid-column: 1; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  .package-card.featured:hover { transform: translateY(-8px); }
  .recurring { grid-template-columns: 1fr; }
  .recurring-heading { position: static; }
  .process-heading { grid-template-columns: 1fr 210px; }
  .process-heading > .section-label { grid-column: 1 / -1; }
  .process-line { grid-template-columns: 1fr 1fr; }
  .process-path { display: none; }
  .contact { grid-template-columns: 1fr; }
  .portfolio-heading { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns:1fr; gap:54px; }
}

@media (max-width: 620px) {
  :root { --page: 20px; }
  .site-header { min-height: 68px; gap: 10px; }
  .site-header .brand b, .site-header .brand small { display: none; }
  .nav-cta { min-height: 44px; padding-inline: 14px; font-size: 11px; }
  .hero { padding-top: 112px; padding-bottom: 45px; }
  .hero::before { inset: 84px 9px 18px; }
  h1 { font-size: clamp(46px, 13vw, 64px); }
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; margin-top: 36px; }
  .hero-facts > div { display: grid; grid-template-columns: 110px 1fr; gap: 18px; padding: 12px 0; border-bottom: 1px solid rgba(255, 253, 245, .14); }
  .hero-facts > div + div { padding-left: 0; border-left: 0; }
  .signal-board { min-height: 430px; }
  .signal { width: 116px; min-height: 102px; }
  .signal strong { font-size: 26px; }
  .intro, .diagnostic, .service-system, .packages, .recurring, .process, .portfolio, .trust { padding-block: 82px; }
  .goal-selector { grid-template-columns: 1fr; }
  .goal-output { min-height: 650px; padding: 20px; }
  .goal-output-main { grid-template-columns: 1fr; margin-top: 100px; }
  .goal-footer { align-items: stretch; flex-direction: column; }
  .goal-footer > a { justify-content: space-between; }
  .service-browser { grid-template-columns: 1fr; }
  .service-scope { grid-template-columns: 1fr; gap: 12px; padding: 20px; }
  .service-tabs { grid-template-columns: 1fr 1fr; border-right: 0; border-bottom: 1px solid rgba(255, 253, 245, 0.14); }
  .service-tabs button { min-height: 58px; }
  .service-tabs button:last-child { grid-column: 1 / -1; }
  .service-preview { min-height: 610px; padding: 20px; }
  .preview-title-row { margin-top: 48px; }
  .preview-symbol { width: 54px; height: 54px; }
  .service-preview ul { grid-template-columns: 1fr; }
  .package-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 5px 26px 14px 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .package-grid::-webkit-scrollbar { display: none; }
  .package-card {
    min-height: 540px;
    flex: 0 0 calc(100% - 26px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .package-card.featured { transform: none; }
  .motion-ready .package-grid .package-card[data-reveal] { opacity: 1; translate: 0 0; }
  .package-card:hover,
  .package-card.featured:hover { transform: none; }
  .recurring-list { grid-template-columns: 1fr; }
  .recurring-list {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 5px 26px 14px 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .recurring-list::-webkit-scrollbar { display: none; }
  .recurring-card {
    min-height: 350px;
    flex: 0 0 calc(100% - 26px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .recurring-toggle { min-height: 350px; touch-action: pan-x pan-y; }
  .flip-hint { display: none; }
  .process-heading { grid-template-columns: 1fr; }
  .process-heading > .section-label { grid-column: auto; }
  .process-summary { width: max-content; }
  .process-board { padding: 12px; }
  .process-line {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 5px 26px 14px 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .process-line::-webkit-scrollbar { display: none; }
  .process-line article {
    min-height: 350px;
    flex: 0 0 calc(100% - 26px);
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .motion-ready .process-line article[data-reveal] {
    opacity: 1;
    translate: 0 0;
  }
  .process-line article:hover {
    border-color: var(--line);
    transform: none;
    box-shadow: 0 14px 34px rgba(20, 20, 15, 0.06);
  }
  .process-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 5px 0 14px;
    padding: 10px 4px;
  }
  .process-swipe-hint {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 8px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }
  .process-swipe-hint i {
    display: inline-grid;
    width: 30px;
    height: 20px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 99px;
    color: var(--ink);
    background: var(--lime);
    font-size: 13px;
    font-style: normal;
    animation: swipeCue 1.8s var(--ease) infinite;
  }
  .process-dots {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .process-dots i {
    width: 6px;
    height: 6px;
    border-radius: 99px;
    background: var(--line);
    transition: width 260ms var(--ease), background 260ms ease;
  }
  .process-dots i.is-active {
    width: 22px;
    background: var(--ink);
  }
  .process-result { grid-template-columns: 1fr; }
  .process-result > div { justify-self: start; }
  .case-grid {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    overflow-x: auto;
    padding: 5px 26px 18px 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    overscroll-behavior-x: contain;
    touch-action: pan-x pan-y;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .case-grid::-webkit-scrollbar { display: none; }
  .case-card {
    display: flex;
    height: 490px;
    flex: 0 0 100%;
    flex-direction: column;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    transition: height 420ms var(--ease), border-color 280ms ease, box-shadow 280ms ease;
  }
  .case-card.is-expanded { height: auto; }
  .motion-ready .case-grid .case-card[data-reveal] { opacity: 1; translate: 0 0; }
  .case-card:hover { transform: none; }
  .compact-carousel-nav {
    margin-top: 5px;
  }
  .compact-carousel-nav-light { color: rgba(255,253,245,.48); }
  .compact-carousel-nav-light .process-swipe-hint { color: rgba(255,253,245,.48); }
  .compact-carousel-nav-light .process-swipe-hint i { border-color: rgba(255,253,245,.2); }
  .compact-carousel-nav-light .process-dots i { background: rgba(255,253,245,.2); }
  .compact-carousel-nav-light .process-dots i.is-active { background: var(--white); }
  .portfolio-heading { margin-bottom: 32px; }
  .case-preview { padding: 9px 9px 0; }
  .case-browser { height: 27px; }
  .case-screen { min-height: 120px; padding: 18px 20px; }
  .case-screen > strong { margin-top: 14px; font-size: clamp(34px, 11vw, 46px); }
  .case-products { right: 18px; bottom: 12px; }
  .case-products i { width: 35px; height: 47px; }
  .case-dashboard { right: 18px; bottom: 14px; transform: scale(.72); transform-origin: right bottom; }
  .case-score { right: 15px; bottom: 13px; gap: 8px; padding: 8px 10px; }
  .case-score b { font-size: 15px; }
  .case-copy { display: flex; flex: 1; flex-direction: column; padding: 18px; }
  .case-meta { align-items: flex-start; flex-direction: column; gap: 7px; }
  .case-copy h3 { margin: 18px 0 9px; font-size: 27px; }
  .case-copy > p:not(.case-proof) {
    display: -webkit-box;
    margin-bottom: 12px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .case-copy > .case-proof { margin-top: 0; padding: 11px 12px; font-size: 9px; }
  .case-expand {
    display: flex;
    width: 100%;
    min-height: 44px;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding: 0 4px 0 13px;
    border: 1px solid rgba(255,253,245,.18);
    border-radius: 99px;
    color: var(--white);
    background: transparent;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    cursor: pointer;
  }
  .case-expand i {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 50%;
    color: var(--ink);
    background: var(--case-accent);
    font-size: 17px;
    font-style: normal;
    transition: transform 280ms var(--ease);
  }
  .case-card.is-expanded .case-expand { margin-top: 18px; }
  .case-card.is-expanded .case-expand i { transform: rotate(45deg); }
  .case-more {
    grid-template-rows: 0fr;
    opacity: 0;
    visibility: hidden;
    transition: grid-template-rows 480ms var(--ease), opacity 260ms ease, visibility 0s linear 480ms;
  }
  .case-more > div { overflow: hidden; }
  .case-card.is-expanded .case-more { grid-template-rows: 1fr; opacity: 1; visibility: visible; transition-delay: 0s; }
  .case-facts > div { grid-template-columns: 60px 1fr; }
  .case-tags { margin-top: 26px; }
  .trust { gap: 62px; }
  .trust-kicker { margin-top: 54px; }
  .faq { box-shadow: 8px 8px 0 var(--lime); }
  .faq-heading { padding: 24px; }
  .faq-list summary { min-height: 72px; padding-inline: 18px; }
  .faq-list details > p { padding: 0 58px 22px 18px; }
  .contact { margin: 9px; padding: 72px 20px; }
  .contact h2 { font-size: clamp(52px, 16vw, 74px); }
  .contact-orbit { right: -350px; opacity: 0.5; }
  .proposal-form { margin-top:22px; box-shadow:8px 8px 0 rgba(20,20,15,.14); }
  .proposal-form > header { grid-template-columns:1fr; gap:24px; padding:22px; }
  .proposal-form fieldset { grid-template-columns:1fr; }
  .proposal-message, .proposal-consent { grid-column:auto; }
  .proposal-form button[type="submit"] { min-height:68px; }
  .proposal-form-dialog { margin:0; box-shadow:none; }
  .contact-dialog { width:calc(100vw - 18px); max-height:calc(100vh - 18px); }
  .contact-dialog-shell { max-height:calc(100vh - 18px); }
  .contact-dialog-head { padding:22px 18px; }
  .contact-dialog-head h2 { font-size:clamp(38px,12vw,58px); }
  .contact-channel-choice { padding:18px; }
  .contact-channel-choice > div { grid-template-columns:1fr; }
  .contact-channel-choice a,.contact-channel-choice button { min-height:150px; padding:20px; }
  .site-footer { margin:9px; }
  .footer-signal { grid-template-columns:1fr; gap:6px; padding:14px 18px; }
  .footer-signal i { display:none; }
  .footer-main { gap:46px; padding:54px 20px 80px; }
  .footer-brand { grid-template-columns:48px 1fr; }
  .footer-brand > span { width:48px; height:48px; }
  .footer-nav { grid-template-columns:1fr 1fr; gap:38px 24px; }
  .footer-nav > div:last-child { grid-column:1/-1; }
  .footer-bottom { grid-template-columns:1fr; padding-bottom:100px; }
  .footer-bottom p:last-child { text-align:left; }
  .legal-hero { grid-template-columns:1fr; padding-top:60px; }
  .legal-hero h1 { font-size:clamp(58px,20vw,94px); }
  .legal-content > section { grid-template-columns:40px minmax(0,1fr); gap:12px; padding:42px 0; }
  .legal-content dl > div { grid-template-columns:1fr; gap:7px; }
  .legal-footer { grid-template-columns:1fr; margin:9px; }
  .legal-footer nav { flex-wrap:wrap; }
  .legal-footer p { justify-self:start; }
  .thread-message {
    right: 14px;
    bottom: 14px;
    width: calc(100vw - 28px);
    border-radius: 14px;
  }
  .back-to-top {
    bottom: 76px;
    left: 14px;
    width: 44px;
    height: 44px;
  }
  .back-to-top > small { display: none; }
  .error-header { min-height: 70px; }
  .error-header .brand small { display: none; }
  .error-main { min-height: calc(100vh - 70px); padding-block: 54px; }
  .error-main h1 { font-size: clamp(50px, 15vw, 72px); }
  .error-main > p:not(.error-label, .error-code) { max-width: 92%; font-size: 15px; }
  .error-main > .button { width: auto; }
  .error-orbit { right: -48%; width: 88vw; opacity: .42; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .skip-link { transition: none; }
  html { scroll-behavior: auto; }
  .process-line { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

@keyframes faqIn {
  from { opacity: 0; translate: 0 -6px; }
  to { opacity: 1; translate: 0 0; }
}
