@font-face {
  font-family: "Inter";
  src: url("assets/InterVariable.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --paper: #f7f6f3;
  --ink: #0a0a0a;
  --rust: #c94e1f;
  --mist: #dedcd6;
  --white: #ffffff;
  --muted: #696762;
  --line: rgba(10, 10, 10, 0.16);
  --soft-line: rgba(10, 10, 10, 0.08);
  --shadow: 0 26px 80px rgba(10, 10, 10, 0.1);
  --radius: 24px;
  --shell: 1360px;
  --gutter: clamp(20px, 4vw, 64px);
  --page-progress: 0;
}

*,
*::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: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.is-locked {
  overflow: hidden;
}

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

model-viewer {
  --progress-bar-height: 0px;
}

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

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

a {
  color: inherit;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

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

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

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section-space {
  padding-block: clamp(104px, 12vw, 184px);
}

.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;
  top: 8px;
  left: 8px;
  z-index: 999;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--ink);
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.section-heading {
  max-width: 920px;
}

.section-heading h2,
.final-stage h2 {
  margin: 0;
  font-size: clamp(3rem, 6.4vw, 7.4rem);
  font-weight: 650;
  letter-spacing: -0.075em;
  line-height: 0.92;
  text-wrap: balance;
}

.section-heading > p:last-child,
.final-stage__copy > p {
  max-width: 58ch;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  line-height: 1.6;
}

.eyebrow {
  margin: 0 0 24px;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Navigation */
.site-nav {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 90;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  width: min(calc(100% - 28px), 1320px);
  height: 66px;
  padding: 0 10px 0 22px;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 18px;
  background: rgba(247, 246, 243, 0.86);
  box-shadow: 0 8px 34px rgba(10, 10, 10, 0.07);
  backdrop-filter: blur(18px) saturate(1.2);
  transform: translateX(-50%);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.site-nav.is-scrolled {
  box-shadow: 0 12px 44px rgba(10, 10, 10, 0.12);
}

.site-nav__progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--ink);
  transform: scaleX(var(--page-progress));
  transform-origin: left;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 760;
  letter-spacing: -0.045em;
  text-decoration: none;
}

.brand__mark {
  width: 27px;
  height: 27px;
}

.site-nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.site-nav__links a {
  position: relative;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 560;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav__links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.site-nav__links a:hover,
.site-nav__links a:focus-visible {
  color: var(--ink);
}

.site-nav__links a:hover::after,
.site-nav__links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-talk {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 154px;
  height: 46px;
  padding: 0 16px 0 20px;
  color: var(--paper);
  background: var(--ink);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  transition: transform 0.22s ease, clip-path 0.22s ease;
}

.nav-talk:hover {
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 0 100%);
  transform: translateY(-2px);
}

.nav-talk:active {
  transform: scale(0.98);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100dvh;
  padding-top: 100px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero__texture {
  position: absolute;
  inset: 0;
  z-index: -3;
  background: var(--paper) url("assets/paper-texture.webp") center / cover;
  opacity: 0.55;
}

.hero__route {
  position: absolute;
  inset: 18% -8% auto 30%;
  z-index: -1;
  height: 64%;
  pointer-events: none;
}

.hero__route svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero__route path {
  fill: none;
  stroke: rgba(10, 10, 10, 0.13);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-dasharray: 9 11;
  animation: route-flow 20s linear infinite;
}

@keyframes route-flow {
  to { stroke-dashoffset: -400; }
}

.hero__layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  min-height: calc(100dvh - 100px);
  padding-top: clamp(26px, 4vw, 62px);
}

.hero__copy {
  position: relative;
  z-index: 4;
  grid-column: 1 / 10;
  grid-row: 1;
  align-self: center;
  padding-bottom: 6vh;
  transform: translateY(clamp(-30px, -2.5vh, -16px));
}

.hero__copy h1 {
  max-width: 15.7ch;
  margin: 0;
  font-size: clamp(4rem, 7.15vw, 7.2rem);
  font-weight: 660;
  letter-spacing: -0.082em;
  line-height: 0.88;
  text-wrap: balance;
  animation: hero-rise 0.9s cubic-bezier(0.17, 0.8, 0.25, 1) both;
}

.hero__copy > p {
  max-width: 52ch;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.32rem);
  line-height: 1.58;
  animation: hero-rise 0.9s 0.08s cubic-bezier(0.17, 0.8, 0.25, 1) both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 26px;
  margin-top: 38px;
  animation: hero-rise 0.9s 0.16s cubic-bezier(0.17, 0.8, 0.25, 1) both;
}

