@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #17191d;
  --ink-deep: #101217;
  --ink-soft: #333740;
  --muted: #5b6570;
  --muted-light: #b4bec8;
  --line: #dce9f4;
  --line-dark: rgba(255, 255, 255, 0.16);
  --surface: #f4f9ff;
  --surface-warm: #f0f9f5;
  --white: #ffffff;
  --blue: #30a3ff;
  --accent-start-rgb: 48, 163, 255;
  --accent-start-light: #5fc1ff;
  --blue-deep: #087ac2;
  --blue-deep-rgb: 8, 122, 194;
  --green: #00c920;
  --accent-end-rgb: 0, 201, 32;
  --accent-end-light: #5cff78;
  --teal: #15d136;
  --sky: #f4f9ff;
  --mint: #f0f9f5;
  --lime: #87ff9e;
  --lime-rgb: 135, 255, 158;
  --gradient: linear-gradient(112deg, var(--blue), var(--green));
  --container: 1280px;
  --page-gutter: 40px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid rgba(var(--accent-start-rgb), 0.65);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--container));
  margin-inline: auto;
}

.page-main {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.section {
  padding: clamp(120px, 12vw, 190px) 0;
}

.eyebrow {
  display: flex;
  margin: 0 0 24px;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 26px;
  height: 2px;
  border-radius: 99px;
  background: var(--gradient);
}

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

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 25px;
  border: 0;
  border-radius: 99px;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: box-shadow 220ms ease, transform 220ms ease;
}

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

.button-small {
  min-height: 46px;
  padding-inline: 21px;
}

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

.button-primary {
  background: var(--gradient);
  color: var(--ink-deep);
  box-shadow: 0 15px 38px rgba(var(--accent-end-rgb), 0.22);
}

.button-primary:hover {
  box-shadow: 0 20px 46px rgba(var(--accent-end-rgb), 0.3);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateY(4px);
}

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

/* Header */

.pro-header {
  position: sticky;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.82);
  pointer-events: auto;
  transition: padding 220ms ease, box-shadow 220ms ease;
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.header-inner {
  position: relative;
  display: flex;
  overflow: hidden;
  width: min(calc(100% - 32px), 1320px);
  max-width: 1320px;
  min-height: 82px;
  padding: 0 14px 0 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 4vw, 72px);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(23, 25, 29, 0.09);
  pointer-events: auto;
  transition: background 220ms ease, min-height 220ms ease, box-shadow 220ms ease;
}

.header-inner::before {
  position: absolute;
  top: 0;
  right: 20px;
  left: 20px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--gradient);
  content: "";
}

.pro-header.is-scrolled {
  padding: 8px 0;
  box-shadow: 0 12px 34px rgba(23, 25, 29, 0.08);
}

.pro-header.is-scrolled .header-inner {
  min-height: 74px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(23, 25, 29, 0.1);
}

.brand-lockup {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-lockup img {
  width: 103px;
  height: auto;
  padding: 0;
  background: transparent;
}

.pro-header .brand-lockup {
  position: absolute;
  left: 24px;
}

.pro-header .brand-lockup img {
  width: 160px;
  height: 56px;
  object-fit: cover;
  object-position: center;
}

.brand-lockup > span {
  width: 2px;
  height: 31px;
  border-radius: 999px;
  background: var(--gradient);
}

.brand-lockup strong {
  padding: 8px 10px;
  border: 1px solid rgba(var(--accent-start-rgb), 0.18);
  border-radius: 999px;
  background: var(--surface);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.pro-nav {
  display: flex;
  flex: 0 1 auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.pro-nav > a:not(.button) {
  position: relative;
  padding: 11px 14px;
  border-radius: 999px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.pro-nav > a:not(.button)::after {
  display: none;
}

.pro-nav > a:not(.button):hover,
.pro-nav > a:not(.button)[aria-current="page"] {
  background: var(--surface);
  color: var(--ink);
  transform: translateY(-1px);
}

.pro-nav .button-dark {
  margin-left: 8px;
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 9px 22px rgba(var(--accent-start-rgb), 0.2);
}

.pro-header .button {
  border-radius: 999px;
}

.nav-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle i {
  position: absolute;
  width: 17px;
  height: 1.5px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle i:first-of-type {
  transform: translateY(-4px);
}

.nav-toggle i:last-of-type {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] i:first-of-type {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] i:last-of-type {
  transform: rotate(-45deg);
}

/* Immersive hero */

.hero {
  padding: 14px 5% 0;
  background: var(--white);
}

.hero-stage {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: min(860px, calc(100vh - 108px));
  margin-inline: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--ink-deep);
  color: var(--white);
  isolation: isolate;
}

.hero-background {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.02);
  transition: filter 900ms ease, transform 1200ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.hero-stage:hover .hero-background {
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.055);
}

.hero-wash {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 20, 24, 0.95) 0%, rgba(23, 25, 29, 0.75) 43%, rgba(23, 25, 29, 0.16) 78%),
    linear-gradient(0deg, rgba(18, 20, 24, 0.84) 0%, transparent 42%),
    radial-gradient(circle at 78% 30%, rgba(var(--accent-start-rgb), 0.22), transparent 34%),
    radial-gradient(circle at 72% 74%, rgba(var(--accent-end-rgb), 0.1), transparent 29%);
}

.hero-copy {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: clamp(34px, 6.3vw, 82px);
  width: min(820px, calc(100% - 120px));
  transform: translateY(-46%);
}

.hero h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(58px, 7.2vw, 108px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero-intro {
  max-width: 660px;
  margin: 31px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 27px;
}

.hero-foot {
  position: absolute;
  z-index: 1;
  right: clamp(28px, 4.6vw, 60px);
  bottom: 36px;
  left: clamp(28px, 4.6vw, 60px);
  display: flex;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
}

.hero-foot > p {
  margin: 0;
  color: var(--white);
}

.hero-route {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.hero-route i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

/* Integrated client proof */

.audience-proof {
  position: relative;
  z-index: 1;
  display: grid;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(23, 25, 29, 0.1);
  align-items: center;
  grid-template-columns: auto minmax(130px, 0.45fr) minmax(500px, 1.55fr);
  gap: clamp(22px, 3vw, 44px);
}

.trust-proof {
  display: flex;
  align-items: baseline;
  gap: 9px;
  white-space: nowrap;
}

.trust-proof strong {
  background: var(--gradient);
  background-clip: text;
  color: transparent;
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-proof span,
.audience-proof > p {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.audience-proof > p {
  margin: 0;
  padding-left: clamp(18px, 2.5vw, 34px);
  border-left: 1px solid var(--line);
}

.trust-logos {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(8, minmax(52px, 1fr));
  gap: clamp(13px, 1.6vw, 24px);
}

.trust-logos img {
  width: 100%;
  height: 44px;
  object-fit: contain;
  filter: saturate(0.76) contrast(1.02);
  mix-blend-mode: multiply;
  opacity: 0.82;
  transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.trust-logos img:hover {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

/* Audience bridge */

.audience {
  padding: 22px 0 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--white) calc(100% - 44px), var(--surface) calc(100% - 44px));
}

.audience-inner {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 2.6vw, 38px);
  border: 1px solid rgba(var(--accent-start-rgb), 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 92% 12%, rgba(var(--accent-end-rgb), 0.11), transparent 28%),
    radial-gradient(circle at 5% 90%, rgba(var(--accent-start-rgb), 0.12), transparent 30%),
    var(--surface);
  box-shadow: 0 20px 52px rgba(23, 25, 29, 0.07);
  transform: translateY(22px);
}

.audience-inner::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 25, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 29, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.55), transparent 72%);
  pointer-events: none;
}

.audience-heading {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(32px, 5vw, 72px);
}

.audience-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(34px, 3.7vw, 54px);
  font-weight: 540;
  letter-spacing: -0.04em;
  line-height: 1;
}

