@charset "UTF-8";

:root {
  --ink: #11130f;
  --ink-soft: #252a23;
  --paper: #f1efe8;
  --paper-warm: #f7f4ed;
  --paper-cool: #e8ede7;
  --white: #fff;
  --sage: #b9d2d0;
  --sage-soft: #e4efee;
  --green: #365259;
  --green-mid: #6f9698;
  --blue: #b9d2d0;
  --blue-deep: #6f9698;
  --lime: #ddf75f;
  --lime-deep: #526b69;
  --sand: #d8c6ac;
  --muted: #6a6f66;
  --line: rgba(17, 19, 15, 0.17);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 32px 80px rgba(17, 19, 15, 0.16);
  --radius: 28px;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --page-x: clamp(22px, 4.5vw, 76px);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  font-synthesis-weight: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3,
p,
ul,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 530;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h1 em,
h2 em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
}

ul {
  padding: 0;
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

.section-pad {
  padding: clamp(96px, 12vw, 190px) var(--page-x);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label > span {
  width: 35px;
  height: 35px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.section-label-light {
  color: rgba(255, 255, 255, 0.62);
}

.section-label-light > span {
  color: var(--white);
  border-color: var(--line-light);
}

.overline,
.feature-number {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4c524a;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-mid);
  box-shadow: 0 0 0 5px rgba(47, 106, 77, 0.12);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.78);
}

.eyebrow-light > span {
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(221, 247, 95, 0.15);
}

.button {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-ink {
  color: var(--paper-warm);
  background: var(--ink);
}

.button-ink:hover {
  color: var(--ink);
  background: var(--lime);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover {
  background: var(--lime);
}

.text-link {
  width: fit-content;
  padding: 5px 0;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
  transition: gap 180ms ease;
}

.text-link:hover {
  gap: 28px;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 82px;
  padding: 0 clamp(18px, 3vw, 48px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition:
    color 240ms ease,
    background 240ms ease,
    border-color 240ms ease,
    transform 240ms ease;
}

.site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(6, 11, 9, 0.5), rgba(6, 11, 9, 0.04));
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.34);
}

.site-header:not(.is-scrolled) .site-nav a {
  color: var(--white);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.72);
}

.site-header.is-scrolled .site-nav a {
  color: #3e443c;
  text-shadow: none;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(247, 244, 237, 0.89);
  border-color: var(--line);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
}

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

.brand-mark {
  width: 37px;
  height: 37px;
  flex: none;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(15, 28, 37, 0.18);
}

.brand > span {
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.16;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand > span b {
  display: block;
  font-weight: 500;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 46px);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: #3e443c;
  font-size: 12px;
  font-weight: 500;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="location"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 42px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--lime);
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  cursor: pointer;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: block;
  overflow: hidden;
  color: var(--white);
  background: #263033;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  position: relative;
  z-index: 3;
  width: min(62%, 920px);
  min-height: 100svh;
  padding: clamp(134px, 14vh, 168px) clamp(42px, 5vw, 82px) 126px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  max-width: 760px;
  margin-top: clamp(24px, 4vh, 54px);
  font-size: clamp(68px, 7.65vw, 132px);
  line-height: 0.82;
}

.hero h1.hero-title-statement {
  max-width: 900px;
  font-size: clamp(64px, 5.5vw, 94px);
  line-height: 0.87;
}

.mobile-title-break {
  display: none;
}

.hero h1 em {
  display: inline-block;
  color: var(--lime);
}

.lime-i {
  color: inherit;
}