@keyframes hero-rise {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-action {
  display: grid;
  grid-template-columns: auto 96px;
  align-items: center;
  gap: 32px;
  min-height: 62px;
  padding: 0 20px 0 26px;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.98rem;
  font-weight: 650;
  text-decoration: none;
  transition: gap 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.2s ease;
}

.hero-action svg {
  width: 96px;
  overflow: visible;
}

.hero-action path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 128;
  stroke-dashoffset: 94;
  transition: stroke-dashoffset 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-action:hover {
  gap: 44px;
}

.hero-action:hover path {
  stroke-dashoffset: 0;
}

.hero-action:active {
  transform: scale(0.985);
}

.hero-whatsapp {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 8px 0 24px;
  border-bottom: 1px solid var(--ink);
  font-weight: 620;
  text-decoration: none;
}

.hero-whatsapp__tail {
  position: absolute;
  top: 14px;
  left: 0;
  width: 11px;
  height: 11px;
  background: var(--ink);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  transition: transform 0.3s ease;
}

.hero-whatsapp:hover .hero-whatsapp__tail {
  transform: rotate(-45deg) translate(2px, -1px);
}

.hero__stage {
  position: relative;
  z-index: 2;
  grid-column: 7 / 13;
  grid-row: 1;
  align-self: end;
  width: min(55vw, 760px);
  height: min(74dvh, 760px);
  margin: 0 -4vw 0 auto;
  transform: translateY(clamp(-28px, -2.4vh, -16px));
}

.hero__halo {
  position: absolute;
  inset: 19% 0 4% 2%;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 -70px 120px rgba(10, 10, 10, 0.05), 0 50px 110px rgba(10, 10, 10, 0.07);
  transform: perspective(900px) rotateX(68deg) translateY(29%);
}

.hero__mascot {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  --poster-color: transparent;
  background: transparent;
  filter: drop-shadow(0 36px 28px rgba(10, 10, 10, 0.16));
}

.hero__mascot--pose {
  inset: auto clamp(18px, 2vw, 30px) 0 auto;
  width: min(33.5vw, 480px);
  height: auto;
  max-height: 100%;
  object-fit: contain;
  object-position: center bottom;
  padding: clamp(8px, 1.5vw, 22px) 0 0;
  pointer-events: none;
  user-select: none;
  transform-origin: 50% 88%;
  animation: hero-pose-float 6s ease-in-out infinite;
}

@keyframes hero-pose-float {
  0%, 100% { transform: translateY(0) rotate(-0.35deg); }
  50% { transform: translateY(-10px) rotate(0.35deg); }
}

/* Scroll-scrub journey */
.journey {
  position: relative;
  min-height: 500dvh;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.journey__media {
  position: sticky;
  top: 0;
  z-index: 0;
  width: 100%;
  height: 100dvh;
  margin-bottom: -100dvh;
  overflow: hidden;
  background: var(--paper);
}

.journey__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--paper);
}

.journey__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(247, 246, 243, 0.82) 0%, rgba(247, 246, 243, 0.14) 34%, rgba(247, 246, 243, 0.14) 66%, rgba(247, 246, 243, 0.78) 100%),
    linear-gradient(180deg, rgba(247, 246, 243, 0.12), rgba(247, 246, 243, 0.08));
}

.journey__meter {
  position: absolute;
  top: 50%;
  left: clamp(16px, 2.6vw, 40px);
  width: 2px;
  height: 46dvh;
  overflow: hidden;
  background: rgba(10, 10, 10, 0.16);
  transform: translateY(-50%);
}

.journey__meter span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleY(var(--journey-progress, 0));
  transform-origin: top;
}

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

.journey__chapter {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: center;
  min-height: 100dvh;
  padding: 100px var(--gutter) 50px;
}

.journey__chapter > div {
  max-width: 600px;
  padding: clamp(24px, 3vw, 44px);
  border: 1px solid rgba(10, 10, 10, 0.13);
  border-radius: var(--radius);
  background: rgba(247, 246, 243, 0.78);
  box-shadow: 0 22px 70px rgba(10, 10, 10, 0.08);
  backdrop-filter: blur(17px) saturate(1.1);
  transform: translateY(var(--chapter-lift, 0));
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.3s ease;
}

.journey__chapter.is-current > div {
  border-color: rgba(10, 10, 10, 0.36);
}

.journey__chapter--left > div { grid-column: 1 / 7; }
.journey__chapter--right > div { grid-column: 7 / 13; justify-self: end; }

