:root {
  color-scheme: dark;
  --bg: #030303;
  --bg-soft: #090909;
  --ink: #f7f4ee;
  --muted: #aaa49b;
  --faint: #706d67;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.26);
  --gold: #ffd22d;
  --gold-soft: #ffe88a;
  --blue: #74c7ff;
  --green: #81e6b3;
  --rose: #ff9db0;
  --panel: rgba(255, 255, 255, 0.065);
  --radius: 8px;
  --nav-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.intro-open {
  overflow: hidden;
}

main {
  position: relative;
  z-index: 1;
}

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

.lang-pl {
  display: none;
}

html[lang="pl"] .lang-en {
  display: none;
}

html[lang="pl"] .lang-pl {
  display: inline;
}

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

.skin-field {
  position: fixed;
  inset: -12vh -12vw;
  z-index: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 210, 45, 0.18) 0 10%, transparent 10.5% 100%) 0 0 / 84px 44px,
    radial-gradient(ellipse at 50% 100%, rgba(255, 210, 45, 0.12) 0 10%, transparent 10.5% 100%) 42px 22px / 84px 44px,
    linear-gradient(135deg, rgba(255, 210, 45, 0.08), transparent 34%, rgba(255, 210, 45, 0.05) 68%, transparent),
    #030303;
  mix-blend-mode: screen;
  transform: translate3d(0, calc(var(--skin-scroll, 0px) * -1), 0) scale(1.02);
  animation: skin-drift 18s linear infinite;
}

.skin-field::before,
.skin-field::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-conic-gradient(from 30deg, rgba(255, 210, 45, 0.13) 0deg 7deg, transparent 7deg 18deg),
    radial-gradient(circle at 40% 38%, rgba(255, 210, 45, 0.14), transparent 34%),
    radial-gradient(circle at 68% 62%, rgba(0, 0, 0, 0.84), transparent 42%);
  opacity: 0.36;
  transform: translate3d(calc(var(--skin-scroll, 0px) * 0.42), calc(var(--skin-scroll, 0px) * -0.26), 0);
  animation: skin-sheen 24s ease-in-out infinite alternate;
}

.skin-field::after {
  opacity: 0.24;
  filter: blur(10px);
  transform: translate3d(calc(var(--skin-scroll, 0px) * -0.32), calc(var(--skin-scroll, 0px) * 0.22), 0) scale(1.08);
  animation-duration: 31s;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.17;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.12), transparent 18%),
    radial-gradient(circle at 70% 80%, rgba(255, 210, 45, 0.08), transparent 20%);
  mix-blend-mode: screen;
}

.funnel-transition {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  background: #000;
}

.funnel-transition::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
}

.transition-loader {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 20px;
  opacity: 0;
}

.funnel-transition.is-active .transition-loader {
  animation: transition-loader 3000ms ease forwards;
}

.transition-loader img {
  display: block;
  width: clamp(136px, 12vw, 190px);
  height: auto;
  object-fit: contain;
}

.loading-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.loading-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px rgba(255, 210, 45, 0.38);
  animation: loading-dot 900ms ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 150ms;
}

.loading-dots span:nth-child(3) {
  animation-delay: 300ms;
}

.funnel-transition.is-active {
  visibility: visible;
  animation: black-page-transition 3000ms ease-in-out forwards;
}

.funnel-transition.is-active::before {
  opacity: 1;
}

.screen {
  min-height: 100vh;
}

.intro-screen {
  display: none;
  position: relative;
  padding: 26px clamp(18px, 4vw, 56px);
  background: #000;
}

.intro-screen.is-active {
  display: block;
  position: fixed;
  inset: 0;
  z-index: 24;
}

.intro-screen.is-leaving {
  position: fixed;
  inset: 0;
  z-index: 24;
  display: block;
  pointer-events: none;
  animation: intro-leave 3000ms ease forwards;
}

.site-screen {
  display: none;
  background:
    radial-gradient(circle at 85% 12%, rgba(116, 199, 255, 0.17), transparent 30vw),
    radial-gradient(circle at 8% 32%, rgba(255, 210, 45, 0.13), transparent 28vw),
    linear-gradient(180deg, #030303 0%, #070707 40%, #020202 100%);
}

.site-screen.is-active {
  display: block;
  padding-top: var(--nav-height);
}

.site-screen.is-entering {
  animation: site-enter 3000ms ease-in-out forwards;
}

.brand-row,
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: clamp(142px, 10vw, 178px);
  height: 48px;
}