.audience-heading h2 em {
  background: var(--gradient);
  background-clip: text;
  color: transparent;
  font-style: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.audience-heading > p {
  max-width: 430px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.audience-band {
  position: relative;
  z-index: 1;
  display: grid;
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid rgba(23, 25, 29, 0.09);
  border-radius: 16px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr) 42px minmax(0, 1.2fr);
  background: rgba(255, 255, 255, 0.86);
}

.audience-band > div {
  display: flex;
  min-height: 112px;
  padding: 22px 24px;
  justify-content: center;
  flex-direction: column;
}

.audience-band .audience-band-focus {
  background:
    radial-gradient(circle at 100% 0, rgba(var(--accent-end-rgb), 0.22), transparent 42%),
    radial-gradient(circle at 0 100%, rgba(var(--accent-start-rgb), 0.24), transparent 46%),
    var(--ink-deep);
  color: var(--white);
}

.audience-band span {
  margin-bottom: 9px;
  color: var(--blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-band-focus span {
  color: var(--green);
}

.audience-band strong {
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 590;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

.audience-band > i {
  display: flex;
  width: 30px;
  height: 30px;
  margin: auto;
  border: 1px solid rgba(var(--accent-start-rgb), 0.18);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  font-style: normal;
}

/* Formats explorer */

.formats-section {
  padding: 70px 0 42px;
  scroll-margin-top: 92px;
  background:
    radial-gradient(circle at 84% 8%, rgba(var(--accent-start-rgb), 0.12), transparent 30%),
    var(--surface);
}

.section-intro {
  display: block;
  width: 100%;
  max-width: 900px;
}

.section-intro > .eyebrow {
  margin: 0 0 22px;
}

.section-intro-copy {
  min-width: 0;
}

.section-title {
  max-width: 840px;
  margin: 0;
  font-size: clamp(40px, 4.25vw, 58px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  text-wrap: balance;
}

.title-accent {
  color: inherit;
}

.title-accent--blue {
  color: var(--blue);
}

.title-accent--green {
  color: var(--green);
}

.title-accent--gradient {
  background: var(--gradient);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-description {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.chapter-heading {
  margin-bottom: 32px;
}

.format-explorer {
  display: flex;
  height: 440px;
  min-height: 0;
  overflow: hidden;
  border-radius: 16px;
  background: var(--ink);
  gap: 1px;
}

.format-panel {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  flex: 0.72 1 0;
  isolation: isolate;
  transition: flex 700ms cubic-bezier(0.2, 0.72, 0.2, 1);
}

.format-panel.is-active {
  flex: 2.35 1 0;
}

.format-panel > img {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.08) saturate(0.92) contrast(1.08);
  transform: scale(1.03);
  transition: filter 700ms ease, transform 900ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.format-panel.is-active > img,
.format-panel:hover > img {
  filter: grayscale(0) saturate(1.05) contrast(1.08);
  transform: scale(1.08);
}

.format-shade {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 10, 13, 0.52), transparent 36%),
    linear-gradient(0deg, rgba(6, 10, 13, 0.96), rgba(6, 10, 13, 0.08) 68%);
}

.format-panel > button {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  width: 100%;
  min-height: 92px;
  padding: 0 30px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.format-name {
  overflow: hidden;
  font-size: 13px;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.format-action {
  font-size: 24px;
  font-weight: 300;
  transition: transform 300ms ease;
}

.format-panel.is-active .format-action {
  transform: rotate(45deg);
}

.format-content {
  position: absolute;
  right: 42px;
  bottom: 45px;
  left: 42px;
  width: min(610px, calc(100% - 84px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(26px);
  transition: opacity 260ms ease 0ms, transform 450ms ease 0ms;
}

.format-panel.is-active .format-content {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 260ms;
}

.format-content > p:first-child {
  margin: 0 0 16px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.format-content h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.format-content h3 + p {
  max-width: 570px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.format-content a {
  display: inline-flex;
  margin-top: 28px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58);
  align-items: center;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.format-content a span {
  transition: transform 180ms ease;
}

.format-content a:hover span {
  transform: translate(3px, -3px);
}

/* Business impact console */

.impact-section {
  background: var(--white);
  padding: clamp(78px, 8vw, 120px) 0;
}

.impact-heading {
  margin-bottom: 48px;
}

.impact-console {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
}

.impact-picker {
  padding: clamp(24px, 2.4vw, 32px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
}

.impact-picker-kicker {
  margin: 0 0 10px;
  color: var(--blue-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.impact-picker h3 {
  max-width: 360px;
  margin: 0;
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.impact-picker-help {
  max-width: 350px;
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.impact-tabs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.impact-tabs button {
  display: flex;
  width: 100%;
  min-height: 46px;
  padding: 6px 8px 6px 15px;
  border: 1px solid rgba(23, 25, 29, 0.1);
  border-radius: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink-soft);
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.impact-tabs button i {
  display: flex;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  color: var(--blue-deep);
  flex: 0 0 auto;
  font-size: 15px;
  font-style: normal;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.impact-tabs button:hover {
  border-color: rgba(var(--accent-start-rgb), 0.42);
  background: var(--white);
  color: var(--ink);
  transform: translateX(4px);
}

.impact-tabs button.is-active {
  border-color: transparent;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(23, 25, 29, 0.16);
  transform: translateX(4px);
}

.impact-tabs button.is-active i {
  background: var(--gradient);
  color: var(--white);
  transform: rotate(-45deg);
}

.impact-display {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(var(--accent-start-rgb), 0.16);
  border-radius: 28px;
  background: var(--white);
  box-shadow: 0 28px 68px rgba(23, 25, 29, 0.11);
}

.impact-panel {
  --impact-a: rgba(var(--accent-start-rgb), 0.48);
  --impact-b: rgba(var(--accent-end-rgb), 0.17);
  position: absolute;
  inset: 0;
  display: flex;
  padding: clamp(34px, 4vw, 50px);
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
  background:
    radial-gradient(circle at 95% 7%, var(--impact-a), transparent 34%),
    radial-gradient(circle at 4% 98%, var(--impact-b), transparent 30%),
    linear-gradient(145deg, #f4f9ff 0%, #ffffff 56%, #f0f9f5 100%);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px);
  transition: opacity 320ms ease, transform 480ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.impact-panel::after {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23, 25, 29, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 25, 29, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.55), transparent 72%);
  pointer-events: none;
}

.impact-panel.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.impact-tone-green {
  --impact-a: rgba(var(--accent-end-rgb), 0.4);
  --impact-b: rgba(var(--accent-start-rgb), 0.15);
}

.impact-tone-teal {
  --impact-a: rgba(var(--accent-end-rgb), 0.4);
  --impact-b: rgba(var(--accent-start-rgb), 0.14);
}

.impact-tone-violet {
  --impact-a: rgba(129, 102, 255, 0.38);
  --impact-b: rgba(var(--accent-start-rgb), 0.17);
}

.impact-tone-orange {
  --impact-a: rgba(241, 137, 76, 0.4);
  --impact-b: rgba(var(--accent-end-rgb), 0.12);
}

.impact-tone-gold {
  --impact-a: rgba(228, 183, 72, 0.4);
  --impact-b: rgba(var(--accent-start-rgb), 0.14);
}

.impact-word {
  position: relative;
  z-index: 1;
  display: inline-block;
  max-width: 100%;
  font-size: clamp(48px, 5vw, 70px);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 0.9;
  overflow-wrap: anywhere;
}

.impact-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 610px;
}

.impact-copy > p:first-child {
  margin: 0 0 11px;
  color: #008f17;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.impact-copy h3 {
  margin: 0;
  font-size: clamp(28px, 2.55vw, 37px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.impact-copy h3 + p {
  max-width: 570px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.impact-recommendation {
  margin-top: 18px;
  padding: 12px 16px;
  border: 1px solid rgba(23, 25, 29, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink-soft);
  font-size: 13px;
}

.impact-recommendation span {
  display: block;
  margin-bottom: 5px;
  color: var(--blue-deep);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.impact-copy > a {
  display: inline-flex;
  margin-top: 18px;
  padding: 11px 17px;
  border-radius: 999px;
  align-items: center;
  gap: 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.impact-copy > a:hover {
  background: var(--blue-deep);
  transform: translateY(-2px);
}

.impact-copy > a span {
  transition: transform 180ms ease;
}

.impact-copy > a:hover span {
  transform: translate(3px, -3px);
}

/* Signature experience */

.experience-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 14%, rgba(var(--accent-start-rgb), 0.22), transparent 30%),
    radial-gradient(circle at 16% 96%, rgba(var(--accent-end-rgb), 0.11), transparent 27%),
    var(--ink);
  color: var(--white);
}

.experience-intro {
  margin-bottom: 72px;
}

.experience-intro .section-description {
  color: var(--muted-light);
}

.experience-stage {
  display: grid;
  min-height: 780px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  grid-template-columns: minmax(0, 1.18fr) minmax(400px, 0.82fr);
  grid-auto-flow: dense;
}

.experience-media {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
}

.experience-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 10, 13, 0.8), transparent 52%);
  content: "";
}

.experience-media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.08);
  transition: filter 700ms ease, transform 900ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.experience-media:hover > img {
  filter: saturate(1.06) contrast(1.08);
  transform: scale(1.045);
}

.experience-caption {
  position: absolute;
  z-index: 2;
  right: 35px;
  bottom: 31px;
  left: 35px;
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
}

.experience-story {
  display: grid;
  grid-template-rows: repeat(3, 1fr);
}

.experience-story article {
  display: grid;
  padding: 38px;
  border-bottom: 1px solid var(--line-dark);
  align-content: center;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 26px;
  transition: background 280ms ease;
}

.experience-story article:last-child {
  border-bottom: 0;
}

.experience-story article:hover {
  background: linear-gradient(90deg, rgba(var(--accent-start-rgb), 0.11), rgba(var(--accent-end-rgb), 0.04));
}

.story-index {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.experience-story h3 {
  margin: 0;
  font-size: clamp(25px, 2.6vw, 38px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.experience-story p {
  margin: 17px 0 0;
  color: var(--muted-light);
  font-size: 13px;
}

.activity-rail {
  display: grid;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: center;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 28px;
}

.activity-rail-heading p {
  margin: 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.activity-rail-heading > span {
  display: block;
  margin-top: 7px;
  color: #7f8a94;
  font-size: 9px;
  line-height: 1.4;
}

.activity-carousel {
  display: grid;
  min-width: 0;
  align-items: center;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 9px;
}

.activity-list {
  display: grid;
  overflow-x: auto;
  padding: 2px 0 8px;
  grid-auto-flow: column;
  grid-template-columns: none;
  grid-template-rows: repeat(2, 34px);
  grid-auto-columns: 142px;
  gap: 7px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.activity-list::-webkit-scrollbar {
  display: none;
}

.activity-list > span {
  display: flex;
  min-width: 0;
  padding: 7px 10px 7px 7px;
  border: 1px solid rgba(var(--accent-start-rgb), 0.28);
  border-radius: 99px;
  align-items: center;
  gap: 7px;
  background: rgba(var(--accent-start-rgb), 0.06);
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 600;
  white-space: nowrap;
  scroll-snap-align: start;
}

.activity-arrow {
  display: inline-flex;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(var(--accent-start-rgb), 0.34);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: rgba(var(--accent-start-rgb), 0.1);
  color: var(--white);
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.activity-arrow:hover:not(:disabled),
.activity-arrow:focus-visible {
  border-color: var(--green);
  background: var(--green);
  color: var(--ink-deep);
  transform: scale(1.06);
}

.activity-arrow:disabled {
  opacity: 0.28;
  cursor: default;
}

.activity-arrow span {
  font-size: 16px;
  line-height: 1;
}

.activity-list svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(var(--accent-end-rgb), 0.1);
  color: var(--green);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

/* Typographic promise */

.manifesto {
  padding: clamp(150px, 16vw, 240px) 0;
  background:
    radial-gradient(circle at 86% 18%, rgba(var(--accent-start-rgb), 0.12), transparent 28%),
    var(--white);
}

.manifesto p {
  max-width: 1250px;
  margin: 0 auto;
  font-size: clamp(54px, 7.9vw, 112px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.96;
  text-align: center;
}

.manifesto [data-word] {
  display: inline-block;
  opacity: 0.16;
  will-change: opacity;
}

.manifesto [data-word]:nth-child(2) {
  color: var(--blue);
}

.manifesto [data-word]:nth-child(4),
.manifesto [data-word]:nth-child(12) {
  color: var(--green);
}

/* Production journey */

.process-section {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 82% 8%, rgba(var(--accent-start-rgb), 0.2), transparent 29%),
    radial-gradient(circle at 9% 86%, rgba(var(--accent-end-rgb), 0.1), transparent 26%),
    var(--ink);
  color: var(--white);
}

.process-heading {
  margin-bottom: 84px;
}

.process-heading .section-description {
  color: var(--muted-light);
}

.production-journey {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
  gap: clamp(54px, 7vw, 96px);
}

.production-stage {
  position: sticky;
  top: 94px;
  height: min(760px, calc(100vh - 122px));
  min-height: 620px;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #202934;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
  isolation: isolate;
}

.production-stage::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 25, 29, 0.08) 42%, rgba(23, 25, 29, 0.92) 100%),
    radial-gradient(circle at 76% 24%, transparent 0, rgba(23, 25, 29, 0.22) 66%, rgba(23, 25, 29, 0.58) 100%);
  content: "";
  pointer-events: none;
}

.production-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 650ms ease, transform 1100ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.production-media.is-active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
}

.production-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.08);
}

.production-media:nth-child(2) img {
  object-position: center 44%;
}

.production-media:nth-child(3) img {
  object-position: center 38%;
}

.production-stage-copy {
  position: absolute;
  z-index: 3;
  right: clamp(28px, 4vw, 52px);
  bottom: clamp(28px, 4vw, 48px);
  left: clamp(28px, 4vw, 52px);
}

.production-stage-copy > p {
  margin: 0 0 10px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.production-stage-copy > strong {
  display: block;
  overflow: hidden;
  font-size: clamp(54px, 6.8vw, 92px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.94;
}

.production-progress {
  position: relative;
  height: 1px;
  margin-top: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.production-progress i {
  position: absolute;
  inset: 0 auto 0 0;
  width: 33.333%;
  background: var(--gradient);
  transform-origin: left;
  transition: width 500ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.production-narrative {
  border-top: 1px solid var(--line-dark);
}

.production-narrative article {
  display: flex;
  min-height: 76vh;
  padding: clamp(56px, 8vh, 92px) 0;
  border-bottom: 1px solid var(--line-dark);
  justify-content: center;
  flex-direction: column;
  opacity: 0.35;
  transition: opacity 350ms ease;
}

.production-narrative article.is-active {
  opacity: 1;
}

.production-verb {
  margin: 0 0 24px;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.production-narrative h3 {
  margin: 0;
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  text-wrap: balance;
}

.production-narrative h3 + p {
  margin: 26px 0 0;
  color: var(--muted-light);
  font-size: 15px;
}

.production-narrative article > span {
  display: block;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.production-step-image {
  display: none;
}

/* Territory */

.territory-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(var(--accent-start-rgb), 0.1), transparent 27%),
    var(--surface);
}

.territory-heading {
  margin-bottom: 72px;
}

.territory-atlas {
  display: grid;
  min-height: 700px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  grid-auto-flow: dense;
}

.territory-index {
  display: grid;
  border-right: 1px solid var(--line);
  grid-template-rows: repeat(5, 1fr);
}

.territory-index button {
  position: relative;
  display: grid;
  width: 100%;
  padding: 18px 34px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: background 240ms ease, color 240ms ease;
}

.territory-index button:last-child {
  border-bottom: 0;
}

.territory-index button::before {
  position: absolute;
  inset: 0;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 420ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.territory-index button.is-active {
  color: var(--white);
}

.territory-index button.is-active::before {
  transform: scaleX(1);
  transform-origin: left;
}

.territory-index span,
.territory-index small {
  position: relative;
  z-index: 1;
}

.territory-index span {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.territory-index small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 240ms ease;
}

.territory-index button.is-active small {
  color: var(--green);
}

.territory-gallery {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--ink-deep);
}

.territory-frame {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(1.08);
  transition: opacity 560ms ease, transform 950ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.territory-frame.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.territory-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(23, 25, 29, 0.88));
  content: "";
}

.territory-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
}

.territory-frame figcaption {
  position: absolute;
  z-index: 1;
  right: 38px;
  bottom: 36px;
  left: 38px;
  display: grid;
  gap: 8px;
  color: var(--white);
}

.territory-frame figcaption span {
  color: var(--green);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.territory-frame figcaption strong {
  max-width: 550px;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.territory-modes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.territory-modes article {
  min-height: 190px;
  padding: 34px 34px 0;
  border-right: 1px solid var(--line);
}

.territory-modes article:nth-child(1) {
  box-shadow: inset 0 3px 0 var(--blue);
}

.territory-modes article:nth-child(2) {
  box-shadow: inset 0 3px 0 var(--ink);
}

.territory-modes article:nth-child(3) {
  box-shadow: inset 0 3px 0 var(--green);
}

.territory-modes article:last-child {
  border-right: 0;
}

.territory-modes span {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.territory-modes p {
  max-width: 320px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 13px;
}

/* Proof */

.proof-section {
  background: var(--white);
}

.proof-heading {
  margin-bottom: 72px;
}

.proof-stage {
  display: grid;
  min-height: 720px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--ink-deep);
  color: var(--white);
  grid-template-columns: minmax(0, 1.18fr) minmax(410px, 0.82fr);
  grid-auto-flow: dense;
  box-shadow: 0 32px 82px rgba(23, 25, 29, 0.14);
}

.proof-media {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
}

.proof-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(23, 25, 29, 0.88));
  content: "";
}

.proof-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.08);
  transition: filter 700ms ease, transform 900ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.proof-media:hover > img {
  filter: saturate(1.06) contrast(1.08);
  transform: scale(1.045);
}

.proof-media figcaption {
  position: absolute;
  z-index: 1;
  right: 36px;
  bottom: 34px;
  left: 36px;
  display: grid;
  gap: 8px;
}

.proof-media figcaption span {
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-media figcaption strong {
  max-width: 520px;
  font-size: 18px;
  font-weight: 500;
}

.proof-voices {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
}

.proof-quote {
  display: flex;
  padding: clamp(36px, 5vw, 58px);
  border-bottom: 1px solid var(--line-dark);
  justify-content: space-between;
  flex-direction: column;
  gap: 48px;
  transition: background 240ms ease;
}

.proof-quote:last-child {
  border-bottom: 0;
}

.proof-quote:hover {
  background: linear-gradient(110deg, rgba(var(--accent-start-rgb), 0.11), rgba(var(--accent-end-rgb), 0.04));
}

.proof-quote blockquote {
  margin: 0;
  font-size: clamp(22px, 2.25vw, 31px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.3;
}

.proof-quote footer {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.proof-quote footer strong {
  font-size: 11px;
  font-weight: 700;
}

.proof-quote footer span {
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 500;
}

/* FAQ and direct contact */

.faq-section {
  background:
    radial-gradient(circle at 90% 14%, rgba(var(--accent-start-rgb), 0.11), transparent 27%),
    var(--surface);
}

.faq-heading {
  margin-bottom: 72px;
}

.faq-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.42fr) minmax(340px, 0.58fr);
  gap: clamp(64px, 8vw, 110px);
}

.faq-list {
  border-top: 1px solid #cfd7d4;
}

.faq-list details {
  border-bottom: 1px solid #cfd7d4;
}

.faq-list summary {
  display: grid;
  min-height: 92px;
  padding: 24px 0;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 34px;
  gap: 24px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.025em;
  list-style: none;
}

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

.faq-list summary i {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid #c7d0cd;
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--ink);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details[open] summary {
  color: var(--blue-deep);
}

.faq-list details[open] summary i {
  border-color: rgba(var(--accent-start-rgb), 0.5);
  background: var(--white);
}

.faq-list details > p {
  max-width: 760px;
  margin: -3px 58px 28px 0;
  color: var(--muted);
  font-size: 14px;
}

.whatsapp-panel {
  position: sticky;
  top: 108px;
  padding: 38px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(145deg, #58aaf3, #5bd34d);
  color: var(--ink-deep);
  box-shadow: 0 28px 70px rgba(31, 103, 86, 0.18);
}

.whatsapp-mark {
  display: flex;
  width: 50px;
  height: 50px;
  margin-bottom: 76px;
  border: 1px solid rgba(9, 13, 17, 0.3);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.whatsapp-panel > p:first-of-type {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.whatsapp-panel h3 {
  margin: 0;
  font-size: clamp(31px, 3vw, 43px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.whatsapp-panel h3 + p {
  margin: 22px 0 0;
  color: rgba(9, 13, 17, 0.68);
  font-size: 13px;
}

.whatsapp-button {
  width: 100%;
  margin-top: 32px;
  background: var(--ink-deep);
  color: var(--white);
  box-shadow: none;
}

.whatsapp-panel small {
  display: block;
  margin-top: 15px;
  color: rgba(9, 13, 17, 0.58);
  font-size: 10px;
  text-align: center;
}

/* Quote form */

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 95%, rgba(var(--accent-end-rgb), 0.11), transparent 26%),
    radial-gradient(circle at 92% 8%, rgba(var(--accent-start-rgb), 0.2), transparent 28%),
    var(--ink);
  color: var(--white);
  padding: clamp(42px, 4vw, 56px) 0;
}

.contact-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(300px, 0.7fr) minmax(600px, 1.3fr);
  gap: clamp(65px, 9vw, 120px);
}

.contact-copy {
  position: sticky;
  top: 124px;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 500px;
  margin: 27px 0 0;
  color: var(--muted-light);
  font-size: 16px;
}

.contact-details {
  display: grid;
  margin-top: 48px;
  border-top: 1px solid var(--line-dark);
}

.contact-details a {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-decoration: none;
}

.contact-details small {
  color: var(--muted-light);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.contact-details strong {
  font-size: 13px;
  font-weight: 600;
}

.form-shell {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  background:
    linear-gradient(90deg, var(--blue), var(--green)) top / 100% 5px no-repeat,
    var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.26);
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.field {
  margin-bottom: 10px;
}

.field label,
.activity-choices legend {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 700;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
  background: #f8fbfe;
  color: var(--ink);
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.field input,
.field select {
  min-height: 46px;
  padding: 0 14px;
}

.field textarea {
  min-height: 136px;
  padding: 14px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #9ba4ad;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(var(--accent-start-rgb), 0.1);
}

.activity-choices {
  margin: 2px 0 18px;
  padding: 0;
  border: 0;
}

.activity-choices > p {
  margin: -1px 0 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.activity-choices > div {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.activity-choices label {
  position: relative;
  cursor: pointer;
}

.activity-choices input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.activity-choices span {
  display: flex;
  min-height: 40px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  background: #f8fbfe;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.activity-choices input:checked + span {
  border-color: var(--green);
  background: rgba(var(--accent-end-rgb), 0.1);
  color: var(--ink);
}

.activity-choices input:focus-visible + span {
  outline: 3px solid rgba(var(--accent-start-rgb), 0.55);
  outline-offset: 3px;
}

.activity-choices-extra {
  margin-top: -5px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.activity-choices-extra > div {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.activity-choices-extra span {
  border-color: rgba(var(--accent-start-rgb), 0.25);
  background: rgba(var(--accent-start-rgb), 0.06);
}

.consent {
  display: grid;
  margin: 2px 0 18px;
  align-items: start;
  grid-template-columns: 20px 1fr;
  gap: 11px;
  color: var(--muted);
  cursor: pointer;
  font-size: 11px;
  line-height: 1.55;
}

.consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--teal);
}

.consent a {
  color: var(--ink);
  font-weight: 600;
}

.form-submit {
  width: 100%;
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.7;
}

.honey-field {
  position: absolute;
  left: -9999px;
}

.form-message {
  display: none;
  padding: 28px;
  border-radius: 12px;
}

.form-message strong {
  display: block;
  margin-bottom: 7px;
  font-size: 18px;
}

.form-message p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-success {
  border: 1px solid rgba(var(--accent-end-rgb), 0.34);
  background: rgba(var(--accent-end-rgb), 0.09);
}

.form-error {
  border: 1px solid rgba(192, 57, 43, 0.28);
  background: rgba(192, 57, 43, 0.07);
}

.unigames-turnstile {
  margin-bottom: 20px;
}

/* Footer */

.pro-footer {
  position: relative;
  overflow: hidden;
  padding: 36px 0 27px;
  background:
    radial-gradient(circle at 84% 16%, rgba(var(--accent-start-rgb), 0.15), transparent 27%),
    radial-gradient(circle at 12% 92%, rgba(var(--accent-end-rgb), 0.08), transparent 24%),
    var(--ink-deep);
  color: var(--white);
}

.activity-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.footer-cta {
  display: grid;
  overflow: hidden;
  min-height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  background: #12191f;
}

.footer-cta-copy {
  position: relative;
  z-index: 1;
  display: flex;
  padding: clamp(34px, 4vw, 58px);
  justify-content: center;
  flex-direction: column;
  background:
    radial-gradient(circle at 0 100%, rgba(var(--accent-start-rgb), 0.19), transparent 45%),
    radial-gradient(circle at 90% 0, rgba(var(--accent-end-rgb), 0.12), transparent 38%);
}

.footer-cta-copy > p {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.footer-cta h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(32px, 3.4vw, 50px);
  font-weight: 520;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.footer-cta-copy > div {
  display: flex;
  margin-top: 28px;
  align-items: center;
  gap: 22px;
}

.footer-cta-link {
  color: var(--white);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.footer-cta-image {
  min-height: 270px;
  background:
    linear-gradient(90deg, #12191f 0%, transparent 34%),
    linear-gradient(0deg, rgba(5, 10, 14, 0.2), rgba(5, 10, 14, 0.06)),
    url("../images/Privatisation-Bar-Bordeaux-Entreprise-p-800.webp") center 42% / cover no-repeat;
}

.footer-main {
  display: grid;
  padding: 50px 0 42px;
  align-items: start;
  grid-template-columns: minmax(230px, 1.15fr) repeat(3, minmax(150px, 0.75fr));
  gap: clamp(30px, 4vw, 64px);
}

.brand-lockup-footer {
  width: fit-content;
  gap: 13px;
}

.pro-footer .brand-lockup {
  color: var(--white);
}

.pro-footer .brand-lockup img {
  width: 126px;
  height: 44px;
  padding: 3px 10px;
  border-radius: 7px;
  background: var(--white);
  object-fit: contain;
}

.pro-footer .brand-lockup > span {
  height: 38px;
  background: rgba(255, 255, 255, 0.45);
}

.pro-footer .brand-lockup strong {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.pro-footer .brand-lockup strong span {
  color: var(--green);
}

.footer-brand > p,
.footer-contact p {
  margin: 18px 0 0;
  color: var(--muted-light);
  font-size: 12px;
  line-height: 1.55;
}

.footer-brand > a:last-child {
  display: inline-block;
  margin-top: 22px;
  color: var(--white);
  font-size: 12px;
  font-weight: 650;
  text-decoration: none;
}

.footer-main nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-main nav > strong,
.footer-contact > strong {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-main nav a,
.footer-main nav span,
.footer-contact a {
  color: #dfe4e8;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  text-decoration: none;
}

.footer-main nav a:hover,
.footer-contact a:hover,
.footer-brand > a:last-child:hover,
.footer-bottom a:hover {
  color: var(--green);
}

.footer-contact p {
  margin: 0 0 5px;
}

.footer-contact a:first-of-type {
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  padding-top: 25px;
  border-top: 1px solid var(--line-dark);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #87919c;
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom > div {
  display: flex;
  gap: 24px;
}

.footer-bottom a {
  text-decoration: none;
}

@media (max-width: 1080px) {
  :root {
    --page-gutter: 28px;
  }

  .pro-nav {
    gap: 4px;
  }

  .pro-nav > a:not(.button) {
    padding-inline: 10px;
  }

  .brand-lockup img {
    width: 124px;
  }

  .pro-header .brand-lockup img {
    width: 130px;
    height: 46px;
  }

  .pro-header .brand-lockup > span,
  .pro-header .brand-lockup strong {
    display: none;
  }

  .audience-inner {
    padding: 32px;
  }

  .audience-heading {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audience-band {
    grid-template-columns: 1fr;
  }

  .audience-band > i {
    transform: rotate(90deg);
  }

  .format-explorer {
    height: 440px;
  }

  .format-panel {
    flex-basis: 0;
  }

  .experience-stage {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
  }

  .experience-story article {
    padding: 28px;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
  }

  .production-journey {
    grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.95fr);
    gap: 48px;
  }

  .contact-grid {
    grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1.3fr);
    gap: 55px;
  }
}

@media (max-width: 900px) {
  :root {
    --page-gutter: 18px;
  }

  .section {
    padding: 116px 0;
  }

  .header-inner,
  .pro-header.is-scrolled .header-inner {
    width: calc(100% - 36px);
    min-height: 68px;
    border-radius: 16px;
  }

  .nav-toggle {
    z-index: 2;
    display: inline-flex;
  }

  .pro-nav {
    position: fixed;
    z-index: 1;
    inset: 0;
    display: flex;
    padding: 116px 28px 40px;
    align-items: stretch;
    background: rgba(8, 12, 16, 0.98);
    flex-direction: column;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .pro-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .pro-nav > a:not(.button) {
    padding: 20px 0;
    border-bottom: 1px solid var(--line-dark);
    color: var(--white);
    font-size: 22px;
    letter-spacing: -0.025em;
  }

  .pro-nav > a:not(.button)::after {
    display: none;
  }

  .pro-nav .button {
    margin-top: 28px;
  }

  .pro-nav .button-dark {
    background: var(--white);
    color: var(--ink);
  }

  body.nav-open .nav-toggle {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .hero-stage {
    min-height: 820px;
  }

  .hero-wash {
    background:
      linear-gradient(90deg, rgba(23, 25, 29, 0.92), rgba(23, 25, 29, 0.42)),
      linear-gradient(0deg, rgba(23, 25, 29, 0.88), transparent 52%);
  }

  .hero-copy {
    left: 45px;
    width: calc(100% - 90px);
  }

  .hero h1 {
    font-size: clamp(58px, 10.5vw, 88px);
  }

  .hero-foot {
    right: 34px;
    left: 34px;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .hero-route {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .audience-proof {
    grid-template-columns: auto 1fr;
    gap: 18px 28px;
  }

  .trust-logos {
    grid-column: 1 / -1;
  }

  .activity-choices > div,
  .activity-choices-extra > div {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .section-intro {
    max-width: 820px;
  }

  .section-intro > .eyebrow {
    margin: 0 0 19px;
  }

  .format-explorer {
    display: grid;
    height: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .format-panel,
  .format-panel.is-active {
    min-height: 88px;
    flex: none;
    transition: min-height 420ms cubic-bezier(0.2, 0.72, 0.2, 1);
  }

  .format-panel.is-active {
    min-height: 500px;
  }

  .format-panel .format-content {
    opacity: 0;
    pointer-events: none;
    transform: translateY(18px);
  }

  .format-panel.is-active .format-content {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .format-panel .format-action {
    transform: none;
  }

  .format-panel.is-active .format-action {
    transform: rotate(45deg);
  }

  .impact-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-console {
    grid-template-columns: 1fr;
  }

  .impact-picker {
    padding: 28px;
  }

  .impact-display {
    min-height: 560px;
  }

  .impact-panel {
    gap: 32px;
  }

  .impact-word {
    font-size: clamp(58px, 10vw, 80px);
  }

  .impact-copy {
    max-width: 680px;
  }

  .experience-stage {
    grid-template-columns: 1fr;
  }

  .experience-media {
    min-height: 690px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .experience-story article {
    min-height: 220px;
  }

  .activity-rail {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .activity-list {
    justify-content: flex-start;
  }

  .production-journey {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .production-stage {
    display: none;
  }

  .production-narrative article {
    min-height: 0;
    padding: 82px 0;
    opacity: 1;
  }

  .production-step-image {
    display: block;
    height: min(72vw, 620px);
    margin-bottom: 44px;
    overflow: hidden;
    border-radius: 12px;
  }

  .production-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.76) contrast(1.08);
    transition: filter 700ms ease, transform 900ms cubic-bezier(0.2, 0.72, 0.25, 1);
  }

  .production-step-image:hover img {
    filter: saturate(0.95) contrast(1.08);
    transform: scale(1.045);
  }

  .territory-atlas {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .territory-index {
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    grid-template-columns: repeat(5, minmax(180px, 1fr));
    grid-template-rows: 1fr;
    scrollbar-width: thin;
  }

  .territory-index button {
    min-height: 108px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .territory-gallery {
    min-height: 620px;
  }

  .proof-stage {
    grid-template-columns: 1fr;
  }

  .proof-media {
    min-height: 620px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .proof-voices {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: none;
  }

  .proof-quote {
    min-height: 390px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .proof-quote:last-child {
    border-right: 0;
  }

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

  .whatsapp-panel {
    position: relative;
    top: auto;
    max-width: 620px;
  }

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

  .contact-copy {
    position: static;
    max-width: 700px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cta {
    grid-template-columns: 1fr minmax(260px, 0.7fr);
  }
}

@media (max-width: 620px) {
  :root {
    --page-gutter: 10px;
  }

  .section {
    padding: 92px 0;
  }

  .contact-section {
    padding: 56px 0;
  }

  .formats-section {
    padding: 56px 0;
  }

  .container:not(.hero-stage):not(.header-inner) {
    width: min(calc(100% - 28px), var(--container));
  }

  .header-inner {
    width: calc(100% - 20px);
    min-height: 68px;
    padding: 0 10px 0 16px;
    border-radius: 16px;
  }

  .pro-header.is-scrolled .header-inner {
    min-height: 68px;
  }

  .pro-nav > a:not(.button)[aria-current="page"] {
    background: transparent;
    transform: none;
  }

  .brand-lockup {
    gap: 9px;
  }

  .brand-lockup img {
    width: 112px;
  }

  .pro-header .brand-lockup img {
    width: 120px;
    height: 42px;
  }

  .brand-lockup strong {
    font-size: 8px;
  }

  .hero {
    padding: 9px 5% 0;
  }

  .hero-stage {
    width: 100%;
    min-height: 720px;
    border-radius: 12px;
  }

  .hero-copy {
    top: 45%;
    left: 24px;
    width: calc(100% - 48px);
    transform: translateY(-46%);
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: clamp(44px, 12.2vw, 58px);
  }

  .hero-intro {
    margin-top: 24px;
    font-size: 16px;
  }

  .hero-actions {
    margin-top: 30px;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-foot {
    right: 22px;
    bottom: 22px;
    left: 22px;
    font-size: 9px;
  }

  .hero-route {
    display: none;
  }

  .audience-proof {
    min-height: 0;
    margin-bottom: 22px;
    padding: 0 0 18px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .audience-proof > p {
    padding: 13px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .trust-logos {
    display: grid;
    overflow-x: auto;
    grid-column: auto;
    grid-auto-flow: column;
    grid-auto-columns: 86px;
    grid-template-columns: none;
    gap: 16px;
    scrollbar-width: thin;
  }

  .trust-logos img {
    width: 86px;
    height: 34px;
  }

  .audience {
    padding: 18px 0 0;
  }

  .audience-inner {
    padding: 24px 20px;
    border-radius: 20px;
    transform: translateY(14px);
  }

  .audience-heading h2 {
    font-size: 34px;
  }

  .audience-heading > p {
    font-size: 13px;
  }

  .audience-band > div {
    min-height: 96px;
    padding: 18px 20px;
  }

  .chapter-heading {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: clamp(34px, 9.4vw, 44px);
  }

  .section-description {
    margin-top: 18px;
    font-size: 15px;
  }

  .format-explorer {
    border-radius: 10px;
  }

  .format-panel,
  .format-panel.is-active {
    min-height: 76px;
  }

  .format-panel.is-active {
    min-height: 480px;
  }

  .format-panel > button {
    min-height: 74px;
    padding: 0 21px;
  }

  .format-content {
    right: 22px;
    bottom: 26px;
    left: 22px;
    width: calc(100% - 44px);
  }

  .format-content h3 {
    font-size: 38px;
  }

  .impact-heading {
    margin-bottom: 34px;
  }

  .impact-tabs {
    display: grid;
    overflow: visible;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .impact-tabs button {
    min-width: 0;
    min-height: 50px;
    padding: 6px 6px 6px 12px;
    gap: 6px;
    font-size: 11.5px;
  }

  .impact-tabs button span {
    min-width: 0;
  }

  .impact-tabs button i {
    width: 27px;
    height: 27px;
  }

  .impact-display {
    min-height: 560px;
  }

  .impact-panel {
    padding: 28px 23px;
    justify-content: flex-start;
    gap: 34px;
  }

  .impact-word {
    font-size: clamp(48px, 14vw, 68px);
  }

  .impact-copy h3 {
    font-size: 31px;
  }

  .experience-intro {
    margin-bottom: 48px;
  }

  .experience-media {
    min-height: 560px;
  }

  .experience-caption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .experience-story article {
    min-height: 250px;
    padding: 28px 20px;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 13px;
  }

  .experience-story h3 {
    font-size: 29px;
  }

  .activity-rail {
    padding: 28px 0;
  }

  .manifesto {
    padding: 112px 0;
  }

  .manifesto p {
    font-size: clamp(46px, 13.3vw, 64px);
  }

  .process-heading {
    margin-bottom: 52px;
  }

  .production-narrative article {
    padding: 62px 0;
  }

  .production-step-image {
    height: 112vw;
    max-height: 560px;
    margin-bottom: 34px;
    border-radius: 9px;
  }

  .production-narrative h3 {
    font-size: clamp(36px, 10.4vw, 49px);
  }

  .territory-heading,
  .proof-heading,
  .faq-heading {
    margin-bottom: 48px;
  }

  .territory-index {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
  }

  .territory-index button {
    min-height: 92px;
    padding: 16px 20px;
  }

  .territory-index span {
    font-size: 24px;
  }

  .territory-index small {
    display: none;
  }

  .territory-gallery {
    min-height: 500px;
  }

  .territory-frame figcaption {
    right: 23px;
    bottom: 23px;
    left: 23px;
  }

  .territory-frame figcaption strong {
    font-size: 26px;
  }

  .territory-modes {
    grid-template-columns: 1fr;
  }

  .territory-modes article {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .territory-modes article:last-child {
    border-bottom: 0;
  }

  .proof-stage {
    border-radius: 10px;
  }

  .proof-media {
    min-height: 480px;
  }

  .proof-media figcaption {
    right: 23px;
    bottom: 23px;
    left: 23px;
  }

  .proof-voices {
    grid-template-columns: 1fr;
  }

  .proof-quote {
    min-height: 340px;
    padding: 30px 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .proof-quote blockquote {
    font-size: 24px;
  }

  .faq-list summary {
    min-height: 82px;
    padding: 20px 0;
    font-size: 15px;
  }

  .faq-list details > p {
    margin-right: 0;
    font-size: 13px;
  }

  .whatsapp-panel {
    padding: 29px 24px;
  }

  .whatsapp-mark {
    margin-bottom: 56px;
  }

  .form-shell {
    padding: 22px 16px;
  }

  .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .field input,
  .field select {
    padding-inline: 10px;
  }

  .activity-choices > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .activity-choices-extra > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-details a {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-grid {
    gap: 32px;
  }

  .contact-details {
    margin-top: 28px;
    border-top: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .contact-details a {
    min-width: 0;
    padding: 14px 12px;
    border: 1px solid var(--line-dark);
    border-radius: 9px;
  }

  .contact-details strong {
    overflow-wrap: anywhere;
  }

  .footer-main {
    padding-bottom: 44px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-cta {
    grid-template-columns: 1fr;
  }

  .footer-cta-image {
    min-height: 190px;
    grid-row: 1;
    background:
      linear-gradient(0deg, #12191f 0%, transparent 45%),
      url("../images/Privatisation-Bar-Bordeaux-Entreprise-p-800.webp") center 42% / cover no-repeat;
  }

  .footer-cta-copy {
    padding: 30px 22px 34px;
  }

  .footer-cta-copy > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom > div {
    flex-direction: column;
    gap: 8px;
  }
}

/* Compact viewport budgets for the three editorial sections */

.experience-section,
.territory-section,
.proof-section {
  padding: 40px 0;
  scroll-margin-top: 92px;
}

.experience-section {
  padding: 25px 0;
}

.experience-intro,
.territory-heading,
.proof-heading {
  margin-bottom: 24px;
}

.experience-stage {
  height: auto;
  min-height: 390px;
}

.experience-story article {
  padding: 24px;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 16px;
}

.experience-story h3 {
  font-size: clamp(23px, 2.2vw, 31px);
}

.experience-story p {
  margin-top: 10px;
}

.activity-rail {
  padding: 16px 0;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 24px;
}

.territory-atlas {
  min-height: 400px;
}

.territory-index button {
  padding: 12px 26px;
}

.territory-index span {
  font-size: clamp(24px, 2.4vw, 34px);
}

.territory-modes article {
  min-height: 126px;
  padding: 22px 26px 18px;
}

.territory-modes p {
  margin-top: 12px;
}

.proof-stage {
  height: 470px;
  min-height: 420px;
}

.proof-quote {
  padding: 28px 32px;
  gap: 24px;
}

.proof-quote blockquote {
  font-size: clamp(20px, 1.8vw, 25px);
}

@media (max-width: 900px) {
  .experience-section,
  .territory-section,
  .proof-section {
    padding: 56px 0;
  }

  .experience-section {
    padding: 36px 0;
  }

  .experience-intro,
  .territory-heading,
  .proof-heading {
    margin-bottom: 32px;
  }

  .experience-stage {
    height: auto;
    min-height: 0;
  }

  .experience-media {
    min-height: 280px;
  }

  .experience-story article {
    min-height: 150px;
    padding: 22px 20px;
  }

  .activity-rail {
    padding: 22px 0 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .activity-list {
    overflow-x: auto;
    padding-bottom: 10px;
    justify-content: flex-start;
    grid-auto-columns: minmax(124px, 1fr);
  }

  .activity-carousel {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 7px;
  }

  .activity-arrow {
    width: 34px;
    height: 34px;
  }

  .activity-list > span {
    flex: 0 0 auto;
  }

  .territory-index button {
    min-height: 82px;
  }

  .territory-gallery {
    min-height: 300px;
  }

  .territory-modes article {
    min-height: 0;
    padding: 20px 0;
  }

  .proof-media {
    min-height: 280px;
  }

  .proof-stage {
    height: auto;
  }

  .proof-quote {
    min-height: 220px;
    padding: 26px 24px;
  }
}

@media (max-width: 620px) {
  .experience-media,
  .territory-gallery,
  .proof-media {
    min-height: 260px;
  }

  .experience-story article {
    min-height: 145px;
    padding: 20px 16px;
  }

  .experience-story h3 {
    font-size: 25px;
  }

  .proof-quote {
    min-height: 210px;
  }

  .proof-quote blockquote {
    font-size: 21px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .manifesto [data-word] {
    opacity: 1;
  }
}

/* Reunion 2026-09-02: show the full event scope and inclusion before the catalogue. */
.turnkey-section {
  padding-block: 44px 48px;
  background:
    radial-gradient(circle at 84% 8%, rgba(var(--accent-start-rgb), 0.12), transparent 28%),
    var(--surface, #fff);
}

.turnkey-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.55fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.turnkey-heading {
  position: sticky;
  top: 112px;
}

.turnkey-heading > p:last-child {
  max-width: 44ch;
  margin-top: 18px;
  color: var(--muted, #5f6670);
  line-height: 1.65;
}

.turnkey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-flow: dense;
  border: 1px solid var(--line, #dfe5eb);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 70px rgba(23, 25, 29, 0.08);
}

.turnkey-grid article {
  min-height: 230px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line, #dfe5eb);
  border-bottom: 1px solid var(--line, #dfe5eb);
}

.turnkey-grid article:nth-child(2n) { border-right: 0; }
.turnkey-grid article:nth-last-child(-n + 2) { border-bottom: 0; }
.turnkey-grid article:nth-child(4) { background: var(--ink, #17191d); color: #fff; }

.turnkey-index {
  color: var(--accent-blue, #30a3ff);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.turnkey-grid h3 {
  margin: 15px 0 10px;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.05;
}

.turnkey-grid p {
  margin: 0;
  color: var(--muted, #5f6670);
  font-size: 15px;
  line-height: 1.55;
}

.turnkey-grid article:nth-child(4) p { color: rgba(255, 255, 255, 0.72); }

.turnkey-grid a {
  width: fit-content;
  margin-top: auto;
  padding-top: 18px;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.inclusion-section {
  padding-block: 48px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(var(--accent-end-rgb), 0.13), transparent 26%),
    radial-gradient(circle at 92% 100%, rgba(var(--accent-start-rgb), 0.15), transparent 32%),
    var(--ink, #17191d);
  color: #fff;
}

.inclusion-layout { display: grid; gap: 26px; }

.inclusion-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  gap: 24px 60px;
  align-items: end;
}

.inclusion-heading .eyebrow { grid-column: 1 / -1; }
.inclusion-heading h2 { max-width: 820px; }
.inclusion-heading > p:last-child { margin: 0; color: rgba(255,255,255,.72); line-height: 1.65; }

.inclusion-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-flow: dense;
  border-block: 1px solid rgba(255,255,255,.18);
}

.inclusion-grid article {
  min-height: 205px;
  padding: 24px;
  border-right: 1px solid rgba(255,255,255,.18);
}

.inclusion-grid article:last-child { border-right: 0; }
.inclusion-grid span { color: var(--accent-green, #00c920); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.inclusion-grid h3 { margin: 16px 0 10px; font-size: clamp(20px, 1.7vw, 25px); line-height: 1.08; }
.inclusion-grid p { margin: 0; color: rgba(255,255,255,.7); font-size: 15px; line-height: 1.55; }

.inclusion-organizer {
  display: grid;
  grid-template-columns: .85fr 1.2fr auto;
  gap: 20px 32px;
  align-items: center;
  padding: 22px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
}

.inclusion-organizer strong { font-size: 18px; }
.inclusion-organizer p { margin: 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.5; }
.inclusion-organizer .button { white-space: nowrap; }

@media (max-width: 900px) {
  .turnkey-layout,
  .inclusion-heading { grid-template-columns: 1fr; }
  .turnkey-heading { position: static; }
  .inclusion-heading .eyebrow { grid-column: auto; }
  .inclusion-grid { grid-template-columns: 1fr; }
  .inclusion-grid article { min-height: 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .inclusion-grid article:last-child { border-bottom: 0; }
  .inclusion-organizer { grid-template-columns: 1fr; }
  .inclusion-organizer .button { width: fit-content; }
}

@media (max-width: 620px) {
  .turnkey-section,
  .inclusion-section { padding-block: 34px; }
  .turnkey-layout { gap: 24px; }
  .turnkey-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }
  .turnkey-grid article {
    flex: 0 0 84%;
    min-height: 260px;
    border-right: 1px solid var(--line, #dfe5eb);
    border-bottom: 0;
    scroll-snap-align: start;
  }
  .turnkey-grid article:last-child { border-right: 0; }
  .inclusion-layout { gap: 20px; }
  .inclusion-grid article { padding: 20px 4px; }
  .inclusion-organizer { padding: 20px; }
}

/* Feedback 2026-09-11: image-first event scope, explicit disability message and compact impact console. */
.turnkey-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.turnkey-heading {
  position: static;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 28px 64px;
}

.turnkey-heading .eyebrow,
.inclusion-heading .eyebrow {
  margin-bottom: 16px;
}

.turnkey-heading h2 {
  max-width: 820px;
}

.turnkey-heading > p:last-child {
  max-width: 42ch;
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.55;
}

.turnkey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.turnkey-grid article {
  position: relative;
  display: block;
  height: 292px;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: var(--ink, #17191d);
  color: #fff;
  isolation: isolate;
}

.turnkey-grid article:nth-child(2n),
.turnkey-grid article:nth-last-child(-n + 2) {
  border: 0;
}

.turnkey-grid article::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 13, 16, 0.06) 20%, rgba(10, 13, 16, 0.9) 100%);
  content: "";
  pointer-events: none;
}

.turnkey-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.turnkey-grid article:nth-child(1) img { object-position: center 58%; }
.turnkey-grid article:nth-child(3) img { object-position: center 32%; }

.turnkey-grid article:hover img,
.turnkey-grid article:focus-within img {
  transform: scale(1.055);
}

.turnkey-card-copy {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 20px;
  left: 20px;
}

.turnkey-grid .turnkey-index {
  color: #71d8ff;
  font-size: 10px;
}

.turnkey-grid h3 {
  max-width: 260px;
  margin: 9px 0 14px;
  color: #fff;
  font-size: clamp(19px, 1.55vw, 24px);
  line-height: 1.05;
}

.turnkey-grid a {
  margin: 0;
  padding: 0 0 4px;
  color: #fff;
  font-size: 12px;
}

.inclusion-layout {
  gap: 24px;
}

.inclusion-heading {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  align-items: end;
  gap: 24px 54px;
}

.inclusion-heading .eyebrow {
  grid-column: auto;
}

.inclusion-heading > div:first-child {
  grid-row: 1 / 3;
}

.inclusion-heading > p:last-child {
  align-self: end;
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.4;
}

.inclusion-heading h2 {
  max-width: 900px;
  font-size: clamp(38px, 3.8vw, 54px);
}

.inclusion-content {
  display: grid;
  grid-template-columns: minmax(310px, 0.82fr) minmax(0, 1.18fr);
  gap: 14px;
}

.inclusion-media {
  position: relative;
  height: 310px;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #27313a;
}

.inclusion-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(8, 12, 15, 0.88) 100%);
  content: "";
}

.inclusion-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transition: transform 700ms cubic-bezier(0.2, 0.72, 0.25, 1);
}

.inclusion-media:hover img {
  transform: scale(1.045);
}

.inclusion-media figcaption {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
}

.inclusion-media figcaption svg {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  fill: none;
  stroke: #21d56a;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.8;
}

.inclusion-media figcaption strong {
  display: block;
  color: #fff;
  font-size: 17px;
}

.inclusion-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-flow: dense;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
}

.inclusion-grid article {
  display: grid;
  min-height: 0;
  padding: 18px 22px;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border-right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.inclusion-grid article:last-child {
  border-bottom: 0;
}

.inclusion-grid article > span {
  display: flex;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(33, 213, 106, 0.45);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: #21d56a;
  font-size: 10px;
}

.inclusion-grid h3 {
  margin: 0 0 5px;
  font-size: clamp(18px, 1.4vw, 22px);
}

.inclusion-grid p {
  font-size: 14px;
  line-height: 1.45;
}

.inclusion-organizer {
  grid-template-columns: 0.85fr 1.3fr auto;
  padding: 17px 20px;
}

.impact-section {
  padding: 42px 0 46px;
}

.impact-heading {
  display: grid;
  max-width: none;
  margin-bottom: 22px;
  grid-template-columns: 220px minmax(0, 1fr);
  align-items: end;
  gap: 28px;
}

.impact-heading > .eyebrow {
  margin: 0 0 5px;
}

.impact-heading .section-title {
  max-width: none;
  font-size: clamp(38px, 3.7vw, 52px);
}

.impact-heading .section-description {
  margin-top: 10px;
  font-size: 15px;
}

.impact-console {
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.36fr);
  gap: 14px;
  width: 100%;
  min-width: 0;
}

.impact-picker {
  min-width: 0;
  overflow: hidden;
  padding: 20px;
  border-radius: 22px;
}

.impact-picker-kicker {
  margin-bottom: 7px;
}

.impact-picker h3 {
  font-size: clamp(22px, 1.8vw, 27px);
}

.impact-picker-help {
  margin: 8px 0 13px;
  font-size: 12px;
}

.impact-tabs {
  gap: 5px;
}

.impact-tabs button {
  min-height: 40px;
  padding-block: 4px;
}

.impact-tabs button i {
  width: 27px;
  height: 27px;
}

.impact-display {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 460px;
  border-radius: 22px;
}

.impact-panel {
  width: auto;
  min-width: 0;
  max-width: 100%;
  padding: 28px 34px;
  gap: 15px;
}

.impact-word {
  font-size: clamp(44px, 4.3vw, 60px);
}

.impact-copy h3 {
  font-size: clamp(26px, 2.25vw, 33px);
}

.impact-copy h3 + p {
  margin-top: 10px;
}

.impact-recommendation,
.impact-copy > a {
  margin-top: 13px;
}

@media (max-width: 1080px) {
  .turnkey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .turnkey-grid article {
    height: 230px;
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .turnkey-heading,
  .inclusion-heading,
  .inclusion-content,
  .impact-heading,
  .impact-console {
    grid-template-columns: 1fr;
    overflow: hidden;
  }

  .inclusion-heading > div:first-child {
    grid-row: auto;
  }

  .inclusion-media {
    height: 260px;
    min-height: 0;
  }

  .inclusion-organizer {
    grid-template-columns: 1fr;
  }

  .impact-heading {
    gap: 10px;
  }

  .impact-heading > .eyebrow {
    margin-bottom: 2px;
  }

  .impact-picker {
    padding: 18px;
  }

  .impact-tabs {
    display: flex;
    overflow-x: auto;
    flex-direction: row;
    gap: 6px;
    scrollbar-width: thin;
  }

  .impact-tabs button {
    width: auto;
    min-width: 132px;
    flex: 0 0 auto;
  }

  .impact-display {
    min-height: 470px;
  }

  .impact-panel {
    gap: 15px;
  }
}

@media (max-width: 620px) {
  .turnkey-heading,
  .inclusion-heading {
    gap: 14px;
  }

  .turnkey-heading .eyebrow,
  .inclusion-heading .eyebrow {
    margin-bottom: 11px;
  }

  .turnkey-heading > p:last-child,
  .inclusion-heading > p:last-child {
    font-size: 15px;
  }

  .turnkey-grid {
    display: flex;
    gap: 10px;
  }

  .turnkey-grid article {
    height: 258px;
    min-height: 0;
    flex-basis: 82%;
    border: 0;
  }

  .inclusion-heading h2 {
    font-size: 36px;
  }

  .inclusion-media {
    height: 230px;
    min-height: 0;
  }

  .inclusion-grid article {
    padding: 15px 17px;
  }

  .inclusion-organizer {
    padding: 17px;
  }

  .impact-section {
    padding: 34px 0 38px;
  }

  .impact-heading {
    margin-bottom: 18px;
  }

  .impact-heading .section-title {
    font-size: 36px;
  }

  .impact-picker h3 {
    font-size: 22px;
  }

  .impact-tabs {
    display: flex;
    grid-template-columns: none;
  }

  .impact-tabs button {
    min-height: 42px;
    font-size: 12px;
  }

  .impact-display {
    min-height: 470px;
  }

  .impact-panel {
    padding: 24px 21px;
    gap: 13px;
  }

  .impact-word {
    font-size: 48px;
  }

  .impact-copy h3 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .impact-copy h3 + p,
  .impact-recommendation {
    overflow-wrap: anywhere;
  }
}