.journey__chapter h2 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3rem, 5.6vw, 6.8rem);
  font-weight: 640;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-wrap: balance;
}

.journey__chapter p {
  max-width: 46ch;
  margin: 24px 0 0;
  color: #4f4d49;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.6;
}

/* Interactive lab */
.lab {
  position: relative;
  z-index: 1;
  background: var(--paper);
}

.lab__heading {
  margin-bottom: clamp(60px, 8vw, 108px);
}

.lab__grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(520px, 1.75fr) minmax(240px, 0.85fr);
  gap: clamp(20px, 2.6vw, 40px);
  align-items: stretch;
}

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

.lab-choice {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 110px;
  padding: 18px 16px 18px 6px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: padding 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.lab-choice::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  background: var(--rust);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.lab-choice:hover {
  padding-left: 16px;
  background: rgba(255, 255, 255, 0.56);
}

.lab-choice.is-active {
  padding-left: 18px;
  color: var(--paper);
  background: var(--ink);
}

.lab-choice.is-active::before {
  transform: scaleY(1);
}

.lab-choice > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.lab-choice strong {
  font-size: 1rem;
  font-weight: 670;
}

.lab-choice small {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.lab-choice.is-active small {
  color: rgba(247, 246, 243, 0.64);
}

.lab-choice > span:last-child {
  align-self: start;
  color: var(--muted);
  font-size: 0.68rem;
  font-variant-numeric: tabular-nums;
}

.lab-choice.is-active > span:last-child {
  color: var(--paper);
}

.icon-sprite {
  display: inline-block;
  width: 36px;
  height: 36px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: grayscale(1) contrast(1.25);
}

.lab-choice.is-active .icon-sprite {
  filter: invert(1) grayscale(1);
}

.icon-sprite--chat { background-image: url("assets/icons/chat.webp"); }
.icon-sprite--calendar { background-image: url("assets/icons/calendar.webp"); }
.icon-sprite--payment { background-image: url("assets/icons/payment.webp"); }
.icon-sprite--workflow { background-image: url("assets/icons/workflow.webp"); }
.icon-sprite--code { background-image: url("assets/icons/code.webp"); }
.icon-sprite--database { background-image: url("assets/icons/database.webp"); }

.lab__instrument {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 560px;
  padding: clamp(22px, 2.6vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lab__instrument-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-size: 0.84rem;
  font-weight: 650;
}

.lab__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.72rem;
}

.lab__live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ink);
}

.lab__instrument.is-running .lab__live i {
  background: var(--rust);
  animation: live-pulse 0.8s ease-in-out infinite alternate;
}

@keyframes live-pulse {
  to { transform: scale(1.6); }
}

.logic {
  display: grid;
  grid-template-columns: 1fr 28px 1fr 28px 1fr 28px 1fr;
  align-items: center;
  margin: auto 0;
  padding-block: 38px;
}

