:root {
  --bg: #f4f2ec;
  --paper: #fffdf8;
  --ink: #263743;
  --muted: #758089;
  --line: rgba(38, 55, 67, 0.14);
  --dark: #263844;
  --dark-soft: #334b58;
  --dark-line: rgba(255, 255, 255, 0.16);
  --cream: #eeeadf;
  --accent: #c8bea3;
  --accent-dark: #405865;
  --mist: #d9ddda;
  --sand: #d3c9ad;
  --slate: #405865;
  --pointer-x: 0px;
  --pointer-y: 0px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "Outfit", Arial, sans-serif;
  --display: "Fraunces", Georgia, serif;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  cursor: none;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

::selection {
  background: rgba(200, 190, 163, 0.42);
  color: var(--ink);
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 90ms ease, width 110ms ease, height 110ms ease, background 110ms ease, border-color 110ms ease;
  will-change: transform;
  mix-blend-mode: difference;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff7ea;
  box-shadow:
    0 0 0 1px rgba(38, 55, 67, 0.72),
    0 0 20px rgba(255, 247, 234, 0.38);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border: 1px solid #fff7ea;
  border-radius: 50%;
  box-shadow:
    0 0 0 1px rgba(38, 55, 67, 0.48),
    0 0 24px rgba(255, 247, 234, 0.24);
}

body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring {
  opacity: 1;
}

body.cursor-hover .cursor-dot {
  width: 10px;
  height: 10px;
  background: #fff7ea;
  box-shadow:
    0 0 0 1px rgba(38, 55, 67, 0.78),
    0 0 18px rgba(255, 247, 234, 0.42);
}

body.cursor-hover .cursor-ring {
  width: 54px;
  height: 54px;
  border-color: #fff7ea;
  background: transparent;
  box-shadow:
    0 0 0 1px rgba(38, 55, 67, 0.62),
    0 0 28px rgba(255, 247, 234, 0.28);
}

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

.metric-burst-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff7ea;
  box-shadow: 0 0 14px rgba(255, 247, 234, 0.4);
  pointer-events: none;
  z-index: 9998;
  opacity: 1;
  transition: opacity 420ms ease;
  will-change: transform;
}

.metric-burst-dot.is-fading {
  opacity: 0;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--paper);
  color: var(--ink);
  padding: 10px 14px;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 15;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 52px);
  color: var(--ink);
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom-color: var(--line);
  backdrop-filter: blur(18px);
  padding-block: 12px;
}

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

.brand-logo {
  width: auto;
  height: 46px;
  max-width: min(220px, 24vw);
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 400;
}

.main-nav a {
  opacity: 0.82;
  transition: opacity 180ms ease, color 180ms ease;
}

.main-nav a:hover {
  opacity: 1;
  color: var(--accent-dark);
}

.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;
}

.header-social,
.contact-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  min-width: 34px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(38, 55, 67, 0.18);
  color: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.social-link::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background: currentColor;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.social-link-facebook::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.12 8.04H17V4.76A24.5 24.5 0 0 0 14.26 4c-2.7 0-4.55 1.65-4.55 4.67v2.78H6.75v3.67h2.96V24h3.63v-8.88h2.84l.45-3.67h-3.29V9.03c0-1.06.29-1.79 1.78-1.79Z'/%3E%3C/svg%3E");
}

.social-link-messenger::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.48 2 2.2 5.88 2.2 11.12c0 2.98 1.39 5.63 3.57 7.33V22l3.27-1.8c.92.26 1.91.4 2.96.4 5.52 0 9.8-3.88 9.8-9.12S17.52 2 12 2Zm1.02 12.45-2.5-2.66-4.88 2.66 5.38-5.72 2.55 2.66 4.83-2.66-5.38 5.72Z'/%3E%3C/svg%3E");
}

.social-link-instagram::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7.8 2h8.4A5.81 5.81 0 0 1 22 7.8v8.4a5.81 5.81 0 0 1-5.8 5.8H7.8A5.81 5.81 0 0 1 2 16.2V7.8A5.81 5.81 0 0 1 7.8 2Zm0 2A3.8 3.8 0 0 0 4 7.8v8.4A3.8 3.8 0 0 0 7.8 20h8.4a3.8 3.8 0 0 0 3.8-3.8V7.8A3.8 3.8 0 0 0 16.2 4H7.8Zm4.2 3.1a4.9 4.9 0 1 1 0 9.8 4.9 4.9 0 0 1 0-9.8Zm0 2a2.9 2.9 0 1 0 0 5.8 2.9 2.9 0 0 0 0-5.8Zm5.15-2.25a1.15 1.15 0 1 1 0 2.3 1.15 1.15 0 0 1 0-2.3Z'/%3E%3C/svg%3E");
}

.social-link:hover,
.social-link.is-touching {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff7ea;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  min-height: 34px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: none;
}