.brand-row .brand {
  width: clamp(118px, 8.4vw, 148px);
  height: 40px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.language-toggle {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  border-radius: 999px;
  backdrop-filter: blur(18px);
  cursor: pointer;
  user-select: none;
}

.lang-btn {
  min-width: 42px;
  min-height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.lang-btn.is-active {
  background: var(--ink);
  color: #050505;
}

.intro-center {
  min-height: calc(100vh - 90px);
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 18px;
  transform: translateY(-2vh);
}

.prompt-shell {
  position: relative;
  width: min(720px, calc(100vw - 36px));
  height: 74px;
  display: grid;
  grid-template-columns: 1fr 54px;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 24px;
  border-radius: 999px;
  background: #f6f5f2;
  box-shadow: 0 18px 60px rgba(255, 255, 255, 0.1), inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.prompt-shell::before {
  content: "";
  width: 1px;
  height: 33px;
  background: #111;
  opacity: 0.75;
  position: absolute;
  margin-left: 0;
}

.prompt-shell input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #181818;
  font-size: clamp(16px, 2vw, 19px);
  padding-left: 18px;
  font-weight: 600;
}

.prompt-shell input::placeholder {
  color: #76716b;
}

.prompt-submit {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #000;
  color: #fff;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.prompt-submit:hover {
  transform: translateY(-2px);
  background: #1d1d1d;
}

.prompt-submit svg {
  width: 27px;
}

.intro-note {
  margin: 0;
  color: #9d9891;
  font-weight: 700;
}

footer.intro-footer {
  position: absolute;
  right: clamp(18px, 4vw, 56px);
  bottom: 24px;
  left: clamp(18px, 4vw, 56px);
  display: block;
  padding: 0;
  border: 0;
  color: var(--faint);
  font-size: 12px;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 25;
  min-height: var(--nav-height);
  padding: 14px clamp(18px, 5vw, 64px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 3, 3, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.scroll-progress {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 24;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--blue));
  box-shadow: 0 0 18px rgba(255, 210, 45, 0.24);
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
}

#top,
#services,
#mission,
#values,
#contact {
  scroll-margin-top: calc(var(--nav-height) + 28px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 26px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav-actions a {
  transition: color 160ms ease;
}

.nav-actions a:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  padding: clamp(72px, 10vw, 128px) clamp(22px, 7vw, 112px) clamp(58px, 8vw, 92px);
  background: #030303;
  overflow: hidden;
  isolation: isolate;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.98;
  white-space: pre-line;
  text-wrap: balance;
}

h1 {
  max-width: 1100px;
  font-size: clamp(46px, 7vw, 108px);
}

h2 {
  max-width: 1040px;
  font-size: clamp(33px, 4.4vw, 62px);
}

html[lang="pl"] h2 {
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: 0;
}

.mobile-only-break,
.wide-only-break {
  display: none;
}

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

@media (min-width: 1600px) {
  .site-nav {
    padding-inline: clamp(64px, 5vw, 112px);
  }

  .hero {
    padding-inline: clamp(112px, 7vw, 156px);
  }

  h1 {
    max-width: 1240px;
    font-size: clamp(104px, 6.1vw, 118px);
  }

  h2 {
    max-width: 1120px;
    font-size: clamp(62px, 3.8vw, 74px);
  }

  .hero-lead {
    max-width: 820px;
    font-size: clamp(26px, 1.5vw, 29px);
  }

  .values,
  .services,
  .contact,
  .editorial-split,
  .founder-band {
    padding-inline: clamp(96px, 7vw, 156px);
  }

  .editorial-split,
  .values,
  .founder-band {
    max-width: 1680px;
  }

  .service-panel-deck,
  .contact {
    max-width: 1600px;
  }

  .manifesto,
  .quote-band {
    width: min(1540px, calc(100vw - 220px));
  }

  .editorial-image,
  .founder-band img {
    height: clamp(500px, 31vw, 620px);
  }

  .editorial-image,
  .values-image {
    height: clamp(560px, 35vw, 660px);
  }

  .quote-band p {
    font-size: clamp(46px, 3vw, 58px);
  }

  .values-copy p:not(.eyebrow),
  .editorial-copy p:not(.eyebrow),
  .founder-band p:not(.eyebrow),
  .section-heading p:not(.eyebrow),
  .contact .section-heading p:not(.eyebrow) {
    max-width: 760px;
    font-size: 20px;
  }

  .wide-only-break {
    display: block;
  }
}

@media (min-width: 2400px) {
  .site-nav {
    padding-inline: clamp(112px, 5vw, 220px);
  }

  .hero {
    padding-inline: clamp(180px, 7vw, 320px);
  }

  h1 {
    max-width: min(1900px, 70vw);
    font-size: clamp(128px, 4.5vw, 168px);
  }

  h2 {
    max-width: 1460px;
    font-size: clamp(84px, 3.2vw, 112px);
  }

  .hero-lead {
    max-width: 1080px;
    font-size: clamp(30px, 1.2vw, 38px);
  }

  .primary-link,
  .secondary-link,
  .submit-btn {
    min-height: 58px;
    padding-inline: 28px;
    font-size: 18px;
  }

  .values,
  .services,
  .contact,
  .editorial-split,
  .founder-band {
    padding-inline: clamp(180px, 8vw, 340px);
  }

  .editorial-split,
  .values,
  .founder-band {
    max-width: 2400px;
    gap: clamp(96px, 6vw, 180px);
  }

  .service-panel-deck,
  .contact {
    max-width: 2200px;
  }

  .manifesto,
  .quote-band {
    width: min(2200px, calc(100vw - 420px));
  }

  .editorial-image,
  .founder-band img {
    height: clamp(680px, 24vw, 860px);
  }

  .editorial-image,
  .values-image {
    height: clamp(760px, 28vw, 980px);
  }

  .quote-band p {
    font-size: clamp(64px, 2.5vw, 88px);
  }

  .values-copy p:not(.eyebrow),
  .editorial-copy p:not(.eyebrow),
  .founder-band p:not(.eyebrow),
  .section-heading p:not(.eyebrow),
  .contact .section-heading p:not(.eyebrow) {
    max-width: 960px;
    font-size: 24px;
  }

  .service-panel h3 {
    font-size: clamp(48px, 2.4vw, 72px);
  }

  .service-panel p {
    max-width: 1100px;
    font-size: clamp(22px, 1.1vw, 30px);
  }
}

.hero-lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: #d7d0c5;
  font-size: clamp(19px, 2.1vw, 26px);
  line-height: 1.45;
  font-weight: 500;
  text-align: left;
  white-space: pre-line;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-link,
.secondary-link,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-link,
.submit-btn {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #090909;
}

.secondary-link {
  border: 1px solid var(--line-strong);
  color: var(--ink);
}

.primary-link:hover,
.secondary-link:hover,
.submit-btn:hover {
  transform: translateY(-2px);
}

.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -2;
  background: #030303;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.68) 38%, rgba(0, 0, 0, 0.18) 72%),
    linear-gradient(180deg, #030303 0%, rgba(3, 3, 3, 0.88) 8%, rgba(3, 3, 3, 0.22) 30%, transparent 46%, rgba(3, 3, 3, 0.82) 100%);
  z-index: 1;
}

.hero-visual img,
.editorial-image img,
.values-image img,
.founder-band img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform: translate3d(0, var(--image-shift, 0px), 0) scale(1.025);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-visual img {
  opacity: 0.88;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 100%),
    linear-gradient(180deg, transparent 0%, #000 16%, #000 82%, transparent 100%);
  mask-composite: intersect;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 100%),
    linear-gradient(180deg, transparent 0%, #000 16%, #000 82%, transparent 100%);
  -webkit-mask-composite: source-in;
}

.editorial-image img,
.values-image img,
.founder-band img {
  filter: brightness(1.28) contrast(1.05) saturate(1.04);
}

.manifesto,
.quote-band {
  width: min(1180px, calc(100vw - 36px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 64px) 0;
}

.manifesto {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  align-items: start;
  gap: clamp(24px, 5vw, 72px);
}

.quote-band p {
  margin: 0;
  color: #eee8df;
  font-size: clamp(25px, 3.5vw, 46px);
  line-height: 1.18;
  font-family: "Playfair Display", Georgia, serif;
  text-align: left;
  white-space: pre-line;
}

.manifesto div {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.manifesto div p {
  margin: 0;
  color: #eee8df;
  font-family: Inter, system-ui, sans-serif;
  font-size: clamp(18px, 1.75vw, 25px);
  font-weight: 600;
  line-height: 1.35;
  text-align: left;
  text-wrap: pretty;
}

.values,
.services,
.contact,
.editorial-split,
.founder-band {
  padding: clamp(38px, 5vw, 70px) clamp(18px, 6vw, 86px);
}

.editorial-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  max-width: 1400px;
  margin: 0 auto;
}

.values {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  max-width: 1400px;
  margin: 0 auto;
}

.values-image {
  grid-row: span 2;
  height: clamp(360px, 42vw, 560px);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.values-copy {
  display: grid;
  gap: 18px;
}

.values-copy p:not(.eyebrow),
.editorial-copy p:not(.eyebrow),
.founder-band p:not(.eyebrow),
.section-heading p:not(.eyebrow),
.contact .section-heading p:not(.eyebrow) {
  max-width: 640px;
  margin: 0;
  color: #c8c1b7;
  font-size: 18px;
  line-height: 1.58;
  text-align: left;
  text-wrap: pretty;
}

.editorial-image {
  height: clamp(360px, 42vw, 560px);
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.45);
}

.editorial-copy {
  display: grid;
  gap: 18px;
}

html[lang="pl"] .editorial-copy h2 {
  max-width: 860px;
}

.editorial-copy h2[data-i18n="auditTitle"] {
  max-width: 1040px;
  text-wrap: auto;
}

.audit-title-desktop {
  display: inline;
}

.audit-title-line {
  white-space: normal;
}

.audit-title-line-keep,
.audit-title-phrase {
  white-space: nowrap;
}

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

html[lang="pl"] .values-copy h2 {
  max-width: 860px;
  text-wrap: auto;
}

.pl-title {
  white-space: normal;
  text-wrap: auto;
}

.pl-title-line {
  display: inline-block;
  white-space: nowrap;
}

.pl-hero-title {
  line-height: 0.98;
}

.pl-services-title,
.pl-audit-title,
.pl-values-title {
  line-height: 0.98;
}

.pl-services-title {
  max-width: 1120px;
}

.pl-services-mobile-title {
  display: none;
}

.pl-services-desktop-title {
  display: inline;
}

.pl-audit-title {
  max-width: 860px;
}

html[lang="pl"] .editorial-copy h2.pl-audit-title {
  max-width: 860px;
}

.pl-values-title {
  max-width: 900px;
}

html[lang="pl"] .editorial-copy,
html[lang="pl"] .values-copy,
html[lang="pl"] .founder-band div,
html[lang="pl"] .section-heading {
  gap: 18px;
}

html[lang="pl"] .quote-band p {
  max-width: 980px;
  margin: 0 auto;
  line-height: 1.24;
  text-align: center;
}

.section-heading {
  display: grid;
  gap: 18px;
  margin-bottom: clamp(24px, 4vw, 44px);
}

.value-stack {
  display: grid;
  gap: 0;
}

.value-card {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.value-card:last-child {
  border-bottom: 1px solid var(--line);
}

.value-card span {
  color: var(--gold);
  font-weight: 800;
}

.value-card .value-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transform-origin: center;
  will-change: transform;
}

.value-card:hover .value-icon {
  animation: icon-shake 520ms cubic-bezier(0.22, 0.9, 0.32, 1);
}

.value-card-copy {
  display: grid;
  gap: 8px;
}

.value-card p {
  margin: 0;
  color: #bdb6ad;
  line-height: 1.6;
  text-align: left;
}

.services .section-heading {
  max-width: none;
}

.services .section-heading h2 {
  max-width: 1040px;
  font-size: clamp(33px, 4.4vw, 62px);
  white-space: normal;
  text-wrap: balance;
}

.service-panel-deck {
  display: flex;
  gap: 14px;
  max-width: 1540px;
  height: clamp(520px, 48vw, 680px);
  margin: 0 auto;
}

.service-panel {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  background: #080808;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  isolation: isolate;
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
  transition:
    flex 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 180ms ease,
    transform 180ms ease;
}

.service-panel:hover,
.service-panel:focus-visible,
.service-panel.is-active {
  flex-grow: 4.25;
  border-color: rgba(255, 210, 45, 0.55);
  outline: 0;
  transform: translateY(-4px);
}

.service-panel img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.05);
  transform: scale(1.04) translateY(var(--image-shift, 0));
  transition:
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 420ms ease;
}

.service-panel:hover img,
.service-panel:focus-visible img,
.service-panel.is-active img {
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1) translateY(var(--image-shift, 0));
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72) 64%, rgba(0, 0, 0, 0.92)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.68), transparent 56%);
}