.logic__node {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: 18px 8px;
  border: 1px solid var(--soft-line);
  border-radius: 18px;
  background: var(--paper);
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.logic__node.is-on {
  border-color: var(--ink);
  box-shadow: 0 10px 28px rgba(10, 10, 10, 0.09);
  transform: translateY(-5px);
}

.logic__icon {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
}

.logic__node small {
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logic__node strong {
  margin-top: 4px;
  overflow: hidden;
  font-size: 0.8rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.logic__wire {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.logic__wire i {
  position: absolute;
  top: -1px;
  left: -8px;
  width: 8px;
  height: 3px;
  background: var(--rust);
}

.lab__instrument.is-running .logic__wire i {
  animation: wire-run 0.8s ease-in-out forwards;
}

.lab__instrument.is-running .logic__wire:nth-of-type(2) i { animation-delay: 0.55s; }
.lab__instrument.is-running .logic__wire:nth-of-type(3) i { animation-delay: 1.1s; }

@keyframes wire-run {
  to { transform: translateX(44px); }
}

.lab__explanation {
  min-height: 72px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.lab-run {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 56px;
  padding: 0 14px 0 20px;
  border: 1px solid var(--ink);
  border-radius: 12px;
  background: transparent;
  font-weight: 650;
  cursor: pointer;
  transition: transform 0.14s ease, background 0.2s ease, color 0.2s ease;
}

.lab-run:hover {
  color: var(--paper);
  background: var(--ink);
}

.lab-run:active {
  transform: translateY(2px) scale(0.995);
}

.lab-run kbd {
  padding: 5px 8px;
  border: 1px solid currentColor;
  border-radius: 6px;
  font: inherit;
  font-size: 0.68rem;
}

.phone {
  align-self: center;
  justify-self: center;
  width: min(100%, 286px);
  text-align: center;
}

.phone__shell {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  aspect-ratio: 9 / 18.7;
  padding: 26px 10px 12px;
  overflow: hidden;
  border: 8px solid #1a1a1a;
  border-radius: 43px;
  background: #eceae5;
  box-shadow: 0 34px 56px rgba(10, 10, 10, 0.2);
  transform: rotate(2.2deg);
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.phone:hover .phone__shell {
  transform: rotate(0) translateY(-8px);
}

.phone__island {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 78px;
  height: 20px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
}

.phone__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 6px 10px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.1);
  text-align: left;
}

.phone__head > span:last-child {
  display: grid;
}

.phone__head strong {
  font-size: 0.68rem;
  line-height: 1.2;
}

.phone__head small {
  color: #4e7a5a;
  font-size: 0.58rem;
}

.phone__avatar {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
}

.phone__chat {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 14px 4px;
  overflow: hidden;
  background-image: radial-gradient(rgba(10, 10, 10, 0.035) 0.8px, transparent 0.8px);
  background-size: 9px 9px;
}

.message {
  display: grid;
  gap: 3px;
  max-width: 86%;
  margin: 0;
  padding: 9px 10px 6px;
  border-radius: 11px;
  font-size: 0.64rem;
  line-height: 1.35;
  text-align: left;
  box-shadow: 0 3px 12px rgba(10, 10, 10, 0.06);
}

.message time {
  justify-self: end;
  color: rgba(10, 10, 10, 0.48);
  font-size: 0.5rem;
}

.message--client {
  align-self: flex-end;
  background: #d8efcf;
}

.message--system {
  align-self: flex-start;
  background: var(--white);
}

.message.is-new {
  animation: message-in 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

@keyframes message-in {
  from { opacity: 0.4; transform: translateY(14px) scale(0.96); }
  to { opacity: 1; transform: none; }
}

.phone__input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 30px;
  padding: 0 5px 0 10px;
  border-radius: 999px;
  color: rgba(10, 10, 10, 0.42);
  background: var(--white);
  font-size: 0.58rem;
}

.phone__input b {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--white);
  background: #377b54;
}

.phone > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Capabilities */
.capabilities {
  border-block: 1px solid var(--line);
  background: var(--white);
}

.capabilities__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  gap: clamp(56px, 8vw, 130px);
  align-items: stretch;
}

.capabilities .section-heading h2 {
  max-width: 9.5ch;
}

.cap-list {
  margin-top: clamp(54px, 7vw, 96px);
  border-top: 1px solid var(--line);
}

.cap-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.7fr) auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 112px;
  padding: 10px 4px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: padding 0.3s ease, background 0.3s ease;
}

.cap-row:hover,
.cap-row.is-active {
  padding-inline: 20px;
  background: var(--paper);
}

.cap-row > span {
  font-size: clamp(2rem, 3.7vw, 4rem);
  font-weight: 570;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.cap-row small {
  color: var(--muted);
  font-size: 0.84rem;
}

.cap-row b {
  align-self: start;
  padding-top: 14px;
  font-size: 0.68rem;
  font-weight: 570;
  font-variant-numeric: tabular-nums;
}

.cap-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 820px;
  padding: clamp(28px, 4vw, 60px);
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper) url("assets/paper-texture.webp") center / cover;
  box-shadow: inset 0 0 0 1px var(--soft-line);
  isolation: isolate;
}

.cap-visual::before,
.cap-visual::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(10, 10, 10, 0.11);
  border-radius: 50%;
}

.cap-visual::before {
  top: -16%;
  right: -28%;
  width: 86%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 30px 90px rgba(10, 10, 10, 0.06);
}

.cap-visual::after {
  right: -9%;
  bottom: 16%;
  width: 54%;
  aspect-ratio: 1;
  background: rgba(222, 220, 214, 0.55);
}