.lang-toggle {
  width: 40px;
  border: 1px solid rgba(38, 55, 67, 0.18);
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.nav-toggle {
  display: none;
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(38, 55, 67, 0.18);
  background: transparent;
  color: inherit;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle::before {
  transform: translate(-50%, -50%) translateY(-5px);
}

.nav-toggle::after {
  transform: translate(-50%, -50%) translateY(5px);
}

.nav-toggle[aria-expanded="true"] span {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"]::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-toggle[aria-expanded="true"]::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.section {
  padding: clamp(78px, 9vw, 132px) 0;
  position: relative;
}

.signature-section {
  isolation: isolate;
}

.signature-section::before,
.portfolio-lab::before {
  content: "";
  position: absolute;
  inset: 34px clamp(18px, 3vw, 42px);
  border: 1px solid rgba(38, 55, 67, 0.07);
  pointer-events: none;
}

.signature-section::before {
  z-index: 0;
  background: #ffffff;
}

.signature-section > .container {
  position: relative;
  z-index: 1;
}

.signature-section .split-heading {
  margin-bottom: clamp(36px, 5vw, 68px);
}

.section-light {
  background: var(--paper);
}

.section-warm {
  background: var(--bg);
}

.section-dark {
  background: var(--dark);
  color: #ffffff;
}

#method {
  background: linear-gradient(180deg, #fffdf8 0%, #f8f6ef 100%);
}

#pricing {
  --pricing-bg-circle: 0.52;
  background:
    radial-gradient(circle at 86% 8%, rgb(217 221 218 / var(--pricing-bg-circle)) 0 120px, transparent 122px),
    linear-gradient(180deg, #fffdf8 0%, #fbf9f3 100%);
}

#pricing.is-pricing-circle-hidden {
  --pricing-bg-circle: 0;
}

.hero {
  --hero-bg-circle-one: 0.24;
  --hero-bg-circle-two: 0.28;
  --hero-bg-circle-three: 0.34;
  --hero-overlay-circle-one: 0.62;
  --hero-overlay-circle-two: 0.42;
  --hero-overlay-circle-three: 0.44;
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 128px 0 104px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 32%, rgb(200 190 163 / var(--hero-bg-circle-one)) 0 64px, transparent 66px),
    radial-gradient(circle at 78% 18%, rgb(64 88 101 / var(--hero-bg-circle-two)) 0 82px, transparent 84px),
    radial-gradient(circle at 70% 72%, rgb(217 221 218 / var(--hero-bg-circle-three)) 0 116px, transparent 118px),
    var(--paper);
  color: var(--ink);
}

.hero.is-bg-circle-one-hidden {
  --hero-bg-circle-one: 0;
}

.hero.is-bg-circle-two-hidden {
  --hero-bg-circle-two: 0;
}

.hero.is-bg-circle-three-hidden {
  --hero-bg-circle-three: 0;
}

.hero.is-overlay-circle-one-hidden {
  --hero-overlay-circle-one: 0;
}

.hero.is-overlay-circle-two-hidden {
  --hero-overlay-circle-two: 0;
}

.hero.is-overlay-circle-three-hidden {
  --hero-overlay-circle-three: 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  transition: opacity 260ms ease, transform 260ms ease;
}

.hero::before {
  left: 8%;
  top: 24%;
  width: clamp(68px, 9vw, 126px);
  aspect-ratio: 1;
  background: rgba(200, 190, 163, 0.24);
  animation: floatCircleA 9s ease-in-out infinite;
}

.hero::after {
  right: 12%;
  top: 18%;
  width: clamp(92px, 13vw, 176px);
  aspect-ratio: 1;
  border: 1px solid rgba(187, 176, 144, 0.74);
  box-shadow: 0 0 0 1px rgba(187, 176, 144, 0.16);
  animation: floatCircleB 12s ease-in-out infinite;
}

.hero.is-pseudo-circle-one-hidden::before {
  opacity: 0;
  transform: scale(0.72);
}

.hero-overlay {
  position: absolute;
}

.orb.is-hidden,
.service-icon.is-hidden,
.plan-icon.is-hidden {
  opacity: 0;
  transform: scale(0.72) !important;
  pointer-events: none;
}

.hero-overlay {
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 62%, rgb(64 88 101 / var(--hero-overlay-circle-one)) 0 18px, transparent 19px),
    radial-gradient(circle at 18% 72%, rgb(200 190 163 / var(--hero-overlay-circle-two)) 0 12px, transparent 13px),
    radial-gradient(circle at 86% 10%, rgb(64 88 101 / var(--hero-overlay-circle-three)) 0 34px, transparent 35px);
  animation: softDrift 16s ease-in-out infinite alternate;
}

.orb-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  display: block;
  border-radius: 50%;
  pointer-events: auto;
  background: rgba(64, 88, 101, 0.28);
  box-shadow: 0 30px 90px rgba(200, 190, 163, 0.24);
  transform: translate3d(calc(var(--pointer-x) * var(--orb-depth)), calc(var(--pointer-y) * var(--orb-depth)), 0);
  animation: orbFloat 10s ease-in-out infinite;
  transition: opacity 260ms ease, transform 260ms ease;
  will-change: transform;
}