.service-panel-inner {
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: clamp(20px, 2.4vw, 34px);
}

.service-panel-kicker {
  width: max-content;
  max-width: 100%;
  min-height: 30px;
  padding: 8px 11px 0;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 210, 45, 0.48);
  border-radius: 999px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-panel h3 {
  width: 100%;
  max-width: none;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 3.25vw, 56px);
  line-height: 0.96;
  text-wrap: pretty;
}

.service-panel p {
  max-width: 660px;
  margin: 18px 0 0;
  color: #d9d3ca;
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 650;
  line-height: 1.5;
  text-align: left;
  text-wrap: pretty;
}

.service-panel-detail {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin-top: 26px;
  padding: 4px 0 2px 22px;
  border-left: 1px solid rgba(255, 210, 45, 0.62);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.service-panel:hover .service-panel-detail,
.service-panel:focus-visible .service-panel-detail,
.service-panel.is-active .service-panel-detail {
  opacity: 1;
  transform: translateY(0);
}

.service-panel-detail-row {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  color: #f7f4ee;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.38;
}

.service-panel-detail-row::before {
  content: "";
  position: absolute;
  left: -26px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(255, 210, 45, 0.14);
}

.service-panel-detail-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-panel-detail-copy {
  color: #e5ded5;
}

.services-transform .section-heading {
  max-width: 1320px;
}

.services-transform .section-heading h2 {
  max-width: 1320px;
}

.services-transform .section-heading p:not(.eyebrow) {
  max-width: 780px;
}

.services-transform .service-panel-deck {
  height: clamp(560px, 50vw, 720px);
}

.services-transform .service-panel {
  border-radius: 30px;
}

.services-transform .service-panel:hover:not(.is-active):not(:focus-visible) {
  flex-grow: 1;
  border-color: rgba(255, 255, 255, 0.14);
  transform: translateY(0);
}

.services-transform .service-panel:hover:not(.is-active):not(:focus-visible) img {
  filter: saturate(0.78) contrast(1.05);
  transform: scale(1.04) translateY(var(--image-shift, 0));
}

.services-transform .service-panel:hover:not(.is-active):not(:focus-visible) .service-panel-detail {
  opacity: 0;
  transform: translateY(12px);
}

.services-transform .service-panel::before {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0.94)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.48), transparent 62%);
}