@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .lime-i {
    background: linear-gradient(to bottom, var(--lime) 0 26%, var(--white) 26% 100%);
    background-clip: text;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.accent-360 {
  color: var(--lime);
  font-style: normal;
}

.hero .accent-360 {
  color: var(--lime);
  text-shadow: none;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.hero .eyebrow > span {
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(221, 247, 95, 0.15);
}

.site-header:not(.is-scrolled) .nav-360 {
  color: var(--lime);
}

.nav-360 {
  color: #708514;
}

.hero-lede {
  max-width: 620px;
  margin-top: clamp(32px, 5vh, 60px);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.hero-actions .text-link {
  color: var(--white);
}

.hero-note {
  width: 100%;
  margin-top: auto;
  padding-top: 44px;
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-media {
  position: absolute;
  inset: 0;
  min-height: 100svh;
  overflow: hidden;
  background: #c8d4d8;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 13, 11, 0.8) 0%, rgba(7, 13, 11, 0.64) 42%, rgba(7, 13, 11, 0.18) 72%, rgba(7, 13, 11, 0.04) 100%),
    linear-gradient(180deg, rgba(7, 14, 12, 0.22), transparent 32%),
    linear-gradient(0deg, rgba(5, 12, 10, 0.58), transparent 40%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
  transform: none;
  transition: filter 500ms ease;
}

.hero-media:hover img {
  transform: none;
  filter: saturate(1.025) contrast(1.01);
}

.hero-media figcaption {
  position: absolute;
  z-index: 3;
  right: clamp(24px, 3vw, 52px);
  bottom: 86px;
  left: clamp(24px, 3vw, 52px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (min-width: 901px) {
  .hero-media::before {
    position: absolute;
    z-index: 0;
    inset: -5%;
    content: "";
    background:
      linear-gradient(90deg, rgba(7, 13, 11, 0.36), rgba(7, 13, 11, 0.04)),
      url("./assets/dossier/page-01-hero-2x.jpg") center 18% / cover no-repeat;
    filter: blur(22px) saturate(0.84);
    opacity: 0.72;
    transform: scale(1.08);
  }

  .hero-media::after {
    z-index: 2;
  }

  .hero-media img {
    position: absolute;
    z-index: 1;
    top: 50%;
    right: clamp(14px, 3vw, 56px);
    width: auto;
    max-width: none;
    height: 124%;
    object-fit: contain;
    object-position: center;
    transform: translateY(-50%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 10%, #000 92%, transparent 100%);
  }

  .hero-media:hover img {
    transform: translateY(-50%);
  }
}

.media-index {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
}

.hero-rail {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 56px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  color: var(--white);
  background: rgba(12, 19, 15, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-rail span {
  display: grid;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Statement */

.statement {
  min-height: 100svh;
  padding-top: clamp(112px, 12vh, 148px);
  padding-bottom: clamp(76px, 9vh, 112px);
  display: grid;
  grid-template-columns: minmax(160px, 0.33fr) minmax(0, 1fr);
  gap: clamp(44px, 9vw, 160px);
  align-items: start;
  background: var(--paper);
}

.statement-copy {
  max-width: 1220px;
}

.statement-kicker {
  margin-bottom: 26px;
  color: var(--green-mid);
  font-family: var(--serif);
  font-size: clamp(20px, 2vw, 34px);
  font-style: italic;
}

.statement h2 {
  max-width: 1120px;
  font-size: clamp(54px, 6.4vw, 108px);
  line-height: 0.91;
}

.statement h2 em {
  color: var(--lime-deep);
}

.statement-intro {
  max-width: 760px;
  margin-top: 34px;
  margin-left: auto;
  color: #454b44;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.55;
}

.consulting-adventure {
  grid-column: 1 / -1;
  position: relative;
  width: calc(100% + (var(--page-x) * 2));
  height: clamp(650px, 82svh, 840px);
  margin-top: clamp(58px, 7vw, 96px);
  margin-right: calc(var(--page-x) * -1);
  margin-left: calc(var(--page-x) * -1);
  overflow: hidden;
  color: var(--white);
  background: #101410;
  outline: none;
  isolation: isolate;
}

.consulting-adventure:focus-visible {
  box-shadow: inset 0 0 0 3px var(--lime);
}

.consulting-adventure-bar {
  position: absolute;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  min-height: 76px;
  padding: 0 var(--page-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  background: linear-gradient(180deg, rgba(9, 13, 10, 0.76), rgba(9, 13, 10, 0.05));
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.consulting-adventure-bar p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.consulting-adventure-bar img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.consulting-adventure-bar p:first-child span {
  color: var(--lime);
}

.consulting-adventure-bar p:last-child span {
  font-size: 16px;
}

.consulting-pages,
.consulting-page {
  position: absolute;
  inset: 0;
}

.consulting-page {
  z-index: 1;
  pointer-events: none;
}

.consulting-page.is-active {
  z-index: 2;
  pointer-events: auto;
}

.consulting-half {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.consulting-half-left {
  left: 0;
  transform: translateY(104%);
}

.consulting-half-right {
  left: 50%;
  transform: translateY(-104%);
}

.consulting-page.is-active .consulting-half {
  transform: translateY(0);
}

.consulting-visual {
  background:
    linear-gradient(180deg, rgba(9, 13, 10, 0.08), rgba(9, 13, 10, 0.66)),
    var(--consulting-image) center / cover no-repeat;
}

.consulting-image-caption {
  position: absolute;
  right: clamp(28px, 4vw, 68px);
  bottom: clamp(34px, 6vw, 78px);
  left: clamp(28px, 4vw, 68px);
  max-width: 430px;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1.22;
}

.consulting-image-caption span {
  margin-bottom: 12px;
  display: block;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.consulting-panel {
  padding: clamp(116px, 12vh, 148px) clamp(56px, 6vw, 104px) clamp(90px, 10vh, 116px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--ink);
  background: var(--paper);
}

.consulting-panel::before {
  position: absolute;
  top: 50%;
  width: 44px;
  height: 1px;
  content: "";
  background: var(--lime-deep);
}

.consulting-half-right.consulting-panel::before {
  left: 0;
}

.consulting-half-left.consulting-panel::before {
  right: 0;
}

.consulting-step {
  margin-bottom: 28px;
  color: var(--lime-deep);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.consulting-panel h3 {
  max-width: 650px;
  font-size: clamp(42px, 4.4vw, 76px);
  line-height: 0.95;
}

.consulting-panel > p:not(.consulting-step) {
  max-width: 610px;
  margin-top: 30px;
  color: #4e544c;
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
}

.consulting-panel ul {
  max-width: 610px;
  margin-top: 34px;
  border-top: 1px solid rgba(13, 17, 13, 0.2);
}

.consulting-panel li {
  position: relative;
  padding: 13px 0 13px 28px;
  border-bottom: 1px solid rgba(13, 17, 13, 0.16);
  color: #343a34;
  font-size: clamp(14px, 1vw, 16px);
}

.consulting-panel li::before {
  position: absolute;
  top: 19px;
  left: 3px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(221, 247, 95, 0.22);
}

.consulting-page-result .consulting-panel {
  color: var(--ink);
  background: var(--lime);
}

.consulting-page-result .consulting-step,
.consulting-page-result .consulting-panel > p:not(.consulting-step) {
  color: #35400f;
}

.consulting-page-result .consulting-panel::before {
  background: var(--ink);
}

.consulting-result-metrics {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(13, 17, 13, 0.35);
  border-bottom: 1px solid rgba(13, 17, 13, 0.35);
}

.consulting-result-metrics span {
  padding: 16px 8px;
  border-right: 1px solid rgba(13, 17, 13, 0.3);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.consulting-result-metrics span:last-child {
  border-right: 0;
}

.consulting-progress {
  position: absolute;
  z-index: 24;
  top: 50%;
  right: clamp(16px, 2vw, 34px);
  display: grid;
  gap: 12px;
  transform: translateY(-50%);
}

.consulting-progress button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  color: var(--white);
  background: rgba(9, 13, 10, 0.44);
  font-family: var(--mono);
  font-size: 9px;
  cursor: pointer;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.consulting-progress button.is-active {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.consulting-controls {
  position: absolute;
  z-index: 24;
  right: 50%;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(50%);
}

.consulting-controls button {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: var(--white);
  background: rgba(9, 13, 10, 0.58);
  font-size: 16px;
  cursor: pointer;
}

.consulting-controls button:disabled {
  opacity: 0.35;
  cursor: default;
}

.consulting-controls p {
  min-width: 70px;
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: var(--white);
  background: rgba(9, 13, 10, 0.66);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-align: center;
}

.consulting-controls [data-consulting-current] {
  color: var(--lime);
}

/* Film */

.film-section {
  padding: clamp(92px, 10vw, 170px) var(--page-x);
  color: var(--white);
  background:
    radial-gradient(circle at 75% 12%, rgba(188, 220, 232, 0.12), transparent 30rem),
    #0c0f0c;
}

.film-heading {
  margin-bottom: clamp(48px, 6vw, 86px);
  display: grid;
  grid-template-columns: 0.4fr 1.15fr 0.55fr;
  align-items: end;
  gap: 40px;
}

.film-heading h2 {
  font-size: clamp(58px, 7.4vw, 126px);
  line-height: 0.88;
}

.film-heading > p:last-child {
  max-width: 370px;
  padding-bottom: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.film-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #151915;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: clamp(18px, 2.4vw, 38px);
  box-shadow: 0 55px 120px rgba(0, 0, 0, 0.45);
}

.film-shell::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(120deg, rgba(6, 10, 8, 0.68), rgba(6, 10, 8, 0.08) 55%, rgba(6, 10, 8, 0.28));
  pointer-events: none;
  transition: opacity 320ms ease;
}

.film-shell.is-playing::before {
  opacity: 0;
}

.film-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-play {
  position: absolute;
  z-index: 4;
  inset: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--white);
  background: none;
  border: 0;
  cursor: pointer;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.film-shell.is-playing .film-play {
  opacity: 0;
  visibility: hidden;
}

.play-ring {
  width: clamp(82px, 8vw, 132px);
  height: clamp(82px, 8vw, 132px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.film-play:hover .play-ring {
  color: var(--ink);
  background: var(--lime);
  transform: scale(1.06);
}

.play-ring span {
  margin-left: 5px;
  font-size: 24px;
}

.play-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.play-copy b {
  font-size: 13px;
  letter-spacing: 0.03em;
}

.play-copy small {
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.film-corner {
  position: absolute;
  z-index: 5;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  pointer-events: none;
}

.film-corner-top {
  top: 28px;
  left: 30px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.film-corner-logo {
  width: 27px;
  height: 27px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
}

.film-corner-bottom {
  right: 30px;
  bottom: 28px;
}

/* Scroll portal */

.portal-section {
  position: relative;
  height: 340svh;
  background: var(--paper-warm);
}

.portal-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  grid-template-columns: minmax(390px, 36%) minmax(0, 64%);
  overflow: hidden;
}

.portal-copy {
  position: relative;
  z-index: 4;
  padding: 120px clamp(34px, 4.3vw, 76px) 70px var(--page-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 8% 10%, rgba(174, 191, 170, 0.2), transparent 25rem),
    var(--paper-warm);
  border-right: 1px solid var(--line);
}

.portal-copy h2 {
  max-width: 720px;
  margin-top: 44px;
  font-size: clamp(56px, 5.8vw, 104px);
  line-height: 0.87;
}

.portal-copy h2 em {
  color: var(--green-mid);
}

.portal-copy > p:not(.section-label, .portal-scroll-hint) {
  max-width: 470px;
  margin-top: 36px;
  color: #535a51;
  font-size: clamp(14px, 1.05vw, 17px);
}

.portal-readout {
  max-width: 470px;
  margin-top: 54px;
}

.portal-readout > span {
  color: var(--green-mid);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.portal-readout > div {
  height: 2px;
  margin-top: 13px;
  overflow: hidden;
  background: rgba(17, 19, 15, 0.12);
}

.portal-readout i {
  width: 0;
  height: 100%;
  display: block;
  background: var(--green);
  transform-origin: left;
}

.portal-scroll-hint {
  position: absolute;
  bottom: 54px;
  left: var(--page-x);
  display: flex;
  align-items: center;
  gap: 17px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.portal-scroll-hint span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.portal-stage {
  --portal-pointer-x: 58%;
  --portal-pointer-y: 64%;
  --portal-prompt-scale: 1;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, rgba(72, 126, 96, 0.28), transparent 28rem),
    #0b0f0c;
}

.portal-stage::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at center, #000, transparent 72%);
}

.portal-aura {
  position: absolute;
  width: min(72vw, 1080px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(221, 247, 95, 0.13), rgba(188, 220, 232, 0.07) 34%, transparent 68%);
  filter: blur(28px);
  transform: scale(calc(0.88 + var(--portal-progress-number, 0) * 0.16));
}

.portal-browser {
  position: relative;
  z-index: 2;
  width: min(1060px, calc(100% - 76px));
  aspect-ratio: 16 / 10;
  overflow: hidden;
  color: var(--ink);
  background: #f8faf8;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: clamp(18px, 2vw, 28px);
  box-shadow:
    0 55px 130px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(17, 19, 15, 0.18);
  transform: perspective(1500px) rotateX(var(--portal-rotate-x, 1.4deg)) rotateY(var(--portal-rotate-y, -2deg));
  transition: box-shadow 350ms ease;
}

.portal-stage[data-phase="dashboard"] .portal-browser,
.portal-stage[data-phase="outcome"] .portal-browser {
  box-shadow:
    0 65px 150px rgba(0, 0, 0, 0.52),
    0 0 80px rgba(221, 247, 95, 0.06);
}

.portal-bar {
  height: 9%;
  min-height: 44px;
  padding: 0 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
}

.portal-dots {
  display: flex;
  gap: 6px;
}

.portal-dots i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: var(--sage);
}

.portal-dots i:first-child {
  background: var(--sand);
}

.portal-dots i:last-child {
  background: var(--blue);
}

.portal-bar > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.portal-bar > b {
  justify-self: end;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 9px;
  font-family: var(--mono);
  font-size: 7px;
}

.portal-screen {
  position: relative;
  height: 91%;
  overflow: hidden;
}

.portal-prompt,
.portal-dashboard {
  position: absolute;
  inset: 0;
}

.portal-prompt {
  z-index: 3;
  padding: 9% 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 40%, rgba(174, 191, 170, 0.16), transparent 22rem),
    var(--paper-warm);
  opacity: 1;
  transform: scale(var(--portal-prompt-scale));
  transform-origin: 78% 70%;
  transition: opacity 220ms ease;
}

.portal-stage[data-phase="dashboard"] .portal-prompt,
.portal-stage[data-phase="outcome"] .portal-prompt {
  opacity: 0;
  pointer-events: none;
}

.portal-prompt-label {
  color: var(--green-mid);
  font-family: var(--mono);
  font-size: clamp(7px, 0.7vw, 10px);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.portal-input {
  min-height: clamp(74px, 10vw, 118px);
  margin-top: 20px;
  padding: 0 clamp(18px, 2.4vw, 34px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: clamp(14px, 1.7vw, 23px);
  box-shadow: 0 20px 55px rgba(23, 61, 47, 0.09);
  font-family: var(--display);
  font-size: clamp(25px, 3.2vw, 49px);
  font-weight: 550;
  letter-spacing: -0.05em;
  white-space: nowrap;
}

.portal-input i {
  width: 2px;
  height: 1em;
  margin-left: 3px;
  display: block;
  background: var(--green-mid);
  animation: portal-caret 800ms step-end infinite;
}

@keyframes portal-caret {
  50% { opacity: 0; }
}

.portal-prompt-bottom {
  margin-top: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.portal-prompt-bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.portal-prompt-bottom span {
  padding: 7px 9px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: clamp(6px, 0.55vw, 8px);
}

.portal-prompt-bottom button,
.portal-dashboard-head button {
  flex: 0 0 auto;
  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: 999px;
  font-size: clamp(8px, 0.75vw, 11px);
  font-weight: 650;
}

.portal-prompt-bottom button {
  min-height: 44px;
  padding: 0 18px;
}

.portal-prompt-bottom button b {
  margin-left: 8px;
  color: var(--lime);
}

.portal-dashboard {
  z-index: 2;
  display: grid;
  grid-template-columns: 18% 82%;
  background: #f6f9f6;
  opacity: 0;
  transform: scale(1.14);
  filter: blur(8px);
  transition:
    opacity 330ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 450ms ease;
}

.portal-stage[data-phase="dashboard"] .portal-dashboard,
.portal-stage[data-phase="outcome"] .portal-dashboard {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.portal-dashboard > aside {
  padding: 8% 12%;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 18px);
  color: #7c867e;
  background: #edf3ee;
  border-right: 1px solid var(--line);
  font-size: clamp(6px, 0.7vw, 10px);
}

.portal-dashboard > aside strong {
  width: 34px;
  height: 34px;
  margin-bottom: 10%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 10px;
  font-family: var(--serif);
  font-size: 17px;
}

.portal-dashboard > aside .is-current {
  color: var(--green);
  font-weight: 700;
}

.portal-dashboard-main {
  padding: 4.8% 4.5%;
  transition: opacity 350ms ease, filter 350ms ease, transform 500ms ease;
}

.portal-dashboard-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}

.portal-dashboard-head small {
  color: var(--green-mid);
  font-family: var(--mono);
  font-size: clamp(6px, 0.6vw, 8px);
  letter-spacing: 0.13em;
}

.portal-dashboard-head h3 {
  margin-top: 5px;
  font-size: clamp(24px, 2.7vw, 40px);
}

.portal-dashboard-head button {
  min-height: 35px;
  padding: 0 14px;
}

.portal-dashboard-stats {
  margin-top: 4%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5%;
}

.portal-dashboard-stats article {
  min-height: clamp(82px, 10vw, 130px);
  padding: 6%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: clamp(10px, 1.2vw, 16px);
}

.portal-dashboard-stats .is-highlight {
  color: var(--white);
  background: var(--green);
}

.portal-dashboard-stats small {
  color: var(--muted);
  font-size: clamp(6px, 0.65vw, 9px);
}

.portal-dashboard-stats .is-highlight small {
  color: rgba(255, 255, 255, 0.58);
}

.portal-dashboard-stats strong {
  margin-top: 7px;
  font-size: clamp(22px, 2.7vw, 39px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.portal-dashboard-stats span {
  margin-top: auto;
  color: var(--green-mid);
  font-size: clamp(6px, 0.6vw, 8px);
}

.portal-dashboard-stats .is-highlight span {
  color: var(--lime);
}

.portal-table {
  margin-top: 2.5%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: clamp(10px, 1.2vw, 16px);
}

.portal-row {
  min-height: clamp(39px, 4.8vw, 61px);
  padding: 0 2.4%;
  display: grid;
  grid-template-columns: 1.1fr 0.72fr 1.2fr 0.55fr;
  align-items: center;
  gap: 8px;
  color: #414941;
  border-top: 1px solid var(--line);
  font-size: clamp(6px, 0.68vw, 9px);
  transition: background 350ms ease, box-shadow 350ms ease;
}

.portal-row-head {
  min-height: clamp(29px, 3.4vw, 43px);
  color: #899189;
  background: #f3f6f3;
  border-top: 0;
}

.portal-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 7px;
  font-weight: 650;
}

.portal-row > b {
  width: fit-content;
  padding: 4px 7px;
  color: var(--green-mid);
  background: #e3f1e8;
  border-radius: 999px;
  font-size: clamp(5px, 0.55vw, 7px);
}

.portal-avatar {
  width: clamp(16px, 2vw, 25px);
  aspect-ratio: 1;
  display: block;
  border-radius: 50%;
}

.portal-avatar-one { background: linear-gradient(135deg, #e9bd9f, #a77c6b); }
.portal-avatar-two { background: linear-gradient(135deg, #a9c9db, #5a8195); }
.portal-avatar-three { background: linear-gradient(135deg, #c8b8df, #7b6b9d); }

.portal-stage[data-phase="outcome"] .portal-row.is-target {
  background: rgba(221, 247, 95, 0.32);
  box-shadow: inset 3px 0 0 var(--green-mid);
}

.portal-result {
  position: absolute;
  z-index: 4;
  inset: 8%;
  padding: 8%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 28%, rgba(221, 247, 95, 0.12), transparent 16rem),
    rgba(13, 48, 35, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(15px, 2vw, 27px);
  box-shadow: 0 35px 95px rgba(12, 31, 23, 0.32);
  text-align: center;
  opacity: 0;
  transform: translateY(30px) scale(0.94);
  pointer-events: none;
  transition:
    opacity 420ms ease,
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portal-stage[data-phase="outcome"] .portal-dashboard-main {
  opacity: 0.18;
  filter: blur(5px);
  transform: scale(0.97);
}

.portal-stage[data-phase="outcome"] .portal-result {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.portal-result-check {
  width: clamp(46px, 5.2vw, 70px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(221, 247, 95, 0.08);
  font-size: clamp(20px, 2.3vw, 32px);
}

.portal-result > small {
  margin-top: 7%;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--mono);
  font-size: clamp(6px, 0.65vw, 9px);
  letter-spacing: 0.15em;
}

.portal-result > strong {
  margin-top: 2%;
  font-family: var(--display);
  font-size: clamp(28px, 3.7vw, 56px);
  font-weight: 540;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.portal-result > strong em {
  color: var(--lime);
  font-family: var(--serif);
  font-weight: 400;
}

.portal-result > div:last-child {
  margin-top: 6%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.portal-result > div:last-child span {
  padding: 6px 9px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: clamp(5px, 0.55vw, 8px);
  text-transform: uppercase;
}

.portal-pointer {
  position: absolute;
  z-index: 8;
  top: var(--portal-pointer-y);
  left: var(--portal-pointer-x);
  width: 32px;
  height: 39px;
  filter: drop-shadow(0 7px 7px rgba(0, 0, 0, 0.28));
  transform: translate(-5px, -5px);
  transition: opacity 250ms ease;
  pointer-events: none;
}

.portal-pointer svg {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.portal-pointer path {
  fill: var(--ink);
  stroke: var(--white);
  stroke-width: 2.3;
}

.portal-pointer i {
  position: absolute;
  z-index: 1;
  top: -13px;
  left: -13px;
  width: 54px;
  height: 54px;
  border: 2px solid var(--lime);
  border-radius: 50%;
  opacity: var(--portal-click, 0);
  transform: scale(calc(0.2 + (1 - var(--portal-click, 0)) * 1.6));
}

.portal-stage[data-phase="outcome"] .portal-pointer {
  opacity: 0;
}

/* System */

.system-intro {
  background: var(--paper-warm);
}

.system-title {
  max-width: 1250px;
  margin: clamp(64px, 9vw, 130px) 0 clamp(58px, 8vw, 108px) auto;
}

.system-title h2 {
  margin-top: 24px;
  font-size: clamp(56px, 7vw, 118px);
  line-height: 0.94;
}

.system-title h2 em {
  color: var(--green-mid);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.journey-card {
  min-height: 560px;
  padding: clamp(24px, 2.5vw, 42px);
  display: flex;
  flex-direction: column;
  background: var(--sage-soft);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.journey-card-blue {
  background: var(--blue);
}

.journey-card-dark {
  color: var(--white);
  background: var(--green);
}

.journey-card-lime {
  background: var(--lime);
}

.journey-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: currentColor;
  font-family: var(--mono);
  font-size: 10px;
}

.journey-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.journey-card > svg {
  width: 68px;
  height: 68px;
  margin-top: 76px;
}

.journey-card svg path,
.journey-card svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journey-card h3 {
  margin-top: 40px;
  font-size: clamp(38px, 3.5vw, 60px);
}

.journey-card > p {
  max-width: 310px;
  margin-top: 20px;
  color: color-mix(in srgb, currentColor 68%, transparent);
  font-size: 14px;
}

.journey-card ul {
  margin-top: auto;
  padding-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.journey-card li {
  padding: 7px 10px;
  border: 1px solid color-mix(in srgb, currentColor 20%, transparent);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Editorial features */

.editorial-feature {
  min-height: min(960px, 100svh);
  display: grid;
  grid-template-columns: 46% 54%;
}

.feature-copy {
  padding: clamp(90px, 10vw, 160px) clamp(30px, 6vw, 105px) clamp(80px, 9vw, 150px) var(--page-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--paper);
}

.feature-copy h2 {
  margin-top: 30px;
  font-size: clamp(55px, 6vw, 105px);
  line-height: 0.91;
}

.feature-copy > p:not(.feature-number) {
  max-width: 620px;
  margin-top: 40px;
  color: #4d544b;
  font-size: clamp(16px, 1.25vw, 20px);
}

.feature-list {
  max-width: 590px;
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.feature-list li {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 26px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}

.feature-list span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
}

.feature-media {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #c7b49d;
}

.feature-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.call-card,
.transcript-card,
.appointment-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.call-card {
  top: 16%;
  right: 5%;
  min-width: 330px;
  padding: 20px;
  gap: 14px;
  border-radius: 18px;
}

.call-pulse {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
}

.call-pulse::before {
  width: 10px;
  height: 10px;
  content: "";
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(23, 61, 47, 0.13);
}

.call-card div {
  display: flex;
  flex-direction: column;
}

.call-card small,
.transcript-card small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.call-card strong {
  margin-top: 3px;
  font-size: 13px;
}

.call-card > b {
  margin-left: auto;
  color: var(--green-mid);
  font-family: var(--mono);
  font-size: 11px;
}

.transcript-card {
  right: 8%;
  bottom: 10%;
  left: 8%;
  padding: 24px;
  display: block;
  border-radius: 20px;
}

.transcript-card p {
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(18px, 2vw, 30px);
  font-style: italic;
}

.feature-crm {
  grid-template-columns: 58% 42%;
  background: var(--blue);
}

.feature-crm .feature-copy {
  order: 2;
  background: var(--blue);
}

.feature-crm .text-link {
  margin-top: 48px;
}

.crm-canvas {
  min-height: 790px;
  padding: clamp(40px, 6vw, 100px) 0 clamp(40px, 6vw, 100px) var(--page-x);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.68), transparent 28rem),
    var(--blue);
}

.crm-window {
  width: max(770px, 52vw);
  min-height: 560px;
  overflow: hidden;
  background: #f8faf8;
  border: 1px solid rgba(17, 19, 15, 0.14);
  border-radius: 25px;
  box-shadow: 0 48px 110px rgba(36, 69, 80, 0.22);
  transform: perspective(1300px) rotateY(7deg) rotateX(1deg);
  transform-origin: left center;
}

.crm-bar {
  min-height: 61px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border-bottom: 1px solid #dfe5e0;
}

.crm-logo {
  width: 29px;
  height: 29px;
  display: block;
  object-fit: cover;
  border-radius: 9px;
  box-shadow: 0 3px 10px rgba(17, 32, 43, 0.2);
}

.crm-bar p {
  font-size: 12px;
  font-weight: 600;
}

.crm-bar > div {
  margin-left: auto;
  display: flex;
  gap: 6px;
}

.crm-bar i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
  background: #c9d1cb;
}

.crm-body {
  min-height: 499px;
  display: grid;
  grid-template-columns: 158px 1fr;
}

.crm-body aside {
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  color: #7d887f;
  background: #f0f4f1;
  border-right: 1px solid #dfe5e0;
  font-size: 9px;
}

.crm-body aside b {
  color: var(--green);
}

.crm-main {
  min-width: 0;
  padding: 31px;
}

.crm-main-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.crm-main-head div {
  display: flex;
  flex-direction: column;
}

.crm-main-head small {
  color: var(--green-mid);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.crm-main-head strong {
  margin-top: 4px;
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -0.04em;
}

.crm-main-head button {
  padding: 9px 13px;
  color: var(--white);
  background: var(--green);
  border: 0;
  border-radius: 9px;
  font-size: 8px;
}

.crm-stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.crm-stats div {
  min-height: 108px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #dfe5e0;
  border-radius: 12px;
}

.crm-stats small {
  color: #778078;
  font-size: 7px;
}

.crm-stats strong {
  margin-top: 10px;
  font-size: 24px;
}

.crm-stats em {
  margin-top: auto;
  color: var(--green-mid);
  font-size: 7px;
  font-style: normal;
}

.crm-table {
  margin-top: 15px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #dfe5e0;
  border-radius: 12px;
}

.crm-row {
  min-height: 56px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 1.15fr 0.75fr 1.2fr 0.6fr;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #e9eeea;
  color: #3d463f;
  font-size: 8px;
}

.crm-row:last-child {
  border-bottom: 0;
}

.crm-row-head {
  min-height: 36px;
  color: #8a928c;
  background: #fafcfa;
}

.crm-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}

.avatar {
  width: 23px;
  height: 23px;
  display: block;
  border-radius: 50%;
}

.a1 { background: linear-gradient(135deg, #e9bd9f, #a77c6b); }
.a2 { background: linear-gradient(135deg, #a9c9db, #5a8195); }
.a3 { background: linear-gradient(135deg, #c8b8df, #7b6b9d); }

.crm-row > b {
  width: fit-content;
  padding: 4px 7px;
  color: var(--green-mid);
  background: #e1f2e8;
  border-radius: 99px;
  font-size: 7px;
}

.feature-growth {
  grid-template-columns: 48% 52%;
  background: var(--sage-soft);
}

.feature-growth .feature-copy {
  background: var(--sage-soft);
}

.growth-tags {
  margin-top: 52px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.growth-tags span {
  padding: 9px 12px;
  border: 1px solid rgba(17, 19, 15, 0.2);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.growth-media {
  min-height: 820px;
}

.growth-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(14, 26, 20, 0.35), transparent 55%);
}

.message-stack {
  position: absolute;
  z-index: 3;
  top: 9%;
  right: 5%;
  bottom: 5%;
  left: 6%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 7px;
}

.chat-status {
  width: min(430px, 86%);
  min-height: 54px;
  margin-bottom: auto;
  padding: 9px 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #fff;
  background: rgba(7, 94, 84, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 17px;
  box-shadow: 0 12px 34px rgba(17, 19, 15, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.chat-status > div,
.chat-status > div span {
  display: flex;
  align-items: center;
}

.chat-status > div {
  gap: 10px;
}

.chat-status > div img {
  width: 28px;
  height: 28px;
  padding: 6px;
  border-radius: 50%;
  background: #25d366;
}

.chat-status > div span {
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.15;
}

.chat-status strong {
  font-size: 12px;
}

.chat-status small,
.chat-status p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 8px;
}

.chat-status p {
  display: flex;
  align-items: center;
  gap: 6px;
}

.chat-status p i {
  width: 6px;
  height: 6px;
  display: block;
  border-radius: 50%;
  background: #25d366;
}

.message-bubble {
  max-width: min(510px, 82%);
  padding: 10px 14px 8px;
  font-size: clamp(11px, 0.84vw, 13px);
  line-height: 1.34;
  box-shadow: 0 12px 36px rgba(17, 19, 15, 0.18);
  opacity: 0;
  transform: translateY(13px) scale(0.985);
}

.message-in {
  background: var(--white);
  border-radius: 16px 16px 16px 4px;
}

.message-out {
  align-self: flex-end;
  background: #d9fdd3;
  border-radius: 16px 16px 4px 16px;
}

.message-bubble p {
  margin: 0;
}

.message-bubble small {
  margin-top: 4px;
  display: block;
  color: #667781;
  font-size: 7px;
  line-height: 1;
  text-align: right;
}

.message-bubble small b {
  color: #53bdeb;
  font-weight: 700;
}

.chat-event {
  align-self: center;
  padding: 7px 11px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(7, 94, 84, 0.9);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.chat-event span {
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #25d366;
}

.growth-media.is-visible .message-bubble,
.growth-media.is-visible .chat-event {
  animation: chat-message-in 480ms cubic-bezier(0.2, 0.75, 0.2, 1) var(--chat-delay) forwards;
}

@keyframes chat-message-in {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Case study */

.case-study {
  padding: clamp(88px, 8vw, 130px) var(--page-x) clamp(60px, 6vw, 92px);
  color: var(--white);
  background:
    linear-gradient(180deg, #f7f8f4 0, rgba(247, 248, 244, 0.76) 24px, rgba(247, 248, 244, 0) 104px),
    radial-gradient(circle at 90% 5%, rgba(221, 247, 95, 0.09), transparent 30rem),
    var(--green);
}

.case-head {
  max-width: 1240px;
}

.case-head h2 {
  margin-top: 38px;
  font-size: clamp(60px, 8vw, 138px);
  line-height: 0.88;
}

.case-head h2 em {
  color: var(--lime);
}

.case-crossed-number {
  position: relative;
  display: inline-block;
  color: var(--white);
  font-weight: 760;
  letter-spacing: -0.08em;
}

.case-crossed-number::after {
  position: absolute;
  z-index: 1;
  top: 52%;
  right: -0.08em;
  left: -0.05em;
  height: 0.075em;
  content: "";
  background: #ff4a3d;
  border-radius: 999px;
  box-shadow: 0 0.035em 0.12em rgba(255, 74, 61, 0.3);
  transform: rotate(-7deg);
  transform-origin: center;
}

.case-head > p:last-child {
  max-width: 680px;
  margin: 28px 0 0 auto;
  color: rgba(255, 255, 255, 0.65);
  font-size: clamp(16px, 1.35vw, 21px);
}

.case-metrics {
  margin-top: clamp(42px, 4vw, 64px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.case-metrics article {
  min-height: 240px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.case-metrics small {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--mono);
  font-size: clamp(12px, 0.92vw, 15px);
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.case-metrics strong {
  margin-top: auto;
  font-family: var(--display);
  font-size: clamp(65px, 7vw, 116px);
  font-weight: 520;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.case-metrics p {
  max-width: 190px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.case-story {
  margin-top: clamp(58px, 6vw, 90px);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
}

.case-image {
  position: sticky;
  top: 112px;
  min-height: 690px;
  overflow: hidden;
  border-radius: var(--radius);
}

.case-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(5, 15, 10, 0.55), transparent 40%);
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-image-caption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-route {
  position: relative;
  padding-left: 70px;
}

.case-route::before,
.case-route::after {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 18px;
  width: 1px;
  content: "";
}

.case-route::before {
  background: rgba(255, 255, 255, 0.18);
}

.case-route::after {
  height: var(--case-progress, 0%);
  bottom: auto;
  background: var(--lime);
  transition: height 420ms ease;
}

.case-route article {
  position: relative;
  min-height: 238px;
  padding: 25px 0 56px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 25px;
  border-bottom: 1px solid var(--line-light);
  opacity: 0.38;
  transition: opacity 380ms ease;
}

.case-route article::before {
  position: absolute;
  top: 30px;
  left: -58px;
  width: 13px;
  height: 13px;
  content: "";
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  transition: background 280ms ease, box-shadow 280ms ease;
}

.case-route article.is-active {
  opacity: 1;
}

.case-route article.is-active::before {
  background: var(--lime);
  box-shadow: 0 0 0 6px rgba(221, 247, 95, 0.12);
}

.case-route article > span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 10px;
}

.case-route h3 {
  font-size: clamp(35px, 3.5vw, 58px);
}

.case-route p {
  max-width: 570px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.case-disclaimer {
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 10px;
}

/* Workshop */

.workshop {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(58px, 9vw, 150px);
  background: var(--paper-warm);
}

.workshop-image {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-radius: var(--radius);
}

.workshop-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(9, 17, 13, 0.32), transparent 43%);
}

.workshop-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.appointment-card {
  right: 5%;
  left: 5%;
  min-height: 74px;
  padding: 15px 18px;
  gap: 16px;
  border-radius: 17px;
}

.appointment-card > span {
  font-family: var(--mono);
  font-size: 11px;
}

.appointment-card > div {
  display: flex;
  flex-direction: column;
}

.appointment-card b {
  font-size: 12px;
}

.appointment-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.appointment-card i {
  width: 32px;
  height: 32px;
  margin-left: auto;
  display: grid;
  place-items: center;
  background: var(--lime);
  border-radius: 50%;
  font-style: normal;
}

.appt-one {
  z-index: 3;
  bottom: 13%;
}

.appt-two {
  z-index: 2;
  right: 10%;
  bottom: 4%;
  left: 10%;
  opacity: 0.8;
  transform: scale(0.94);
}

.workshop-copy h2 {
  max-width: 790px;
  margin-top: 30px;
  font-size: clamp(57px, 6.5vw, 112px);
  line-height: 0.91;
}

.workshop-copy .overline {
  width: fit-content;
  padding: 3px 4px 2px;
  color: var(--ink);
  background: var(--lime);
  font-size: clamp(11px, 0.9vw, 14px);
  font-weight: 700;
  line-height: 1.1;
}

.workshop-copy > p:not(.overline) {
  max-width: 600px;
  margin-top: 42px;
  color: #4c534a;
  font-size: clamp(16px, 1.25vw, 20px);
}

.workshop-steps {
  margin-top: 58px;
  border-top: 1px solid var(--line);
}

.workshop-steps > div {
  min-height: 92px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.workshop-steps span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
}

.workshop-steps p {
  font-size: 13px;
}

/* Caso real → talleres · gesto vertical convertido en recorrido lateral */

.case-study--lateral {
  padding-bottom: 0;
}

.case-workshop-lateral {
  --case-workshop-progress: 0;
  position: relative;
  height: 200svh;
  margin-top: clamp(58px, 6vw, 90px);
  margin-right: calc(var(--page-x) * -1);
  margin-left: calc(var(--page-x) * -1);
}

.case-workshop-sticky {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100svh;
  overflow: clip;
}

.case-workshop-track {
  position: relative;
  width: 200vw;
  height: 100%;
  display: flex;
  transform: translate3d(calc(var(--case-workshop-progress) * -100vw), 0, 0);
  will-change: transform;
}

@media (min-width: 901px) {
  .case-workshop-track::after {
    position: absolute;
    z-index: 4;
    top: 0;
    bottom: 0;
    left: calc(100vw - clamp(54px, 5vw, 90px));
    width: clamp(108px, 10vw, 180px);
    content: "";
    background: linear-gradient(
      90deg,
      rgba(23, 61, 47, 0) 0%,
      var(--green) 30%,
      color-mix(in srgb, var(--green) 48%, var(--paper-warm)) 50%,
      var(--paper-warm) 70%,
      rgba(247, 244, 237, 0) 100%
    );
    pointer-events: none;
  }
}

.case-workshop-track > .case-story-panel,
.case-workshop-track > .workshop {
  width: 100vw;
  height: 100svh;
  min-height: 100svh;
  flex: 0 0 100vw;
  box-sizing: border-box;
  overflow: hidden;
}

.case-story-panel {
  padding: clamp(92px, 10vh, 112px) var(--page-x) clamp(24px, 3.5vh, 42px);
  display: flex;
  flex-direction: column;
  color: var(--white);
  background:
    linear-gradient(180deg, var(--green) 0, rgba(23, 61, 47, 0.88) 36px, rgba(23, 61, 47, 0) 150px),
    radial-gradient(circle at 88% 8%, rgba(221, 247, 95, 0.09), transparent 28rem),
    var(--green);
}

.case-story-panel .case-story {
  min-height: 0;
  margin-top: 0;
  flex: 1;
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
  align-items: stretch;
  gap: clamp(44px, 7vw, 112px);
}

.case-story-panel .case-image {
  position: relative;
  top: auto;
  height: 100%;
  min-height: 0;
}

.case-story-panel .case-route {
  height: 100%;
  min-height: 0;
  padding-left: 62px;
  overflow: hidden;
}

.case-story-panel .case-route article {
  height: 25%;
  min-height: 0;
  padding: clamp(11px, 1.7vh, 18px) 0;
  grid-template-columns: 42px 1fr;
  gap: 18px;
}

.case-story-panel .case-route article::before {
  top: clamp(17px, 2.4vh, 25px);
  left: -50px;
}

.case-story-panel .case-route::before,
.case-story-panel .case-route::after {
  top: 22px;
  bottom: 22px;
}

.case-story-panel .case-route h3 {
  font-size: clamp(27px, 3vw, 50px);
  line-height: 0.98;
}

.case-story-panel .case-route p {
  margin-top: clamp(7px, 1vh, 12px);
  font-size: clamp(10px, 0.85vw, 13px);
  line-height: 1.35;
}

.case-story-panel .case-disclaimer {
  margin-top: 14px;
}

.case-workshop-track > .workshop {
  padding: clamp(92px, 10vh, 112px) var(--page-x) clamp(26px, 4vh, 44px);
  grid-template-columns: minmax(390px, 0.94fr) minmax(520px, 1.06fr);
  align-items: stretch;
  gap: clamp(42px, 6vw, 94px);
  color: var(--ink);
}

.case-workshop-track .workshop-image {
  height: 100%;
  min-height: 0;
}

.case-workshop-track .workshop-copy {
  align-self: center;
}

.case-workshop-track .workshop-copy h2 {
  margin-top: clamp(16px, 2.5vh, 26px);
  font-size: clamp(48px, 5.5vw, 88px);
}

.case-workshop-track .workshop-copy > p:not(.overline) {
  margin-top: clamp(17px, 2.5vh, 28px);
  font-size: clamp(13px, 1vw, 17px);
}

.case-workshop-track .workshop-steps {
  margin-top: clamp(20px, 3vh, 34px);
}

.case-workshop-track .workshop-steps > div {
  min-height: clamp(52px, 7vh, 72px);
}

@media (max-width: 1180px) and (min-width: 901px) {
  .case-story-panel .case-story,
  .case-workshop-track > .workshop {
    grid-template-columns: minmax(340px, 0.84fr) minmax(470px, 1.16fr);
    gap: 38px;
  }

  .case-story-panel .case-route h3 {
    font-size: 32px;
  }

  .case-workshop-track .workshop-copy h2 {
    font-size: 54px;
  }
}

@media (max-width: 900px) {
  .case-study--lateral {
    padding-bottom: clamp(60px, 6vw, 92px);
  }

  .case-workshop-lateral {
    width: auto;
    height: auto;
    margin-right: calc(var(--page-x) * -1);
    margin-left: calc(var(--page-x) * -1);
  }

  .case-workshop-sticky {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
  }

  .case-workshop-track {
    width: auto;
    height: auto;
    display: block;
    transform: none !important;
  }

  .case-workshop-track > .case-story-panel,
  .case-workshop-track > .workshop {
    width: auto;
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .case-story-panel {
    padding: 0 var(--page-x) clamp(60px, 8vw, 90px);
  }

  .case-story-panel .case-story {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .case-story-panel .case-image {
    min-height: 540px;
  }

  .case-story-panel .case-route {
    height: auto;
    overflow: visible;
  }

  .case-story-panel .case-route article {
    height: auto;
    min-height: 190px;
  }

  .case-workshop-track > .workshop {
    padding: 90px var(--page-x);
    grid-template-columns: 1fr;
  }

  .case-workshop-track .workshop-image {
    min-height: 570px;
  }
}

/* Ownership */

.ownership {
  position: relative;
  padding: clamp(100px, 12vw, 190px) var(--page-x);
  color: var(--white);
  background:
    radial-gradient(circle at 50% 45%, rgba(188, 220, 232, 0.08), transparent 38rem),
    #0c0f0d;
}

.ownership::before {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 100%;
  left: 0;
  height: clamp(72px, 7vw, 112px);
  content: "";
  background: linear-gradient(to bottom, rgba(12, 15, 13, 0), #0c0f0d);
  pointer-events: none;
}

.ownership-head {
  max-width: 1250px;
}

.ownership-head h2 {
  margin-top: 54px;
  font-size: clamp(62px, 8vw, 140px);
  line-height: 0.87;
}

.ownership-head h2 mark {
  max-width: 100%;
  margin-bottom: 0.06em;
  padding: 0.03em 0.055em 0.055em;
  display: inline-block;
  color: var(--ink);
  background: var(--lime);
  line-height: 0.92;
  white-space: nowrap;
}

.ownership-head h2 > span {
  color: var(--white);
}

.ownership-head > p:last-child {
  max-width: 690px;
  margin: 48px 0 0 auto;
  color: rgba(255, 255, 255, 0.63);
  font-size: clamp(16px, 1.3vw, 21px);
}

.ownership-orbit {
  position: relative;
  width: min(960px, 86vw);
  aspect-ratio: 1;
  margin: clamp(80px, 10vw, 150px) auto;
}

.orbit-line {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}

.orbit-one {
  inset: 12%;
}

.orbit-two {
  inset: 27%;
  border-style: dashed;
  animation: orbit-spin 34s linear infinite;
}

@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}

.orbit-core {
  position: absolute;
  z-index: 2;
  inset: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  border-radius: 50%;
  color: var(--ink);
  box-shadow: 0 0 0 16px rgba(221, 247, 95, 0.06), 0 0 100px rgba(221, 247, 95, 0.12);
}

.orbit-logo {
  width: clamp(36px, 4.1vw, 66px);
  height: clamp(36px, 4.1vw, 66px);
  margin-bottom: 8px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(17, 32, 43, 0.2);
}

.orbit-core small,
.orbit-core span {
  font-family: var(--mono);
  font-size: clamp(6px, 0.75vw, 10px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit-core strong {
  margin: 3px 0 7px;
  font-family: var(--display);
  font-size: clamp(34px, 4.5vw, 72px);
  font-weight: 520;
  letter-spacing: -0.06em;
}

.orbit-node {
  position: absolute;
  z-index: 3;
  width: clamp(105px, 12vw, 160px);
  min-height: clamp(105px, 12vw, 160px);
  padding: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: var(--ink);
  background: var(--paper-warm);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.orbit-node span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 8px;
}

.orbit-node b {
  font-family: var(--display);
  font-size: clamp(17px, 1.6vw, 26px);
  font-weight: 520;
  letter-spacing: -0.04em;
}

.orbit-voice { top: 0; left: 50%; transform: translateX(-50%); }
.orbit-wa { top: 28%; right: 0; background: #daf5df; }
.orbit-crm { right: 15%; bottom: 4%; background: var(--blue); }
.orbit-web { bottom: 4%; left: 15%; background: var(--sage-soft); }
.orbit-api { top: 28%; left: 0; background: var(--sand); }

.ownership-grid {
  margin-top: clamp(56px, 7vw, 90px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.ownership-grid article {
  min-height: 280px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.ownership-grid span {
  color: rgba(255, 255, 255, 0.44);
  font-family: var(--mono);
  font-size: 9px;
}

.ownership-grid h3 {
  margin-top: auto;
  font-size: clamp(29px, 2.5vw, 42px);
}

.ownership-grid p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.ownership-web {
  max-width: 1000px;
  margin: clamp(70px, 9vw, 130px) auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 64px);
  font-style: italic;
  line-height: 1.12;
  text-align: center;
}

/* Method */

.method {
  background: var(--paper-warm);
}

.method-heading {
  max-width: 1170px;
  margin: clamp(65px, 9vw, 130px) 0 clamp(65px, 8vw, 110px) auto;
}

.method-heading h2 {
  margin-top: 26px;
  font-size: clamp(58px, 7vw, 120px);
  line-height: 0.91;
}

.method-route {
  border-top: 1px solid var(--line);
}

.method-route article {
  min-height: 180px;
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 38px;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms ease, background 220ms ease;
}

.method-route article:hover {
  padding-right: 24px;
  padding-left: 24px;
  background: var(--sage-soft);
}

.method-route article > span,
.method-route small {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.09em;
}

.method-route article > div {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  align-items: center;
  gap: 40px;
}

.method-route h3 {
  font-size: clamp(40px, 4vw, 65px);
}

.method-route p {
  max-width: 480px;
  color: #596057;
  font-size: 13px;
}

/* Opportunities */

.opportunities {
  display: grid;
  grid-template-columns: 44% 56%;
  color: var(--white);
  background: var(--green);
}

.opportunities-copy {
  min-height: 780px;
  padding: clamp(90px, 10vw, 160px) clamp(35px, 6vw, 100px) clamp(80px, 9vw, 140px) var(--page-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line-light);
}

.opportunities-copy h2 {
  margin-top: 60px;
  font-size: clamp(58px, 6.5vw, 112px);
  line-height: 0.88;
}

.opportunities-copy h2 em {
  color: var(--lime);
}

.opportunities-copy > p:last-child {
  max-width: 480px;
  margin-top: 44px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.opportunities-list article {
  min-height: 155px;
  padding: 34px clamp(30px, 5vw, 80px);
  display: grid;
  grid-template-columns: 60px minmax(220px, 0.8fr) 1fr;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid var(--line-light);
  transition: color 220ms ease, background 220ms ease;
}

.opportunities-list article:hover {
  color: var(--ink);
  background: var(--lime);
}

.opportunities-list span {
  color: color-mix(in srgb, currentColor 45%, transparent);
  font-family: var(--mono);
  font-size: 9px;
}

.opportunities-list h3 {
  font-size: clamp(29px, 2.6vw, 44px);
}

.opportunities-list p {
  max-width: 380px;
  color: color-mix(in srgb, currentColor 58%, transparent);
  font-size: 12px;
}

/* Live 360 architect */

.live-audit {
  position: relative;
  isolation: isolate;
  padding: clamp(100px, 11vw, 170px) var(--page-x);
  overflow: hidden;
  color: var(--white);
  background: #090d0b;
}

.live-audit::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(188, 220, 232, 0.16), transparent 38%);
  background-size: 54px 54px, 54px 54px, auto;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.live-audit::after {
  position: absolute;
  z-index: -1;
  top: 14%;
  right: -12%;
  width: 430px;
  aspect-ratio: 1;
  content: "";
  background: rgba(221, 247, 95, 0.12);
  border-radius: 50%;
  filter: blur(120px);
}

.live-audit-head {
  display: grid;
  grid-template-columns: minmax(170px, 0.36fr) minmax(0, 1fr);
  gap: clamp(40px, 7vw, 120px);
  align-items: start;
}

.live-audit-head > div {
  max-width: 1050px;
}

.live-audit-head .overline {
  color: var(--lime);
}

.live-audit-head h2 {
  margin-top: 26px;
  font-size: clamp(62px, 7.7vw, 132px);
  line-height: 0.86;
}

.live-audit-head h2 em {
  color: var(--blue);
}

.live-audit-head > div > p:last-child {
  max-width: 690px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.63);
  font-size: clamp(15px, 1.3vw, 19px);
}

.voice-lab {
  --voice-accent: var(--lime);
  position: relative;
  min-height: 720px;
  margin-top: clamp(68px, 8vw, 120px);
  display: grid;
  grid-template-columns: minmax(210px, 0.78fr) minmax(460px, 1.7fr) minmax(210px, 0.82fr);
  overflow: hidden;
  background: rgba(13, 20, 16, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: clamp(22px, 3vw, 38px);
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.42);
}

.live-audit--voice-only .voice-lab {
  margin-top: 0;
}

.voice-brief,
.voice-outcomes {
  padding: clamp(30px, 3.2vw, 52px);
}

.voice-brief {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.voice-brief > div small,
.voice-outcomes-head small {
  color: rgba(255, 255, 255, 0.42);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
}

.voice-brief > div strong {
  margin-top: 18px;
  display: block;
  font-family: var(--serif);
  font-size: clamp(25px, 2.2vw, 36px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.03;
}

.voice-brief ol {
  margin: 48px 0 auto;
  padding: 0;
  list-style: none;
}

.voice-brief li {
  padding: 18px 0;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.voice-brief li > span {
  color: var(--voice-accent);
  font-family: var(--mono);
  font-size: 8px;
}

.voice-brief li p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.voice-brief li b {
  display: block;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.voice-privacy {
  padding-top: 22px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.34);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 8px;
}

.voice-privacy i {
  width: 6px;
  height: 6px;
  margin-top: 3px;
  flex: 0 0 auto;
  background: var(--blue);
  border-radius: 50%;
}

.voice-console {
  min-width: 0;
  display: grid;
  grid-template-rows: auto minmax(360px, 1fr) minmax(142px, auto) auto;
  background:
    radial-gradient(circle at center 38%, rgba(188, 220, 232, 0.1), transparent 44%),
    rgba(3, 8, 5, 0.48);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.voice-console-top,
.voice-controls {
  min-height: 62px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.voice-console-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.1em;
}

.voice-console-top > span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.52);
}

.voice-console-top i,
.voice-timer i {
  width: 7px;
  height: 7px;
  background: var(--voice-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(221, 247, 95, 0.09);
}

.voice-console-top b {
  color: var(--voice-accent);
  font-size: 8px;
  font-weight: 500;
}

.voice-orb-wrap {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.voice-orb-wrap::before {
  position: absolute;
  width: min(430px, 70%);
  aspect-ratio: 1;
  content: "";
  background: radial-gradient(circle, rgba(221, 247, 95, 0.13), rgba(188, 220, 232, 0.04) 48%, transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  transition: transform 500ms ease, opacity 500ms ease;
}

.voice-orbit {
  position: absolute;
  width: min(350px, 64%);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: border-color 400ms ease, transform 500ms ease;
}

.voice-orbit::after {
  position: absolute;
  top: 12%;
  left: 12%;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 22px rgba(188, 220, 232, 0.8);
}

.voice-orbit-two {
  width: min(445px, 80%);
  border-style: dashed;
  opacity: 0.45;
  transform: rotate(34deg);
}

.voice-orbit-two::after {
  inset: auto 17% 6% auto;
  width: 6px;
  height: 6px;
  background: var(--lime);
}

.voice-wave {
  position: absolute;
  z-index: 1;
  bottom: 18%;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  transition: opacity 300ms ease;
}

.voice-wave i {
  width: 3px;
  height: 12px;
  background: var(--voice-accent);
  border-radius: 999px;
  transform: scaleY(0.4);
}

.voice-trigger {
  position: relative;
  z-index: 2;
  width: clamp(190px, 18vw, 240px);
  aspect-ratio: 1;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 18px;
  color: var(--ink);
  background: var(--voice-accent);
  border: 0;
  border-radius: 50%;
  box-shadow:
    0 0 0 14px rgba(221, 247, 95, 0.05),
    0 25px 70px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.voice-trigger:hover {
  transform: scale(1.035);
  box-shadow:
    0 0 0 18px rgba(221, 247, 95, 0.08),
    0 28px 80px rgba(0, 0, 0, 0.4);
}

.voice-trigger:disabled {
  cursor: wait;
}

.voice-trigger-icon {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 19, 15, 0.28);
  border-radius: 50%;
}

.voice-trigger-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.voice-button-copy {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.voice-button-copy small {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.voice-button-copy strong {
  margin-top: 5px;
  font-family: var(--display);
  font-size: clamp(22px, 2.2vw, 31px);
  font-weight: 570;
  letter-spacing: -0.045em;
}

.voice-transcript {
  min-height: 142px;
  max-height: 202px;
  padding: 15px 24px;
  overflow-y: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.transcript-empty {
  min-height: 110px;
  display: grid;
  place-content: center;
  color: rgba(255, 255, 255, 0.36);
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  text-align: center;
}

.transcript-empty span {
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.28);
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0.16em;
}

.transcript-line {
  padding: 9px 0;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.transcript-line:last-child {
  border-bottom: 0;
}

.transcript-line span {
  padding-top: 2px;
  color: var(--blue);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.transcript-line.is-agent span {
  color: var(--lime);
}

.transcript-line p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.voice-controls {
  min-height: 58px;
}

.voice-timer {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--mono);
  font-size: 8px;
}

.voice-timer i {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.voice-controls > div {
  display: flex;
  gap: 8px;
}

.voice-controls button {
  min-height: 31px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 8px;
  cursor: pointer;
}

.voice-controls button:hover:not(:disabled) {
  color: var(--ink);
  background: var(--white);
}

.voice-controls button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.voice-outcomes {
  display: flex;
  flex-direction: column;
}

.voice-outcomes-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.voice-outcomes-head > span {
  width: 44px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--blue);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 8px;
}

.voice-outcomes ul {
  margin: 50px 0 auto;
}

.voice-outcomes li {
  min-height: 82px;
  padding: 17px 0;
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 11px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.voice-outcomes li > span {
  color: rgba(255, 255, 255, 0.25);
  font-family: var(--mono);
  font-size: 8px;
}

.voice-outcomes li b,
.voice-outcomes li small {
  display: block;
}

.voice-outcomes li b {
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 540;
  letter-spacing: -0.04em;
}

.voice-outcomes li small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
}

.voice-outcomes > p {
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
}

.live-audit-foot {
  margin: 30px 0 0 auto;
  max-width: 700px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 10px;
  text-align: right;
}

.live-audit-foot span {
  color: var(--white);
}

.voice-lab[data-call-state="connecting"] .voice-orbit,
.voice-lab[data-call-state="active"] .voice-orbit,
.voice-lab[data-call-state="listening"] .voice-orbit,
.voice-lab[data-call-state="speaking"] .voice-orbit {
  border-color: rgba(221, 247, 95, 0.28);
  animation: voice-spin 12s linear infinite;
}

.voice-lab[data-call-state="connecting"] .voice-orbit-two,
.voice-lab[data-call-state="active"] .voice-orbit-two,
.voice-lab[data-call-state="listening"] .voice-orbit-two,
.voice-lab[data-call-state="speaking"] .voice-orbit-two {
  animation-direction: reverse;
  animation-duration: 18s;
}

.voice-lab[data-call-state="connecting"] .voice-trigger {
  animation: voice-breathe 1.3s ease-in-out infinite;
}

.voice-lab[data-call-state="active"] .voice-trigger,
.voice-lab[data-call-state="listening"] .voice-trigger,
.voice-lab[data-call-state="speaking"] .voice-trigger {
  color: var(--white);
  background: #173d2f;
  box-shadow:
    0 0 0 14px rgba(221, 247, 95, 0.07),
    0 25px 70px rgba(0, 0, 0, 0.4);
}

.voice-lab[data-call-state="active"] .voice-timer i,
.voice-lab[data-call-state="listening"] .voice-timer i,
.voice-lab[data-call-state="speaking"] .voice-timer i {
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(221, 247, 95, 0.09);
}

.voice-lab[data-call-state="listening"] {
  --voice-accent: var(--blue);
}

.voice-lab[data-call-state="speaking"] .voice-wave {
  opacity: 1;
}

.voice-lab[data-call-state="speaking"] .voice-wave i {
  animation: voice-wave 720ms ease-in-out infinite alternate;
}

.voice-lab[data-call-state="speaking"] .voice-wave i:nth-child(2),
.voice-lab[data-call-state="speaking"] .voice-wave i:nth-child(8) {
  animation-delay: -180ms;
}

.voice-lab[data-call-state="speaking"] .voice-wave i:nth-child(3),
.voice-lab[data-call-state="speaking"] .voice-wave i:nth-child(7) {
  animation-delay: -360ms;
}

.voice-lab[data-call-state="speaking"] .voice-wave i:nth-child(4),
.voice-lab[data-call-state="speaking"] .voice-wave i:nth-child(6) {
  animation-delay: -90ms;
}

.voice-lab[data-call-state="error"] {
  --voice-accent: #ff8d78;
}

.voice-lab[data-call-state="error"] .voice-trigger {
  background: #ff8d78;
}

@keyframes voice-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes voice-breathe {
  50% {
    transform: scale(1.035);
  }
}

@keyframes voice-wave {
  to {
    transform: scaleY(2.4);
  }
}

/* Closing */

.closing {
  position: relative;
  min-height: 90svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #0c0f0d;
}

.closing > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0.35;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.38) 6%, #000 16%, #000 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.38) 6%, #000 16%, #000 100%);
}

.closing-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 15, 11, 0.68) 0%, rgba(8, 15, 11, 0.42) 43%, rgba(8, 15, 11, 0.04) 76%),
    linear-gradient(0deg, rgba(8, 15, 11, 0.15), transparent 50%);
}

.closing-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
  padding: 120px var(--page-x);
  display: grid;
}

.closing h2 {
  max-width: 820px;
  margin-top: 42px;
  font-size: clamp(68px, 8.6vw, 150px);
  line-height: 0.85;
}

.closing-dot {
  color: var(--lime);
  text-shadow: 0 0 26px rgba(221, 247, 95, 0.38);
}

.closing-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.closing .button {
  width: fit-content;
  min-width: clamp(290px, 25vw, 370px);
  min-height: 68px;
  margin: 46px auto 0;
  padding: 0 18px 0 34px;
  display: flex;
  justify-self: center;
  gap: 24px;
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow:
    0 0 0 8px rgba(221, 247, 95, 0.09),
    0 22px 55px rgba(0, 0, 0, 0.3),
    0 8px 26px rgba(221, 247, 95, 0.16);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.09em;
}

.closing .button:hover {
  background: var(--white);
  border-color: var(--white);
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.1),
    0 26px 62px rgba(0, 0, 0, 0.34);
}

.closing .button span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--lime);
  background: var(--ink);
  border-radius: 50%;
  font-size: 16px;
  transition: transform 220ms ease;
}

.closing .button:hover span {
  transform: translate(2px, -2px);
}

.closing-copy,
.closing > img {
  transition: opacity 780ms ease, transform 900ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

body.is-cta-zooming {
  overflow: hidden;
}

body.is-cta-zooming .closing-copy {
  opacity: 0.28;
  transform: scale(0.94);
}

body.is-cta-zooming .closing > img {
  transform: scale(1.1);
}

.cta-zoom-transition {
  --cta-x: 50vw;
  --cta-y: 50vh;
  position: fixed;
  z-index: 2500;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: var(--lime);
  clip-path: circle(0 at var(--cta-x) var(--cta-y));
  pointer-events: none;
}

.cta-zoom-transition.is-active {
  visibility: visible;
  opacity: 1;
  animation: cta-zoom-fill 900ms cubic-bezier(0.72, 0, 0.16, 1) both;
}

.cta-zoom-transition.is-active.is-revealing {
  opacity: 0;
  clip-path: circle(160vmax at var(--cta-x) var(--cta-y));
  animation: none;
  transition: opacity 480ms ease;
}

@keyframes cta-zoom-fill {
  0% {
    opacity: 0.94;
    clip-path: circle(26px at var(--cta-x) var(--cta-y));
  }
  56% {
    opacity: 1;
  }
  100% {
    clip-path: circle(160vmax at var(--cta-x) var(--cta-y));
  }
}

.lime-arrival {
  position: relative;
  min-height: 100svh;
  padding: clamp(110px, 13vh, 154px) var(--page-x) clamp(56px, 7vh, 84px);
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  background: var(--lime);
  outline: none;
}

.lime-arrival::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(17, 19, 15, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 15, 0.075) 1px, transparent 1px);
  background-size: clamp(52px, 5vw, 78px) clamp(52px, 5vw, 78px);
  mask-image: radial-gradient(circle at center, #000, transparent 76%);
}

.lime-arrival::after {
  position: absolute;
  z-index: -1;
  width: min(76vw, 1080px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(17, 19, 15, 0.17);
  border-radius: 50%;
  box-shadow:
    0 0 0 clamp(54px, 7vw, 104px) rgba(17, 19, 15, 0.025),
    0 0 0 clamp(112px, 14vw, 208px) rgba(17, 19, 15, 0.018);
}

.lime-arrival-copy {
  width: min(100%, 1100px);
  display: grid;
  justify-items: center;
  text-align: center;
}

.lime-arrival-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lime-arrival-kicker span {
  width: 8px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(17, 19, 15, 0.09);
}

.lime-arrival h2 {
  margin-top: clamp(28px, 4vh, 48px);
  font-family: var(--display);
  font-size: clamp(82px, 12.5vw, 198px);
  font-weight: 650;
  letter-spacing: -0.07em;
  line-height: 0.76;
}

.lime-arrival-copy > p:not(.lime-arrival-kicker) {
  max-width: 620px;
  margin-top: clamp(36px, 5vh, 56px);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
}

.lime-arrival-continue {
  min-width: clamp(280px, 24vw, 360px);
  min-height: 66px;
  margin-top: clamp(34px, 5vh, 54px);
  padding: 0 16px 0 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 20px 48px rgba(17, 19, 15, 0.2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.lime-arrival-continue span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
}

.lime-arrival-continue:hover {
  box-shadow: 0 26px 60px rgba(17, 19, 15, 0.27);
  transform: translateY(-3px);
}

.lime-arrival-signature {
  position: absolute;
  right: var(--page-x);
  bottom: clamp(24px, 4vh, 42px);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.15em;
}

.lime-arrival-signature span {
  font-weight: 700;
}

body.lime-arrival-active .site-header {
  color: var(--ink);
  background: var(--lime);
  border-bottom-color: rgba(17, 19, 15, 0.14);
}

body.lime-arrival-active .mobile-dock {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}

@media (max-width: 900px) {
  .lime-arrival {
    padding: 108px 20px 72px;
  }

  .lime-arrival::after {
    width: 118vw;
  }

  .lime-arrival h2 {
    font-size: clamp(74px, 20vw, 108px);
    line-height: 0.8;
  }

  .lime-arrival-copy > p:not(.lime-arrival-kicker) {
    max-width: 430px;
  }

  .lime-arrival-continue {
    width: min(100%, 360px);
    min-width: 0;
  }

  .lime-arrival-signature {
    right: 20px;
    bottom: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cta-zoom-transition.is-active {
    animation-duration: 1ms;
  }

  .closing-copy,
  .closing > img,
  .lime-arrival-continue {
    transition: none;
  }
}

/* Sistema 360 · CRM y voz en una sola pantalla */

.lime-system {
  position: relative;
  min-height: 100svh;
  padding: 92px clamp(18px, 2.6vw, 42px) clamp(44px, 5vh, 68px);
  overflow: hidden;
  isolation: isolate;
  color: var(--ink);
  background: var(--lime);
  outline: none;
}

.lime-system::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(17, 19, 15, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 19, 15, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 83% 44%, rgba(255, 255, 255, 0.34), transparent 30rem);
  background-size: 58px 58px, 58px 58px, auto;
  mask-image: linear-gradient(to bottom, transparent, #000 12%, #000 94%, transparent);
}

.lime-system::after {
  position: absolute;
  z-index: -1;
  top: 18%;
  right: -18vw;
  width: min(66vw, 980px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(17, 19, 15, 0.1);
  border-radius: 50%;
  box-shadow:
    0 0 0 86px rgba(17, 19, 15, 0.018),
    0 0 0 172px rgba(17, 19, 15, 0.012);
}

.lime-system-gate {
  max-width: 1760px;
  margin: 0 auto clamp(22px, 3vh, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 3vw, 38px);
  justify-items: center;
}

.lime-system-intro > p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.lime-system-intro > p span {
  width: 8px;
  height: 8px;
  background: var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(17, 19, 15, 0.09);
}

.lime-system-intro h2 {
  max-width: 1280px;
  margin: 16px auto 0;
  font-family: var(--display);
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 590;
  letter-spacing: -0.05em;
  line-height: 0.96;
  text-align: center;
  text-wrap: balance;
}

.lime-access-form {
  width: min(100%, 680px);
}

.lime-access-form label {
  display: block;
  margin-bottom: 9px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lime-access-form > div {
  height: 58px;
  padding: 5px 5px 5px 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(17, 19, 15, 0.3);
  border-radius: 999px;
  box-shadow: 0 16px 38px rgba(17, 19, 15, 0.08);
  transition: background 220ms ease, box-shadow 220ms ease;
}

.lime-access-form > div:focus-within {
  background: rgba(255, 255, 255, 0.46);
  box-shadow: 0 0 0 5px rgba(17, 19, 15, 0.08), 0 18px 44px rgba(17, 19, 15, 0.1);
}

.lime-access-form input {
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--sans);
  font-size: 15px;
}

.lime-access-form input::placeholder {
  color: rgba(17, 19, 15, 0.42);
}

.lime-access-form button {
  min-width: 132px;
  padding: 0 13px 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease;
}

.lime-access-form button:hover {
  background: var(--green);
  transform: translateY(-1px);
}

.lime-access-form button span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  font-size: 14px;
}

.lime-access-form button:disabled {
  color: rgba(255, 255, 255, 0.72);
  background: var(--green);
  cursor: default;
}

.lime-access-form > p {
  min-height: 16px;
  margin-top: 8px;
  padding-left: 18px;
  color: rgba(17, 19, 15, 0.58);
  font-size: 10px;
}

.lime-access-form > p.is-error {
  color: #8a2f1f;
}

.lime-system-stage {
  max-width: 1760px;
  min-height: max(590px, calc(100svh - 245px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(390px, 0.9fr) minmax(520px, 1.1fr);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(17, 19, 15, 0.36);
  border-radius: clamp(24px, 2.2vw, 36px);
  box-shadow: 0 32px 90px rgba(17, 19, 15, 0.12);
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 520ms ease,
    filter 620ms ease,
    transform 720ms cubic-bezier(0.2, 0.72, 0.2, 1),
    box-shadow 520ms ease;
}

.lime-system:not(.is-activated) .lime-system-stage {
  opacity: 0.42;
  filter: blur(2px) saturate(0.8);
  transform: scale(0.985);
  pointer-events: none;
}

.lime-system.is-activated .lime-system-stage {
  box-shadow: 0 42px 120px rgba(17, 19, 15, 0.17);
}

.lime-system-gate,
.lime-system-signature {
  transition:
    opacity 420ms ease,
    visibility 420ms ease,
    transform 520ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.lime-system-complete {
  position: absolute;
  z-index: 5;
  inset: 0;
  padding: 80px 24px;
  display: grid;
  place-content: center;
  gap: 18px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.94);
  pointer-events: none;
  transition:
    opacity 620ms ease 180ms,
    visibility 620ms ease 180ms,
    transform 820ms cubic-bezier(0.2, 0.72, 0.2, 1) 180ms;
}

.lime-system-complete span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
}

.lime-system-complete p {
  max-width: 1100px;
  font-family: var(--display);
  font-size: clamp(62px, 9.5vw, 156px);
  font-weight: 610;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-wrap: balance;
}

.lime-system.is-complete .lime-system-gate,
.lime-system.is-complete .lime-system-stage,
.lime-system.is-complete .lime-system-signature {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.96);
  pointer-events: none;
}

.lime-system.is-complete .lime-system-complete {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.lime-crm,
.lime-voice-panel {
  min-width: 0;
  min-height: 0;
  display: grid;
}

.lime-crm {
  grid-template-rows: 54px auto 1fr 52px;
  background: rgba(255, 255, 255, 0.16);
  border-right: 1px solid rgba(17, 19, 15, 0.28);
}

.lime-voice-panel {
  grid-template-rows: 54px minmax(250px, 1fr) minmax(150px, 0.48fr) 52px;
  background: rgba(221, 247, 95, 0.22);
}

.lime-panel-head {
  padding: 0 clamp(18px, 2vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid rgba(17, 19, 15, 0.22);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.lime-panel-head > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lime-panel-head > div > span {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(23, 61, 47, 0.1);
}

.lime-panel-head small {
  color: rgba(17, 19, 15, 0.54);
}

.lime-crm-contact {
  min-height: 94px;
  padding: 18px clamp(18px, 2vw, 30px);
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid rgba(17, 19, 15, 0.2);
}

.lime-crm-avatar {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--lime);
  background: var(--ink);
  border-radius: 50%;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 350;
}

.lime-crm-contact small {
  display: block;
  color: rgba(17, 19, 15, 0.52);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
}

.lime-crm-contact strong {
  max-width: 270px;
  margin-top: 5px;
  display: block;
  overflow: hidden;
  font-size: 14px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lime-crm-contact > span {
  padding: 7px 10px;
  color: rgba(17, 19, 15, 0.55);
  border: 1px solid rgba(17, 19, 15, 0.2);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
}

.lime-system.is-activated .lime-crm-contact > span {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.lime-crm-fields {
  min-height: 0;
  padding: 0 clamp(18px, 2vw, 30px);
  display: grid;
  align-content: stretch;
}

.lime-crm-fields article {
  position: relative;
  min-height: 112px;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr) 10px;
  gap: 16px;
  align-items: start;
  border-bottom: 1px solid rgba(17, 19, 15, 0.2);
  overflow: hidden;
  transition: background 280ms ease;
}

.lime-crm-fields article::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.52) 48%, transparent 76%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-110%);
}

.lime-crm-fields article::after {
  position: absolute;
  right: 16px;
  bottom: 13px;
  z-index: 2;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.12em;
}

.lime-crm-fields article > * {
  position: relative;
  z-index: 1;
}

.lime-crm-fields article.is-analyzing {
  background: rgba(255, 255, 255, 0.2);
}

.lime-crm-fields article.is-analyzing::before {
  opacity: 1;
  animation: lime-crm-scan 1.55s ease-in-out infinite;
}

.lime-crm-fields article.is-analyzing::after {
  content: "LEYENDO VOZ";
  color: var(--green);
}

.lime-crm-fields article.is-filled::after {
  content: "CAPTURADO ✓";
  color: rgba(23, 61, 47, 0.72);
}

.lime-crm-fields article:last-child {
  border-bottom: 0;
}

.lime-crm-fields article > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 19, 15, 0.25);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 7px;
}

.lime-crm-fields article small {
  display: block;
  color: rgba(17, 19, 15, 0.5);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lime-crm-fields article strong {
  margin-top: 10px;
  display: block;
  color: rgba(17, 19, 15, 0.43);
  font-family: var(--display);
  font-size: clamp(21px, 1.65vw, 29px);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 1.05;
  transition: color 280ms ease, transform 380ms ease;
}

.lime-crm-fields article > i {
  width: 8px;
  height: 8px;
  margin-top: 10px;
  background: transparent;
  border: 1px solid rgba(17, 19, 15, 0.3);
  border-radius: 50%;
}

.lime-crm-fields article.is-filled > span {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.lime-crm-fields article.is-filled strong {
  color: var(--ink);
  transform: translateX(3px);
}

.lime-crm-fields article.is-analyzing strong {
  color: rgba(17, 19, 15, 0.68);
  animation: lime-crm-listen 1.25s ease-in-out infinite;
}

.lime-crm-fields article.is-new strong,
.lime-crm-fields article.is-new li {
  animation: lime-crm-reveal 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.lime-crm-fields article.is-filled > i {
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 0 5px rgba(23, 61, 47, 0.09);
  animation: lime-crm-ping 520ms ease both;
}

.lime-crm-improvements ul {
  margin-top: 9px;
  display: grid;
  gap: 6px;
  list-style: none;
}

.lime-crm-improvements li {
  position: relative;
  padding-left: 15px;
  color: rgba(17, 19, 15, 0.48);
  font-size: clamp(11px, 0.8vw, 13px);
  line-height: 1.3;
}

.lime-crm-improvements li::before {
  position: absolute;
  top: 0.46em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: rgba(17, 19, 15, 0.24);
  border-radius: 50%;
}

.lime-crm-improvements.is-filled li {
  color: var(--ink);
}

.lime-crm-improvements.is-filled li::before {
  background: var(--green);
}

@keyframes lime-crm-ping {
  0% { transform: scale(0.6); }
  58% { transform: scale(1.5); }
  100% { transform: scale(1); }
}

@keyframes lime-crm-scan {
  0% { transform: translateX(-110%); }
  62%, 100% { transform: translateX(110%); }
}

@keyframes lime-crm-listen {
  50% { opacity: 0.56; }
}

@keyframes lime-crm-reveal {
  0% { opacity: 0; transform: translateY(9px); }
  100% { opacity: 1; transform: translateY(0); }
}

.lime-crm-foot,
.lime-voice-controls {
  padding: 0 clamp(18px, 2vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(17, 19, 15, 0.22);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lime-crm-foot > span,
.lime-voice-controls > span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.lime-crm-foot i,
.lime-voice-controls i {
  width: 7px;
  height: 7px;
  display: inline-block;
  background: rgba(17, 19, 15, 0.28);
  border-radius: 50%;
}

.lime-system.is-activated .lime-crm-foot i,
.lime-system-stage[data-call-state="active"] .lime-voice-controls i,
.lime-system-stage[data-call-state="listening"] .lime-voice-controls i,
.lime-system-stage[data-call-state="speaking"] .lime-voice-controls i {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(23, 61, 47, 0.09);
}

.lime-crm-foot small {
  color: rgba(17, 19, 15, 0.48);
}

.lime-wave-stage {
  position: relative;
  min-height: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.08) 38%, transparent 70%);
}

.lime-wave-stage canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lime-wave-axis {
  position: absolute;
  right: 6%;
  left: 6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 19, 15, 0.18), transparent);
}

.lime-voice-trigger {
  position: relative;
  z-index: 2;
  width: clamp(156px, 15vw, 212px);
  aspect-ratio: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  background: rgba(12, 15, 12, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 16px rgba(17, 19, 15, 0.035),
    0 28px 80px rgba(17, 19, 15, 0.2);
  cursor: pointer;
  transition:
    opacity 220ms ease,
    visibility 220ms ease,
    transform 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.lime-voice-trigger:hover {
  transform: scale(1.025);
}

.lime-system.is-activated .lime-voice-trigger {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.82);
}

.lime-mic {
  position: relative;
  width: 21px;
  height: 30px;
  margin-bottom: 4px;
  border: 2px solid currentColor;
  border-radius: 14px;
}

.lime-mic::before {
  position: absolute;
  right: -8px;
  bottom: -8px;
  left: -8px;
  height: 16px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  border-left: 2px solid currentColor;
  border-radius: 0 0 16px 16px;
}

.lime-mic::after {
  position: absolute;
  bottom: -14px;
  left: 50%;
  width: 2px;
  height: 7px;
  content: "";
  background: currentColor;
  transform: translateX(-50%);
}

.lime-voice-trigger small {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.13em;
}

.lime-voice-trigger strong {
  max-width: 150px;
  font-family: var(--display);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 560;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.lime-system-stage[data-call-state="connecting"] .lime-voice-trigger {
  animation: lime-voice-breathe 1.2s ease-in-out infinite;
}

.lime-system-stage[data-call-state="active"] .lime-voice-trigger,
.lime-system-stage[data-call-state="listening"] .lime-voice-trigger,
.lime-system-stage[data-call-state="speaking"] .lime-voice-trigger {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(17, 19, 15, 0.1);
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, 0.11),
    0 34px 90px rgba(17, 19, 15, 0.18);
}

.lime-system-stage[data-call-state="active"] .lime-voice-trigger small,
.lime-system-stage[data-call-state="listening"] .lime-voice-trigger small,
.lime-system-stage[data-call-state="speaking"] .lime-voice-trigger small {
  color: rgba(17, 19, 15, 0.52);
}

@keyframes lime-voice-breathe {
  50% { transform: scale(1.04); }
}

.lime-conversation {
  min-height: 0;
  padding: 16px clamp(18px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 9px;
  overflow-y: auto;
  border-top: 1px solid rgba(17, 19, 15, 0.2);
  scrollbar-width: none;
}

.lime-conversation::-webkit-scrollbar {
  display: none;
}

.lime-transcript-empty {
  margin: auto;
  max-width: 490px;
  color: rgba(17, 19, 15, 0.56);
  font-family: var(--serif);
  font-size: clamp(14px, 1.05vw, 17px);
  font-style: italic;
  line-height: 1.35;
  text-align: center;
}

.lime-transcript-empty span {
  margin-bottom: 8px;
  display: block;
  color: rgba(17, 19, 15, 0.42);
  font-family: var(--mono);
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0.13em;
}

.lime-transcript-line {
  max-width: 76%;
  padding: 10px 13px;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(17, 19, 15, 0.1);
  border-radius: 14px 14px 14px 4px;
  animation: lime-line-in 320ms ease both;
}

.lime-transcript-line.is-user {
  align-self: flex-end;
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
  border-radius: 14px 14px 4px 14px;
}

.lime-transcript-line span {
  display: block;
  margin-bottom: 4px;
  color: rgba(17, 19, 15, 0.46);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.12em;
}

.lime-transcript-line.is-user span {
  color: rgba(255, 255, 255, 0.62);
}

.lime-transcript-line p {
  font-size: 12px;
  line-height: 1.32;
}

@keyframes lime-line-in {
  from { opacity: 0; transform: translateY(8px); }
}

.lime-voice-controls > span b {
  font-size: 8px;
}

.lime-voice-controls > span small {
  color: rgba(17, 19, 15, 0.45);
}

.lime-voice-controls > div {
  display: flex;
  gap: 8px;
}

.lime-voice-controls button {
  min-height: 30px;
  padding: 0 12px;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(17, 19, 15, 0.24);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 7px;
  cursor: pointer;
}

.lime-voice-controls button:disabled {
  opacity: 0.35;
  cursor: default;
}

.lime-system-signature {
  margin-top: 16px;
  text-align: right;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.14em;
}

.lime-system-signature span {
  font-weight: 750;
}

@media (max-width: 1100px) {
  .lime-system-stage {
    grid-template-columns: minmax(340px, 0.88fr) minmax(440px, 1.12fr);
  }

  .lime-crm-fields article {
    min-height: 104px;
  }
}

@media (max-width: 900px) {
  .lime-system {
    padding: 88px 14px 34px;
    overflow: visible;
  }

  .lime-system-gate {
    margin-bottom: 20px;
    display: block;
  }

  .lime-system-intro h2 {
    max-width: 520px;
    font-size: clamp(34px, 9.4vw, 48px);
  }

  .lime-access-form {
    margin-top: 24px;
  }

  .lime-system-stage {
    min-height: 0;
    display: block;
    overflow: visible;
    border-radius: 24px;
  }

  .lime-crm {
    display: grid;
    grid-template-rows: 50px auto 1fr 48px;
    border-right: 0;
    border-bottom: 1px solid rgba(17, 19, 15, 0.28);
  }

  .lime-voice-panel {
    min-height: 720px;
    grid-template-rows: 50px 330px minmax(190px, 1fr) 50px;
  }

  .lime-voice-trigger {
    width: 174px;
  }

  .lime-system-signature {
    padding-right: 6px;
  }
}

@media (max-width: 560px) {
  .lime-access-form > div {
    height: auto;
    padding: 6px;
    grid-template-columns: 1fr;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .lime-access-form input {
    min-height: 54px;
    padding: 0 17px;
    background: rgba(255, 255, 255, 0.38);
    border: 1px solid rgba(17, 19, 15, 0.28);
    border-radius: 999px;
  }

  .lime-access-form button {
    min-height: 54px;
  }

  .lime-access-form > p {
    padding-left: 12px;
  }

  .lime-crm-contact {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .lime-crm-contact > span {
    display: none;
  }

  .lime-crm-fields article {
    grid-template-columns: 28px minmax(0, 1fr) 8px;
    gap: 12px;
  }

  .lime-crm-foot small,
  .lime-voice-controls > span small {
    display: none;
  }

  .lime-panel-head {
    padding: 0 16px;
  }

  .lime-panel-head small {
    max-width: 132px;
    overflow: hidden;
    text-align: right;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .lime-voice-controls {
    padding: 0 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lime-system-stage,
  .lime-crm-fields article strong,
  .lime-voice-trigger {
    transition: none;
  }

  .lime-crm-fields article.is-filled > i,
  .lime-system-stage[data-call-state="connecting"] .lime-voice-trigger,
  .lime-transcript-line {
    animation: none;
  }
}

/* Footer */

.site-footer {
  min-height: 0;
  padding: 22px var(--page-x) 18px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 16px 32px;
  color: var(--white);
  background: #090b09;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-brand {
  align-self: center;
  opacity: 0.72;
}

.footer-brand .brand-mark {
  width: 26px;
  height: 26px;
}

.footer-brand > span {
  font-size: 8px;
}

.site-footer > p {
  justify-self: end;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  text-align: right;
}

.footer-bottom {
  grid-column: 1 / -1;
  align-self: end;
  margin-top: 4px;
  padding-top: 13px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-nav,
.footer-legal {
  display: flex;
  gap: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
}

.footer-nav {
  justify-content: center;
}

.footer-legal {
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--lime);
}

.footer-bottom > small {
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mobile-dock {
  display: none;
}

/* Corporate lime accent system */

.eyebrow > span {
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(221, 247, 95, 0.15);
}

.section-label > span,
.section-label-light > span {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
  box-shadow: 0 0 0 5px rgba(221, 247, 95, 0.06);
}

.overline,
.feature-number,
.feature-list span,
.workshop-steps span,
.method-route article > span,
.method-route small,
.crm-stats em {
  color: var(--lime-deep);
}

.ownership-grid span,
.opportunities-list span {
  color: rgba(221, 247, 95, 0.7);
}

.site-nav a::after,
.portal-readout i,
.portal-input i {
  background: var(--lime);
}

.text-link {
  border-bottom-color: var(--lime);
}

.play-ring {
  border-color: rgba(221, 247, 95, 0.78);
  box-shadow: 0 0 0 8px rgba(221, 247, 95, 0.06);
}

.portal-bar > b,
.portal-prompt-bottom button,
.portal-dashboard-head button,
.portal-dashboard > aside strong,
.crm-main-head button {
  color: var(--ink);
  background: var(--lime);
}

.portal-prompt-bottom button b {
  color: var(--ink);
}

.portal-row > b,
.crm-row > b {
  color: var(--ink);
  background: var(--lime);
}

.portal-stage[data-phase="outcome"] .portal-row.is-target {
  box-shadow: inset 3px 0 0 var(--lime);
}

.journey-card:not(.journey-card-lime) .journey-top i {
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(221, 247, 95, 0.12);
}

.journey-card-lime .journey-top i {
  background: var(--ink);
}

.call-pulse {
  background: rgba(221, 247, 95, 0.18);
  border: 1px solid var(--lime);
}

.call-pulse::before {
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(221, 247, 95, 0.14);
}

.growth-tags span {
  border-color: rgba(169, 198, 41, 0.78);
}

.case-route article::before {
  background: var(--lime);
  border-color: rgba(221, 247, 95, 0.52);
}

.method-route article:hover {
  background: rgba(221, 247, 95, 0.3);
}

.live-audit::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 48%, rgba(221, 247, 95, 0.14), transparent 38%);
  background-size: 54px 54px, 54px 54px, auto;
}

.live-audit-head h2 em,
.transcript-line span,
.transcript-line.is-agent span {
  color: var(--lime);
}

.voice-privacy i,
.voice-orbit::after,
.voice-orbit-two::after {
  background: var(--lime);
  box-shadow: 0 0 22px rgba(221, 247, 95, 0.72);
}

.voice-outcomes-head > span {
  color: var(--ink);
  background: var(--lime);
}

.voice-outcomes li > span {
  color: rgba(221, 247, 95, 0.68);
}

.voice-lab[data-call-state="listening"] {
  --voice-accent: var(--lime);
}

.voice-lab[data-call-state="active"] .voice-trigger,
.voice-lab[data-call-state="listening"] .voice-trigger,
.voice-lab[data-call-state="speaking"] .voice-trigger {
  color: var(--ink);
  background: var(--lime);
}

.voice-controls button:hover:not(:disabled) {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

/* Motion */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.js .hero-media[data-reveal] {
  transform: none;
}

.js .hero-media[data-reveal].is-visible {
  transform: none;
}

/* Tablet */

@media (max-width: 1180px) {
  .site-nav {
    gap: 18px;
  }

  .hero {
    grid-template-columns: 56% 44%;
  }

  .hero h1 {
    font-size: clamp(62px, 8.4vw, 100px);
  }

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

  .journey-card {
    min-height: 500px;
  }

  .film-heading {
    grid-template-columns: 0.4fr 1fr;
  }

  .film-heading > p:last-child {
    grid-column: 2;
  }

  .editorial-feature,
  .feature-growth {
    grid-template-columns: 48% 52%;
  }

  .feature-crm {
    grid-template-columns: 57% 43%;
  }

  .crm-window {
    transform: perspective(1300px) rotateY(5deg) scale(0.9);
    transform-origin: left center;
  }

  .case-story {
    grid-template-columns: 0.8fr 1.2fr;
  }

  .workshop {
    gap: 60px;
  }
}

/* Mobile/tablet nav */

@media (max-width: 900px) {
  .site-header {
    height: 68px;
    padding: 0 18px;
    grid-template-columns: auto 1fr auto;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    padding: 0;
    justify-self: end;
    display: grid;
    place-content: center;
    gap: 6px;
  }

  .menu-toggle > span:not(.sr-only) {
    width: 24px;
    height: 1px;
    display: block;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    inset: 0;
    padding: 120px 28px 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    color: var(--ink);
    background: var(--lime);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 260ms ease, visibility 260ms ease, transform 260ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    width: 100%;
    padding: 18px 0;
    color: var(--ink);
    border-bottom: 1px solid rgba(17, 19, 15, 0.2);
    font-family: var(--display);
    font-size: clamp(34px, 8vw, 56px);
    letter-spacing: -0.04em;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 100svh;
    display: block;
    color: var(--white);
    background: #647172;
  }

  .hero-copy {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 100svh;
    padding: 118px 22px 126px;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    background:
      linear-gradient(180deg, rgba(6, 12, 9, 0.16) 0%, rgba(6, 12, 9, 0.02) 28%, rgba(6, 12, 9, 0.82) 82%, rgba(6, 12, 9, 0.94) 100%);
  }

  .hero-media {
    position: absolute;
    inset: 0;
    min-height: 100svh;
  }

  .hero-media figcaption {
    display: none;
  }

  .hero .eyebrow,
  .hero-lede,
  .hero-note {
    color: rgba(255, 255, 255, 0.78);
  }

  .hero .eyebrow > span {
    background: var(--lime);
  }

  .hero h1 {
    margin-top: 27px;
    font-size: clamp(62px, 16vw, 100px);
  }

  .hero h1.hero-title-statement {
    font-size: clamp(50px, 9vw, 76px);
    line-height: 0.92;
  }

  .hero h1 em {
    color: var(--lime);
  }

  .hero .accent-360 {
    color: var(--lime);
    text-shadow: none;
  }

  .hero-lede {
    max-width: 620px;
    margin-top: 25px;
    font-size: 15px;
  }

  .hero-actions {
    margin-top: 26px;
    justify-content: center;
  }

  .hero-actions .button-ink {
    color: var(--ink);
    background: var(--white);
  }

  .hero-actions .text-link {
    color: var(--white);
  }

  .hero-note {
    display: none;
  }

  .hero-rail {
    grid-template-columns: repeat(3, 1fr);
    min-height: 88px;
  }

  .hero-rail span {
    min-height: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .statement {
    grid-template-columns: 1fr;
    gap: 58px;
  }

  .statement h2 {
    font-size: clamp(50px, 11vw, 88px);
  }

  .statement-intro {
    margin-left: 0;
  }

  .consulting-adventure {
    height: clamp(660px, 84svh, 780px);
  }

  .consulting-panel {
    padding-right: clamp(34px, 5vw, 58px);
    padding-left: clamp(34px, 5vw, 58px);
  }

  .consulting-progress {
    right: 14px;
  }

  .film-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .film-heading > p:last-child {
    grid-column: auto;
  }

  .film-shell {
    aspect-ratio: 16 / 10;
  }

  .portal-section {
    height: 300svh;
  }

  .portal-sticky {
    top: 68px;
    height: calc(100svh - 68px);
    grid-template-columns: 1fr;
    grid-template-rows: 42% 58%;
  }

  .portal-copy {
    padding: 28px var(--page-x) 24px;
    justify-content: center;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .portal-copy h2 {
    margin-top: 20px;
    font-size: clamp(43px, 8vw, 67px);
  }

  .portal-copy > p:not(.section-label, .portal-scroll-hint) {
    max-width: 610px;
    margin-top: 16px;
    font-size: 13px;
  }

  .portal-readout {
    max-width: 610px;
    margin-top: 20px;
  }

  .portal-scroll-hint {
    display: none;
  }

  .portal-stage {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .portal-browser {
    width: min(790px, calc(100% - 42px));
    max-height: calc(100% - 32px);
  }

  .system-title {
    margin-left: 0;
  }

  .editorial-feature,
  .feature-crm,
  .feature-growth {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .feature-copy {
    min-height: auto;
  }

  .feature-media,
  .growth-media {
    min-height: 720px;
  }

  .feature-crm .feature-copy {
    order: 0;
  }

  .crm-canvas {
    min-height: 670px;
    padding: 55px 0 55px 35px;
  }

  .crm-window {
    width: 800px;
    transform: perspective(1300px) rotateY(5deg) scale(0.85);
    transform-origin: left center;
  }

  .case-metrics,
  .ownership-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-story {
    grid-template-columns: 1fr;
  }

  .case-image {
    position: relative;
    top: auto;
    min-height: 680px;
  }

  .workshop {
    grid-template-columns: 1fr;
  }

  .workshop-image {
    min-height: 700px;
  }

  .ownership-orbit {
    left: 50%;
    width: min(820px, 96vw);
    margin-right: 0;
    margin-left: 0;
    transform: translateX(-50%);
  }

  .js .ownership-orbit[data-reveal] {
    transform: translate(-50%, 28px);
  }

  .js .ownership-orbit[data-reveal].is-visible {
    transform: translate(-50%, 0);
  }

  .method-route article {
    grid-template-columns: 50px 1fr auto;
  }

  .method-route article > div {
    grid-template-columns: 0.6fr 1fr;
  }

  .live-audit-head {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .live-audit-head > div {
    max-width: none;
  }

  .voice-lab {
    grid-template-columns: minmax(210px, 0.72fr) minmax(0, 1.5fr);
  }

  .voice-console {
    border-right: 0;
  }

  .voice-outcomes {
    min-height: 270px;
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr) 190px;
    align-items: center;
    gap: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .voice-outcomes ul {
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }

  .voice-outcomes li {
    min-height: 130px;
    padding: 15px;
    grid-template-columns: 1fr;
    align-content: center;
    border-top: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .voice-outcomes > p {
    padding: 0;
    border-top: 0;
  }

  .opportunities {
    grid-template-columns: 1fr;
  }

  .opportunities-copy {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
  }

  .footer-nav,
  .footer-legal {
    flex-wrap: wrap;
  }

  .mobile-dock {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 10px;
    left: 12px;
    height: 64px;
    padding: 5px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    color: var(--white);
    background: rgba(9, 12, 9, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    box-shadow: 0 14px 45px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(17px);
    -webkit-backdrop-filter: blur(17px);
    transition: opacity 240ms ease, transform 240ms ease;
  }

  body.consulting-in-view .mobile-dock {
    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
  }

  .mobile-dock a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border-radius: 13px;
    font-size: 8px;
  }

  .mobile-dock a:hover,
  .mobile-dock a:focus {
    color: var(--ink);
    background: var(--lime);
  }

  .mobile-dock span {
    font-size: 14px;
  }

  .mobile-dock .mobile-brand-icon {
    width: 19px;
    height: 19px;
    display: block;
  }

  .mobile-brand-icon img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 50%;
  }

  .site-footer {
    padding-bottom: 90px;
  }
}

/* Small mobile */

@media (max-width: 620px) {
  :root {
    --page-x: 20px;
    --radius: 20px;
  }

  .section-pad {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .brand-mark {
    width: 33px;
    height: 33px;
  }

  .brand > span {
    font-size: 8px;
  }

  .hero-copy {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero h1 {
    font-size: clamp(60px, 18vw, 84px);
    line-height: 0.86;
  }

  .hero h1.hero-title-statement {
    font-size: clamp(43px, 9vw, 56px);
    line-height: 0.92;
  }

  .mobile-title-break {
    display: inline;
  }

  .hero-actions {
    width: 100%;
    align-items: center;
    flex-direction: column;
    gap: 16px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .statement {
    gap: 48px;
  }

  .statement h2 {
    font-size: clamp(46px, 13vw, 68px);
  }

  .consulting-adventure {
    height: 760px;
    margin-top: 38px;
  }

  .consulting-adventure-bar {
    min-height: 64px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .consulting-adventure-bar p:last-child {
    font-size: 0;
  }

  .consulting-adventure-bar p:last-child span {
    font-size: 18px;
  }

  .consulting-half {
    width: 100%;
    height: 50%;
  }

  .consulting-half-left {
    top: 0;
    left: 0;
    transform: translateX(-104%);
  }

  .consulting-half-right {
    top: 50%;
    left: 0;
    transform: translateX(104%);
  }

  .consulting-page.is-active .consulting-half {
    transform: translateX(0);
  }

  .consulting-panel {
    padding-right: 28px;
    padding-left: 28px;
  }

  .consulting-half-left.consulting-panel {
    padding-top: 76px;
    padding-bottom: 16px;
  }

  .consulting-half-right.consulting-panel {
    padding-top: 22px;
    padding-bottom: 58px;
  }

  .consulting-panel::before {
    display: none;
  }

  .consulting-step {
    margin-bottom: 16px;
  }

  .consulting-panel h3 {
    font-size: clamp(29px, 8.4vw, 35px);
    line-height: 0.96;
  }

  .consulting-panel > p:not(.consulting-step) {
    margin-top: 13px;
    font-size: 13px;
    line-height: 1.4;
  }

  .consulting-panel ul {
    margin-top: 13px;
  }

  .consulting-panel li {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 11px;
  }

  .consulting-panel li::before {
    top: 11px;
  }

  .consulting-image-caption {
    right: 26px;
    bottom: 70px;
    left: 26px;
    font-size: 18px;
  }

  .consulting-progress {
    right: 12px;
    gap: 8px;
  }

  .consulting-progress button {
    width: 32px;
    height: 32px;
  }

  .consulting-controls {
    bottom: 16px;
  }

  .consulting-controls button {
    width: 38px;
    height: 38px;
  }

  .consulting-result-metrics {
    margin-top: 20px;
  }

  .consulting-result-metrics span {
    padding: 11px 5px;
    font-size: 8px;
  }

  .film-section {
    padding-top: 84px;
    padding-bottom: 84px;
  }

  .film-heading h2 {
    font-size: 51px;
  }

  .film-shell {
    aspect-ratio: 16 / 9;
    border-radius: 20px;
  }

  .film-player {
    object-fit: contain;
  }

  .play-ring {
    width: 64px;
    height: 64px;
  }

  .play-copy small {
    display: none;
  }

  .film-corner {
    font-size: 7px;
  }

  .film-corner-top {
    top: 18px;
    left: 18px;
  }

  .film-corner-bottom {
    right: 18px;
    bottom: 18px;
  }

  .portal-section {
    height: 270svh;
  }

  .portal-sticky {
    grid-template-rows: 43% 57%;
  }

  .portal-copy {
    padding: 24px 20px 18px;
  }

  .portal-copy .section-label {
    gap: 10px;
    font-size: 8px;
  }

  .portal-copy .section-label > span {
    width: 29px;
    height: 29px;
  }

  .portal-copy h2 {
    margin-top: 16px;
    font-size: clamp(38px, 11.7vw, 49px);
    line-height: 0.88;
  }

  .portal-copy > p:not(.section-label, .portal-scroll-hint) {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.4;
  }

  .portal-readout {
    margin-top: 14px;
  }

  .portal-readout > span {
    font-size: 7px;
  }

  .portal-readout > div {
    margin-top: 8px;
  }

  .portal-browser {
    width: calc(100% - 24px);
    max-height: calc(100% - 22px);
    border-radius: 15px;
  }

  .portal-bar {
    min-height: 27px;
    padding: 0 9px;
  }

  .portal-dots {
    gap: 3px;
  }

  .portal-dots i {
    width: 4px;
    height: 4px;
  }

  .portal-bar > span {
    font-size: 4px;
  }

  .portal-bar > b {
    width: 18px;
    height: 18px;
    border-radius: 5px;
    font-size: 4px;
  }

  .portal-prompt {
    padding: 8%;
  }

  .portal-prompt-label {
    font-size: 5px;
  }

  .portal-input {
    min-height: 47px;
    margin-top: 9px;
    padding: 0 12px;
    border-radius: 9px;
    font-size: clamp(17px, 5.3vw, 21px);
  }

  .portal-prompt-bottom {
    margin-top: 10px;
    gap: 6px;
  }

  .portal-prompt-bottom span {
    padding: 3px 4px;
    font-size: 3.8px;
  }

  .portal-prompt-bottom button {
    min-height: 26px;
    padding: 0 8px;
    font-size: 5px;
  }

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

  .portal-dashboard > aside {
    display: none;
  }

  .portal-dashboard-main {
    padding: 4%;
  }

  .portal-dashboard-head small {
    font-size: 4px;
  }

  .portal-dashboard-head h3 {
    margin-top: 2px;
    font-size: 16px;
  }

  .portal-dashboard-head button {
    min-height: 22px;
    padding: 0 7px;
    font-size: 4px;
  }

  .portal-dashboard-stats {
    margin-top: 3%;
    gap: 1%;
  }

  .portal-dashboard-stats article {
    min-height: 54px;
    padding: 6%;
    border-radius: 7px;
  }

  .portal-dashboard-stats small,
  .portal-dashboard-stats span {
    font-size: 3.7px;
  }

  .portal-dashboard-stats strong {
    margin-top: 4px;
    font-size: 16px;
  }

  .portal-table {
    margin-top: 2%;
    border-radius: 7px;
  }

  .portal-row {
    min-height: 25px;
    grid-template-columns: 1.15fr 0.7fr 1.1fr 0.55fr;
    gap: 3px;
    font-size: 3.8px;
  }

  .portal-row-head {
    min-height: 17px;
  }

  .portal-row > b {
    padding: 2px 3px;
    font-size: 3px;
  }

  .portal-avatar {
    width: 11px;
  }

  .portal-result {
    inset: 6%;
    border-radius: 10px;
  }

  .portal-result-check {
    width: 34px;
    font-size: 15px;
  }

  .portal-result > small {
    font-size: 4px;
  }

  .portal-result > strong {
    font-size: 21px;
  }

  .portal-result > div:last-child span {
    padding: 3px 5px;
    font-size: 3.5px;
  }

  .portal-pointer {
    width: 22px;
    height: 27px;
  }

  .system-title h2 {
    font-size: 47px;
  }

  .journey-grid {
    grid-template-columns: 1fr;
  }

  .journey-card {
    min-height: 440px;
  }

  .journey-card > svg {
    margin-top: 55px;
  }

  .feature-copy {
    padding: 88px 20px;
  }

  .feature-copy h2 {
    font-size: 51px;
  }

  .feature-media,
  .growth-media {
    min-height: 610px;
  }

  .feature-voice .feature-media > img {
    object-position: 54% center;
  }

  .call-card {
    top: 10%;
    right: 12px;
    left: 12px;
    min-width: 0;
  }

  .transcript-card {
    right: 12px;
    left: 12px;
  }

  .crm-canvas {
    min-height: 590px;
    padding: 20px 0 20px 20px;
  }

  .crm-window {
    width: 760px;
    transform: perspective(1300px) rotateY(5deg) scale(0.72);
    transform-origin: left center;
  }

  .message-stack {
    right: 14px;
    left: 14px;
  }

  .message-bubble {
    max-width: 90%;
  }

  .live-audit {
    padding: 92px 12px;
  }

  .live-audit-head {
    padding: 0 8px;
    gap: 42px;
  }

  .live-audit-head h2 {
    margin-top: 22px;
    font-size: 52px;
  }

  .live-audit-head > div > p:last-child {
    margin-top: 28px;
    font-size: 14px;
  }

  .voice-lab {
    margin-top: 54px;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
  }

  .voice-console {
    order: 0;
    grid-template-rows: auto minmax(330px, 1fr) minmax(150px, auto) auto;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .voice-console-top,
  .voice-controls {
    padding: 0 16px;
  }

  .voice-console-top {
    min-height: 66px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }

  .voice-orb-wrap {
    min-height: 330px;
  }

  .voice-orbit {
    width: 280px;
  }

  .voice-orbit-two {
    width: 340px;
  }

  .voice-trigger {
    width: 190px;
  }

  .voice-button-copy strong {
    font-size: 24px;
  }

  .voice-transcript {
    min-height: 150px;
    max-height: 230px;
    padding: 14px 16px;
  }

  .transcript-line {
    grid-template-columns: 42px 1fr;
    gap: 8px;
  }

  .voice-controls {
    min-height: 66px;
  }

  .voice-controls button {
    padding: 0 10px;
  }

  .voice-brief {
    order: 1;
    min-height: 520px;
    padding: 34px 26px;
  }

  .voice-brief ol {
    margin-top: 38px;
  }

  .voice-outcomes {
    order: 2;
    min-height: auto;
    padding: 34px 26px;
    display: block;
  }

  .voice-outcomes ul {
    margin-top: 38px;
    display: block;
  }

  .voice-outcomes li {
    min-height: 82px;
    padding: 17px 0;
    grid-template-columns: 28px 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .voice-outcomes > p {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .live-audit-foot {
    margin: 24px 8px 0;
    text-align: left;
  }

  .case-study {
    padding-top: 95px;
  }

  .case-head h2 {
    margin-top: 40px;
    font-size: 54px;
  }

  .case-head > p:last-child {
    margin-left: 0;
  }

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

  .case-metrics article {
    min-height: 225px;
    padding: 20px;
  }

  .case-metrics strong {
    font-size: 62px;
  }

  .case-metrics p {
    font-size: 10px;
  }

  .case-image {
    min-height: 540px;
  }

  .case-route {
    padding-left: 45px;
  }

  .case-route article {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }

  .case-route article::before {
    left: -34px;
  }

  .case-route::before,
  .case-route::after {
    left: 17px;
  }

  .case-route h3 {
    font-size: 32px;
  }

  .workshop {
    padding-top: 90px;
  }

  .workshop-image {
    min-height: 570px;
  }

  .workshop-copy h2 {
    font-size: 50px;
  }

  .appointment-card {
    right: 12px;
    left: 12px;
  }

  .ownership {
    padding-top: 95px;
  }

  .ownership-head h2 {
    font-size: 53px;
  }

  .ownership-head > p:last-child {
    margin-left: 0;
  }

  .ownership-orbit {
    width: 148vw;
    margin-top: 65px;
    margin-bottom: 65px;
  }

  .orbit-node {
    width: 100px;
    min-height: 100px;
  }

  .ownership-grid {
    grid-template-columns: 1fr;
  }

  .ownership-grid article {
    min-height: 220px;
  }

  .ownership-web {
    font-size: 31px;
  }

  .method-heading h2 {
    font-size: 50px;
  }

  .method-route article {
    min-height: 210px;
    padding: 28px 0;
    grid-template-columns: 34px 1fr;
    gap: 15px;
  }

  .method-route article > div {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .method-route article > small {
    display: none;
  }

  .method-route h3 {
    font-size: 38px;
  }

  .opportunities-copy {
    padding: 88px 20px;
  }

  .opportunities-copy h2 {
    margin-top: 42px;
    font-size: 52px;
  }

  .opportunities-list article {
    min-height: 190px;
    padding: 28px 20px;
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .opportunities-list p {
    grid-column: 2;
  }

  .opportunities-list h3 {
    font-size: 31px;
  }

  .closing {
    min-height: 86svh;
  }

  .closing > img {
    object-position: 34% center;
  }

  .closing-overlay {
    background: linear-gradient(0deg, rgba(8, 15, 11, 0.72) 4%, rgba(8, 15, 11, 0.38) 66%, rgba(8, 15, 11, 0.1));
  }

  .closing-copy {
    width: 100%;
    margin: 0;
    padding: 110px 20px 105px;
  }

  .closing h2 {
    font-size: 58px;
  }

  .closing .button {
    width: min(100%, 360px);
    min-width: 0;
    margin-right: auto;
    margin-left: auto;
  }

  .site-footer {
    min-height: 0;
    padding: 22px 20px 90px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .site-footer > p,
  .footer-bottom {
    grid-column: auto;
  }

  .site-footer > p {
    display: none;
  }

  .footer-bottom {
    margin-top: 0;
    padding-top: 12px;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .footer-nav {
    display: none;
  }

  .footer-legal {
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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

  .portal-section {
    height: auto;
  }

  .portal-sticky {
    position: relative;
    top: auto;
    min-height: 100svh;
  }

  .portal-prompt,
  .portal-pointer {
    display: none;
  }

  .portal-dashboard {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

/* Section 02 · one-screen business diagnosis */

.statement.section-pad {
  height: 100svh;
  min-height: 0;
  padding-top: clamp(94px, 11vh, 118px);
  padding-right: var(--page-x);
  padding-bottom: clamp(24px, 4vh, 38px);
  padding-left: var(--page-x);
  grid-template-columns: minmax(190px, 0.3fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 112px);
  overflow: hidden;
}

.statement .statement-copy {
  width: 100%;
  max-width: 1120px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.statement .statement-kicker {
  margin-bottom: 10px;
  font-size: clamp(19px, 1.8vw, 28px);
}

.statement .statement-copy > h2 {
  max-width: 1080px;
  font-size: clamp(52px, 5.4vw, 82px);
  line-height: 0.91;
}

.statement .statement-intro {
  max-width: 800px;
  margin-top: clamp(16px, 2.4vh, 24px);
  margin-left: 0;
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.46;
}

.consulting-summary {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(13, 17, 13, 0.22);
  border-bottom: 1px solid rgba(13, 17, 13, 0.22);
}

.consulting-summary article {
  min-height: clamp(150px, 20vh, 184px);
  padding: clamp(17px, 2.2vh, 24px) clamp(18px, 2vw, 30px);
  display: grid;
  grid-template-rows: auto 1fr;
  border-left: 1px solid rgba(13, 17, 13, 0.17);
  transition: color 220ms ease, background-color 220ms ease;
}

.consulting-summary article:last-child {
  border-right: 1px solid rgba(13, 17, 13, 0.17);
}

.consulting-summary article:hover {
  background: var(--lime);
}

.consulting-summary article > span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.consulting-summary article:hover > span {
  background: var(--paper);
}

.consulting-summary article > div {
  align-self: end;
}

.consulting-summary h3 {
  font-size: clamp(22px, 2vw, 31px);
  line-height: 1;
}

.consulting-summary p {
  max-width: 310px;
  margin-top: 9px;
  color: #51564f;
  font-size: clamp(12px, 0.93vw, 14px);
  line-height: 1.4;
}

.consulting-summary article:hover p {
  color: #2c3125;
}

.consulting-deliverable {
  min-height: clamp(54px, 7vh, 66px);
  margin-top: 14px;
  padding: 12px clamp(18px, 2.2vw, 30px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
  color: var(--ink);
  background: var(--lime);
}

.consulting-deliverable p {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.25;
}

.consulting-deliverable span {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .statement.section-pad {
    padding-top: 74px;
    padding-bottom: 10px;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 6px;
  }

  .statement .section-label {
    min-height: 30px;
  }

  .statement .section-label > span {
    width: 30px;
    height: 30px;
  }

  .statement .statement-copy {
    min-height: 0;
  }

  .statement .statement-kicker {
    margin-bottom: 7px;
    font-size: clamp(16px, 4.6vw, 20px);
  }

  .statement .statement-copy > h2 {
    max-width: 620px;
    font-size: clamp(38px, 10vw, 58px);
    line-height: 0.9;
  }

  .statement .statement-intro {
    max-width: 650px;
    margin-top: 12px;
    font-size: clamp(13px, 2.8vw, 16px);
    line-height: 1.38;
  }

  .consulting-summary {
    grid-template-columns: 1fr;
  }

  .consulting-summary article {
    min-height: 0;
    padding: 10px 0;
    grid-template-columns: 31px 1fr;
    grid-template-rows: auto;
    gap: 14px;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(13, 17, 13, 0.14);
    border-left: 0;
  }

  .consulting-summary article:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .consulting-summary article > span {
    width: 27px;
    height: 27px;
  }

  .consulting-summary article > div {
    align-self: center;
  }

  .consulting-summary h3 {
    font-size: clamp(18px, 4.7vw, 23px);
  }

  .consulting-summary p {
    max-width: none;
    margin-top: 4px;
    font-size: clamp(11px, 2.7vw, 13px);
    line-height: 1.32;
  }

  .consulting-deliverable {
    min-height: 0;
    margin-top: 10px;
    padding: 10px 14px;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .consulting-deliverable p {
    gap: 10px;
    font-size: clamp(11px, 2.8vw, 13px);
  }
}

@media (max-width: 620px) and (max-height: 760px) {
  .statement.section-pad {
    padding-top: 74px;
    padding-bottom: 10px;
    gap: 7px;
  }

  .statement .section-label > span {
    width: 30px;
    height: 30px;
  }

  .statement .statement-kicker {
    margin-bottom: 4px;
    font-size: 15px;
  }

  .statement .statement-copy > h2 {
    font-size: clamp(34px, 9.5vw, 42px);
  }

  .statement .statement-intro {
    margin-top: 8px;
    font-size: 12px;
  }

  .consulting-summary article {
    padding: 7px 0;
  }

  .consulting-summary p {
    font-size: 10.5px;
  }

  .consulting-deliverable {
    margin-top: 6px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
}

/* Point 01 · premium consultation block */

.statement.section-pad {
  height: 100svh;
  min-height: 0;
  padding: clamp(94px, 11vh, 116px) var(--page-x) clamp(22px, 3.5vh, 34px);
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr);
  gap: 0;
  place-items: center;
  place-content: center;
  overflow: hidden;
  background: #ebe9e2;
}

.consulting-card {
  position: relative;
  width: 100%;
  max-width: 1380px;
  height: 100%;
  max-height: 720px;
  margin: 0 auto;
  padding: clamp(24px, 3.2vh, 34px) clamp(28px, 3.6vw, 54px) 0;
  display: grid;
  grid-template-rows: 42px minmax(0, 1fr) auto 64px;
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(125deg, rgba(221, 247, 95, 0.08), transparent 30%),
    linear-gradient(150deg, #121712, #0b0e0b 72%);
  box-shadow: 0 26px 70px rgba(17, 19, 15, 0.17);
  isolation: isolate;
}

.consulting-card::before {
  position: absolute;
  z-index: -1;
  top: 7%;
  right: 2%;
  content: "01";
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--display);
  font-size: clamp(180px, 24vw, 360px);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 1;
}

.consulting-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.consulting-card-index,
.consulting-card-signature {
  display: flex;
  align-items: center;
  gap: 11px;
}

.consulting-card-index > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  letter-spacing: 0;
}

.consulting-card-signature {
  color: rgba(255, 255, 255, 0.58);
}

.consulting-card-signature img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.consulting-card-main {
  min-height: 0;
  padding: clamp(22px, 4vh, 42px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
}

.consulting-card-title > p {
  margin-bottom: 6px;
  color: var(--lime);
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 28px);
  font-style: italic;
}

.consulting-card-title h2 {
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(82px, 9vw, 138px);
  font-weight: 540;
  letter-spacing: -0.065em;
  line-height: 0.82;
}

.consulting-card-title h3 {
  max-width: 690px;
  margin-top: clamp(18px, 2.5vh, 26px);
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--display);
  font-size: clamp(25px, 2.35vw, 37px);
  font-weight: 450;
  letter-spacing: -0.035em;
  line-height: 1.04;
}

.consulting-card-copy {
  padding-left: clamp(24px, 3vw, 42px);
  border-left: 1px solid rgba(221, 247, 95, 0.56);
}

.consulting-card-copy p {
  max-width: 490px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(14px, 1.15vw, 17px);
  line-height: 1.5;
}

.consulting-card-copy p + p {
  margin-top: clamp(16px, 2.4vh, 24px);
  color: rgba(255, 255, 255, 0.94);
}

.consulting-card-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.consulting-card-steps article {
  min-height: clamp(124px, 16vh, 152px);
  padding: clamp(18px, 2.5vh, 24px) clamp(18px, 2.4vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.consulting-card-steps article:first-child {
  padding-left: 0;
}

.consulting-card-steps article:last-child {
  padding-right: 0;
  border-right: 0;
}

.consulting-card-steps article > span {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.13em;
}

.consulting-card-steps h3 {
  margin-top: 10px;
  color: var(--white);
  font-size: clamp(21px, 1.8vw, 28px);
  letter-spacing: -0.04em;
  line-height: 1;
}

.consulting-card-steps p {
  max-width: 320px;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: clamp(12px, 0.95vw, 14px);
  line-height: 1.38;
}

.consulting-card-result {
  width: calc(100% + (clamp(28px, 3.6vw, 54px) * 2));
  margin-left: calc(clamp(28px, 3.6vw, 54px) * -1);
  padding: 0 clamp(28px, 3.6vw, 54px);
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  color: var(--ink);
  background: var(--lime);
}

.consulting-card-result span {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consulting-card-result strong {
  font-size: clamp(13px, 1.08vw, 16px);
  font-weight: 560;
}

.consulting-card-result i {
  width: 1px;
  height: 22px;
  margin-left: auto;
  background: rgba(17, 19, 15, 0.28);
}

@media (max-width: 900px) {
  .statement.section-pad {
    padding: 74px 12px 10px;
  }

  .consulting-card {
    height: 100%;
    max-height: 600px;
    padding: 16px 18px 0;
    grid-template-rows: 36px minmax(0, 1fr) auto 70px;
  }

  .consulting-card::before {
    top: 20%;
    right: -4%;
    font-size: 230px;
  }

  .consulting-card-head {
    font-size: 8px;
  }

  .consulting-card-signature {
    font-size: 0;
  }

  .consulting-card-signature img {
    width: 24px;
    height: 24px;
  }

  .consulting-card-main {
    padding: 14px 0 12px;
    display: block;
  }

  .consulting-card-title > p {
    margin-bottom: 3px;
    font-size: 17px;
  }

  .consulting-card-title h2 {
    font-size: clamp(52px, 15.2vw, 72px);
    line-height: 0.86;
  }

  .consulting-card-title h3 {
    max-width: 460px;
    margin-top: 12px;
    font-size: clamp(21px, 5.8vw, 28px);
  }

  .consulting-card-copy {
    margin-top: 14px;
    padding-top: 12px;
    padding-left: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
    border-top: 1px solid rgba(221, 247, 95, 0.52);
    border-left: 0;
  }

  .consulting-card-copy p {
    font-size: clamp(11.5px, 3vw, 13px);
    line-height: 1.38;
  }

  .consulting-card-copy p + p {
    margin-top: 0;
  }

  .consulting-card-steps {
    grid-template-columns: 1fr;
  }

  .consulting-card-steps article {
    min-height: 0;
    padding: 8px 0;
    display: grid;
    grid-template-columns: 26px minmax(88px, 0.36fr) 1fr;
    gap: 10px;
    align-items: center;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .consulting-card-steps article:first-child,
  .consulting-card-steps article:last-child {
    padding-right: 0;
    padding-left: 0;
  }

  .consulting-card-steps article:last-child {
    border-bottom: 0;
  }

  .consulting-card-steps h3,
  .consulting-card-steps p {
    margin-top: 0;
  }

  .consulting-card-steps h3 {
    font-size: clamp(17px, 4.5vw, 21px);
  }

  .consulting-card-steps p {
    font-size: clamp(11px, 2.6vw, 12px);
    line-height: 1.28;
  }

  .consulting-card-result {
    width: calc(100% + 36px);
    margin-left: -18px;
    padding: 9px 18px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 12px;
    align-content: center;
  }

  .consulting-card-result span {
    grid-row: 1 / 3;
  }

  .consulting-card-result strong {
    font-size: clamp(11px, 2.8vw, 13px);
    line-height: 1.18;
  }

  .consulting-card-result i {
    display: none;
  }
}

@media (max-width: 620px) and (max-height: 760px) {
  .statement.section-pad {
    padding-top: 70px;
    padding-bottom: 6px;
  }

  .consulting-card {
    padding-top: 12px;
    grid-template-rows: 32px minmax(0, 1fr) auto 58px;
  }

  .consulting-card-title h2 {
    font-size: clamp(48px, 13vw, 60px);
  }

  .consulting-card-title h3 {
    margin-top: 8px;
    font-size: 20px;
  }

  .consulting-card-copy {
    margin-top: 10px;
    padding-top: 9px;
  }

  .consulting-card-copy p {
    font-size: 10.5px;
  }

  .consulting-card-steps article {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .consulting-card-steps h3 {
    font-size: 17px;
  }

  .consulting-card-steps p {
    font-size: 9.5px;
  }
}

/* Point 01 · light editorial direction */

.statement.section-pad {
  background: #f6f6f2;
}

.consulting-card {
  color: var(--ink);
  border: 1px solid #dfe2da;
  background: #ffffff;
  box-shadow:
    inset 4px 0 0 var(--lime),
    0 22px 60px rgba(26, 32, 25, 0.08);
}

.consulting-card::before {
  color: rgba(102, 120, 15, 0.045);
}

.consulting-card-head {
  color: #50564e;
  border-bottom-color: #dfe2da;
}

.consulting-card-signature {
  color: #747a71;
}

.consulting-card-title > p {
  color: var(--green-mid);
}

.consulting-card-title h2 {
  color: var(--ink);
}

.consulting-card-title h3 {
  color: #30362f;
}

.consulting-card-copy {
  border-left-color: var(--lime-deep);
}

.consulting-card-copy p {
  color: #62675f;
}

.consulting-card-copy p + p {
  color: #272c26;
}

.consulting-card-steps {
  border-top-color: #d8dcd3;
}

.consulting-card-steps article {
  border-right-color: #dfe2da;
}

.consulting-card-steps article > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  letter-spacing: 0;
}

.consulting-card-steps h3 {
  color: var(--ink);
}

.consulting-card-steps p {
  color: #646a61;
}

.consulting-card-result {
  color: var(--ink);
  border-top: 3px solid var(--lime);
  background: #f2f5e4;
}

.consulting-card-result span {
  padding: 6px 9px;
  color: var(--ink);
  background: var(--lime);
}

@media (max-width: 900px) {
  .consulting-card-copy {
    border-top-color: var(--lime-deep);
  }

  .consulting-card-steps article {
    border-bottom-color: #e0e3db;
  }

  .consulting-card-result span {
    align-self: center;
  }
}

/* Point 01 · open minimal layout */

.statement.section-pad {
  padding-right: var(--page-x);
  padding-left: var(--page-x);
  background: #ffffff;
}

.consulting-card {
  max-width: 1280px;
  max-height: 660px;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.consulting-card::before {
  display: none;
}

.consulting-card-head {
  min-height: 42px;
  border-bottom: 1px solid #d9ddd5;
}

.consulting-card-main {
  padding-right: clamp(8px, 2vw, 28px);
  padding-left: clamp(8px, 2vw, 28px);
}

.consulting-card-title h2 {
  font-size: clamp(84px, 9.4vw, 142px);
}

.consulting-card-copy {
  border-left-width: 2px;
}

.consulting-card-steps article:first-child {
  padding-left: clamp(8px, 2vw, 28px);
}

.consulting-card-steps article:last-child {
  padding-right: clamp(8px, 2vw, 28px);
}

@media (min-width: 901px) {
  .consulting-card-steps {
    column-gap: clamp(38px, 5vw, 76px);
  }

  .consulting-card-steps article {
    padding-right: 0;
    padding-left: clamp(8px, 2vw, 28px);
    border-right: 0;
  }
}

.consulting-card-result {
  width: 100%;
  margin-left: 0;
  padding: 0 clamp(8px, 2vw, 28px);
  border-top: 1px solid #aeb4aa;
  background: transparent;
}

.consulting-card-result span {
  background: var(--lime);
}

@media (max-width: 900px) {
  .statement.section-pad {
    padding-right: 20px;
    padding-left: 20px;
  }

  .consulting-card {
    max-height: 590px;
    padding: 0;
  }

  .consulting-card-main {
    padding-right: 0;
    padding-left: 0;
  }

  .consulting-card-title h2 {
    font-size: clamp(52px, 15vw, 70px);
  }

  .consulting-card-steps article:first-child,
  .consulting-card-steps article:last-child {
    padding-right: 0;
    padding-left: 0;
  }

  .consulting-card-result {
    width: 100%;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }
}

/* Point 01 · final simplification */

.consulting-card-head {
  justify-content: flex-start;
}

.consulting-card-title h2 {
  font-size: clamp(80px, 8.6vw, 130px);
}

.consulting-card-main {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.consulting-card-copy p {
  max-width: 430px;
}

.consulting-card-steps article > span {
  width: auto;
  height: auto;
  display: block;
  border-radius: 0;
  color: var(--lime-deep);
  background: transparent;
  letter-spacing: 0.12em;
}

.consulting-card-result {
  justify-content: flex-start;
}

.consulting-card-result strong {
  font-weight: 520;
}

@media (max-width: 900px) {
  .consulting-card-title h2 {
    font-size: clamp(50px, 14vw, 66px);
  }

  .consulting-card-main {
    display: block;
  }
}

/* Horizontal chapter · Point 01 → Point 02 */

.horizontal-chapter {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  background: var(--white);
}

.horizontal-chapter-track {
  width: 200%;
  height: 100%;
  display: flex;
  transform: translate3d(0, 0, 0);
  transition: transform 900ms cubic-bezier(0.76, 0, 0.24, 1);
  will-change: transform;
}

.horizontal-chapter.is-on-film .horizontal-chapter-track {
  transform: translate3d(-50%, 0, 0);
}

.horizontal-chapter-track > .statement,
.horizontal-chapter-track > .film-section {
  width: 50%;
  min-width: 0;
  height: 100%;
  flex: 0 0 50%;
}

.horizontal-chapter .film-section {
  padding: clamp(94px, 11vh, 116px) var(--page-x) clamp(22px, 3.5vh, 34px);
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
  overflow: hidden;
}

.horizontal-chapter .film-heading {
  margin-bottom: 0;
  display: block;
}

.horizontal-chapter .film-heading .section-label {
  margin-bottom: clamp(26px, 4vh, 42px);
}

.horizontal-chapter .film-heading h2 {
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.9;
}

.horizontal-chapter .ecosystem-heading h2 {
  max-width: 720px;
  font-size: clamp(46px, 4.8vw, 72px);
  line-height: 0.92;
}

.horizontal-chapter .film-heading > p:last-child {
  margin-top: 28px;
  padding-bottom: 0;
}

.horizontal-chapter .film-shell {
  width: 100%;
  max-height: calc(100svh - 150px);
  margin: 0 auto;
  aspect-ratio: 16 / 10;
}

@media (max-width: 900px) {
  .horizontal-chapter .film-section {
    padding: 78px 20px 16px;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 20px;
    align-content: center;
  }

  .horizontal-chapter .film-heading .section-label {
    margin-bottom: 12px;
  }

  .horizontal-chapter .film-heading h2 {
    font-size: clamp(42px, 11.5vw, 58px);
  }

  .horizontal-chapter .ecosystem-heading h2 {
    font-size: clamp(37px, 9.8vw, 48px);
    line-height: 0.92;
  }

  .horizontal-chapter .film-heading > p:last-child {
    max-width: 520px;
    margin-top: 10px;
    font-size: 12px;
  }

  .horizontal-chapter .film-shell {
    max-height: calc(100svh - 310px);
    aspect-ratio: 16 / 9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .horizontal-chapter-track {
    transition: none;
  }
}

/* Native horizontal scrolling and snap */

.horizontal-chapter {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: auto;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
}

.horizontal-chapter::-webkit-scrollbar {
  display: none;
}

.horizontal-chapter-track,
.horizontal-chapter.is-on-film .horizontal-chapter-track {
  transform: none;
  transition: none;
}

.horizontal-chapter-track > .statement,
.horizontal-chapter-track > .film-section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

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

/* Point 02 · Sonora ecosystem */

.horizontal-chapter .ecosystem-panel {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 46%, rgba(221, 247, 95, 0.13), transparent 27rem),
    #f7f7f3;
}

.horizontal-chapter .ecosystem-panel .section-label-light {
  color: #686e65;
}

.horizontal-chapter .ecosystem-panel .section-label-light > span {
  color: var(--ink);
  border-color: rgba(17, 19, 15, 0.18);
  background: var(--lime);
}

.horizontal-chapter .ecosystem-heading h2 {
  color: var(--ink);
}

.horizontal-chapter .ecosystem-heading .accent-360 {
  color: var(--lime-deep);
}

.perfecto-shine {
  position: relative;
  display: inline-block;
  isolation: isolate;
}

.perfecto-shine::after {
  position: absolute;
  inset: 0;
  content: "perfecto";
  color: transparent;
  background: linear-gradient(
    105deg,
    transparent 24%,
    rgba(255, 255, 255, 0.22) 39%,
    #fff 50%,
    rgba(255, 255, 255, 0.22) 61%,
    transparent 76%
  );
  background-position: 170% 0;
  background-size: 240% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  opacity: 0;
  pointer-events: none;
}

.ecosystem-heading h2.is-visible .perfecto-shine::after {
  animation: perfecto-shine-pass 1.05s cubic-bezier(0.3, 0.7, 0.2, 1) 420ms 1 both;
}

@keyframes perfecto-shine-pass {
  0% {
    background-position: 170% 0;
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(221, 247, 95, 0));
  }
  18% {
    opacity: 1;
  }
  64% {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(221, 247, 95, 0.65));
  }
  100% {
    background-position: -70% 0;
    opacity: 0;
    filter: drop-shadow(0 0 0 rgba(221, 247, 95, 0));
  }
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-heading h2.is-visible .perfecto-shine::after {
    animation: none;
  }
}

.horizontal-chapter .ecosystem-heading > p:last-child {
  color: #555b52;
}

.ecosystem-visual {
  --ecosystem-radius: clamp(170px, 20vw, 250px);
  position: relative;
  width: 100%;
  height: min(72svh, 690px);
  overflow: hidden;
  isolation: isolate;
}

.ecosystem-visual::before,
.ecosystem-visual::after {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(17, 19, 15, 0.1);
  border-radius: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.ecosystem-visual::before {
  width: calc(var(--ecosystem-radius) * 2.18);
  height: calc(var(--ecosystem-radius) * 2.18);
}

.ecosystem-visual::after {
  width: calc(var(--ecosystem-radius) * 1.34);
  height: calc(var(--ecosystem-radius) * 1.34);
  border-style: dashed;
}

.ecosystem-ring {
  position: absolute;
  inset: 0;
}

.ecosystem-ring figure {
  --angle: calc(var(--i) * 30deg);
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: clamp(52px, 5vw, 72px);
  aspect-ratio: 0.72;
  overflow: hidden;
  border: 3px solid #fff;
  background: #e7e9e2;
  box-shadow: 0 13px 30px rgba(17, 19, 15, 0.16);
  opacity: 0;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(calc(var(--ecosystem-radius) * -1))
    rotate(calc(var(--angle) * -1))
    scale(0.58);
  transition:
    opacity 540ms ease calc(180ms + (var(--i) * 34ms)),
    transform 820ms cubic-bezier(0.2, 0.8, 0.2, 1) calc(120ms + (var(--i) * 34ms));
}

.horizontal-chapter.is-on-film .ecosystem-ring figure {
  opacity: 1;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(calc(var(--ecosystem-radius) * -1))
    rotate(calc(var(--angle) * -1))
    scale(1);
}

.ecosystem-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.68) contrast(0.96);
  transition: filter 220ms ease, transform 420ms ease;
}

.ecosystem-ring figure:hover {
  z-index: 8;
}

.ecosystem-ring figure:hover img {
  filter: saturate(1) contrast(1);
  transform: scale(1.08);
}

.ecosystem-core {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: clamp(126px, 13vw, 174px);
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 1px solid rgba(17, 19, 15, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(17, 19, 15, 0.1);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(12px);
}

.ecosystem-core img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
}

.ecosystem-core strong {
  margin-top: 9px;
  font-family: var(--display);
  font-size: 23px;
  font-weight: 540;
  letter-spacing: -0.04em;
}

.ecosystem-core span {
  color: var(--lime-deep);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ecosystem-legend {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 42px);
  color: #686e65;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ecosystem-legend span::before {
  width: 5px;
  height: 5px;
  margin-right: 7px;
  display: inline-block;
  border-radius: 50%;
  content: "";
  background: var(--lime);
}

@media (max-width: 900px) {
  .ecosystem-visual {
    --ecosystem-radius: min(32vw, 132px);
    height: min(48svh, 390px);
  }

  .ecosystem-ring figure {
    width: clamp(36px, 10vw, 48px);
    border-width: 2px;
  }

  .ecosystem-core {
    width: 104px;
  }

  .ecosystem-core img {
    width: 34px;
    height: 34px;
  }

  .ecosystem-core strong {
    margin-top: 5px;
    font-size: 18px;
  }

  .ecosystem-core span {
    font-size: 6px;
  }

  .ecosystem-legend {
    gap: 10px;
    font-size: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-ring figure {
    opacity: 1;
    transition: none;
  }
}

/* Point 01 · editorial consultation redesign */

.statement.section-pad.consulting-section {
  min-height: 100svh;
  height: auto;
  padding: clamp(96px, 12vh, 126px) var(--page-x) clamp(30px, 5vh, 50px);
  display: block;
  overflow: visible;
  color: var(--ink);
  background: #fff;
}

.consulting-editorial {
  width: min(100%, 1480px);
  min-height: calc(100svh - clamp(126px, 17vh, 176px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.consulting-editorial-head {
  min-height: 38px;
  padding-bottom: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #d8dcd4;
  color: #686e65;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.consulting-editorial-head p {
  display: flex;
  align-items: center;
  gap: 13px;
}

.consulting-editorial-head p:first-child::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--lime);
}

.consulting-editorial-head strong {
  color: var(--ink);
  font-weight: 520;
}

.consulting-editorial-head p > span {
  color: var(--lime-deep);
}

.consulting-editorial-body {
  margin-top: clamp(30px, 5.2vh, 54px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(64px, 9vw, 150px);
  align-items: end;
}

.consulting-editorial-title > p {
  margin-bottom: 9px;
  color: #397259;
  font-family: var(--serif);
  font-size: clamp(18px, 1.55vw, 25px);
  font-style: italic;
  line-height: 1.1;
}

.consulting-editorial-title h2 {
  font-family: var(--display);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.consulting-editorial-title h2 span,
.consulting-editorial-title h2 em {
  display: block;
}

.consulting-editorial-title h2 span {
  font-size: clamp(72px, 7.8vw, 118px);
}

.consulting-editorial-title h2 em {
  margin-top: 12px;
  color: var(--lime-deep);
  font-family: var(--serif);
  font-size: clamp(42px, 5.2vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
}

.consulting-editorial-summary {
  position: relative;
  padding: 0 0 6px clamp(28px, 3vw, 44px);
}

.consulting-editorial-summary > span {
  position: absolute;
  top: 3px;
  bottom: 5px;
  left: 0;
  width: 3px;
  background: var(--lime);
}

.consulting-editorial-summary p {
  max-width: 420px;
  color: #62685f;
  font-size: clamp(13px, 1.02vw, 16px);
  line-height: 1.5;
}

.consulting-editorial-summary .consulting-summary-lead {
  margin-bottom: 17px;
  color: #181b17;
  font-family: var(--display);
  font-size: clamp(18px, 1.55vw, 24px);
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.consulting-diagnosis {
  margin-top: clamp(34px, 5.2vh, 54px);
  padding: clamp(18px, 2.6vh, 26px) 0;
  display: grid;
  grid-template-columns: minmax(190px, 0.65fr) minmax(0, 2.35fr);
  gap: clamp(42px, 6vw, 90px);
  align-items: center;
  border-top: 1px solid #cfd4cb;
  border-bottom: 1px solid #cfd4cb;
}

.consulting-diagnosis-intro > span {
  display: block;
  color: var(--lime-deep);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.consulting-diagnosis-intro p {
  margin-top: 8px;
  color: #20241f;
  font-family: var(--display);
  font-size: clamp(17px, 1.35vw, 21px);
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.consulting-diagnosis ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
  list-style: none;
}

.consulting-diagnosis li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.consulting-diagnosis li > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border: 1px solid #c5cbc0;
  border-radius: 50%;
  color: #4f584c;
  font-family: var(--mono);
  font-size: 8px;
}

.consulting-diagnosis strong,
.consulting-diagnosis small {
  display: block;
}

.consulting-diagnosis strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(18px, 1.5vw, 23px);
  font-weight: 540;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.consulting-diagnosis small {
  max-width: 200px;
  margin-top: 6px;
  color: #6c7269;
  font-size: clamp(11px, 0.85vw, 13px);
  line-height: 1.3;
}

.consulting-editorial-result {
  margin-top: auto;
  padding-top: clamp(18px, 2.6vh, 25px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.consulting-editorial-result p {
  display: flex;
  align-items: center;
  gap: 15px;
}

.consulting-editorial-result span {
  padding: 7px 10px;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consulting-editorial-result strong {
  color: #252a24;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: 520;
}

@media (max-width: 900px) {
  .statement.section-pad.consulting-section {
    min-height: auto;
    padding: 84px 20px 42px;
  }

  .consulting-editorial {
    min-height: 0;
  }

  .consulting-editorial-head p:last-child {
    display: none;
  }

  .consulting-editorial-body {
    margin-top: 30px;
    display: block;
  }

  .consulting-editorial-title h2 span {
    font-size: clamp(55px, 16vw, 78px);
  }

  .consulting-editorial-title h2 em {
    margin-top: 10px;
    font-size: clamp(38px, 11vw, 54px);
  }

  .consulting-editorial-summary {
    margin-top: 30px;
    padding-left: 22px;
  }

  .consulting-diagnosis {
    margin-top: 34px;
    display: block;
  }

  .consulting-diagnosis ol {
    margin-top: 23px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .consulting-diagnosis li {
    padding: 14px 0;
    grid-template-columns: 32px minmax(0, 1fr);
    border-top: 1px solid #e0e3dd;
  }

  .consulting-diagnosis small {
    max-width: none;
  }

  .consulting-editorial-result {
    margin-top: 22px;
    padding-top: 0;
    display: grid;
    gap: 12px;
  }

  .consulting-editorial-result p {
    align-items: flex-start;
  }
}

/* Point 01 · corporate split direction */

.statement.section-pad.consulting-section {
  min-height: 100svh;
  padding: 0;
  scroll-margin-top: 80px;
  background: #fff;
}

.consulting-corporate {
  width: 100%;
  min-height: calc(100svh - 80px);
  margin-top: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) 78px;
  color: var(--ink);
  background: #fff;
}

.consulting-corporate-main {
  min-height: 0;
  margin-top: -40px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(430px, 0.92fr);
}

.consulting-corporate-copy {
  min-width: 0;
  padding: clamp(34px, 5.4vh, 58px) clamp(54px, 6vw, 96px) clamp(28px, 4.3vh, 46px) var(--page-x);
  display: flex;
  flex-direction: column;
}

.consulting-corporate-label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.consulting-corporate-label span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  letter-spacing: 0;
}

.consulting-corporate-message {
  margin-top: auto;
}

.consulting-corporate-message > p {
  margin-bottom: 10px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(19px, 1.75vw, 28px);
  font-style: italic;
}

.consulting-corporate-message > p mark {
  padding: 0.08em 0.11em 0.12em;
  color: var(--ink);
  background: var(--lime);
  font: inherit;
  font-weight: 700;
}

.consulting-corporate-message h2 {
  font-family: var(--display);
  font-size: clamp(74px, 7.1vw, 108px);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.84;
}

.consulting-corporate-message h2 span {
  margin-top: 14px;
  display: block;
  color: var(--ink);
  font-family: var(--display);
  font-size: 0.62em;
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.consulting-corporate-message h2 mark {
  padding: 0 0.07em;
  color: var(--ink);
  background: var(--lime);
}

.consulting-corporate-lede {
  max-width: 650px;
  margin-top: clamp(24px, 3.2vh, 34px);
  color: var(--ink);
  font-size: clamp(14px, 1.08vw, 17px);
  line-height: 1.48;
}

.consulting-corporate-outcome {
  margin-top: auto;
  padding-top: clamp(22px, 3vh, 30px);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border-top: 1px solid #d8dcd4;
}

.consulting-corporate-outcome > span {
  width: 8px;
  height: 8px;
  margin-top: 5px;
  flex: 0 0 auto;
  background: var(--lime);
}

.consulting-corporate-outcome p {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
}

.consulting-corporate-outcome small {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.consulting-corporate-outcome strong {
  max-width: 480px;
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 550;
  line-height: 1.35;
}

.consulting-corporate-media {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #e8e5dc;
}

.consulting-corporate-media::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  display: none;
}

.consulting-corporate-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.consulting-corporate-media figcaption {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: clamp(24px, 3.5vw, 52px);
  padding: 18px clamp(24px, 3vw, 42px);
  color: var(--ink);
  background: #fff;
}

.consulting-corporate-media figcaption span {
  display: block;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.consulting-corporate-media figcaption span::before {
  width: 7px;
  height: 7px;
  margin-right: 9px;
  display: inline-block;
  content: "";
  background: var(--lime);
}

.consulting-corporate-media figcaption strong {
  max-width: 430px;
  margin-top: 9px;
  display: block;
  font-family: var(--display);
  font-size: clamp(22px, 2vw, 31px);
  font-weight: 520;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.consulting-corporate-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid #cfd4cb;
  background: #fff;
}

.consulting-corporate-rail li {
  min-width: 0;
  padding: 0 clamp(26px, 4vw, 64px);
  display: grid;
  grid-template-columns: 30px auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-right: 1px solid #d9ddd5;
}

.consulting-corporate-rail li:last-child {
  border-right: 0;
}

.consulting-corporate-rail li > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 8px;
}

.consulting-corporate-rail strong {
  font-family: var(--display);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 540;
  letter-spacing: -0.03em;
}

.consulting-corporate-rail small {
  color: var(--ink);
  font-size: clamp(10px, 0.78vw, 12px);
}

@media (max-width: 900px) {
  .statement.section-pad.consulting-section {
    min-height: auto;
    padding-top: 0;
    scroll-margin-top: 68px;
  }

  .consulting-corporate {
    min-height: 0;
    margin-top: 0;
    display: block;
  }

  .consulting-corporate-main {
    margin-top: 0;
    display: flex;
    flex-direction: column;
  }

  .consulting-corporate-copy {
    padding: 26px 20px 32px;
  }

  .consulting-corporate-message {
    margin-top: 40px;
  }

  .consulting-corporate-message h2 {
    font-size: clamp(56px, 16vw, 78px);
  }

  .consulting-corporate-message h2 span {
    margin-top: 13px;
    font-size: 0.66em;
  }

  .consulting-corporate-lede {
    margin-top: 26px;
  }

  .consulting-corporate-outcome {
    margin-top: 32px;
  }

  .consulting-corporate-outcome p {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .consulting-corporate-media {
    height: min(76vw, 420px);
  }

  .consulting-corporate-media img {
    object-position: center 42%;
  }

  .consulting-corporate-rail {
    grid-template-columns: 1fr;
  }

  .consulting-corporate-rail li {
    min-height: 70px;
    padding: 0 20px;
    grid-template-columns: 30px minmax(100px, 0.46fr) 1fr;
    border-right: 0;
    border-bottom: 1px solid #d9ddd5;
  }

  .consulting-corporate-rail li:last-child {
    border-bottom: 0;
  }
}

/* Point 03 · connected corporate system */

.system-intro.system-corporate {
  min-height: 100svh;
  padding: clamp(98px, 12vh, 124px) var(--page-x) clamp(42px, 6vh, 64px);
  display: block;
  color: var(--ink);
  background: #fff;
  scroll-margin-top: 0;
}

.system-corporate-head {
  min-height: 38px;
  padding-bottom: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #d5d9d2;
  color: rgba(17, 19, 15, 0.58);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.system-corporate-head p:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.system-corporate-head span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  letter-spacing: 0;
}

.system-corporate-head strong {
  color: var(--ink);
  font-weight: 600;
}

.system-corporate-layout {
  margin-top: clamp(34px, 5.5vh, 56px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: stretch;
}

.system-corporate-story {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.system-corporate-kicker {
  margin-bottom: 16px;
  color: var(--lime-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.system-corporate-story h2 {
  max-width: 690px;
  font-family: var(--display);
  font-size: clamp(55px, 5.1vw, 78px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.system-corporate-story h2 span {
  margin-top: 10px;
  display: block;
  color: var(--ink);
}

.system-corporate-story h2 span::after {
  width: 0.72em;
  height: 0.18em;
  margin-left: 0.12em;
  display: inline-block;
  content: "";
  background: var(--lime);
  transform: translateY(-0.12em);
}

.system-corporate-lede {
  max-width: 590px;
  margin-top: clamp(24px, 3.5vh, 34px);
  color: rgba(17, 19, 15, 0.66);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.52;
}

.system-corporate-outcome {
  margin-top: auto;
  padding-top: 24px;
  display: grid;
  grid-template-columns: auto minmax(34px, 1fr) auto;
  gap: 15px;
  align-items: center;
  border-top: 1px solid #d5d9d2;
  font-size: 12px;
}

.system-corporate-outcome span {
  color: rgba(17, 19, 15, 0.58);
}

.system-corporate-outcome i {
  position: relative;
  height: 1px;
  background: #bfc4bc;
}

.system-corporate-outcome i::before,
.system-corporate-outcome i::after {
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--lime);
  transform: translateY(-50%);
}

.system-corporate-outcome i::before {
  left: 0;
}

.system-corporate-outcome i::after {
  right: 0;
}

.system-corporate-outcome strong {
  font-weight: 600;
}

.system-corporate-flow {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #cfd4cb;
}

.system-corporate-flow::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  width: 1px;
  content: "";
  background: #d7dbd3;
}

.system-corporate-flow li {
  position: relative;
  min-height: clamp(105px, 14vh, 126px);
  padding: clamp(17px, 2.3vh, 23px) 0 clamp(17px, 2.3vh, 23px) 54px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid #cfd4cb;
}

.system-corporate-flow li > span {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font-family: var(--mono);
  font-size: 8px;
  transform: translateY(-50%);
}

.system-corporate-flow h3 {
  font-family: var(--display);
  font-size: clamp(26px, 2.1vw, 34px);
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 1;
}

.system-corporate-flow li div p {
  max-width: 480px;
  margin-top: 8px;
  color: rgba(17, 19, 15, 0.62);
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.38;
}

.system-corporate-flow small {
  color: var(--lime-deep);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.integrations-marquee {
  margin-top: clamp(28px, 4vh, 40px);
  padding-top: 16px;
  border-top: 1px solid #d5d9d2;
}

.integrations-marquee-head {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.integrations-marquee-head span {
  color: var(--ink);
  font-weight: 700;
}

.integrations-marquee-head span::before {
  width: 7px;
  height: 7px;
  margin-right: 9px;
  display: inline-block;
  content: "";
  background: var(--lime);
}

.integrations-marquee-head small {
  color: rgba(17, 19, 15, 0.5);
  font: inherit;
}

.integrations-marquee-window {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.integrations-marquee-track {
  width: max-content;
  display: flex;
  animation: integrations-flow 46s linear infinite;
  will-change: transform;
}

.integrations-marquee-window:hover .integrations-marquee-track {
  animation-play-state: paused;
}

.integrations-list {
  margin: 0;
  padding: 0 16px 0 0;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  list-style: none;
}

.integrations-list li {
  min-height: 52px;
  padding: 0 clamp(20px, 2.6vw, 38px);
  display: flex;
  align-items: center;
  gap: 11px;
  border-right: 1px solid #e0e3dd;
  color: rgba(17, 19, 15, 0.76);
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
}

.integrations-list img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

@keyframes integrations-flow {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 900px) {
  .system-intro.system-corporate {
    min-height: auto;
    padding: 86px 20px 46px;
    scroll-margin-top: 0;
  }

  .system-corporate-head p:last-child {
    display: none;
  }

  .system-corporate-layout {
    margin-top: 32px;
    display: block;
  }

  .system-corporate-story h2 {
    font-size: clamp(48px, 13.4vw, 66px);
  }

  .system-corporate-outcome {
    margin-top: 34px;
  }

  .system-corporate-flow {
    margin-top: 42px;
  }

  .system-corporate-flow li {
    min-height: 112px;
    padding-left: 48px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .system-corporate-flow small {
    justify-self: start;
  }

  .integrations-marquee {
    margin-top: 34px;
  }

  .integrations-marquee-head small {
    display: none;
  }

  .integrations-list li {
    padding-right: 22px;
    padding-left: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .integrations-marquee-track {
    animation-play-state: paused;
  }
}

/* CRM · oversized Wanilimo-style headline */

.feature-crm {
  grid-template-columns: 56% 44%;
  background: var(--blue);
}

.feature-crm .feature-copy {
  padding: clamp(70px, 8vh, 96px) clamp(34px, 4.2vw, 68px);
  background: var(--blue);
}

.feature-crm .feature-copy .crm-title {
  max-width: 610px;
  margin-top: clamp(24px, 3.5vh, 34px);
  font-family: var(--display);
  font-size: clamp(60px, 5.9vw, 90px);
  font-weight: 500;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.crm-title mark {
  padding: 0.01em 0.07em 0.055em;
  display: inline-block;
  color: var(--ink);
  background: var(--lime);
  font-weight: 700;
  line-height: 0.88;
}

.crm-own-line {
  position: relative;
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.crm-own-line::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
}

.crm-own-word {
  display: inline-block;
  opacity: 0;
  background: linear-gradient(var(--lime), var(--lime)) 0 94% / 0 0.12em no-repeat;
  transform: translateY(0.35em);
}

.crm-title.is-visible .crm-own-line::after {
  animation: crm-own-wipe 1.05s 520ms cubic-bezier(0.76, 0, 0.24, 1) both;
}

.crm-title.is-visible .crm-own-word {
  animation: crm-own-word 720ms 980ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes crm-own-wipe {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  46% {
    transform: scaleX(1);
    transform-origin: left;
  }
  54% {
    transform: scaleX(1);
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}

@keyframes crm-own-word {
  0% {
    opacity: 0;
    background-size: 0 0.12em;
    transform: translateY(0.35em);
  }
  45% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 1;
    background-size: 100% 0.12em;
    transform: translateY(0);
  }
}

.feature-crm .feature-copy > p:not(.feature-number) {
  max-width: 570px;
  margin-top: clamp(26px, 3.6vh, 38px);
  color: rgba(17, 19, 15, 0.7);
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.48;
}

.feature-crm .text-link {
  margin-top: clamp(26px, 3.6vh, 38px);
}

@media (max-width: 900px) {
  .feature-crm {
    grid-template-columns: 1fr;
  }

  .feature-crm .feature-copy {
    padding: 82px 20px 52px;
  }

  .feature-crm .feature-copy .crm-title {
    font-size: clamp(58px, 16.5vw, 78px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .crm-own-line::after {
    display: none;
  }

  .crm-own-word {
    opacity: 1;
    background-size: 100% 0.12em;
    transform: none;
  }
}

/* Point 01 → Point 02 · vertical gesture, horizontal journey */

@media (min-width: 901px) {
  .lateral-chapter {
    --lateral-progress: 0;
    position: relative;
    height: 200svh;
    background: #fff;
  }

  .lateral-chapter-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100svh;
    overflow: clip;
  }

  .lateral-chapter-track {
    width: 200vw;
    height: 100%;
    display: flex;
    transform: translate3d(calc(var(--lateral-progress) * -100vw), 0, 0);
    will-change: transform;
  }

  .lateral-chapter-track > section {
    width: 100vw;
    height: 100svh;
    min-height: 100svh;
    flex: 0 0 100vw;
    overflow: hidden;
  }

  .lateral-chapter .consulting-corporate {
    min-height: 100svh;
  }

  .lateral-chapter .consulting-corporate-main {
    margin-top: 0;
  }

  .lateral-chapter .ecosystem-panel {
    padding-top: clamp(104px, 12vh, 138px);
    padding-bottom: clamp(58px, 7vh, 84px);
    display: flex;
    align-items: center;
  }

  .lateral-chapter .ecosystem-heading {
    width: 100%;
    margin-bottom: 0;
  }
}

@media (max-width: 900px) {
  .lateral-chapter,
  .lateral-chapter-sticky,
  .lateral-chapter-track {
    width: 100%;
  }
}

.section-blend-dark-to-light {
  position: relative;
  z-index: 1;
  height: clamp(64px, 7vw, 108px);
  margin: 0;
  background:
    radial-gradient(ellipse at 72% 0%, rgba(221, 247, 95, 0.07), transparent 48%),
    linear-gradient(
      180deg,
      #0c0f0c 0%,
      #151915 22%,
      #454943 52%,
      #a9aca6 78%,
      #ffffff 100%
    );
  pointer-events: none;
}

@media (max-width: 900px) {
  .section-blend-dark-to-light {
    height: 72px;
  }
}

/* Crecimiento → pedido · conversación y CRM en un mismo recorrido */

.feature-growth .feature-copy h2 {
  font-weight: 400;
  letter-spacing: -0.055em;
}

.feature-growth .feature-copy h2 strong {
  font-weight: 750;
}

.message-bubble p {
  font-weight: 650;
}

.message-payment {
  max-width: min(550px, 88%);
}

.chat-payment-link {
  margin-top: 8px;
  padding: 8px 9px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  background: #f1f3ef;
  border: 1px solid #d9dfd8;
  border-radius: 9px;
  text-decoration: none;
}

.chat-payment-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #fff;
  background: #075e54;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 750;
}

.chat-payment-link > span:nth-child(2) {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.chat-payment-link strong {
  font-size: 8px;
  font-weight: 750;
}

.chat-payment-link em {
  margin-top: 2px;
  overflow: hidden;
  color: #737c75;
  font-size: 6px;
  font-style: normal;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-payment-link > b {
  padding: 6px 8px;
  color: #fff;
  background: #128c7e;
  border-radius: 7px;
  font-size: 7px;
  white-space: nowrap;
}

.chat-payment-link:hover,
.chat-payment-link:focus-visible {
  border-color: #128c7e;
  box-shadow: 0 0 0 3px rgba(18, 140, 126, 0.12);
}

.message-confirmation {
  border-left: 3px solid #25d366;
}

.message-confirmation p strong {
  font-weight: 800;
}

@media (min-width: 901px) {
  .growth-lateral-chapter .message-stack {
    bottom: 8%;
    gap: 6px;
  }
}

.growth-lateral-chapter {
  --growth-progress: 0;
  background: #fff;
}

.order-sync {
  min-height: 100svh;
  padding: clamp(82px, 10vh, 108px) var(--page-x) clamp(28px, 4vh, 48px);
  color: var(--ink);
  background:
    radial-gradient(circle at 86% 18%, rgba(221, 247, 95, 0.18), transparent 22rem),
    #f7f8f4;
}

.order-sync-head {
  min-height: 48px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-bottom: 1px solid #cbd2c9;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.13em;
}

.order-sync-head > p:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-sync-head span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--lime);
}

.order-sync-head strong {
  font-size: inherit;
}

.order-sync-head > p:last-child {
  color: #747c74;
}

.order-sync-layout {
  height: calc(100svh - clamp(158px, 18vh, 190px));
  padding-top: clamp(26px, 4.5vh, 48px);
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(650px, 1.45fr);
  align-items: center;
  gap: clamp(38px, 5vw, 84px);
}

.order-sync-copy {
  align-self: center;
}

.order-sync-kicker {
  color: #5f7625;
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.order-sync-copy h2 {
  max-width: 560px;
  margin-top: 24px;
  font-size: clamp(47px, 4.6vw, 76px);
  font-weight: 720;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.order-sync-copy h2 span {
  margin-top: 8px;
  display: block;
  color: var(--green-mid);
}

.order-sync-copy > p:not(.order-sync-kicker) {
  max-width: 500px;
  margin-top: 27px;
  color: #5e655e;
  font-size: clamp(13px, 1vw, 16px);
  line-height: 1.55;
}

.order-sync-live {
  width: fit-content;
  margin-top: 32px;
  padding: 10px 14px 10px 11px;
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 15px 36px rgba(17, 54, 41, 0.16);
}

.order-sync-live > i {
  width: 10px;
  height: 10px;
  display: block;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(221, 247, 95, 0.13);
}

.order-sync-live span {
  display: flex;
  flex-direction: column;
}

.order-sync-live small {
  color: rgba(255, 255, 255, 0.58);
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.08em;
}

.order-sync-live strong {
  margin-top: 2px;
  font-size: 9px;
}

.order-crm-window {
  position: relative;
  width: 100%;
  max-width: 930px;
  min-height: 556px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #d3dad2;
  border-radius: 22px;
  box-shadow: 0 36px 90px rgba(32, 55, 43, 0.13);
}

.order-notification {
  position: absolute;
  z-index: 5;
  top: 84px;
  right: 22px;
  width: min(286px, calc(100% - 44px));
  min-height: 70px;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: #113d31;
  border: 1px solid rgba(221, 247, 95, 0.35);
  border-radius: 13px;
  box-shadow: 0 18px 42px rgba(17, 61, 49, 0.24);
}

.order-notification > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #173d2f;
  background: var(--lime);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 800;
}

.order-notification > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.order-notification small {
  color: var(--lime);
  font-family: var(--mono);
  font-size: 6px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.order-notification strong {
  margin-top: 3px;
  overflow: hidden;
  font-size: 10px;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.order-notification p,
.order-notification > b {
  color: rgba(255, 255, 255, 0.66);
  font-size: 7px;
}

.order-notification p {
  margin-top: 2px;
}

.order-notification > b {
  align-self: start;
  font-family: var(--mono);
  font-weight: 500;
}

.order-notification + .order-crm-body .order-detail-head > span {
  opacity: 0;
}

.order-crm-bar {
  min-height: 70px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e0e5df;
}

.order-crm-bar > div {
  display: flex;
  align-items: center;
  gap: 11px;
}

.order-crm-bar img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
}

.order-crm-bar span {
  display: flex;
  flex-direction: column;
}

.order-crm-bar small,
.order-detail-head small,
.order-products > p {
  color: #7b847b;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.11em;
}

.order-crm-bar strong {
  margin-top: 2px;
  font-size: 12px;
}

.order-crm-bar > b {
  padding: 7px 11px;
  color: #395b4b;
  background: var(--lime);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.order-crm-body {
  min-height: 486px;
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
}

.order-customer-card {
  padding: 28px 22px;
  background: #f3f5f0;
  border-right: 1px solid #e0e5df;
}

.order-avatar {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green-mid);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}

.order-customer-card h3 {
  margin-top: 16px;
  font-size: 19px;
  font-weight: 700;
}

.order-customer-card > p {
  margin-top: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #707970;
  font-size: 9px;
}

.order-customer-card > p img {
  width: 12px;
  height: 12px;
}

.order-customer-card dl {
  margin-top: 30px;
}

.order-customer-card dl > div {
  padding: 12px 0;
  border-top: 1px solid #d9dfd7;
}

.order-customer-card dt {
  color: #899089;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.order-customer-card dd {
  margin-top: 5px;
  font-size: 9px;
  font-weight: 650;
}

.order-detail {
  padding: 25px 27px 22px;
}

.order-detail-head,
.order-product,
.order-summary p,
.order-timeline {
  display: flex;
  align-items: center;
}

.order-detail-head {
  justify-content: space-between;
}

.order-detail-head h3 {
  margin-top: 4px;
  font-size: 19px;
  font-weight: 700;
}

.order-detail-head > span {
  padding: 6px 9px;
  color: #35634f;
  background: #e5f5e9;
  border-radius: 999px;
  font-size: 7px;
  font-weight: 700;
}

.order-meta {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #e0e5df;
  border-radius: 11px;
}

.order-meta > div {
  min-height: 55px;
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid #e0e5df;
}

.order-meta > div:last-child {
  border-right: 0;
}

.order-meta small {
  color: #899089;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.order-meta strong {
  margin-top: 4px;
  font-size: 9px;
}

.order-products {
  margin-top: 20px;
}

.order-product {
  min-height: 68px;
  margin-top: 7px;
  padding: 8px 0;
  gap: 12px;
  border-top: 1px solid #e0e5df;
  border-bottom: 1px solid #e0e5df;
}

.order-product-thumb {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  flex: 0 0 47px;
  background:
    radial-gradient(circle at 48% 45%, #ddd2bd 0 30%, transparent 31%),
    #f1ece2;
  border-radius: 8px;
}

.order-product-thumb span {
  color: #706759;
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: 0.13em;
}

.order-product > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.order-product > div:nth-child(2) strong {
  font-size: 11px;
}

.order-product > div:nth-child(2) small {
  margin-top: 3px;
  color: #7c847d;
  font-size: 7px;
}

.order-product > span {
  margin-left: auto;
  color: #646c65;
  font-size: 9px;
}

.order-product > b {
  min-width: 58px;
  text-align: right;
  font-size: 10px;
}

.order-stock {
  margin-top: 7px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #4d725e;
  font-size: 7px;
  font-weight: 650;
}

.order-stock i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #25d366;
}

.order-summary {
  width: min(310px, 100%);
  margin: 15px 0 0 auto;
}

.order-summary p {
  min-height: 22px;
  justify-content: space-between;
  color: #707870;
  font-size: 8px;
}

.order-summary .order-total {
  min-height: 34px;
  margin-top: 5px;
  padding-top: 7px;
  color: var(--ink);
  border-top: 1px solid #cfd6ce;
  font-size: 11px;
  font-weight: 700;
}

.order-summary .order-total strong {
  font-size: 16px;
}

.order-timeline {
  margin-top: 13px;
  padding: 10px 12px;
  justify-content: space-between;
  gap: 8px;
  background: #f4f6f2;
  border-radius: 9px;
}

.order-timeline span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #626b63;
  font-size: 6px;
  white-space: nowrap;
}

.order-timeline i {
  width: 5px;
  height: 5px;
  flex: 0 0 5px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 2px #dfe8c5;
}

@media (min-width: 901px) {
  .growth-lateral-chapter {
    position: relative;
    height: 200svh;
  }

  .growth-lateral-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100svh;
    overflow: clip;
  }

  .growth-lateral-track {
    width: 200vw;
    height: 100%;
    display: flex;
    transform: translate3d(calc(var(--growth-progress) * -100vw), 0, 0);
    will-change: transform;
  }

  .growth-lateral-track > section {
    width: 100vw;
    height: 100svh;
    min-height: 100svh;
    flex: 0 0 100vw;
    overflow: hidden;
  }

  .growth-lateral-chapter .growth-media {
    min-height: 100svh;
  }

  .sync-reveal {
    --sync-value: clamp(0, calc((var(--growth-progress) - var(--sync-start)) * 5.4), 1);
    opacity: var(--sync-value);
    transform: translateY(calc((1 - var(--sync-value)) * 16px));
    transition: opacity 100ms linear;
  }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .order-sync-layout {
    grid-template-columns: minmax(260px, 0.58fr) minmax(620px, 1.42fr);
    gap: 34px;
  }

  .order-crm-body {
    grid-template-columns: 178px minmax(0, 1fr);
  }

  .order-customer-card {
    padding-right: 17px;
    padding-left: 17px;
  }

  .order-detail {
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 900px) {
  .growth-lateral-chapter,
  .growth-lateral-sticky,
  .growth-lateral-track {
    width: 100%;
    height: auto;
  }

  .growth-lateral-track {
    display: block;
  }

  .growth-lateral-chapter .growth-media {
    min-height: 780px;
  }

  .order-sync {
    min-height: auto;
    padding: 82px 20px 70px;
  }

  .order-sync-layout {
    height: auto;
    margin-top: 42px;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .order-sync-copy h2 {
    max-width: 650px;
  }

  .order-crm-window {
    min-height: 0;
  }

  .order-notification {
    position: relative;
    top: auto;
    right: auto;
    width: auto;
    margin: 14px;
  }

  .order-notification + .order-crm-body .order-detail-head > span {
    opacity: 1;
  }

  .sync-reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .order-sync-head > p:last-child {
    display: none;
  }

  .order-sync-copy h2 {
    font-size: clamp(45px, 14vw, 66px);
  }

  .order-crm-body {
    display: block;
  }

  .order-customer-card {
    border-right: 0;
    border-bottom: 1px solid #e0e5df;
  }

  .order-customer-card dl {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .order-meta {
    grid-template-columns: 1fr;
  }

  .order-meta > div {
    border-right: 0;
    border-bottom: 1px solid #e0e5df;
  }

  .order-meta > div:last-child {
    border-bottom: 0;
  }

  .order-timeline {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Talleres · simulación visual de llamada */

.workshop-call-sim {
  position: absolute;
  z-index: 5;
  right: 4.5%;
  bottom: 4%;
  left: 4.5%;
  overflow: hidden;
  color: #fff;
  background: rgba(25, 29, 27, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(4, 10, 7, 0.34);
  backdrop-filter: blur(26px) saturate(1.15);
  -webkit-backdrop-filter: blur(26px) saturate(1.15);
}

.workshop-call-incoming {
  min-height: 286px;
  padding: 20px 22px 18px;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.workshop-call-incoming > p {
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.workshop-caller-avatar {
  width: 60px;
  height: 60px;
  margin-top: 11px;
  display: grid;
  place-items: center;
  color: #173d2f;
  background: linear-gradient(145deg, #f1ff9d, var(--lime));
  border-radius: 50%;
  font-size: 16px;
  font-weight: 750;
  box-shadow: 0 0 0 7px rgba(221, 247, 95, 0.1);
}

.workshop-call-incoming h3 {
  margin-top: 12px;
  font-size: 24px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.workshop-call-incoming > span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 9px;
}

.workshop-call-actions {
  width: min(250px, 88%);
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  row-gap: 5px;
}

.call-action,
.workshop-hangup {
  display: grid;
  place-items: center;
  color: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.call-action {
  width: 51px;
  height: 51px;
}

.call-action:hover,
.call-action:focus-visible,
.workshop-hangup:hover,
.workshop-hangup:focus-visible {
  filter: brightness(1.08);
  transform: scale(1.06);
}

.call-action svg,
.workshop-hangup svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.call-decline,
.workshop-hangup {
  background: #ff453a;
}

.call-answer {
  background: #30d158;
  animation: apple-call-pulse 1.4s ease-in-out infinite;
}

.workshop-call-actions > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
}

@keyframes apple-call-pulse {
  50% { box-shadow: 0 0 0 10px rgba(48, 209, 88, 0.13); }
}

.workshop-call-active {
  min-height: 326px;
  padding: 16px;
  display: none;
}

.workshop-call-active > header {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.workshop-call-active > header > div,
.workshop-call-active > header span {
  display: flex;
}

.workshop-call-active > header > div {
  align-items: center;
  gap: 9px;
}

.workshop-call-active > header > div > i {
  width: 8px;
  height: 8px;
  display: block;
  background: #30d158;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(48, 209, 88, 0.12);
}

.workshop-call-active > header span {
  align-items: flex-start;
  flex-direction: column;
}

.workshop-call-active > header small {
  color: #9be9b0;
  font-family: var(--mono);
  font-size: 6px;
  letter-spacing: 0.11em;
}

.workshop-call-active > header strong {
  margin-top: 2px;
  font-size: 11px;
}

.workshop-call-active > header time {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--mono);
  font-size: 9px;
}

.workshop-voice-turn {
  min-height: 54px;
  margin-top: 7px;
  padding: 9px 11px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  opacity: 0;
  transform: translateY(9px);
}

.voice-nora {
  margin-left: 11%;
  background: rgba(221, 247, 95, 0.13);
  border-color: rgba(221, 247, 95, 0.25);
}

.voice-confirm {
  margin-right: 18%;
}

.workshop-voice-turn small {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 5px;
  letter-spacing: 0.1em;
}

.voice-nora small {
  color: var(--lime);
}

.workshop-voice-turn p {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 8px;
  font-weight: 600;
  line-height: 1.28;
}

.workshop-call-sim .voice-wave {
  position: static;
  z-index: auto;
  bottom: auto;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  opacity: 1;
  transition: none;
}

.workshop-call-sim .voice-wave i {
  width: 3px;
  height: 26%;
  display: block;
  background: #fff;
  border-radius: 999px;
  transform: none;
  animation: workshop-wave 720ms ease-in-out infinite alternate;
}

.workshop-call-sim .voice-nora .voice-wave i {
  background: var(--lime);
}

.workshop-call-sim .voice-wave i:nth-child(2n) { animation-delay: -180ms; }
.workshop-call-sim .voice-wave i:nth-child(3n) { animation-delay: -360ms; }
.workshop-call-sim .voice-wave i:nth-child(4n) { animation-delay: -520ms; }

@keyframes workshop-wave {
  0% { height: 18%; opacity: 0.42; }
  100% { height: 92%; opacity: 1; }
}

.workshop-call-result {
  min-height: 48px;
  margin-top: 8px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #173d2f;
  background: var(--lime);
  border-radius: 12px;
  opacity: 0;
  transform: translateY(8px);
}

.workshop-call-result > span {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  flex: 0 0 25px;
  color: #fff;
  background: var(--green-mid);
  border-radius: 50%;
  font-weight: 750;
}

.workshop-call-result > div {
  display: flex;
  flex-direction: column;
}

.workshop-call-result small {
  font-family: var(--mono);
  font-size: 5px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.workshop-call-result strong {
  margin-top: 3px;
  font-size: 7px;
}

.workshop-hangup {
  position: absolute;
  top: 12px;
  right: 54px;
  width: 38px;
  height: 38px;
}

.workshop-hangup svg {
  width: 20px;
  height: 20px;
}

.workshop-call-declined {
  min-height: 180px;
  padding: 24px;
  display: none;
  place-items: center;
  align-content: center;
  gap: 8px;
  text-align: center;
}

.workshop-call-declined > span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: #ff453a;
  border-radius: 50%;
  font-size: 22px;
}

.workshop-call-declined > strong {
  font-size: 15px;
}

.workshop-call-declined button {
  padding: 7px 11px;
  color: var(--ink);
  background: var(--lime);
  border: 0;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
}

.workshop-call-sim[data-call-state="active"] .workshop-call-incoming,
.workshop-call-sim[data-call-state="declined"] .workshop-call-incoming {
  display: none;
}

.workshop-call-sim[data-call-state="active"] .workshop-call-active {
  display: block;
  animation: workshop-call-open 380ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.workshop-call-sim[data-call-state="declined"] .workshop-call-declined {
  display: grid;
}

.workshop-call-sim[data-call-state="active"] .workshop-voice-turn:nth-of-type(1) {
  animation: workshop-turn-in 420ms 240ms forwards;
}

.workshop-call-sim[data-call-state="active"] .workshop-voice-turn:nth-of-type(2) {
  animation: workshop-turn-in 420ms 1.7s forwards;
}

.workshop-call-sim[data-call-state="active"] .workshop-voice-turn:nth-of-type(3) {
  animation: workshop-turn-in 420ms 3.2s forwards;
}

.workshop-call-sim[data-call-state="active"] .workshop-call-result {
  animation: workshop-turn-in 420ms 4.7s forwards;
}

@keyframes workshop-call-open {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes workshop-turn-in {
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 640px) {
  .workshop-call-sim {
    right: 3.5%;
    bottom: 3%;
    left: 3.5%;
    border-radius: 24px;
  }

  .workshop-call-incoming {
    min-height: 272px;
  }

  .workshop-call-active {
    min-height: 320px;
    padding: 13px;
  }

  .workshop-voice-turn {
    grid-template-columns: minmax(0, 1fr) 62px;
  }

  .voice-nora {
    margin-left: 5%;
  }

  .voice-confirm {
    margin-right: 8%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .call-answer,
  .workshop-call-sim .voice-wave i {
    animation: none;
  }

  .workshop-call-sim[data-call-state="active"] .workshop-voice-turn,
  .workshop-call-sim[data-call-state="active"] .workshop-call-result {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Cierre corporativo · Nora en directo */

.live-audit--final {
  padding: clamp(92px, 10vw, 148px) var(--page-x) clamp(72px, 8vw, 118px);
  color: var(--ink);
  background: #f4f5ef;
}

.live-audit--final::before {
  background:
    linear-gradient(rgba(17, 61, 49, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 61, 49, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 74% 38%, rgba(221, 247, 95, 0.24), transparent 30rem);
  background-size: 64px 64px, 64px 64px, auto;
  mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 90%, transparent);
}

.live-audit--final::after {
  top: 18%;
  right: -6%;
  background: rgba(221, 247, 95, 0.28);
  filter: blur(150px);
}

.live-audit-corporate-head {
  min-height: 46px;
  padding-bottom: 15px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #cbd2c9;
  color: #737b73;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-audit-corporate-head > p:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-audit-corporate-head span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 50%;
  letter-spacing: 0;
}

.live-audit-corporate-head strong {
  color: var(--ink);
  font-weight: 700;
}

.live-audit-corporate-intro {
  margin-top: clamp(42px, 6vw, 78px);
  display: grid;
  grid-template-columns: minmax(190px, 0.38fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(44px, 7vw, 108px);
}

.live-audit-corporate-intro > .overline {
  padding-top: 8px;
  color: #587226;
  font-size: 9px;
  font-weight: 700;
}

.live-audit-corporate-intro > div {
  max-width: 1080px;
}

.live-audit-corporate-intro h2 {
  font-family: var(--display);
  font-size: clamp(58px, 6.5vw, 104px);
  font-weight: 560;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.live-audit-corporate-intro h2 span {
  color: var(--green-mid);
}

.live-audit-corporate-intro > div > p {
  max-width: 690px;
  margin: clamp(28px, 4vw, 44px) 0 0 auto;
  color: #5f675f;
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.55;
}

.live-audit--final .voice-lab {
  min-height: 690px;
  margin-top: clamp(58px, 7vw, 92px);
  grid-template-columns: minmax(220px, 0.76fr) minmax(480px, 1.68fr) minmax(220px, 0.82fr);
  color: var(--white);
  background: #0b1410;
  border: 1px solid #244136;
  border-radius: 22px;
  box-shadow: 0 38px 90px rgba(25, 51, 40, 0.2);
}

.live-audit--final .voice-brief,
.live-audit--final .voice-outcomes {
  background: rgba(255, 255, 255, 0.018);
}

.live-audit--final .voice-brief > div strong {
  font-family: var(--display);
  font-size: clamp(27px, 2.2vw, 36px);
  font-style: normal;
  font-weight: 580;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.live-audit--final .voice-console {
  background:
    radial-gradient(circle at center 38%, rgba(221, 247, 95, 0.09), transparent 42%),
    #07100b;
}

.live-audit--final .voice-console-top {
  background: rgba(255, 255, 255, 0.018);
}

.live-audit--final .voice-orbit {
  border-color: rgba(221, 247, 95, 0.16);
}

.live-audit--final .voice-orbit-two {
  opacity: 0.28;
}

.live-audit--final .voice-outcomes > p {
  font-family: var(--sans);
  font-size: 11px;
  font-style: normal;
  line-height: 1.5;
}

.live-audit--final .live-audit-foot {
  color: #747c74;
}

.live-audit--final .live-audit-foot span {
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 1180px) and (min-width: 901px) {
  .live-audit--final .voice-lab {
    grid-template-columns: minmax(190px, 0.7fr) minmax(430px, 1.55fr) minmax(190px, 0.75fr);
  }
}

@media (max-width: 900px) {
  .live-audit--final {
    padding: 86px 20px 76px;
  }

  .live-audit-corporate-intro {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .live-audit-corporate-intro h2 {
    font-size: clamp(52px, 12vw, 82px);
  }

  .live-audit-corporate-intro > div > p {
    margin-left: 0;
  }

  .live-audit--final .voice-lab {
    min-height: 0;
    margin-top: 54px;
  }
}

@media (max-width: 640px) {
  .live-audit-corporate-head > p:last-child {
    display: none;
  }

  .live-audit-corporate-intro h2 {
    font-size: clamp(46px, 13.8vw, 65px);
  }
}

/* Navegación · servicios 360 */

.nav-services {
  position: relative;
}

.nav-services-toggle {
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  background: transparent;
  border: 0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
}

.nav-services-toggle::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-services-toggle:hover::after,
.nav-services.is-open .nav-services-toggle::after,
.nav-services:focus-within .nav-services-toggle::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-services-toggle svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 200ms ease;
}

.nav-services.is-open .nav-services-toggle svg {
  transform: rotate(180deg);
}

.nav-services-panel {
  position: absolute;
  z-index: 120;
  top: calc(100% + 18px);
  left: 50%;
  width: min(720px, calc(100vw - 36px));
  padding: 15px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  color: var(--ink);
  background: rgba(250, 249, 245, 0.97);
  border: 1px solid rgba(17, 19, 15, 0.13);
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(14, 30, 22, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 190ms ease, visibility 190ms ease, transform 190ms ease;
  backdrop-filter: blur(22px) saturate(1.15);
  -webkit-backdrop-filter: blur(22px) saturate(1.15);
}

.nav-services.is-open .nav-services-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-services-head {
  min-height: 64px;
  padding: 8px 10px 13px;
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.nav-services-head span {
  color: #64752c;
  font-family: var(--mono);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.nav-services-head strong {
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
}

.site-header:not(.is-scrolled) .site-nav .nav-services-panel a,
.site-header.is-scrolled .site-nav .nav-services-panel a {
  min-height: 70px;
  padding: 11px 12px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: var(--ink);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  text-shadow: none;
  transition: background 170ms ease, border-color 170ms ease, transform 170ms ease;
}

.site-header .nav-services-panel a:hover,
.site-header .nav-services-panel a:focus-visible {
  background: rgba(221, 247, 95, 0.38);
  border-color: rgba(169, 198, 41, 0.4);
  transform: translateY(-1px);
}

.nav-services-panel a::after {
  display: none;
}

.nav-services-panel a > span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #405326;
  background: var(--lime);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 7px;
}

.nav-services-panel a > div {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.nav-services-panel a b {
  font-size: 12px;
  font-weight: 700;
}

.nav-services-panel a small {
  margin-top: 3px;
  color: #737b73;
  font-size: 8px;
}

@media (max-width: 900px) {
  .site-nav {
    overflow-y: auto;
  }

  .nav-services {
    width: 100%;
  }

  .nav-services-toggle {
    position: relative;
    width: 100%;
    padding: 18px 0;
    justify-content: space-between;
    color: var(--ink);
    border-bottom: 1px solid rgba(17, 19, 15, 0.2);
    font-family: var(--display);
    font-size: clamp(34px, 8vw, 56px);
    letter-spacing: -0.04em;
  }

  .nav-services-toggle::after {
    display: none;
  }

  .nav-services-toggle svg {
    width: 24px;
    height: 24px;
  }

  .nav-services-panel {
    position: static;
    width: 100%;
    max-height: 0;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 0;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    transform: none;
    transition: max-height 260ms ease, opacity 180ms ease, visibility 180ms ease, padding 260ms ease;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-services.is-open .nav-services-panel {
    max-height: 540px;
    padding: 8px 0 14px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-services-head {
    display: none;
  }

  .site-header:not(.is-scrolled) .site-nav .nav-services-panel a,
  .site-header.is-scrolled .site-nav .nav-services-panel a {
    min-height: 54px;
    padding: 8px 4px;
    grid-template-columns: 30px minmax(0, 1fr);
    color: var(--ink);
    border-bottom: 1px solid rgba(17, 19, 15, 0.12);
    border-radius: 0;
    font-family: var(--sans);
    font-size: 14px;
    letter-spacing: 0;
  }

  .nav-services-panel a b {
    font-size: 13px;
  }

  .nav-services-panel a small {
    color: rgba(17, 19, 15, 0.62);
    font-size: 8px;
  }
}

/* Webs a medida · beneficios compactos */

.ownership-grid {
  margin-top: clamp(48px, 5.5vw, 72px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  border: 0;
}

.ownership-grid .web-benefit {
  position: relative;
  min-height: 255px;
  padding: 22px;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.ownership-grid .web-benefit::before {
  position: absolute;
  top: 0;
  right: 22px;
  left: 22px;
  height: 3px;
  content: "";
  background: var(--lime);
  border-radius: 0 0 999px 999px;
  transform: scaleX(0.22);
  transform-origin: left;
  transition: transform 260ms ease;
}

.ownership-grid .web-benefit:hover {
  border-color: rgba(221, 247, 95, 0.45);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.ownership-grid .web-benefit:hover::before {
  transform: scaleX(1);
}

.web-benefit header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.ownership-grid .web-benefit header span {
  padding: 6px 8px;
  color: var(--lime);
  background: rgba(221, 247, 95, 0.08);
  border: 1px solid rgba(221, 247, 95, 0.18);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.web-benefit header svg {
  width: 37px;
  height: 37px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
  opacity: 0.72;
}

.ownership-grid .web-benefit h3 {
  margin-top: auto;
  padding-top: 30px;
  font-size: clamp(29px, 2.25vw, 39px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.ownership-grid .web-benefit h3 em {
  display: block;
  color: var(--lime);
  font-style: normal;
}

.ownership-grid .web-benefit p {
  max-width: 290px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  line-height: 1.45;
}

.ownership-grid .web-benefit-conversion,
.ownership-grid .web-benefit-connected {
  color: var(--ink);
  border-color: transparent;
}

.ownership-grid .web-benefit-conversion {
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 255, 255, 0.48), transparent 9rem),
    var(--lime);
}

.ownership-grid .web-benefit-connected {
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.58), transparent 10rem),
    #dce9e1;
}

.ownership-grid .web-benefit-conversion::before,
.ownership-grid .web-benefit-connected::before {
  background: var(--green-mid);
}

.ownership-grid .web-benefit-conversion header span,
.ownership-grid .web-benefit-connected header span {
  color: var(--green);
  background: rgba(255, 255, 255, 0.36);
  border-color: rgba(17, 61, 49, 0.12);
}

.ownership-grid .web-benefit-conversion h3 em,
.ownership-grid .web-benefit-connected h3 em {
  color: var(--green-mid);
}

.ownership-grid .web-benefit-conversion p,
.ownership-grid .web-benefit-connected p {
  color: rgba(17, 19, 15, 0.66);
}

.ownership-grid .web-benefit-scale {
  background:
    radial-gradient(circle at 82% 16%, rgba(221, 247, 95, 0.12), transparent 10rem),
    linear-gradient(145deg, #173f32, #102a22);
}

.ownership-grid + .ownership-web {
  margin-top: clamp(52px, 6vw, 82px);
}

@media (max-width: 1000px) {
  .ownership-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ownership-grid .web-benefit {
    min-height: 235px;
  }
}

@media (max-width: 600px) {
  .ownership-grid {
    grid-template-columns: 1fr;
  }

  .ownership-grid .web-benefit {
    min-height: 220px;
  }

  .ownership-grid .web-benefit h3 {
    font-size: 36px;
  }
}