.orb-one {
  --orb-depth: 0.16;
  left: 5%;
  top: 21%;
  width: clamp(76px, 8.6vw, 138px);
  aspect-ratio: 1;
  background: rgba(200, 190, 163, 0.34);
}

.orb-two {
  --orb-depth: -0.22;
  right: 13%;
  top: 14%;
  width: clamp(104px, 13vw, 206px);
  aspect-ratio: 1;
  border: 1px solid rgba(64, 88, 101, 0.48);
  background: transparent;
  animation-duration: 13s;
}

.orb-three {
  --orb-depth: 0.28;
  left: 13%;
  bottom: 22%;
  width: 38px;
  aspect-ratio: 1;
  background: rgba(217, 221, 218, 0.7);
  animation-duration: 8s;
}

.orb-four {
  --orb-depth: -0.14;
  right: 28%;
  bottom: 20%;
  width: clamp(54px, 5vw, 86px);
  aspect-ratio: 1;
  background: rgba(64, 88, 101, 0.22);
  opacity: 0.8;
  animation-duration: 11s;
}

.orb-five {
  --orb-depth: 0.34;
  right: 46%;
  top: 16%;
  width: 22px;
  aspect-ratio: 1;
  background: rgba(211, 201, 173, 0.6);
  animation-duration: 7s;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: min(1180px, calc(100% - 40px));
  display: block;
  text-align: left;
}

.hero-copy-block {
  position: relative;
  max-width: 820px;
}

.hero-copy-block::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 4px;
  width: 1px;
  height: calc(100% - 12px);
  background: linear-gradient(to bottom, transparent, rgba(64, 88, 101, 0.72), transparent);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 400;
}

.section-kicker {
  margin-bottom: clamp(22px, 2.4vw, 30px);
}

.eyebrow::after,
.section-kicker::after {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  margin: 16px 0 0;
  background: currentColor;
}

.split-heading .section-kicker::after,
.method-sticky .section-kicker::after,
.diagnosis-grid .section-kicker::after {
  margin-inline: auto;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin: 0 0 22px;
  font-size: clamp(54px, 7.6vw, 118px);
  line-height: 0.98;
  white-space: pre-line;
}

h2 {
  font-size: clamp(30px, 3.7vw, 52px);
  line-height: 1.08;
}

h3 {
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1.14;
  font-weight: 400;
}

.hero-copy {
  max-width: 560px;
  margin-inline: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.62;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: none;
}

.button-primary {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}

.button-ghost {
  color: var(--ink);
}

.hero-footer {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  overflow-x: auto;
  scrollbar-width: none;
  cursor: grab;
}

.hero-footer::-webkit-scrollbar {
  display: none;
}

.hero-footer:active {
  cursor: grabbing;
}

.hero-ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: service-ticker 28s linear infinite;
  will-change: transform;
}

.hero-footer:focus-within .hero-ticker-track {
  animation-play-state: paused;
}

@media (hover: hover) and (pointer: fine) {
  .hero-footer:hover .hero-ticker-track {
    animation-play-state: paused;
  }
}

.hero-ticker-track span {
  position: relative;
  flex: 0 0 auto;
  padding: 18px clamp(18px, 3vw, 42px);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
}

.hero-ticker-track span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 32%;
  bottom: 32%;
  width: 1px;
  background: var(--line);
}

@keyframes service-ticker {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.split-heading {
  display: block;
  max-width: 820px;
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 52px);
}

.split-heading h2 {
  margin-inline: auto;
}

.split-heading h2,
.method-sticky h2,
.diagnosis h2,
.audience-grid h2,
.faq-layout h2,
.final-inner h2 {
  max-width: 820px;
}

.split-heading > p:last-child,
.method-sticky p:not(.section-kicker),
.final-inner p {
  color: var(--muted);
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.7;
  max-width: 680px;
  margin-inline: auto;
}

.section-dark .split-heading > p:last-child,
.section-dark .final-inner p {
  color: rgba(255, 247, 234, 0.72);
}

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

.service-item {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 260px;
  padding: clamp(24px, 2.8vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-item > span:first-child {
  position: relative;
  z-index: 2;
}

.service-item::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(200, 190, 163, 0.24), transparent 38%);
  transition: opacity 220ms ease;
}

.service-item:nth-child(even) {
  background: #ffffff;
}