.services-transform .service-panel-inner {
  align-content: end;
  gap: 0;
  min-height: 100%;
  padding: clamp(20px, 2.4vw, 34px);
}

.services-transform .service-panel-kicker {
  margin-bottom: 12px;
}

.services-transform .service-panel h3 {
  max-width: 680px;
  transition: transform 260ms ease;
}

.services-transform .service-panel-lead {
  max-width: 700px;
  margin: 16px 0 0;
  color: #ddd6cc;
  font-size: clamp(16px, 1.2vw, 20px);
  font-weight: 680;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 240ms ease, transform 240ms ease;
}

.services-transform .service-panel-detail {
  max-width: 760px;
  grid-template-columns: 1fr;
  margin-top: 22px;
  opacity: 0;
  transform: translateY(12px);
}

.services-transform .service-panel-detail-row {
  grid-template-columns: 82px minmax(0, 1fr);
}

.services-transform .service-panel:not(:focus-visible):not(.is-active) .service-panel-kicker {
  opacity: 0.92;
}

.services-transform .service-panel:not(:focus-visible):not(.is-active) h3 {
  font-size: clamp(26px, 2.2vw, 38px);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transform-origin: center;
  white-space: nowrap;
}

.services-transform .service-panel:focus-visible .service-panel-lead,
.services-transform .service-panel.is-active .service-panel-lead,
.services-transform .service-panel:focus-visible .service-panel-detail,
.services-transform .service-panel.is-active .service-panel-detail {
  opacity: 1;
  transform: translateY(0);
}

.services-transform .service-panel:focus-visible h3,
.services-transform .service-panel.is-active h3 {
  transform: translateY(0);
}

.services-transform .service-panel-detail-label {
  color: var(--gold);
}

.quote-band {
  border-block: 1px solid var(--line);
}

.founder-band {
  display: grid;
  grid-template-columns: minmax(420px, 1.08fr) minmax(320px, 0.92fr);
  align-items: center;
  gap: clamp(28px, 6vw, 76px);
  max-width: 1400px;
  margin: 0 auto;
}

.founder-band img {
  height: clamp(320px, 36vw, 500px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.48);
}

.founder-band div {
  display: grid;
  gap: 22px;
  padding-bottom: clamp(0px, 4vw, 40px);
}

.founder-band h2 {
  max-width: 780px;
  font-size: clamp(52px, 3.3vw, 66px);
  line-height: 1.02;
  white-space: pre-line;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  gap: clamp(32px, 7vw, 88px);
  max-width: 1320px;
  margin: 0 auto;
}

.contact-form {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: clamp(20px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.34);
  color: var(--ink);
  outline: 0;
  padding: 15px 16px;
  resize: vertical;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(255, 210, 45, 0.13);
}

.submit-btn {
  justify-self: start;
  cursor: pointer;
  min-width: 150px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.contact-metalab {
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 0.82fr);
  align-items: start;
  max-width: 1480px;
  padding-top: clamp(60px, 7vw, 116px);
  padding-bottom: clamp(70px, 8vw, 132px);
}

.contact-metalab .section-heading {
  margin-bottom: 0;
  gap: 22px;
}

.contact-metalab .contact-intro {
  max-width: 720px;
  color: #d3ccc2;
  font-size: clamp(19px, 1.65vw, 25px);
  font-weight: 620;
  line-height: 1.5;
}

.contact-metalab .direct-note {
  display: grid;
  gap: 8px;
  max-width: 560px;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.contact-metalab .direct-note span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-metalab .direct-note a,
.contact-metalab .direct-note p {
  margin: 0;
  color: #eee8df;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.5;
}

.contact-metalab .contact-form {
  gap: 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-metalab .field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-metalab textarea[name="message"] {
  min-height: 230px;
}

.contact-metalab .contact-form label {
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.contact-metalab .contact-form input,
.contact-metalab .contact-form textarea {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 8px 0 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  color: var(--ink);
}

.contact-metalab .contact-form input:focus,
.contact-metalab .contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: none;
}

.contact-metalab .form-hint {
  margin: -2px 0 0;
  color: #a9a29a;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.45;
}

.contact-metalab .submit-btn {
  width: max-content;
  min-width: 220px;
  min-height: 56px;
  margin-top: 8px;
}

.pricing-section {
  --pricing-panel: rgba(26, 26, 24, 0.74);
  --pricing-panel-strong: rgba(34, 33, 29, 0.86);
  --pricing-muted: rgba(247, 244, 238, 0.68);
  --pricing-muted-soft: rgba(247, 244, 238, 0.48);
  --pricing-line: rgba(247, 244, 238, 0.18);
  --pricing-shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
  width: min(1560px, calc(100% - 12vw));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 118px) 0 clamp(32px, 4vw, 56px);
}

.pricing-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.5fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 34px;
}