.cap-visual__mark {
  position: absolute;
  top: 12%;
  right: 10%;
  width: 46%;
  color: var(--ink);
  transform: rotate(7deg);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cap-visual:hover .cap-visual__mark {
  transform: rotate(0deg) scale(1.04);
}

.cap-visual__mark rect { fill: var(--ink); }
.cap-visual__mark polygon { fill: var(--rust); }

.cap-visual > p {
  margin: 0;
  font-size: clamp(2.1rem, 3.6vw, 4.2rem);
  font-weight: 610;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.cap-visual > span {
  max-width: 36ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Higgsfield showreel */
.showcase {
  overflow: hidden;
  background: var(--paper);
}

.showcase__heading {
  max-width: 1020px;
}

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

.showcase-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 18px;
  min-height: 92px;
  padding: 20px 22px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.showcase-tab:last-child { border-right: 0; }
.showcase-tab:hover { background: rgba(255, 255, 255, 0.58); }
.showcase-tab.is-active { color: var(--paper); background: var(--ink); }

.showcase-tab b {
  font-size: 1.55rem;
  font-weight: 620;
  letter-spacing: -0.05em;
}

.showcase-tab span {
  font-size: 0.72rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase__stage {
  position: relative;
  min-height: min(72vw, 780px);
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.show-panel {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: var(--white);
}

.show-panel.is-active {
  animation: panel-enter 0.65s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

@keyframes panel-enter {
  from { clip-path: inset(0 0 0 100%); transform: scale(1.015); }
  to { clip-path: inset(0); transform: none; }
}

.show-panel img,
.show-panel video,
.show-panel model-viewer {
  position: absolute;
  top: 0;
  right: 0;
  width: 68%;
  height: 100%;
  object-fit: contain;
  object-position: right bottom;
  --poster-color: transparent;
  background: transparent;
}

.show-panel video {
  object-fit: cover;
}

.show-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--white) 0%, var(--white) 25%, rgba(255, 255, 255, 0.72) 42%, transparent 70%);
}

.show-panel figcaption {
  position: absolute;
  top: 50%;
  left: clamp(28px, 5vw, 74px);
  z-index: 2;
  display: grid;
  gap: 20px;
  max-width: 34%;
  transform: translateY(-50%);
}

.show-panel figcaption strong,
.show-panel--interactive > p strong {
  font-size: clamp(2.4rem, 4.4vw, 5.2rem);
  font-weight: 620;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.show-panel figcaption span,
.show-panel--interactive > p span {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.show-panel--3d model-viewer {
  right: -3%;
  width: 70%;
  filter: drop-shadow(0 36px 28px rgba(10, 10, 10, 0.14));
}

.show-panel--interactive {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 54px;
  padding: clamp(34px, 6vw, 94px);
}

.show-panel--interactive::after { display: none; }

.show-panel--interactive > p {
  display: grid;
  gap: 20px;
  margin: 0;
}

.mini-system {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto;
  align-items: center;
  gap: 0;
  min-height: 280px;
  padding: clamp(24px, 3vw, 46px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.mini-system__trigger {
  width: 110px;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--white);
  font-weight: 650;
  cursor: pointer;
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.mini-system__trigger:hover,
.mini-system.is-active .mini-system__trigger {
  color: var(--paper);
  background: var(--ink);
  transform: rotate(-7deg) scale(1.04);
}

.mini-system__line {
  position: relative;
  height: 2px;
  overflow: hidden;
  background: var(--line);
}

.mini-system__line i {
  position: absolute;
  top: -2px;
  left: -18px;
  width: 18px;
  height: 6px;
  background: var(--rust);
}

.mini-system.is-active .mini-system__line i {
  animation: mini-run 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes mini-run { to { transform: translateX(330px); } }

.mini-system__result {
  display: grid;
  gap: 8px;
  max-width: 170px;
  padding: 22px;
  border-radius: 18px;
  color: var(--paper);
  background: var(--ink);
  transform: scale(0.96);
  transition: transform 0.35s ease;
}

.mini-system.is-active .mini-system__result { transform: scale(1.03); }
.mini-system__result small { color: rgba(247, 246, 243, 0.62); }
.mini-system__result strong { font-size: 0.92rem; }

/* Offer */
.offer {
  border-top: 1px solid var(--line);
  background: var(--white);
}

.offer__heading {
  max-width: 990px;
}

.plan-ledger {
  margin-top: clamp(56px, 7vw, 96px);
  border-top: 1px solid var(--line);
}

.plan-row {
  border-bottom: 1px solid var(--line);
}

.plan-row summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 44px;
  align-items: center;
  gap: 30px;
  min-height: 126px;
  padding: 14px 8px;
  list-style: none;
  cursor: pointer;
  transition: padding 0.28s ease, background 0.28s ease;
}

.plan-row summary::-webkit-details-marker { display: none; }
.plan-row summary:hover { padding-inline: 22px; background: var(--paper); }

.plan-row summary > span {
  display: grid;
  grid-template-columns: minmax(160px, 0.4fr) minmax(220px, 0.6fr);
  align-items: center;
  gap: 30px;
}

.plan-row summary strong {
  font-size: clamp(1.8rem, 3vw, 3.4rem);
  font-weight: 590;
  letter-spacing: -0.055em;
}

.plan-row summary small {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 480;
}

.plan-row summary > b {
  font-size: clamp(1.7rem, 3.4vw, 3.8rem);
  font-weight: 560;
  letter-spacing: -0.055em;
  font-variant-numeric: tabular-nums;
}

.plan-row summary > b small {
  margin-left: 5px;
}

.plan-row summary > i {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.2rem;
  font-style: normal;
  transition: transform 0.28s ease;
}

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

.plan-row > div {
  display: grid;
  grid-template-rows: 1fr;
}

.plan-row > div p {
  max-width: 64ch;
  margin: 0;
  padding: 0 8px 32px;
  color: var(--muted);
}

.offer__note {
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* FAQ */
.faq {
  background: var(--paper);
}

.faq__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(500px, 1.2fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: start;
}

.faq .section-heading h2 {
  font-size: clamp(3rem, 5vw, 5.6rem);
}

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

.faq__list details {
  border-bottom: 1px solid var(--line);
}

.faq__list summary {
  position: relative;
  padding: 26px 54px 26px 0;
  list-style: none;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 610;
  cursor: pointer;
}

.faq__list summary::-webkit-details-marker { display: none; }

.faq__list summary::before,
.faq__list summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 15px;
  height: 1px;
  background: var(--ink);
  transition: transform 0.25s ease;
}

.faq__list summary::after { transform: rotate(90deg); }
.faq__list details[open] summary::after { transform: rotate(0deg); }

.faq__list details p {
  max-width: 64ch;
  margin: 0;
  padding: 0 48px 28px 0;
  color: var(--muted);
  line-height: 1.65;
}

/* Final stage */
.final-stage {
  padding: clamp(110px, 13vw, 196px) 0 0;
  overflow: hidden;
  background: var(--white);
}

.final-stage__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  min-height: 690px;
  align-items: start;
}

.final-stage__copy {
  position: relative;
  z-index: 3;
  max-width: 800px;
}

.final-stage__mascot {
  position: absolute;
  right: -4%;
  bottom: -7%;
  z-index: 1;
  width: min(65vw, 810px);
  height: auto;
  pointer-events: none;
}

.final-command {
  position: absolute;
  right: var(--gutter);
  bottom: 72px;
  left: var(--gutter);
  z-index: 4;
  display: grid;
  grid-template-columns: 70px 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 118px;
  padding: 14px 28px 14px 16px;
  color: var(--paper);
  background: var(--ink);
  font-size: clamp(1.7rem, 3vw, 3.6rem);
  font-weight: 620;
  letter-spacing: -0.045em;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.final-command:hover {
  box-shadow: 0 22px 50px rgba(10, 10, 10, 0.22);
  transform: translateY(-6px);
}

.final-command:active { transform: translateY(1px) scale(0.995); }

.final-command__mark {
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  font-size: 1.45rem;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.final-command:hover .final-command__mark { transform: rotate(-90deg); }

.final-command kbd {
  font: inherit;
  font-size: 0.9em;
}

/* Companion */
.companion {
  position: fixed;
  right: clamp(10px, 2vw, 28px);
  bottom: clamp(10px, 2vw, 24px);
  z-index: 82;
  width: 112px;
  height: 126px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(24px);
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.companion.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.companion model-viewer {
  width: 100%;
  height: 100%;
  --poster-color: transparent;
  background: transparent;
  filter: drop-shadow(0 12px 13px rgba(10, 10, 10, 0.18));
  pointer-events: none;
}

.companion-card {
  position: fixed;
  right: clamp(18px, 2.6vw, 40px);
  bottom: 146px;
  z-index: 81;
  width: min(320px, calc(100vw - 36px));
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(10, 10, 10, 0.16);
  animation: companion-in 0.28s ease both;
}

@keyframes companion-in {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
}

.companion-card strong { font-size: 1rem; }
.companion-card p { margin: 8px 0 18px; color: var(--muted); font-size: 0.88rem; }
.companion-card a { display: inline-block; padding-bottom: 3px; border-bottom: 1px solid; font-weight: 650; text-decoration: none; }

/* Footer */
.footer {
  padding-block: 42px;
  color: var(--paper);
  background: var(--ink);
}

.footer .brand { color: var(--paper); }

.footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.footer__inner p {
  margin: 0;
  color: rgba(247, 246, 243, 0.58);
  font-size: 0.82rem;
  text-align: center;
}

.footer__inner > a:last-child {
  font-size: 0.8rem;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1160px) {
  .hero__copy { grid-column: 1 / 11; }
  .hero__stage { grid-column: 7 / 13; width: 100%; margin-right: 0; }
  .hero__mascot--pose { inset: auto 0 0 auto; width: min(32vw, 380px); }
  .lab__grid { grid-template-columns: minmax(220px, 0.8fr) minmax(460px, 1.5fr); }
  .phone { grid-column: 2; width: 240px; margin-top: 20px; }
  .lab__choices { grid-row: 1 / span 2; }
  .capabilities__grid { grid-template-columns: 1fr 0.78fr; gap: 54px; }
  .cap-visual { min-height: 720px; }
}

@media (max-width: 900px) {
  .site-nav { grid-template-columns: auto 1fr auto; gap: 12px; padding-left: 16px; }
  .site-nav__links { display: none; }
  .nav-talk { min-width: 128px; }

  .hero__layout {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(290px, 1fr);
    min-height: calc(100dvh - 100px);
    padding-top: 44px;
  }
  .hero__copy { grid-column: 1; align-self: start; padding: 0; transform: translateY(-8px); }
  .hero__copy h1 { max-width: 13ch; font-size: clamp(3.4rem, 11.5vw, 6.4rem); }
  .hero__copy > p { max-width: 46ch; margin-top: 24px; }
  .hero__actions { margin-top: 26px; }
  .hero__stage { grid-column: 1; grid-row: 2; width: min(100%, 650px); height: min(48dvh, 480px); margin: -26px auto 0; transform: translateY(-8px); }
  .hero__mascot--pose { inset: 0; width: 100%; height: 100%; max-height: none; }
  .hero__route { inset: 37% -20% auto 0; }

  .journey__chapter--left > div,
  .journey__chapter--right > div { grid-column: 1 / 11; justify-self: start; }
  .journey__chapter--right > div { grid-column: 3 / 13; justify-self: end; }

  .lab__grid { grid-template-columns: 1fr; }
  .lab__choices { display: grid; grid-template-columns: 1fr 1fr; grid-row: auto; }
  .lab-choice { min-height: 104px; border-right: 1px solid var(--line); }
  .lab__instrument { min-height: 510px; }
  .phone { grid-column: auto; width: 270px; margin-top: 24px; }

  .capabilities__grid { grid-template-columns: 1fr; }
  .cap-visual { min-height: 560px; }

  .showcase__stage { min-height: 650px; }
  .show-panel img,
  .show-panel video,
  .show-panel model-viewer { width: 74%; }
  .show-panel figcaption { top: auto; right: 30px; bottom: 36px; left: 30px; max-width: 48%; transform: none; }
  .show-panel::after { background: linear-gradient(0deg, var(--white) 0%, rgba(255,255,255,.9) 28%, transparent 65%); }
  .show-panel--interactive { grid-template-columns: 1fr; }

  .faq__grid { grid-template-columns: 1fr; gap: 60px; }
  .final-stage__inner { min-height: 650px; }
  .final-stage__mascot { right: -18%; width: 82vw; }
}

@media (max-width: 640px) {
  :root { --gutter: 20px; --radius: 18px; }
  .section-space { padding-block: 94px; }
  .section-heading h2,
  .final-stage h2 { font-size: clamp(2.75rem, 13vw, 4.5rem); line-height: 0.94; }
  .section-heading > p:last-child { margin-top: 22px; font-size: 1rem; }

  .site-nav { top: 8px; width: calc(100% - 16px); height: 58px; border-radius: 15px; }
  .brand { font-size: 1rem; }
  .brand__mark { width: 24px; height: 24px; }
  .nav-talk { min-width: 108px; height: 40px; padding-inline: 14px 10px; gap: 10px; }

  .hero { padding-top: 76px; }
  .hero__layout { min-height: calc(100dvh - 76px); padding-top: 34px; grid-template-rows: auto minmax(260px, 1fr); }
  .hero__copy h1 { max-width: 11.8ch; font-size: clamp(3.15rem, 15vw, 4.8rem); letter-spacing: -0.075em; }
  .hero__copy > p { font-size: 1rem; line-height: 1.5; }
  .hero__actions { align-items: stretch; gap: 12px; }
  .hero-action { grid-template-columns: auto 64px; gap: 18px; min-height: 56px; padding-left: 20px; }
  .hero-action svg { width: 64px; }
  .hero-whatsapp { min-height: 46px; padding-left: 18px; }
  .hero__stage { height: min(41dvh, 350px); margin-top: -22px; transform: translateY(-6px); }

  .journey__wash { background: linear-gradient(180deg, rgba(247,246,243,.22), rgba(247,246,243,.04) 35%, rgba(247,246,243,.34)); }
  .journey__meter { left: 10px; }
  .journey__chapter { grid-template-columns: 1fr; align-items: end; min-height: 100dvh; padding: 90px 20px 42px; }
  .journey__chapter--left > div,
  .journey__chapter--right > div { grid-column: 1; justify-self: stretch; max-width: none; padding: 24px; }
  .journey__chapter h2 { max-width: 8ch; font-size: clamp(2.8rem, 13vw, 4.6rem); }
  .journey__chapter p { margin-top: 16px; font-size: 0.96rem; }

  .lab__heading { margin-bottom: 52px; }
  .lab__choices { grid-template-columns: 1fr; }
  .lab-choice { min-height: 92px; border-right: 0; }
  .lab__instrument { min-height: 560px; padding: 20px 16px; overflow: hidden; }
  .logic { grid-template-columns: 1fr; gap: 8px; margin: 10px 0; padding: 22px 0; }
  .logic__node { grid-template-columns: 34px auto 1fr; align-items: center; justify-items: start; gap: 10px; padding: 10px 14px; text-align: left; }
  .logic__icon { grid-row: 1 / span 2; margin: 0; }
  .logic__node strong { margin: 0; }
  .logic__wire { justify-self: center; width: 1px; height: 14px; }
  .logic__wire i { top: -5px; left: -1px; width: 3px; height: 5px; }
  @keyframes wire-run { to { transform: translateY(22px); } }
  .phone { width: 244px; }

  .cap-row { grid-template-columns: 1fr auto; min-height: 96px; gap: 8px; }
  .cap-row > span { font-size: 2.2rem; }
  .cap-row small { grid-column: 1; }
  .cap-row b { grid-column: 2; grid-row: 1; }
  .cap-visual { min-height: 480px; }
  .cap-visual__mark { width: 58%; }

  .showcase__tabs { grid-template-columns: 1fr 1fr; }
  .showcase-tab:nth-child(2) { border-right: 0; }
  .showcase-tab:nth-child(-n + 2) { border-bottom: 1px solid var(--line); }
  .showcase-tab { min-height: 76px; padding: 14px; }
  .showcase__stage { min-height: 620px; margin-top: 18px; }
  .show-panel img,
  .show-panel video,
  .show-panel model-viewer { top: 0; width: 100%; height: 65%; object-position: center top; }
  .show-panel figcaption { right: 22px; bottom: 28px; left: 22px; max-width: none; }
  .show-panel figcaption strong,
  .show-panel--interactive > p strong { font-size: 2.8rem; }
  .show-panel--interactive { display: flex; flex-direction: column; justify-content: center; gap: 42px; padding: 22px; }
  .mini-system { width: 100%; min-height: 220px; padding: 18px; grid-template-columns: 72px minmax(34px, 1fr) 110px; }
  .mini-system__trigger { width: 72px; }
  .mini-system__result { padding: 14px; }
  .plan-row summary { grid-template-columns: 1fr auto; gap: 12px; min-height: 116px; }
  .plan-row summary > span { grid-template-columns: 1fr; gap: 3px; }
  .plan-row summary > b { font-size: 1.7rem; }
  .plan-row summary > i { display: none; }

  .faq__grid { gap: 46px; }
  .faq__list summary { padding-block: 22px; font-size: 1rem; }

  .final-stage { padding-top: 92px; }
  .final-stage__inner { min-height: 630px; }
  .final-stage__copy { max-width: 95%; }
  .final-stage__mascot { right: -34%; bottom: 9%; width: 118vw; }
  .final-command { right: 20px; bottom: 36px; left: 20px; grid-template-columns: 52px 1fr auto; gap: 14px; min-height: 84px; padding: 10px 16px 10px 10px; font-size: 1.7rem; }
  .final-command__mark { width: 52px; height: 52px; font-size: 1rem; }

  .companion { width: 82px; height: 92px; }
  .companion-card { bottom: 110px; }
  .footer__inner { grid-template-columns: 1fr auto; }
  .footer__inner p { grid-column: 1 / -1; grid-row: 2; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero__copy h1,
  .hero__copy > p,
  .hero__actions { opacity: 1; transform: none; }
  .journey__chapter > div { transform: none; }
}