.service-item:hover,
.service-item.is-touching {
  background: var(--dark);
  color: #ffffff;
  transform: translateY(-6px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  box-shadow: 0 24px 54px rgba(38, 55, 67, 0.12);
}

.service-item:hover::before,
.service-item.is-touching::before {
  opacity: 1;
}

.service-item:hover p,
.service-item.is-touching p {
  color: rgba(255, 247, 234, 0.72);
}

.service-item:hover > span:first-child,
.service-item.is-touching > span:first-child {
  color: #fff7ea;
}

.service-item span,
.pricing-row p:first-child,
.process-track span,
.method-list span {
  color: var(--accent-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 400;
}

.service-item h3 {
  margin: auto 0 18px;
  padding-top: clamp(48px, 5vw, 70px);
  font-family: var(--display);
  font-weight: 400;
  position: relative;
  z-index: 1;
}

.service-item p {
  color: var(--muted);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.service-icon,
.plan-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin: 28px 0 18px;
  border: 1px solid rgba(64, 88, 101, 0.24);
  border-radius: 50%;
  color: var(--accent-dark);
  background: rgba(200, 190, 163, 0.14);
  position: relative;
  z-index: 1;
  transition: transform 260ms ease, background 220ms ease, color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-icon {
  position: absolute;
  right: clamp(16px, 2vw, 28px);
  top: clamp(18px, 2.2vw, 34px);
  width: clamp(34px, 3.2vw, 52px);
  height: clamp(34px, 3.2vw, 52px);
  margin: 0;
  border: 0;
  border-radius: 0;
  color: rgba(187, 176, 144, 0.72);
  background: transparent;
  z-index: 0;
}

.service-icon svg,
.plan-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.service-item:hover .service-icon,
.service-item.is-touching .service-icon {
  color: #bbb090;
  background: transparent;
  border-color: transparent;
  transform: scale(1.06);
  box-shadow: none;
}

.diagnosis {
  padding: clamp(78px, 9vw, 138px) 0;
}

.diagnosis-grid,
.audience-grid,
.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 110px);
}

.diagnosis-grid {
  grid-template-columns: 1fr;
  max-width: 980px;
  gap: clamp(16px, 2.8vw, 34px);
  text-align: center;
}

.diagnosis h2 {
  margin-inline: auto;
  text-align: center;
  line-height: 0.9;
}

.diagnosis-copy {
  max-width: 680px;
  margin: clamp(18px, 2.4vw, 30px) auto 0;
  color: rgba(255, 247, 234, 0.72);
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.7;
  text-align: center;
}

.method-layout {
  display: block;
}

.method-sticky {
  max-width: 820px;
  margin: 0 auto clamp(36px, 5vw, 68px);
  text-align: center;
}

.method-sticky h2 {
  margin-inline: auto;
}

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

.method-list article {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 260px;
  padding: clamp(24px, 2.6vw, 34px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.method-list article::before,
.audience-list li::before,
.process-track div::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(217, 221, 218, 0.34), transparent 42%);
  transition: opacity 220ms ease;
}

.process-track div::before {
  inset: 1px;
}

.method-list article:hover,
.method-list article.is-touching {
  background: #ffffff;
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(38, 55, 67, 0.08);
}

.method-list article:hover::before,
.method-list article.is-touching::before,
.audience-list li:hover::before,
.audience-list li.is-touching::before,
.process-track div:hover::before,
.process-track div.is-touching::before {
  opacity: 1;
}

.method-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.method-icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  align-self: flex-start;
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent-dark);
  background: rgba(200, 190, 163, 0.14);
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.method-list article:hover .method-icon,
.method-list article.is-touching .method-icon {
  transform: scale(1.08);
  background: var(--accent);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(64, 88, 101, 0.22);
}

.method-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.metrics {
  padding: clamp(64px, 8vw, 112px) 0;
}

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

.metric {
  display: block;
  width: 100%;
  min-height: 230px;
  padding: clamp(24px, 3.2vw, 40px);
  border: 0;
  border-right: 1px solid var(--dark-line);
  border-bottom: 1px solid var(--dark-line);
  background: transparent;
  color: inherit;
  text-align: left;
  font: inherit;
}

.metric strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(56px, 7vw, 104px);
  line-height: 0.9;
  font-weight: 400;
  transition: color 200ms ease;
}

.metric:hover strong,
.metric:focus-visible strong {
  color: var(--accent);
}

.metric span {
  display: block;
  max-width: 260px;
  margin-top: 24px;
  color: rgba(255, 247, 234, 0.72);
  line-height: 1.55;
}

.pricing-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  isolation: isolate;
}

.pricing-row {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: grid;
  min-height: 360px;
  grid-template-rows: auto minmax(150px, 1fr) auto;
  align-items: stretch;
  gap: 20px;
  padding: clamp(26px, 3vw, 42px);
  margin-top: -1px;
  margin-left: -1px;
  border: 1px solid var(--line);
  background: var(--paper);
  overflow: hidden;
  z-index: 0;
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.pricing-row::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(200, 190, 163, 0.24), transparent 42%);
  transition: opacity 220ms ease;
}

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

.pricing-bottom {
  display: grid;
  align-self: end;
  gap: 12px;
  width: 100%;
}