.pricing-head h2 {
  max-width: 850px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(33px, 4.4vw, 62px);
  line-height: 0.98;
  white-space: normal;
  text-wrap: balance;
}

.pricing-lead {
  max-width: 540px;
  margin: 0;
  color: var(--pricing-muted);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 720;
  line-height: 1.45;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  align-items: stretch;
}

.pricing-choice {
  position: relative;
  isolation: isolate;
  container-type: inline-size;
  overflow: hidden;
  min-width: 0;
  min-height: 480px;
  padding: 30px 30px 26px;
  border: 1px solid var(--pricing-line);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    var(--pricing-panel);
  color: inherit;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.pricing-choice::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 250px;
  height: 250px;
  top: -78px;
  left: -56px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 45, 0.22), transparent 67%);
  filter: blur(12px);
  opacity: 0.52;
  transition: opacity 220ms ease, transform 220ms ease;
}

.pricing-choice::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.22) 46%, rgba(0, 0, 0, 0.44) 100%);
}

.pricing-choice:hover,
.pricing-choice:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(247, 244, 238, 0.34);
  box-shadow: var(--pricing-shadow);
  outline: none;
}

.pricing-choice:hover::before,
.pricing-choice:focus-visible::before {
  opacity: 0.78;
  transform: scale(1.08);
}

.pricing-choice.is-selected {
  border-color: rgba(255, 210, 45, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 210, 45, 0.07), rgba(255, 255, 255, 0.018)),
    var(--pricing-panel-strong);
  box-shadow: 0 34px 100px rgba(255, 210, 45, 0.07), var(--pricing-shadow);
}

.pricing-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  padding: 9px 12px 8px;
  border-radius: 999px;
  background: var(--gold);
  color: #13110b;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(255, 210, 45, 0.16);
}

.pricing-label {
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pricing-choice strong {
  display: block;
  margin: 0 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 14cqw, 54px);
  line-height: 0.88;
}

.pricing-price {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 950;
  line-height: 1.2;
}

.pricing-copy {
  margin-bottom: 18px;
  color: var(--pricing-muted);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.38;
}

.pricing-list {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.pricing-list > span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(247, 244, 238, 0.76);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.pricing-list > span::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  margin-top: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(255, 210, 45, 0.5);
}

.pricing-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
}

.pricing-card-cta {
  padding: 12px 16px;
  border: 1px solid rgba(247, 244, 238, 0.18);
  border-radius: 999px;
  background: rgba(247, 244, 238, 0.08);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  transition: border-color 200ms ease, background 200ms ease, color 200ms ease;
}

.pricing-choice.is-selected .pricing-card-cta,
.pricing-card-cta:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: #111008;
}

.pricing-arrow {
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  transition: transform 200ms ease;
}

.pricing-choice:hover .pricing-arrow {
  transform: translateX(4px);
}

.pricing-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: 18px;
  align-items: stretch;
  margin-top: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 210, 45, 0.25);
  border-radius: 30px;
  background:
    radial-gradient(circle at 85% 16%, rgba(255, 210, 45, 0.10), transparent 18rem),
    rgba(15, 15, 13, 0.78);
  box-shadow: var(--pricing-shadow);
}

.pricing-detail h2 {
  max-width: 980px;
  margin: 0 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: 0.95;
  text-wrap: balance;
}

.pricing-detail .eyebrow {
  white-space: nowrap;
}

.pricing-detail > div > p:not(.eyebrow) {
  max-width: none;
  margin: 0;
  color: var(--pricing-muted);
  font-weight: 700;
  line-height: 1.4;
}

@media (min-width: 921px) {
  .pricing-detail > div > p:not(.eyebrow) {
    white-space: nowrap;
  }
}

.pricing-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.pricing-meta-box {
  display: grid;
  gap: 7px;
  padding: 13px 14px;
  border: 1px solid rgba(247, 244, 238, 0.10);
  border-radius: 20px;
  background: rgba(247, 244, 238, 0.055);
}

.pricing-meta-label {
  color: var(--pricing-muted-soft);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-meta-value {
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
}

.pricing-decision {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  align-content: space-between;
  gap: 16px;
  min-height: 100%;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 210, 45, 0.30);
  border-radius: 22px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 210, 45, 0.15), transparent 10rem),
    linear-gradient(180deg, rgba(255, 210, 45, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(20, 20, 17, 0.92);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34), 0 0 0 1px rgba(255, 210, 45, 0.04) inset;
}

.pricing-decision::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -80px;
  z-index: -1;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 210, 45, 0.22), transparent 68%);
  filter: blur(8px);
}

.pricing-decision h3 {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  margin: 0 0 10px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 210, 45, 0.28);
  border-radius: 999px;
  background: rgba(255, 210, 45, 0.10);
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: keep-all;
  white-space: nowrap;
}

.pricing-decision p {
  margin: 0;
  color: rgba(247, 244, 238, 0.84);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.42;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

.pricing-primary-button {
  appearance: none;
  width: calc(100% - 12px);
  min-height: 44px;
  justify-self: center;
  padding: 11px 16px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: #111008;
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(255, 210, 45, 0.20);
  font-weight: 980;
  transition: transform 200ms ease, filter 200ms ease, box-shadow 200ms ease;
}

.pricing-decision .pricing-primary-button {
  width: min(calc(100% - 40px), 300px);
}

.pricing-primary-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 18px 42px rgba(255, 210, 45, 0.28);
}

.faq-section {
  width: min(1560px, calc(100% - 12vw));
  margin: 0 auto;
  padding: 0 0 clamp(70px, 8vw, 132px);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 8vw, 132px);
  align-items: start;
  padding: clamp(32px, 4vw, 56px) 0 clamp(44px, 6vw, 88px);
}