.pricing-row:hover,
.pricing-row.is-touching {
  z-index: 3;
  transform: translateY(-7px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  box-shadow: 0 26px 60px rgba(38, 55, 67, 0.14);
}

.pricing-row:hover::before,
.pricing-row.is-touching::before {
  opacity: 1;
}

.pricing-row:hover p:first-child,
.pricing-row.is-touching p:first-child {
  color: var(--accent);
}

.pricing-row.is-featured {
  color: #ffffff;
  background: var(--dark);
  padding-inline: clamp(20px, 3vw, 36px);
  margin-inline: 0;
}

.pricing-row.is-featured::before {
  background: radial-gradient(circle at var(--mx) var(--my), rgba(64, 88, 101, 0.28), transparent 44%);
}

.pricing-row.is-featured p:first-child {
  color: var(--accent);
}

.pricing-row h3 {
  margin-bottom: clamp(18px, 2vw, 30px);
  font-family: var(--display);
  font-size: clamp(26px, 2.7vw, 38px);
  font-weight: 400;
  line-height: 1.05;
}

.plan-icon {
  margin: 18px 0 20px;
}

.pricing-row.is-featured .plan-icon {
  color: var(--dark);
  background: #fff7ea;
  border-color: rgba(255, 247, 234, 0.72);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.pricing-row:hover .plan-icon,
.pricing-row.is-touching .plan-icon {
  color: var(--ink);
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 16px 34px rgba(64, 88, 101, 0.26);
}

.pricing-row > p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.plan-points {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  line-height: 1.45;
}

.plan-points li {
  position: relative;
  padding-left: 24px;
}

.plan-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  transform: translateY(-50%);
  border: 1px solid currentColor;
  border-radius: 50%;
  background: rgba(200, 190, 163, 0.28);
  color: var(--accent-dark);
}

.pricing-row.is-featured .plan-points {
  color: rgba(255, 247, 234, 0.72);
}

.team-size {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-block: clamp(16px, 1.8vw, 26px);
  color: var(--ink);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-row.is-featured .team-size {
  color: #ffffff;
}

.person-icon {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
}

.person-icon::before,
.person-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: currentColor;
}

.person-icon::before {
  top: 1px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.person-icon::after {
  bottom: 1px;
  width: 14px;
  height: 8px;
  border-radius: 8px 8px 3px 3px;
}

.pricing-row.is-featured > p {
  color: rgba(255, 247, 234, 0.72);
}

.pricing-row strong {
  justify-self: start;
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 400;
  white-space: nowrap;
}

.pricing-button {
  width: 100%;
  min-height: 44px;
}

.button {
  position: relative;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: translateX(-120%);
  transition: transform 420ms ease;
}

.button::after {
  content: "\2192";
  margin-left: 10px;
  position: relative;
  transition: transform 180ms ease;
}

.button:hover::before,
.button.is-touching::before {
  transform: translateX(120%);
}

.button:hover::after,
.button.is-touching::after,
.pricing-row.is-touching .pricing-button::after {
  transform: translateX(4px);
}

.pricing-row:not(.is-featured) .pricing-button {
  color: var(--ink);
}

.pricing-row strong .price-period {
  display: inline;
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-row strong .price-main {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-transform: none;
  letter-spacing: 0;
}

.pricing-row.is-featured strong .price-period {
  color: rgba(255, 247, 234, 0.62);
}

.audience-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.audience-grid {
  align-items: start;
}

.audience-grid > div {
  position: sticky;
  top: 110px;
}

.audience-grid h2,
.faq-layout h2 {
  margin-bottom: 0;
}

.audience-list li {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 96px;
  padding: 24px;
  display: flex;
  align-items: center;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.22;
  overflow: hidden;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.audience-list li:hover,
.audience-list li.is-touching {
  background: #ffffff;
  color: var(--ink);
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(38, 55, 67, 0.08);
}

.audience-wide {
  grid-column: span 2;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid rgba(200, 190, 163, 0.4);
  border-left: 1px solid rgba(200, 190, 163, 0.4);
}

.process .split-heading {
  margin-bottom: clamp(36px, 5vw, 68px);
}

.process-track div {
  --mx: 50%;
  --my: 50%;
  position: relative;
  min-height: 150px;
  padding: 24px;
  border-right: 1px solid rgba(200, 190, 163, 0.4);
  border-bottom: 1px solid rgba(200, 190, 163, 0.4);
  overflow: hidden;
  transition: background 220ms ease, transform 220ms ease;
}

.process-track div:hover,
.process-track div.is-touching {
  background: rgba(200, 190, 163, 0.14);
  transform: none;
}

.process-track div.is-piano-lit {
  background: rgba(200, 190, 163, 0.4);
  box-shadow: inset 0 0 0 1px rgba(200, 190, 163, 0.6);
}

.process-track span {
  color: var(--accent);
  transition: color 200ms ease;
}

.process-track div.is-piano-lit span {
  color: #fff7ea;
}

.process-track p {
  position: relative;
  z-index: 1;
  margin: 44px 0 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(17px, 1.45vw, 22px);
}

.process-track span {
  position: relative;
  z-index: 1;
}

.portfolio-lab {
  overflow: hidden;
}

.portfolio-lab::after {
  content: "Selected directions";
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  color: rgba(38, 55, 67, 0.16);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  pointer-events: none;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.case-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--line);
  border-top: 0;
  border-left: 0;
  background: #ffffff;
  overflow: hidden;
  transition: background 220ms ease, transform 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.case-card:hover,
.case-card.is-touching {
  background: var(--dark);
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(38, 55, 67, 0.14);
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(64, 88, 101, 0);
  pointer-events: none;
  transition: border-color 180ms ease, inset 180ms ease;
}

.case-card:hover::before,
.case-card.is-touching::before {
  inset: 14px;
  border-color: rgba(200, 190, 163, 0.58);
}

.case-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(circle at var(--mx) var(--my), rgba(64, 88, 101, 0.22), transparent 44%);
  transition: opacity 220ms ease;
}

.case-card:hover::after,
.case-card.is-touching::after {
  opacity: 1;
}

.case-visual {
  width: 100%;
  aspect-ratio: 1.04;
  height: auto;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--line);
  filter: saturate(0.92) contrast(1.02);
  transition: transform 420ms ease, filter 180ms ease;
}

.case-card:hover .case-visual,
.case-card.is-touching .case-visual {
  transform: scale(1.04);
  filter: saturate(1.04) contrast(1.06);
}

.case-one {
  background-image:
    radial-gradient(circle at 72% 28%, rgba(200, 190, 163, 0.46) 0 72px, transparent 74px),
    linear-gradient(120deg, rgba(255, 255, 255, 0.18), rgba(200, 190, 163, 0.18)),
    url("assets/case-hospitality-less-is-more.png");
}

.case-two {
  background-image:
    radial-gradient(circle at 28% 70%, rgba(64, 88, 101, 0.44) 0 66px, transparent 68px),
    linear-gradient(120deg, rgba(255, 255, 255, 0.24), rgba(38, 55, 67, 0.2)),
    url("assets/case-retail-less-is-more.png");
  background-position: center;
}

.case-three {
  background-image:
    radial-gradient(circle at 72% 30%, rgba(64, 88, 101, 0.34) 0 72px, transparent 74px),
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), rgba(38, 55, 67, 0.08)),
    url("assets/case-b2b-less-is-more.png");
}

.case-body {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 230px;
  grid-template-rows: auto auto 1fr auto;
  padding: 24px;
}

.case-number {
  position: absolute;
  right: 24px;
  top: 22px;
  color: rgba(38, 55, 67, 0.16);
  font-family: var(--display);
  font-size: clamp(52px, 6vw, 88px);
  font-weight: 700;
  line-height: 0.8;
  transition: color 180ms ease;
}

.case-card:hover .case-number,
.case-card.is-touching .case-number {
  color: rgba(200, 190, 163, 0.24);
}

.case-card p {
  margin: 0 0 20px;
  color: var(--accent-dark);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 300;
}

.case-card h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(20px, 1.65vw, 25px);
  font-weight: 400;
  line-height: 1.18;
}

.case-card:hover h3,
.case-card.is-touching h3 {
  color: #ffffff;
}

.case-proof {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.case-card:hover .case-proof,
.case-card.is-touching .case-proof {
  color: rgba(255, 255, 255, 0.58);
}

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

.faq-layout {
  align-items: start;
  grid-template-columns: minmax(220px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(28px, 5.6vw, 88px);
}

.faq-layout > div:first-child {
  position: sticky;
  top: 110px;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
}

summary {
  cursor: none;
  list-style: none;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.22;
  padding-right: 34px;
}

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

summary::after {
  content: "+";
  float: right;
  font-family: var(--sans);
  font-size: 18px;
  color: var(--accent-dark);
  margin-right: -30px;
}

details[open] summary::after {
  content: "-";
}

details p {
  max-width: 760px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.7;
}

.final-cta {
  padding-block: clamp(84px, 10vw, 150px);
}

.final-cta .split-heading {
  margin-bottom: clamp(22px, 3vw, 38px);
}

.final-inner {
  text-align: center;
}

.final-inner .button {
  margin-top: 24px;
}

.contact-social {
  justify-content: center;
  margin-top: 16px;
}

.section-dark .contact-social .social-link {
  border-color: rgba(255, 247, 234, 0.28);
  color: rgba(255, 247, 234, 0.84);
}

.section-dark .contact-social .social-link:hover,
.section-dark .contact-social .social-link.is-touching {
  background: #fff7ea;
  border-color: #fff7ea;
  color: var(--dark);
}

.legal-page {
  padding-top: 92px;
}

.legal-layout {
  max-width: 920px;
}

.legal-heading {
  max-width: 820px;
  margin: 0 0 clamp(28px, 4vw, 52px);
  text-align: left;
}

.legal-layout h1 {
  max-width: 820px;
  margin-inline: 0;
  font-size: clamp(42px, 6vw, 78px);
}

.legal-layout h1 strong {
  font: inherit;
}

.legal-layout h2 {
  margin: 54px 0 14px;
  font-size: clamp(24px, 2.5vw, 34px);
}

.legal-layout p:not(.section-kicker) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.legal-layout p strong {
  color: var(--ink);
  font-weight: 700;
}

.legal-date {
  color: var(--accent-dark) !important;
  font-weight: 400;
}

.legal-note {
  color: var(--accent-dark) !important;
  font-weight: 800;
}

.site-footer {
  display: grid;
  gap: clamp(18px, 2.6vw, 30px);
  padding: calc(clamp(18px, 2.6vw, 30px) + 5px) clamp(20px, 4vw, 52px) 0;
  background:
    linear-gradient(135deg, rgba(187, 176, 144, 0.055), transparent 46%),
    #17242c;
  color: rgba(255, 247, 234, 0.62);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 4vw, 64px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 32px);
  padding-block: clamp(16px, 2vw, 22px);
  border-top: 1px solid rgba(255, 247, 234, 0.12);
}

.footer-brand {
  display: grid;
  gap: 0;
}

.footer-logo {
  display: block;
  width: min(220px, 44vw);
  height: auto;
  max-height: 46px;
  object-fit: contain;
  object-position: left center;
}

.footer-meta span {
  color: rgba(255, 247, 234, 0.62);
}

.footer-links {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(18px, 3vw, 34px);
  min-width: 0;
  min-height: 18px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: rgba(255, 247, 234, 0.72);
  transition: color 180ms ease;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-meta {
  display: contents;
}

.footer-meta > span:first-child {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 18px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.footer-meta [data-current-year] {
  margin-right: 0.35em;
}

.footer-made-by {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 18px;
  line-height: 1;
  color: rgba(255, 247, 234, 0.72);
  transition: color 180ms ease;
}

.footer-made-by:hover {
  color: var(--accent);
}

.najlepiejpro-mark {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: 14px;
}

.footer-social {
  justify-content: end;
  margin-top: 0;
}

.footer-social .social-link {
  border-color: rgba(255, 247, 234, 0.18);
  color: rgba(255, 247, 234, 0.72);
}

.footer-social .social-link:hover,
.footer-social .social-link.is-touching {
  background: #fff7ea;
  border-color: #fff7ea;
  color: var(--dark);
}

.chat-widget {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 40;
  color: var(--ink);
}

.chat-trigger {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(38, 55, 67, 0.22);
  border-radius: 50%;
  background: #fffdf8;
  color: var(--ink);
  box-shadow: 0 18px 46px rgba(38, 55, 67, 0.18);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.chat-trigger svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chat-trigger:hover,
.chat-trigger[aria-expanded="true"] {
  background: #bbb090;
  border-color: #bbb090;
  color: var(--dark);
  transform: translateY(-2px);
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 14px);
  width: min(390px, calc(100vw - 32px));
  max-height: min(720px, calc(100vh - 112px));
  overflow: auto;
  border: 1px solid rgba(38, 55, 67, 0.16);
  background: #fffdf8;
  box-shadow: 0 30px 80px rgba(38, 55, 67, 0.2);
}

.chat-panel[hidden] {
  display: none;
}

.chat-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 22px 16px;
  border-bottom: 1px solid var(--line);
}

.chat-header p {
  margin: 0 0 8px;
  color: var(--accent-dark);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.chat-header h2 {
  margin: 0;
  font-size: 28px;
}

.chat-close {
  position: relative;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.chat-close::before,
.chat-close::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 1px;
  background: currentColor;
}

.chat-close::before {
  transform: rotate(45deg);
}

.chat-close::after {
  transform: rotate(-45deg);
}

.chat-thread {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.chat-bubble {
  max-width: 92%;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.52;
}

.chat-bot {
  justify-self: start;
  background: #f6f3ea;
}

.chat-user {
  justify-self: end;
  background: var(--dark);
  color: #fff7ea;
  border-color: var(--dark);
}

.chat-prices ul {
  display: grid;
  gap: 7px;
  margin: 8px 0 0;
  padding-left: 18px;
}

.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-self: start;
  max-width: 100%;
}

.chat-quick-reply {
  padding: 9px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  line-height: 1.3;
  text-align: left;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.chat-quick-reply:hover,
.chat-quick-reply:focus-visible {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff7ea;
}

.chat-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-top: 1px solid var(--line);
}

.chat-form[hidden] {
  display: none;
}

.chat-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.chat-form input {
  min-height: 42px;
  width: 100%;
  border: 1px solid var(--line);
  background: #ffffff;
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

.chat-submit {
  width: 100%;
  margin-top: 4px;
}

@keyframes floatCircleA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(22px, -18px, 0) scale(1.08);
  }
}

@keyframes floatCircleB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-26px, 20px, 0) scale(0.94);
  }
}