.faq-intro h2 {
  max-width: 640px;
  font-size: clamp(33px, 4.4vw, 62px);
}

.faq-intro > p:not(.eyebrow) {
  max-width: 440px;
  margin: 24px 0 0;
  color: rgba(247, 244, 238, 0.66);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 650;
  line-height: 1.5;
}

.faq-list {
  border-top: 1px solid rgba(247, 244, 238, 0.18);
}

.faq-item {
  border-bottom: 1px solid rgba(247, 244, 238, 0.18);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 22px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 800;
  line-height: 1.2;
  list-style: none;
}

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

.faq-item summary::marker {
  content: "";
}

.faq-item summary::after {
  content: "+";
  color: var(--gold);
  font-size: 30px;
  font-weight: 400;
  line-height: 0.7;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary:hover {
  color: var(--gold-soft);
}

.faq-item > p {
  max-width: 680px;
  margin: 0;
  padding: 0 44px 24px 0;
  color: rgba(247, 244, 238, 0.66);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.55;
}

.faq-contact-item summary {
  color: var(--gold-soft);
}

.faq-contact-item > p {
  padding-bottom: 16px;
}

.faq-contact-item .faq-contact-button {
  width: auto;
  min-width: 220px;
  margin: 0 0 28px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.72);
}

.modal-backdrop.is-open {
  display: flex;
}

.pricing-modal {
  width: min(560px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 28px;
  border: 1px solid rgba(255, 210, 45, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 210, 45, 0.13), transparent 18rem),
    #151511;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.8);
}

.modal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
}

.modal-top h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 42px;
  line-height: 0.92;
}

.modal-close {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(247, 244, 238, 0.16);
  border-radius: 999px;
  background: rgba(247, 244, 238, 0.06);
  color: var(--ink);
  cursor: pointer;
  font-size: 22px;
}

.modal-form {
  display: grid;
  gap: 12px;
}

.modal-form label {
  display: grid;
  gap: 7px;
}

.modal-form label > span {
  color: rgba(247, 244, 238, 0.72);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-form input,
.modal-form textarea,
.modal-form select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid rgba(247, 244, 238, 0.14);
  border-radius: 16px;
  background: rgba(247, 244, 238, 0.06);
  color: var(--ink);
  outline: none;
}

.modal-form textarea {
  min-height: 104px;
  resize: vertical;
}

.modal-form input:focus,
.modal-form textarea:focus,
.modal-form select:focus {
  border-color: rgba(255, 210, 45, 0.55);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(18px, 6vw, 86px);
  color: var(--faint);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 680ms ease,
    transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

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

.service-panel {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 620ms ease,
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 180ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.service-panel-deck.is-visible .service-panel {
  opacity: 1;
  transform: translateY(0);
}

.value-card span {
  font-variant-numeric: tabular-nums;
}

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

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -18px, 0) rotate(5deg);
  }
}

@keyframes icon-shake {
  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  18% {
    transform: translateX(-2px) rotate(-5deg);
  }

  36% {
    transform: translateX(2px) rotate(4deg);
  }

  54% {
    transform: translateX(-1px) rotate(-3deg);
  }

  72% {
    transform: translateX(1px) rotate(2deg);
  }
}

@keyframes skin-drift {
  0% {
    background-position: 0 0, 42px 22px, 0 0, 0 0;
  }

  50% {
    background-position: 42px 28px, 0 50px, 58px 32px, 0 0;
  }

  100% {
    background-position: 84px 44px, 126px 66px, 112px 76px, 0 0;
  }
}

@keyframes skin-sheen {
  0% {
    opacity: 0.22;
    filter: hue-rotate(0deg) brightness(0.9);
  }

  48% {
    opacity: 0.42;
    filter: hue-rotate(-6deg) brightness(1.08);
  }

  100% {
    opacity: 0.28;
    filter: hue-rotate(5deg) brightness(0.96);
  }
}

@keyframes black-page-transition {
  0% {
    opacity: 1;
  }

  78% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes transition-loader {
  0% {
    opacity: 0;
  }

  12%,
  72% {
    opacity: 1;
  }

  86%,
  100% {
    opacity: 0;
  }
}

@keyframes loading-dot {
  0%,
  100% {
    opacity: 0.28;
    transform: translateY(0) scale(0.86);
  }

  45% {
    opacity: 1;
    transform: translateY(-3px) scale(1);
  }
}

@keyframes funnel-mask {
  0% {
    opacity: 0;
    clip-path: circle(0% at 50% 50%);
  }

  14% {
    opacity: 1;
    clip-path: circle(5% at 50% 50%);
  }

  42% {
    opacity: 1;
    clip-path: circle(24% at 50% 50%);
  }

  74% {
    opacity: 0.95;
    clip-path: circle(78% at 50% 50%);
  }

  100% {
    opacity: 0;
    clip-path: circle(155% at 50% 50%);
  }
}

@keyframes funnel-ring {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.34) rotate(0deg);
  }

  12% {
    opacity: 1;
  }

  44% {
    opacity: 0.92;
    transform: translate(-50%, -50%) scale(6.2) rotate(150deg);
  }

  76% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(17) rotate(280deg);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(30) rotate(360deg);
  }
}

@keyframes intro-leave {
  0% {
    opacity: 1;
  }

  8% {
    opacity: 1;
  }

  16%,
  100% {
    opacity: 0;
  }
}

@keyframes site-enter {
  0% {
    opacity: 0;
  }

  72% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (min-width: 1600px) {
  .hero {
    padding-inline: clamp(112px, 7vw, 156px);
  }

  .hero-lead {
    max-width: 820px;
    font-size: clamp(26px, 1.5vw, 29px);
  }

  .values,
  .services,
  .contact,
  .editorial-split,
  .founder-band {
    padding-block: clamp(70px, 4vw, 110px);
    padding-inline: clamp(96px, 7vw, 156px);
  }

  .editorial-split,
  .values,
  .founder-band {
    max-width: 1680px;
  }

  .service-panel-deck,
  .contact {
    max-width: 1600px;
  }

  .manifesto,
  .quote-band {
    width: min(1540px, calc(100vw - 220px));
  }

  .editorial-image,
  .founder-band img {
    height: clamp(560px, 35vw, 660px);
  }

  .values-image {
    height: clamp(560px, 35vw, 660px);
  }

  .quote-band p {
    font-size: clamp(46px, 3vw, 58px);
  }

  .values-copy p:not(.eyebrow),
  .editorial-copy p:not(.eyebrow),
  .founder-band p:not(.eyebrow),
  .section-heading p:not(.eyebrow),
  .contact .section-heading p:not(.eyebrow) {
    max-width: 760px;
    font-size: 20px;
  }

  .contact-metalab {
    max-width: 1700px;
  }

  .services-transform .section-heading,
  .services-transform .section-heading h2 {
    max-width: 1500px;
  }

  .pricing-section {
    width: min(1700px, calc(100% - 192px));
  }

  .faq-section {
    width: min(1700px, calc(100% - 192px));
  }
}

@media (min-width: 2400px) {
  .hero {
    min-height: min(1500px, calc(100vh - var(--nav-height)));
    padding-inline: clamp(180px, 7vw, 320px);
  }

  .hero-lead {
    max-width: 1080px;
    font-size: clamp(30px, 1.2vw, 38px);
  }

  .values,
  .services,
  .contact,
  .editorial-split,
  .founder-band {
    padding-block: clamp(110px, 4.5vw, 180px);
    padding-inline: clamp(180px, 8vw, 340px);
  }

  .editorial-split,
  .values,
  .founder-band {
    max-width: 2400px;
    gap: clamp(96px, 6vw, 180px);
  }

  .service-panel-deck,
  .contact {
    max-width: 2200px;
  }

  .manifesto,
  .quote-band {
    width: min(2200px, calc(100vw - 420px));
  }

  .editorial-image,
  .founder-band img {
    height: clamp(760px, 28vw, 980px);
  }

  .values-image {
    height: clamp(760px, 28vw, 980px);
  }

  .quote-band p {
    font-size: clamp(64px, 2.5vw, 88px);
  }

  .values-copy p:not(.eyebrow),
  .editorial-copy p:not(.eyebrow),
  .founder-band p:not(.eyebrow),
  .section-heading p:not(.eyebrow),
  .contact .section-heading p:not(.eyebrow) {
    max-width: 960px;
    font-size: 24px;
  }

  .service-panel h3 {
    font-size: clamp(48px, 2.4vw, 72px);
  }

  .service-panel p {
    max-width: 1100px;
    font-size: clamp(22px, 1.1vw, 30px);
  }

  .contact-metalab {
    max-width: 2200px;
  }

  .pricing-section {
    width: min(2200px, calc(100% - 360px));
    padding-top: clamp(110px, 4.5vw, 180px);
    padding-bottom: clamp(56px, 2.5vw, 80px);
  }

  .faq-section {
    width: min(2200px, calc(100% - 360px));
    padding-bottom: clamp(110px, 4.5vw, 180px);
  }

  .contact-metalab .contact-intro {
    max-width: 920px;
    font-size: 30px;
  }

  .services-transform .section-heading,
  .services-transform .section-heading h2 {
    max-width: 1800px;
  }
}

@media (max-width: 1320px) and (min-width: 921px) {
  .founder-band h2 {
    font-size: clamp(40px, 3.3vw, 46px);
  }
}

@media (max-width: 920px) {
  .hero,
  .contact,
  .editorial-split,
  .values,
  .manifesto,
  .founder-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .editorial-image,
  .values-image,
  .founder-band img {
    height: clamp(280px, 48vw, 390px);
  }

  .value-card {
    grid-template-columns: 58px 1fr;
    gap: 18px;
  }

  .value-card .value-icon {
    width: 44px;
    height: 44px;
  }

  .values-image {
    grid-row: auto;
  }

  .service-panel-deck {
    flex-direction: column;
    height: auto;
    min-height: auto;
  }

  .service-panel,
  .service-panel:hover,
  .service-panel:focus-visible,
  .service-panel.is-active {
    flex: none;
    min-height: clamp(380px, 62vw, 520px);
  }

  .services-transform .service-panel-deck {
    height: auto;
  }

  .services-transform .service-panel,
  .services-transform .service-panel:hover,
  .services-transform .service-panel:focus-visible,
  .services-transform .service-panel.is-active {
    min-height: 252px;
    transition:
      min-height 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
      max-height 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
      border-color 180ms ease,
      transform 180ms ease;
  }

  .services-transform .service-panel.is-active,
  .services-transform .service-panel.is-active:hover,
  .services-transform .service-panel.is-active:focus-visible {
    min-height: clamp(430px, 78vw, 560px);
  }

  .services-transform .service-panel:not(.is-active) {
    max-height: 214px;
    min-height: 214px;
    border-color: rgba(255, 255, 255, 0.16);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  }

  .services-transform .service-panel .service-panel-inner,
  .services-transform .service-panel.is-active .service-panel-inner {
    display: flex;
    flex-direction: column;
    align-content: normal;
    align-items: flex-start;
    min-height: inherit;
  }

  .services-transform .service-panel h3 {
    order: 1;
    max-width: min(100%, 520px);
  }

  .services-transform .service-panel-kicker {
    order: 2;
    margin: 14px 0 0;
  }

  .services-transform .service-panel-lead {
    order: 3;
    margin-top: auto;
    transition:
      opacity 280ms ease,
      transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
      max-height 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .services-transform .service-panel-detail {
    order: 4;
  }

  .services-transform .service-panel:not(:focus-visible):not(.is-active) h3,
  .services-transform .service-panel:not(.is-active) h3 {
    writing-mode: horizontal-tb;
    transform: none;
    transform-origin: left top;
    align-self: flex-start;
    white-space: normal;
    font-size: clamp(24px, 5.8vw, 34px);
    line-height: 0.96;
  }

  .services-transform .service-panel:not(.is-active) .service-panel-kicker,
  .services-transform .service-panel:not(.is-active) .service-panel-detail {
    max-height: 0;
    margin-top: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
    transform: translateY(34px);
  }

  .services-transform .service-panel:not(.is-active) .service-panel-lead {
    display: -webkit-box;
    max-height: 56px;
    overflow: hidden;
    color: rgba(247, 244, 238, 0.7);
    font-size: 14px;
    font-weight: 650;
    line-height: 1.35;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .services-transform .service-panel:hover:not(.is-active) .service-panel-lead,
  .services-transform .service-panel:focus-visible:not(.is-active) .service-panel-lead {
    opacity: 1;
    transform: translateY(-8px);
  }

  .services-transform .service-panel.is-active .service-panel-kicker {
    max-height: 34px;
    opacity: 1;
    visibility: visible;
  }

  .services-transform .service-panel.is-active .service-panel-lead,
  .services-transform .service-panel.is-active .service-panel-detail {
    max-height: 220px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    animation: service-mobile-slide-up 360ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
    transition:
      opacity 280ms ease 90ms,
      transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1) 90ms,
      max-height 360ms cubic-bezier(0.2, 0.8, 0.2, 1);
  }

  .contact-metalab {
    grid-template-columns: 1fr;
  }

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-intro > p:not(.eyebrow) {
    max-width: 560px;
  }

  .pricing-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-choice {
    min-height: 420px;
  }

}

@media (max-width: 1180px) {
  .pricing-detail {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  }
}

@media (max-width: 820px) {
  .pricing-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  :root {
    --mobile-section-heading-size: clamp(30px, 8vw, 34px);
    --mobile-footer-height: 86px;
  }

  .site-screen.is-active {
    padding-bottom: calc(var(--mobile-footer-height) + env(safe-area-inset-bottom));
  }

  .values,
  .services,
  .contact,
  .editorial-split,
  .founder-band {
    padding-inline: 20px;
  }

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

  .nav-actions {
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .nav-actions a {
    display: none;
  }

  .mobile-only-break {
    display: block;
  }

  .pricing-title-desktop {
    display: none;
  }

  .pricing-title-mobile {
    display: inline;
  }

  .wide-only-break {
    display: none;
  }

  .prompt-shell {
    height: 62px;
    grid-template-columns: 1fr 46px;
    padding: 7px 7px 7px 18px;
  }

  .prompt-submit {
    width: 46px;
    height: 46px;
  }

  .hero-visual {
    min-height: 360px;
  }

  h1 {
    font-size: clamp(38px, 10.5vw, 42px);
  }

  h2 {
    font-size: var(--mobile-section-heading-size) !important;
    line-height: 0.98;
    text-wrap: balance;
  }

  .editorial-copy h2[data-i18n="auditTitle"] {
    text-wrap: balance;
  }

  .audit-title-desktop {
    display: none;
  }

  .audit-title-mobile {
    display: inline;
  }

  .services .section-heading h2 {
    max-width: 100%;
    white-space: normal;
    text-wrap: balance;
  }

  html[lang="pl"] .pl-services-desktop-title {
    display: none;
  }

  html[lang="pl"] .pl-services-mobile-title {
    display: inline;
  }

  .editorial-image,
  .values-image,
  .founder-band img {
    height: 260px;
  }

  .service-panel-inner {
    padding: 22px;
  }

  .service-panel-detail-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .services-transform .service-panel-detail-row {
    grid-template-columns: 1fr;
  }

  .contact-metalab .field-row {
    grid-template-columns: 1fr;
  }

  .contact-metalab .submit-btn {
    width: 100%;
  }

  .pricing-section {
    width: min(calc(100% - 40px), 640px);
    padding-top: 42px;
  }

  .faq-section {
    width: min(calc(100% - 40px), 640px);
    padding-bottom: 56px;
  }

  .pricing-head {
    gap: 20px;
  }

  .pricing-cards,
  .pricing-meta {
    grid-template-columns: 1fr;
  }

  .pricing-choice {
    min-height: auto;
    padding: 28px 24px 24px;
    border-radius: 24px;
  }

  .pricing-choice strong {
    font-size: clamp(34px, 9vw, 43px);
  }

  .pricing-detail {
    padding: 20px;
  }

  .faq-layout {
    padding: 32px 0 42px;
  }

  .faq-item summary {
    gap: 14px;
    padding: 18px 0;
    font-size: 17px;
  }

  .faq-item > p {
    padding-right: 28px;
    font-size: 15px;
  }

  .faq-contact-item .faq-contact-button {
    width: 100%;
  }

  .pricing-decision {
    gap: 18px;
    padding: 20px;
  }

  .pricing-primary-button {
    width: calc(100% - 32px);
    min-width: 0;
  }

  footer:not(.intro-footer) {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 26;
    min-height: var(--mobile-footer-height);
    align-items: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    border-top-color: rgba(247, 244, 238, 0.16);
    background: rgba(3, 3, 3, 0.9);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    font-size: 11px;
    line-height: 1.2;
  }

  footer:not(.intro-footer) span {
    flex-basis: 100%;
    text-align: center;
  }

  footer:not(.intro-footer) a {
    color: rgba(247, 244, 238, 0.68);
  }
}

@keyframes service-mobile-slide-up {
  from {
    opacity: 0;
    transform: translateY(34px);
  }

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

@media (min-width: 921px) {
  .editorial-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }

  .services-transform .section-heading h2 {
    line-height: 0.98;
  }
}

@media (min-width: 1600px) {
  .editorial-split {
    max-width: 1680px;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }

}

@media (min-width: 2400px) {
  .editorial-split {
    max-width: 2400px;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal,
  .service-panel {
    opacity: 1 !important;
    transform: none !important;
  }

  .scroll-progress span {
    transform: scaleX(1);
  }

  .hero-visual img,
  .editorial-image img,
  .values-image img,
  .founder-band img {
    transform: none !important;
  }

  .skin-field,
  .skin-field::before,
  .skin-field::after {
    animation: none !important;
    transform: none !important;
  }
}