@keyframes softDrift {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(18px, -14px, 0);
  }
}

@keyframes orbFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -18px;
  }
}

@keyframes morphFrame {
  0%,
  100% {
    border-radius: 42% 58% 48% 52% / 52% 42% 58% 48%;
  }

  50% {
    border-radius: 56% 44% 58% 42% / 42% 58% 44% 56%;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.service-item[data-reveal],
.pricing-row[data-reveal],
.method-list article[data-reveal],
.process-track div[data-reveal],
.case-card[data-reveal] {
  transition:
    opacity 700ms ease,
    transform 220ms ease,
    background 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

.service-item[data-reveal].is-visible:hover,
.service-item[data-reveal].is-visible.is-touching {
  transform: translateY(-6px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}

.pricing-row[data-reveal].is-visible:hover,
.pricing-row[data-reveal].is-visible.is-touching {
  transform: translateY(-7px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
}

.method-list article[data-reveal].is-visible:hover,
.method-list article[data-reveal].is-visible.is-touching {
  transform: translateY(-5px);
}

.process-track div[data-reveal].is-visible:hover,
.process-track div[data-reveal].is-visible.is-touching {
  transform: none;
}

.case-card[data-reveal].is-visible:hover,
.case-card[data-reveal].is-visible.is-touching {
  transform: translateY(-6px);
}

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

  .hero-ticker-track {
    animation: none;
  }

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
  }
}

@media (hover: none), (pointer: coarse) {
  *,
  *::before,
  *::after {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .orb,
  .hero::before,
  .hero::after,
  .hero-overlay {
    animation: none;
    transform: none;
  }

  .hero-footer {
    overflow-x: hidden;
    cursor: auto;
    touch-action: pan-y;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .main-nav {
    justify-self: end;
    gap: 14px;
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .main-nav a:nth-child(2),
  .main-nav a:nth-child(4) {
    display: none;
  }

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

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

  .pricing-list {
    grid-template-columns: 1fr;
  }

  .pricing-row {
    min-height: auto;
    grid-template-rows: auto auto auto;
  }

  .process-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .pricing-row.is-featured {
    margin-inline: 0;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .pricing-row h3 br {
    display: none;
  }

  .site-header {
    position: absolute;
    grid-template-columns: 1fr auto;
    padding: 14px;
    gap: 12px;
    align-items: center;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-logo {
    height: 36px;
    max-width: calc(100vw - 180px);
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 6px clamp(16px, 6vw, 28px) 14px;
    background: rgba(255, 253, 248, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 40px rgba(38, 55, 67, 0.1);
    font-size: 13px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a:nth-child(2),
  .main-nav a:nth-child(4) {
    display: block;
  }

  .lang-toggle {
    position: absolute;
    top: 14px;
    right: 56px;
  }

  .nav-toggle {
    display: block;
    position: absolute;
    top: 14px;
    right: 14px;
  }

  .header-actions {
    padding-right: 96px;
    gap: 6px;
  }

  .header-social {
    gap: 6px;
  }

  .social-link {
    min-width: 30px;
    min-height: 30px;
    font-size: 10px;
  }

  .hero {
    min-height: 100vh;
    padding: 112px 0 110px;
  }

  .hero-inner {
    display: block;
    text-align: left;
  }

  .hero-copy-block::before {
    display: none;
  }

  .orb-one {
    left: -12%;
    top: 22%;
  }

  .orb-two {
    right: -18%;
    top: 18%;
  }

  .orb-four {
    right: 8%;
    bottom: 14%;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 12% 62%, rgb(64 88 101 / var(--hero-overlay-circle-one)) 0 16px, transparent 17px),
      radial-gradient(circle at 86% 10%, rgb(200 190 163 / var(--hero-overlay-circle-three)) 0 28px, transparent 29px);
  }

  h1 {
    max-width: 350px;
    font-size: clamp(40px, 12vw, 58px);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.08;
  }

  h3 {
    font-size: 20px;
  }

  .hero-copy {
    max-width: 340px;
    font-size: 15px;
    line-height: 1.62;
  }

  .button {
    min-height: 46px;
    font-size: 11px;
  }

  .split-heading,
  .diagnosis-grid,
  .audience-grid,
  .faq-layout,
  .method-layout,
  .pricing-row {
    grid-template-columns: 1fr;
  }

  .method-sticky {
    position: static;
  }

  .audience-grid > div,
  .faq-layout > div:first-child {
    position: static;
  }

  .method-list article {
    gap: 14px;
  }

  .service-grid,
  .metrics-grid,
  .audience-list,
  .method-list,
  .process-track {
    grid-template-columns: 1fr;
  }

  .audience-wide {
    grid-column: auto;
  }

  .service-item {
    min-height: 210px;
  }

  .metric {
    min-height: 180px;
  }

  .metric strong {
    font-size: 58px;
  }

  .pricing-row strong {
    justify-self: start;
  }

  .pricing-row.is-featured {
    margin-inline: 0;
  }

  .case-visual {
    height: 210px;
  }

  .site-footer {
    text-align: left;
    gap: calc(clamp(18px, 2.6vw, 30px) + 15px);
    padding-top: calc(clamp(18px, 2.6vw, 30px) + 20px);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    min-width: 0;
    width: 100%;
  }

  .footer-links {
    width: 100%;
    flex: none;
    justify-content: space-between;
    gap: 16px;
  }

  .footer-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
    text-align: center;
  }

  .footer-meta > span:first-child {
    flex: none;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .footer-made-by {
    flex: none;
    justify-content: center;
  }

  .chat-widget {
    right: 16px;
    bottom: 18px;
  }

  .chat-trigger {
    width: 50px;
    height: 50px;
  }
}
