@font-face {
  font-family: "Ms Madi";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/ms-madi-latin.woff2") format("woff2");
}

:root {
  --ink: #0b0b0d;
  --ink-soft: #242429;
  --paper: #f2f0eb;
  --paper-deep: #e7e3dc;
  --white: #fff;
  --red: #f04432;
  --red-deep: #c92f20;
  --blue: #164db7;
  --yellow: #ffd423;
  --violet: #4a477f;
  --line: rgba(11, 11, 13, .16);
  --muted: #6d6b69;
  --max: 1360px;
  --gutter: clamp(20px, 4vw, 64px);
  --display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shadow: 0 28px 80px rgba(11, 11, 13, .14);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: -80px;
  padding: 12px 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  z-index: 90;
  top: 0;
  background: color-mix(in srgb, var(--paper) 91%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-shell {
  width: min(100%, var(--max));
  min-height: 84px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: minmax(180px, 250px) 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand { width: min(100%, 220px); }
.brand img { width: 100%; height: auto; }

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.7vw, 28px);
}

.desktop-nav a,
.contact-link,
.locale-chip {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
  padding: 32px 0;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 23px;
  height: 2px;
  background: var(--red);
  transition: right .25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.locale-chip { padding: 8px 0; color: var(--muted); }
.contact-link {
  padding: 11px 18px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  transition: color .2s ease, background .2s ease;
}
.contact-link:hover { color: var(--ink); background: transparent; }

.nav-toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-content: center;
  gap: 7px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--ink);
}
.nav-toggle span { width: 20px; height: 1px; display: block; background: currentColor; transition: transform .25s ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  z-index: -1;
  inset: 84px 0 0;
  padding: 34px var(--gutter) 30px;
  background: var(--ink);
  color: var(--white);
  overflow-y: auto;
}
.mobile-nav nav { display: grid; }
.mobile-nav nav a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.18); font-family: var(--display); font-size: clamp(28px, 7vw, 52px); font-weight: 800; letter-spacing: -.04em; }
.mobile-nav p { margin-top: 34px; color: rgba(255,255,255,.55); font-size: 11px; font-weight: 800; letter-spacing: .2em; }

.section-shell { width: min(100%, var(--max)); margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.eyebrow {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-hero {
  min-height: calc(100svh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 1.17fr) minmax(360px, .83fr);
  color: var(--white);
  background: var(--ink);
}

.hero-copy {
  padding: clamp(76px, 10vw, 150px) var(--gutter) clamp(70px, 9vw, 130px) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy .slogan { margin-bottom: 10px; color: var(--red); font-size: clamp(15px, 1.5vw, 21px); letter-spacing: .08em; text-transform: none; }
.hero-sector { display: block; margin-bottom: 32px; color: rgba(255,255,255,.55); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }

.hero-copy h1 {
  max-width: 870px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 7.8vw, 132px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -.072em;
  line-height: .84;
  text-transform: uppercase;
}

.hero-intro { max-width: 650px; margin: 38px 0 0; color: rgba(255,255,255,.7); font-size: clamp(18px, 1.6vw, 24px); line-height: 1.45; }
.hero-actions { margin-top: 42px; display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.button {
  min-height: 48px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--white); background: var(--red); border-color: var(--red); }
.button-primary:hover { background: var(--red-deep); border-color: var(--red-deep); }
.button-dark { color: var(--white); background: var(--ink); border-color: var(--ink); }
.button-light { color: var(--ink); background: var(--white); border-color: var(--white); }
.button-ghost { background: transparent; border-color: currentColor; }

.text-link { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.text-link span { font-size: 18px; transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px,-3px); }

.hero-visual {
  position: relative;
  min-height: 560px;
  padding: 36px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--red);
}

.hero-visual::before {
  content: "M";
  position: absolute;
  right: -8%;
  bottom: -18%;
  color: rgba(255,255,255,.1);
  font-family: var(--display);
  font-size: clamp(420px, 48vw, 760px);
  font-weight: 900;
  line-height: .76;
}

.monogram { position: absolute; inset: 9% 8% 21%; display: grid; grid-template-columns: 1fr .58fr .58fr 1fr; align-items: stretch; gap: 7%; transform: skew(-7deg); }
.monogram i { display: block; background: var(--ink); clip-path: polygon(0 0,100% 8%,82% 100%,0 94%); }
.monogram i:nth-child(2), .monogram i:nth-child(3) { clip-path: polygon(0 8%,28% 8%,100% 92%,75% 92%); }
.monogram i:nth-child(4) { clip-path: polygon(18% 0,100% 6%,100% 94%,0 100%); }
.hero-visual p { position: relative; z-index: 2; margin: 0; font-size: 11px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.metric { min-height: 205px; padding: 42px clamp(22px, 3.2vw, 52px); display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric strong { font-family: var(--display); font-size: clamp(44px, 5vw, 82px); font-weight: 900; letter-spacing: -.06em; line-height: 1; }
.metric span { max-width: 160px; color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }

.statement { padding-top: clamp(90px, 12vw, 180px); padding-bottom: clamp(90px, 12vw, 180px); display: grid; grid-template-columns: minmax(180px, .38fr) 1fr; gap: 8vw; }
.statement-label { display: flex; gap: 24px; align-items: flex-start; }
.statement-label span { font-family: var(--display); font-size: 64px; font-weight: 900; letter-spacing: -.08em; }
.statement-label p { max-width: 90px; margin: 10px 0 0; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.statement h2, .section-heading h2, .company-duo h2, .founder-copy h2, .inline-cta h2, .network-note h2, .bridge-statement h2, .publishing-story h2, .chart-method h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .93;
  text-transform: uppercase;
}
.statement > div:last-child > p { max-width: 780px; margin: 32px 0 0; color: var(--muted); font-size: clamp(18px, 1.8vw, 26px); }

.global-presence { padding-top: clamp(80px, 10vw, 145px); padding-bottom: clamp(85px, 11vw, 150px); border-top: 1px solid var(--line); }
.global-intro { display: grid; grid-template-columns: minmax(300px, .9fr) minmax(380px, 1.1fr); gap: 8vw; align-items: end; }
.global-intro h2 { max-width: 740px; margin: 0; font-family: var(--display); font-size: clamp(58px, 7.2vw, 112px); font-weight: 900; letter-spacing: -.065em; line-height: .86; }
.global-intro-copy > p { max-width: 760px; margin: 0; color: var(--muted); font-size: clamp(17px, 1.6vw, 24px); line-height: 1.55; }
.global-intro-copy strong { display: block; max-width: 760px; margin-top: 26px; color: var(--ink); font-size: clamp(17px, 1.45vw, 22px); line-height: 1.45; }
.global-regions { margin-top: clamp(60px, 7vw, 100px); display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.global-region { min-height: 230px; padding: 36px 28px; border-right: 1px solid var(--line); }
.global-region:last-child { border-right: 0; }
.flag-row { min-height: 38px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.library-flag { width: 31px; height: 31px; display: inline-block; overflow: hidden; border-radius: 50%; box-shadow: 0 0 0 1px rgba(11,11,13,.08); }
.library-flag img { width: 100%; height: 100%; display: block; object-fit: cover; }
.global-region h3 { margin: 26px 0 8px; font-family: var(--display); font-size: clamp(28px, 2.3vw, 38px); letter-spacing: -.04em; line-height: 1; }
.global-region p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.45; }

.verticals { padding-bottom: clamp(100px, 14vw, 190px); display: grid; grid-template-columns: .48fr 1fr; gap: 7vw; }
.section-heading { align-self: start; position: sticky; top: 125px; }
.section-heading h2 { max-width: 470px; font-size: clamp(48px, 5.8vw, 88px); }
.vertical-list { border-top: 1px solid var(--ink); }
.vertical-row { min-height: 145px; display: grid; grid-template-columns: 50px minmax(170px,.75fr) 1fr 28px; align-items: center; gap: 24px; border-bottom: 1px solid var(--line); transition: background .25s ease, padding .25s ease; }
.vertical-row:hover { padding: 0 20px; background: var(--white); }
.vertical-row > span:first-child { color: var(--red); font-size: 10px; font-weight: 900; }
.vertical-row h3 { margin: 0; font-family: var(--display); font-size: clamp(30px, 3.2vw, 48px); letter-spacing: -.045em; text-transform: uppercase; }
.vertical-row p { margin: 0; color: var(--muted); }
.vertical-row > span:last-child { font-size: 24px; }

.company-duo { display: grid; grid-template-columns: .7fr 1fr; color: var(--white); background: var(--ink); }
.company-duo-copy { padding: clamp(70px, 9vw, 130px) var(--gutter) clamp(70px, 9vw, 130px) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); }
.company-duo-copy h2 { font-size: clamp(50px, 6vw, 90px); }
.company-duo-copy > p:not(.eyebrow) { margin: 30px 0; color: rgba(255,255,255,.67); font-size: 18px; }
.company-logos { display: grid; grid-template-rows: 1fr 1fr; }
.company-logos article { min-height: 330px; padding: clamp(38px, 6vw, 84px); display: grid; place-items: center; }
.company-logos img { width: min(100%, 520px); }
.europe-card { background: var(--blue); }
.america-card { background: #b52236; }

.founder-feature { padding-top: clamp(100px, 13vw, 180px); padding-bottom: clamp(100px, 13vw, 180px); display: grid; grid-template-columns: .78fr 1fr; align-items: center; gap: 8vw; }
.founder-portrait { position: relative; }
.founder-portrait::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; border: 1px solid var(--ink); }
.founder-portrait img { position: relative; width: 100%; aspect-ratio: 1; object-fit: cover; filter: grayscale(1); }
.founder-copy h2 { font-size: clamp(48px, 6vw, 90px); }
.founder-copy > p:not(.eyebrow) { max-width: 650px; margin: 30px 0 38px; color: var(--muted); font-size: 19px; }

.closing-cta { padding: clamp(80px, 12vw, 160px) var(--gutter); text-align: center; color: var(--white); background: var(--red); }
.closing-cta > p { margin: 0 0 24px; font-size: 11px; font-weight: 900; letter-spacing: .26em; }
.closing-cta h2 { max-width: 1050px; margin: 0 auto 40px; font-family: var(--display); font-size: clamp(54px, 8vw, 124px); font-weight: 900; letter-spacing: -.07em; line-height: .86; text-transform: uppercase; }

.page-hero { min-height: 580px; padding: clamp(95px, 12vw, 170px) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))) 54px; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; color: var(--white); background: var(--ink); }
.page-hero-grid { display: grid; grid-template-columns: minmax(0,1.25fr) minmax(300px,.75fr); gap: 7vw; align-items: end; }
.page-hero h1 { max-width: 880px; margin: 0; font-family: var(--display); font-size: clamp(64px, 8.8vw, 140px); font-weight: 900; letter-spacing: -.075em; line-height: .82; text-transform: uppercase; }
.page-intro { margin: 0 0 10px; color: rgba(255,255,255,.7); font-size: clamp(18px, 1.75vw, 26px); }
.hero-rule { height: 42px; margin-top: 60px; display: grid; grid-template-columns: 1fr .22fr .08fr; gap: 14px; transform: skewX(-18deg); }
.hero-rule i { background: var(--red); }
.hero-rule i:nth-child(2) { opacity: .65; }
.hero-rule i:nth-child(3) { opacity: .3; }

.entity-grid { padding-top: clamp(80px, 10vw, 140px); display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.entity-card { min-height: 680px; padding: clamp(38px, 5vw, 72px); display: flex; flex-direction: column; color: var(--white); box-shadow: var(--shadow); }
.entity-europe { background: var(--blue); }
.entity-america { background: #b52236; }
.entity-card .eyebrow { color: rgba(255,255,255,.72); }
.entity-card > img { width: 80%; max-width: 520px; margin: 60px 0 70px; }
.entity-card > p:not(.eyebrow) { max-width: 580px; margin: 0 0 28px; font-size: 18px; }
.entity-card ul { margin: auto 0 34px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0 18px; list-style: none; border-top: 1px solid rgba(255,255,255,.3); }
.entity-card li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.3); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.bridge-statement { padding-top: clamp(90px, 12vw, 160px); padding-bottom: clamp(90px, 12vw, 160px); display: grid; grid-template-columns: 80px 1fr 80px minmax(420px,1.2fr); align-items: center; gap: 28px; }
.bridge-statement > span { font-family: var(--display); font-size: 50px; font-weight: 900; letter-spacing: -.05em; }
.bridge-statement > i { height: 1px; background: var(--ink); }
.bridge-statement h2 { font-size: clamp(44px,5vw,74px); }
.bridge-statement p { color: var(--muted); font-size: 18px; }

.service-chapters { padding-top: 40px; padding-bottom: clamp(90px, 12vw, 160px); }
.service-chapter { padding: clamp(65px, 8vw, 110px) 0; display: grid; grid-template-columns: .4fr 1fr; gap: 7vw; border-bottom: 1px solid var(--line); }
.chapter-index { display: flex; gap: 28px; align-items: flex-start; }
.chapter-index span { font-family: var(--display); font-size: 70px; font-weight: 900; letter-spacing: -.08em; line-height: .8; }
.chapter-index p { margin: 5px 0 0; color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.chapter-copy h2 { max-width: 820px; margin: 0; font-family: var(--display); font-size: clamp(46px, 5.8vw, 86px); font-weight: 900; letter-spacing: -.06em; line-height: .93; text-transform: uppercase; }
.chapter-copy > p { max-width: 760px; margin: 30px 0 46px; color: var(--muted); font-size: 19px; }

.brand-tiles { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.brand-tile { min-height: 180px; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; background: var(--white); border: 1px solid var(--line); transition: transform .25s ease, box-shadow .25s ease; }
.brand-tile:hover { transform: translateY(-4px); box-shadow: 0 16px 45px rgba(11,11,13,.1); }
.brand-tile img { width: 100%; height: 72px; object-fit: contain; object-position: left center; }
.brand-tile .wordmark { font-family: var(--display); font-size: clamp(28px, 3vw, 44px); letter-spacing: -.04em; }
.brand-tile > span { margin-top: 24px; display: flex; justify-content: space-between; gap: 12px; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.brand-tile > span span { font-size: 16px; }
.feature-stat { padding: 34px; display: flex; gap: 32px; align-items: center; color: var(--white); background: var(--red); }
.feature-stat strong { font-family: var(--display); font-size: clamp(64px,8vw,112px); letter-spacing: -.07em; line-height: 1; }
.feature-stat span { max-width: 220px; font-size: 12px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }

.inline-cta { padding: clamp(80px, 10vw, 140px) var(--gutter); display: flex; align-items: center; justify-content: center; gap: 7vw; color: var(--white); background: var(--ink); }
.inline-cta h2 { max-width: 850px; font-size: clamp(44px,5.8vw,86px); }
.inline-cta .button { flex: 0 0 auto; }

.distribution-lead { padding-top: clamp(90px, 11vw, 150px); display: grid; grid-template-columns: 1.2fr .8fr; gap: 24px; }
.distrid-panel, .indie-panel { padding: clamp(42px,5vw,76px); }
.distrid-panel { color: var(--white); background: #311d71; }
.distrid-panel > img { width: min(100%, 450px); height: 100px; object-fit: contain; object-position: left center; filter: brightness(0) invert(1); }
.distrid-panel h2, .indie-panel h2, .seo-card h2 { margin: 55px 0 22px; font-family: var(--display); font-size: clamp(48px,5vw,78px); letter-spacing: -.06em; line-height: .9; text-transform: uppercase; }
.distrid-panel > p { color: rgba(255,255,255,.7); font-size: 19px; }
.distrid-panel ul { margin: 32px 0 44px; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.3); }
.distrid-panel li { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.3); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.indie-panel { display: flex; flex-direction: column; background: var(--white); }
.indie-panel > img { width: 100%; height: 80px; margin: 42px 0 20px; object-fit: contain; object-position: left center; }
.indie-panel > p:not(.eyebrow) { margin: 0 0 42px; color: var(--muted); font-size: 18px; }
.indie-panel .text-link { margin-top: auto; }
.big-metrics { padding-top: 80px; padding-bottom: clamp(100px,13vw,170px); display: grid; grid-template-columns: repeat(3,1fr); }
.big-metrics > div { padding: 34px; border-left: 1px solid var(--line); }
.big-metrics > div:last-child { border-right: 1px solid var(--line); }
.big-metrics strong { display: block; font-family: var(--display); font-size: clamp(56px,7vw,104px); letter-spacing: -.07em; line-height: 1; }
.big-metrics span { display: block; margin-top: 18px; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }

.publishing-story { padding-top: clamp(90px,12vw,160px); padding-bottom: clamp(90px,12vw,160px); display: grid; grid-template-columns: .8fr 1fr; align-items: center; gap: 8vw; }
.music-mark { aspect-ratio: 1; padding: 12%; display: grid; place-items: center; background: var(--ink); box-shadow: var(--shadow); }
.music-mark img { width: 90%; height: 90%; object-fit: contain; }
.publishing-story h2 { font-size: clamp(48px,6vw,88px); }
.publishing-story > div:last-child > p:not(.eyebrow) { margin: 30px 0 0; color: var(--muted); font-size: 20px; }
.principles { padding-bottom: clamp(90px,12vw,160px); display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--ink); }
.principle { min-height: 300px; padding: 38px; border-right: 1px solid var(--line); }
.principle:first-child { border-left: 1px solid var(--line); }
.principle > span { color: var(--red); font-size: 10px; font-weight: 900; }
.principle h3 { margin: 90px 0 18px; font-family: var(--display); font-size: 40px; letter-spacing: -.05em; text-transform: uppercase; }
.principle p { color: var(--muted); }
.publishing-quote, .founder-quote { margin: 0; padding: clamp(90px,12vw,160px) var(--gutter); text-align: center; color: var(--white); background: var(--red); }
.publishing-quote p, .founder-quote { font-family: var(--display); font-size: clamp(50px,8vw,118px); font-weight: 900; letter-spacing: -.07em; line-height: .88; text-transform: uppercase; }
.publishing-quote p { max-width: 1160px; margin: 0 auto 48px; }

.editorial-grid { padding-top: clamp(80px,10vw,140px); padding-bottom: clamp(80px,10vw,140px); display: grid; grid-template-columns: repeat(12,1fr); gap: 20px; }
.editorial-card { min-height: 510px; padding: clamp(30px,4vw,54px); display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); transition: color .25s ease, background .25s ease, transform .25s ease; }
.editorial-card:nth-child(1), .editorial-card:nth-child(2) { grid-column: span 6; }
.editorial-card:nth-child(n+3) { grid-column: span 4; }
.editorial-card:hover { color: var(--white); background: var(--ink); transform: translateY(-5px); }
.editorial-logo { min-height: 120px; margin-bottom: 60px; display: flex; align-items: center; }
.editorial-logo img { width: 80%; max-width: 310px; max-height: 86px; object-fit: contain; object-position: left center; }
.editorial-card:hover .editorial-logo img { filter: grayscale(1) brightness(0) invert(1); }
.editorial-card h2 { margin: 0 0 18px; font-family: var(--display); font-size: clamp(38px,4vw,62px); letter-spacing: -.055em; line-height: .9; text-transform: uppercase; }
.editorial-card > p:not(.eyebrow) { margin: 0; color: var(--muted); }
.editorial-card:hover > p:not(.eyebrow) { color: rgba(255,255,255,.65); }
.editorial-card > span { margin-top: auto; align-self: flex-end; font-size: 24px; }
.network-note { padding-top: clamp(80px,10vw,140px); padding-bottom: clamp(80px,10vw,140px); display: grid; grid-template-columns: 1fr .7fr; gap: 8vw; border-top: 1px solid var(--ink); }
.network-note h2 { max-width: 830px; }
.network-note > p { align-self: end; color: var(--muted); font-size: 19px; }

.seo-grid { padding-top: clamp(90px,11vw,150px); padding-bottom: clamp(90px,11vw,150px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.seo-card { min-width: 0; min-height: 740px; padding: clamp(38px,5vw,70px); display: flex; flex-direction: column; background: var(--white); }
.seo-logo { min-width: 0; min-height: 140px; padding: 28px; display: grid; place-items: center; background: var(--paper); }
.seo-logo.dark { background: var(--ink); }
.seo-logo img { width: min(100%, 330px); max-height: 90px; object-fit: contain; }
.seo-card > p { color: var(--muted); font-size: 18px; }
.seo-card ul { margin: 28px 0 40px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.seo-card li { padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.seo-card .text-link { margin-top: auto; }
.acquisition { margin: 38px 0 0; display: grid; grid-template-columns: auto 1fr; align-items: end; gap: 2px 20px; }
.acquisition span { grid-column: 1 / -1; color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.acquisition strong { font-family: var(--display); font-size: 72px; letter-spacing: -.06em; line-height: 1; }
.acquisition small { max-width: 110px; padding-bottom: 9px; color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; }

.chart-method { padding-top: clamp(90px,11vw,150px); padding-bottom: clamp(90px,11vw,150px); display: grid; grid-template-columns: 1fr .7fr; align-items: center; gap: 8vw; }
.chart-method > div:first-child > p:last-child { max-width: 760px; margin: 30px 0 0; color: var(--muted); font-size: 19px; }
.chart-orbit { position: relative; aspect-ratio: 1; display: grid; place-items: center; border: 1px solid var(--ink); border-radius: 50%; }
.chart-orbit::before, .chart-orbit::after { content: ""; position: absolute; inset: 18%; border: 1px solid var(--line); border-radius: 50%; }
.chart-orbit::after { inset: 36%; background: var(--red); border: 0; }
.chart-orbit span { position: absolute; z-index: 2; padding: 6px 10px; color: var(--white); background: var(--ink); font-size: 9px; font-weight: 900; letter-spacing: .14em; }
.chart-orbit span:nth-child(1) { top: 12%; left: 3%; }
.chart-orbit span:nth-child(2) { right: -2%; top: 48%; }
.chart-orbit span:nth-child(3) { bottom: 9%; left: 20%; }
.chart-orbit i { position: absolute; z-index: 3; width: 12%; aspect-ratio: 1; border: 6px solid var(--white); border-radius: 50%; background: var(--red); }
.chart-signals { padding-bottom: clamp(90px,11vw,150px); display: grid; grid-template-columns: repeat(3,1fr); }
.chart-signal { min-height: 330px; padding: 38px; border: 1px solid var(--line); border-right: 0; }
.chart-signal:last-child { border-right: 1px solid var(--line); }
.chart-signal > span { color: var(--red); font-size: 10px; font-weight: 900; }
.chart-signal h3 { margin: 90px 0 18px; font-family: var(--display); font-size: 38px; letter-spacing: -.05em; line-height: .95; text-transform: uppercase; }
.chart-signal p { color: var(--muted); }
.chart-markets { padding-bottom: clamp(90px,12vw,170px); display: grid; grid-template-columns: .42fr 1fr; gap: 7vw; }
.chart-markets .section-heading h2 { font-size: clamp(46px,5vw,76px); }
.chart-market { padding: 0 0 60px; margin-bottom: 60px; display: grid; grid-template-columns: .38fr 1fr; gap: 35px; border-bottom: 1px solid var(--line); }
.chart-market-copy > p:last-child { color: var(--muted); }
.chart-market .brand-tiles { grid-template-columns: repeat(3,minmax(0,1fr)); }
.chart-market:nth-child(n+3) .brand-tiles { grid-template-columns: repeat(2,minmax(0,1fr)); }
.chart-market:last-child .brand-tiles { grid-template-columns: 1fr; }
.chart-market .brand-tile { min-height: 150px; padding: 22px; }
.chart-market .brand-tile img { height: 62px; }

.founder-hero { min-height: 760px; display: grid; grid-template-columns: minmax(360px,.76fr) 1fr; color: var(--white); background: var(--ink); }
.founder-hero-image { overflow: hidden; background: var(--red); }
.founder-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 28%; filter: grayscale(1); mix-blend-mode: luminosity; }
.founder-hero-copy { padding: clamp(70px,9vw,130px) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))) clamp(70px,9vw,130px) clamp(45px,7vw,110px); display: flex; flex-direction: column; justify-content: center; }
.founder-hero-copy h1 { margin: 0; font-family: var(--display); font-size: clamp(72px,10vw,154px); font-weight: 900; letter-spacing: -.075em; line-height: .8; text-transform: uppercase; }
.founder-intro { max-width: 760px; margin: 40px 0 20px; color: rgba(255,255,255,.74); font-size: clamp(20px,2vw,29px); }
.founder-born { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.founder-story { padding-top: clamp(90px,12vw,170px); padding-bottom: clamp(90px,12vw,170px); display: grid; grid-template-columns: .35fr 1fr; gap: 8vw; }
.founder-story-label span { font-family: var(--display); font-size: 48px; font-weight: 900; letter-spacing: -.05em; }
.founder-story-label p { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .17em; }
.prose { max-width: 900px; }
.prose p { margin: 0 0 32px; color: var(--ink-soft); font-size: clamp(19px,2vw,27px); line-height: 1.55; }
.founder-quote { font-size: clamp(48px,7.5vw,110px); }
.timeline { padding-top: clamp(100px,13vw,180px); padding-bottom: clamp(100px,13vw,180px); display: grid; grid-template-columns: .42fr 1fr; gap: 7vw; }
.timeline-list { border-top: 1px solid var(--ink); }
.timeline-item { padding: 35px 0; display: grid; grid-template-columns: 130px 1fr; gap: 30px; border-bottom: 1px solid var(--line); }
.timeline-item time { color: var(--red); font-family: var(--display); font-size: 28px; font-weight: 900; letter-spacing: -.03em; }
.timeline-item h3 { margin: 0 0 10px; font-family: var(--display); font-size: 34px; letter-spacing: -.04em; text-transform: uppercase; }
.timeline-item p { margin: 0; color: var(--muted); }
.founder-today { padding: clamp(85px,11vw,150px) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); display: grid; grid-template-columns: .7fr 1fr; gap: 8vw; color: var(--white); background: var(--blue); }
.founder-today h2 { margin: 0; font-family: var(--display); font-size: clamp(50px,7vw,100px); letter-spacing: -.065em; line-height: .88; text-transform: uppercase; }
.founder-today > div:last-child p { margin: 0 0 40px; color: rgba(255,255,255,.75); font-size: 20px; }

.offices { padding-top: clamp(70px,9vw,120px); padding-bottom: clamp(100px,13vw,170px); }
.office { padding: 40px 0 90px; display: grid; grid-template-columns: .75fr 1fr; gap: 7vw; border-bottom: 1px solid var(--line); scroll-margin-top: 110px; }
.office + .office { padding-top: 90px; }
.office-map { min-height: 620px; display: flex; flex-direction: column; background: var(--paper-deep); }
.office-map iframe { width: 100%; flex: 1 1 auto; min-height: 520px; border: 0; filter: grayscale(1) contrast(1.08); }
.office-map a { padding: 16px 20px; display: flex; justify-content: space-between; background: var(--ink); color: var(--white); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.office-details h2 { margin: 0 0 24px; font-family: var(--display); font-size: clamp(46px,5vw,76px); letter-spacing: -.06em; line-height: .9; text-transform: uppercase; }
.office-details address { color: var(--muted); font-style: normal; font-size: 17px; }
.office-email { margin-top: 18px; display: inline-block; font-weight: 800; border-bottom: 1px solid currentColor; }
.office-details h3 { margin: 58px 0 22px; font-family: var(--display); font-size: 30px; letter-spacing: -.03em; text-transform: uppercase; }
.contact-form { display: grid; gap: 18px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label > span { margin-bottom: 7px; display: block; font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: 14px 0; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--ink); border-radius: 0; outline: 0; }
.contact-form textarea { padding: 14px; border: 1px solid var(--ink); resize: vertical; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--red); box-shadow: 0 2px 0 var(--red); }
.privacy-check { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; }
.privacy-check input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--red); }
.privacy-check span { font-size: 12px !important; font-weight: 500 !important; letter-spacing: 0 !important; line-height: 1.45; text-transform: none !important; }
.privacy-check a { text-decoration: underline; }
.contact-form .button { justify-self: start; }
.honey { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-feedback { padding: 16px; border: 1px solid; font-size: 14px; }
.form-feedback p { margin: 0 0 6px; font-weight: 800; }
.form-feedback ul { margin: 0; padding-left: 20px; }
.form-feedback.success { color: #155a34; background: #e7f7ee; border-color: #7dbe99; }
.form-feedback.error { color: #7e2119; background: #fff0ed; border-color: #e5a097; }

.legal-page { padding-top: clamp(90px,11vw,150px); padding-bottom: clamp(110px,14vw,190px); }
.legal-page > h1, .not-found h1 { max-width: 1000px; margin: 0; font-family: var(--display); font-size: clamp(66px,9vw,138px); font-weight: 900; letter-spacing: -.075em; line-height: .82; text-transform: uppercase; }
.legal-updated { margin: 30px 0 80px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.legal-prose { max-width: 900px; margin-left: auto; }
.legal-prose section { padding: 32px 0; border-top: 1px solid var(--line); }
.legal-prose h2 { margin: 0 0 14px; font-family: var(--display); font-size: 32px; letter-spacing: -.035em; text-transform: uppercase; }
.legal-prose p { margin: 0; color: var(--muted); font-size: 17px; }
.not-found { min-height: 70svh; padding: clamp(100px,14vw,190px) var(--gutter); display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.not-found p:not(.eyebrow) { margin: 30px 0; color: var(--muted); font-size: 18px; }

.site-footer { padding: clamp(80px,9vw,120px) 0 34px; color: var(--white); background: var(--ink); }
.footer-shell { width: min(100%, var(--max)); margin: 0 auto; padding: 0 var(--gutter); }
.footer-top { display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: start; }
.footer-lead { max-width: 720px; margin: 0; color: rgba(255,255,255,.72); font-size: clamp(18px,2vw,27px); }
.footer-lead strong { color: var(--white); }
.footer-lead em { margin-top: 15px; display: block; color: var(--red); font-family: var(--display); font-size: 24px; font-style: normal; font-weight: 800; }
.footer-links { display: grid; gap: 8px; text-align: right; }
.footer-links a, .footer-links button { padding: 0; color: rgba(255,255,255,.65); background: none; border: 0; cursor: pointer; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-links a:hover, .footer-links button:hover { color: var(--white); }
.footer-stats { margin-top: 70px; padding: 28px 0; display: grid; grid-template-columns: 1fr repeat(3,auto); align-items: center; gap: clamp(24px,5vw,70px); border-top: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); }
.footer-stats > span { color: rgba(255,255,255,.5); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.footer-stats strong { display: grid; font-family: var(--display); font-size: clamp(34px,4vw,60px); letter-spacing: -.05em; line-height: .85; }
.footer-stats em { margin-top: 8px; color: rgba(255,255,255,.55); font-family: var(--sans); font-size: 9px; font-style: normal; letter-spacing: .12em; text-transform: uppercase; }
.footer-brand-line { padding: clamp(60px,7vw,90px) 0; display: grid; grid-template-columns: 1fr minmax(180px,380px) 1fr; align-items: center; gap: 34px; }
.footer-brand-line > span { height: 1px; background: rgba(255,255,255,.26); }
.footer-brand-line img { width: 100%; }
.footer-bottom { display: grid; grid-template-columns: 1fr minmax(160px,280px) auto; align-items: center; gap: 34px; }
.founder-signature { display: grid; grid-template-columns: auto 58px auto; align-items: center; gap: 14px; justify-self: start; }
.founder-signature small { font-family: var(--display); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.founder-signature img { width: 58px; height: 58px; object-fit: cover; border-radius: 50%; filter: grayscale(1); }
.founder-signature b { font-family: var(--display); font-size: 21px; letter-spacing: -.025em; }
.footer-group-mark img { width: 100%; }
.footer-bottom > p { margin: 0; color: rgba(255,255,255,.45); font-size: 9px; font-weight: 700; letter-spacing: .08em; text-align: right; text-transform: uppercase; }

.cookie-banner { position: fixed; z-index: 200; left: 20px; bottom: 20px; width: min(520px, calc(100vw - 40px)); padding: 26px; color: var(--white); background: var(--ink); border: 1px solid rgba(255,255,255,.2); box-shadow: var(--shadow); }
.cookie-banner h2, .cookie-dialog h2 { margin: 0 0 10px; font-family: var(--display); font-size: 30px; letter-spacing: -.04em; line-height: 1; text-transform: uppercase; }
.cookie-banner p { margin: 0 0 20px; color: rgba(255,255,255,.65); font-size: 13px; }
.cookie-actions { display: flex; gap: 9px; flex-wrap: wrap; }
.cookie-actions .button { min-height: 42px; padding: 11px 14px; font-size: 9px; }
.cookie-modal { position: fixed; z-index: 210; inset: 0; padding: 20px; display: grid; place-items: center; background: rgba(11,11,13,.72); backdrop-filter: blur(8px); }
.cookie-dialog { position: relative; width: min(620px,100%); max-height: calc(100svh - 40px); padding: 34px; overflow-y: auto; background: var(--paper); box-shadow: var(--shadow); }
.cookie-close { position: absolute; right: 18px; top: 14px; padding: 0; background: none; border: 0; cursor: pointer; font-size: 30px; }
.cookie-option { padding: 20px 0; display: grid; grid-template-columns: 1fr auto; gap: 20px; border-top: 1px solid var(--line); }
.cookie-option strong { display: block; }
.cookie-option p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.cookie-option input { width: 22px; height: 22px; accent-color: var(--red); }

[hidden] { display: none !important; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
  .desktop-nav { display: none; }
  .header-shell { grid-template-columns: 1fr auto; }
  .nav-toggle { display: grid; }
  .home-hero { grid-template-columns: 1fr .55fr; }
  .hero-copy h1 { font-size: clamp(60px,9vw,104px); }
  .verticals, .chart-markets, .timeline { grid-template-columns: 1fr; }
  .section-heading { position: static; margin-bottom: 40px; }
  .chart-market .brand-tiles { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .footer-bottom { grid-template-columns: 1fr auto; }
  .footer-group-mark { display: none; }
}

@media (max-width: 900px) {
  .home-hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 440px; }
  .metrics-strip { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2) { border-right: 0; }
  .metric:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .statement, .service-chapter, .founder-story { grid-template-columns: 1fr; }
  .statement { gap: 45px; }
  .global-intro { grid-template-columns: 1fr; gap: 42px; }
  .global-regions { grid-template-columns: repeat(2, 1fr); }
  .global-region:nth-child(2) { border-right: 0; }
  .global-region:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .vertical-row { grid-template-columns: 45px 1fr 28px; padding: 28px 0; }
  .vertical-row p { grid-column: 2 / -1; }
  .company-duo, .founder-feature, .publishing-story, .chart-method, .founder-today { grid-template-columns: 1fr; }
  .company-duo-copy { padding-left: var(--gutter); }
  .company-logos { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .company-logos article { min-height: 260px; }
  .page-hero-grid { grid-template-columns: 1fr; }
  .page-intro { max-width: 680px; margin-top: 42px; }
  .entity-grid, .distribution-lead, .seo-grid { grid-template-columns: minmax(0, 1fr); }
  .entity-card { min-height: 620px; }
  .bridge-statement { grid-template-columns: 60px 1fr 60px; }
  .bridge-statement > div { grid-column: 1 / -1; margin-top: 35px; }
  .big-metrics, .principles, .chart-signals { grid-template-columns: 1fr; }
  .big-metrics > div { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .principle { min-height: 240px; border-left: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .principle h3, .chart-signal h3 { margin-top: 54px; }
  .chart-signal { min-height: 250px; border-right: 1px solid var(--line); border-bottom: 0; }
  .chart-signal:last-child { border-bottom: 1px solid var(--line); }
  .editorial-card:nth-child(n) { grid-column: span 6; }
  .network-note { grid-template-columns: 1fr; }
  .founder-hero { grid-template-columns: 1fr; }
  .founder-hero-image { height: 600px; }
  .founder-hero-copy { padding-left: var(--gutter); padding-right: var(--gutter); }
  .office { grid-template-columns: 1fr; }
  .office-map { min-height: 480px; }
  .office-map iframe { min-height: 410px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2,auto); justify-content: start; text-align: left; }
  .footer-stats { grid-template-columns: repeat(3,1fr); }
  .footer-stats > span { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --gutter: 20px; }
  .header-shell { min-height: 72px; }
  .brand { width: 172px; }
  .contact-link, .locale-chip { display: none; }
  .mobile-nav { inset: 72px 0 0; }
  .hero-copy { padding-top: 70px; padding-bottom: 70px; }
  .hero-copy h1 { font-size: clamp(54px,17vw,78px); }
  .hero-sector { margin-bottom: 24px; }
  .hero-intro { margin-top: 28px; font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-visual { min-height: 350px; padding: 24px; }
  .metrics-strip { grid-template-columns: 1fr; }
  .metric { min-height: 155px; border-right: 0; border-bottom: 1px solid var(--line); }
  .metric:last-child { border-bottom: 0; }
  .statement { padding-top: 85px; padding-bottom: 85px; }
  .statement-label span { font-size: 48px; }
  .global-presence { padding-top: 80px; padding-bottom: 90px; }
  .global-intro h2 { font-size: clamp(55px, 17vw, 78px); }
  .global-regions { grid-template-columns: 1fr; }
  .global-region { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
  .global-region:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .global-region:last-child { border-bottom: 0; }
  .vertical-row { grid-template-columns: 34px 1fr 22px; gap: 12px; }
  .vertical-row p { font-size: 14px; }
  .company-logos { grid-template-columns: 1fr; }
  .company-logos article { min-height: 230px; }
  .founder-feature { padding-top: 90px; padding-bottom: 90px; }
  .page-hero { min-height: 500px; padding-top: 92px; }
  .page-hero h1 { font-size: clamp(56px,18vw,84px); }
  .hero-rule { height: 28px; }
  .entity-card { min-height: 570px; padding: 30px; }
  .entity-card > img { width: 100%; margin: 45px 0 55px; }
  .entity-card ul { grid-template-columns: 1fr; }
  .bridge-statement { grid-template-columns: 45px 1fr 45px; }
  .service-chapter { padding: 65px 0; }
  .chapter-index span { font-size: 54px; }
  .brand-tiles, .chart-market .brand-tiles, .chart-market:nth-child(n+3) .brand-tiles { grid-template-columns: 1fr; }
  .brand-tile { min-height: 150px; }
  .inline-cta { align-items: flex-start; flex-direction: column; }
  .distrid-panel, .indie-panel, .seo-card { padding: 30px; }
  .big-metrics { padding-top: 50px; }
  .music-mark { width: calc(100% - 20px); }
  .editorial-grid { grid-template-columns: 1fr; }
  .editorial-card:nth-child(n) { grid-column: auto; min-height: 430px; }
  .chart-method { gap: 60px; }
  .chart-orbit { width: calc(100% - 20px); }
  .chart-market { grid-template-columns: 1fr; }
  .founder-hero-image { height: 460px; }
  .founder-hero-copy h1 { font-size: clamp(65px,21vw,92px); }
  .timeline-item { grid-template-columns: 1fr; gap: 12px; }
  .office { padding-top: 20px; }
  .office + .office { padding-top: 70px; }
  .field-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-stats { grid-template-columns: 1fr; }
  .footer-brand-line { grid-template-columns: 1fr; }
  .footer-brand-line > span { display: none; }
  .footer-brand-line img { width: min(100%,320px); margin: 0 auto; }
  .footer-bottom { grid-template-columns: 1fr; }
  .founder-signature { grid-template-columns: 1fr 58px; }
  .founder-signature small { grid-column: 1 / -1; }
  .footer-bottom > p { text-align: left; }
  .cookie-banner { left: 10px; bottom: 10px; width: calc(100vw - 20px); padding: 22px; }
  .cookie-dialog { padding: 28px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Corporate interface revision */

body {
  background: var(--paper);
  line-height: 1.58;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1, h2, h3, blockquote, .metric strong, .big-metrics strong {
  text-wrap: balance;
}

.statement {
  display: block;
}

.statement-copy {
  max-width: 1040px;
  margin-left: auto;
  padding-left: clamp(24px,4vw,58px);
  border-left: 5px solid var(--red);
}

.statement-copy > p:last-child {
  max-width: 820px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(18px,1.8vw,26px);
  line-height: 1.55;
}

p { text-wrap: pretty; }

.site-header {
  background: rgba(255,255,255,.94);
  border-bottom-color: rgba(11,11,13,.1);
  box-shadow: 0 12px 40px rgba(11,11,13,.05);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--red);
}

.header-shell {
  width: min(100%, 1540px);
  min-height: 96px;
  grid-template-columns: 200px minmax(0,1fr) auto;
  gap: clamp(18px,2.2vw,38px);
}

.brand {
  width: 190px;
  display: block;
}

.brand img {
  width: 190px;
  height: auto;
  aspect-ratio: 1837 / 400;
  object-fit: contain;
}

.desktop-nav {
  width: max-content;
  max-width: 100%;
  justify-self: center;
  gap: 2px;
  padding: 5px;
  background: var(--paper-deep);
  border: 1px solid rgba(11,11,13,.08);
  border-radius: 0;
}

.desktop-nav a {
  padding: 11px clamp(9px,1vw,15px);
  border-radius: 0;
  font-size: 10px;
  letter-spacing: .08em;
  line-height: 1;
  transition: color .22s ease, background .22s ease;
}

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

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--white);
  background: var(--ink);
}

.header-actions { gap: 9px; }

.locale-chip {
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid rgba(11,11,13,.2);
  border-radius: 0;
  font-size: 9px;
}

.contact-link {
  min-height: 42px;
  padding: 13px 19px;
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  border-radius: 0;
  line-height: 1;
}

.contact-link:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.nav-toggle {
  width: auto;
  min-width: 92px;
  height: 44px;
  grid-template-columns: auto 22px;
  align-items: center;
  gap: 12px;
  padding: 0 15px;
  border-radius: 0;
  background: var(--ink);
  color: var(--white);
}

.nav-toggle b {
  font-size: 9px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.nav-toggle i {
  position: relative;
  width: 20px;
  height: 14px;
  display: block;
}

.nav-toggle i span {
  position: absolute;
  left: 0;
  width: 20px;
  background: currentColor;
}
.nav-toggle i span:first-child { top: 3px; }
.nav-toggle i span:last-child { bottom: 3px; }
.nav-toggle[aria-expanded="true"] i span { top: 6.5px; bottom: auto; }
.nav-toggle[aria-expanded="true"] i span:first-child { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] i span:last-child { transform: rotate(-45deg); }

.mobile-nav {
  z-index: 89;
  inset: 96px 0 0;
  padding: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--ink);
}

.mobile-nav-shell {
  width: min(100%, 1120px);
  min-height: 100%;
  margin: 0 auto;
  padding: 35px var(--gutter) 28px;
  display: flex;
  flex-direction: column;
}

.mobile-nav-label {
  margin: 0 0 20px;
  color: var(--red);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.mobile-nav nav { border-top: 1px solid rgba(255,255,255,.2); }

.mobile-nav nav a {
  min-height: 64px;
  padding: 10px 0;
  display: grid;
  grid-template-columns: 34px minmax(0,1fr) 28px;
  align-items: center;
  gap: 16px;
  font-size: clamp(25px,4vw,44px);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1;
}

.mobile-nav nav a small {
  color: var(--red);
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
}

.mobile-nav nav a[aria-current="page"] span { color: var(--red); }

.mobile-nav-meta {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
}

.mobile-nav-meta p {
  margin: 0;
  font-size: 9px;
  letter-spacing: .15em;
  line-height: 1.7;
}

.mobile-nav-meta strong {
  color: var(--red);
  font-size: 15px;
  white-space: nowrap;
}

.arrow-icon {
  width: 20px;
  height: 20px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  transition: transform .2s ease;
}

.arrow-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.text-link > .arrow-icon { font-size: inherit; }
.text-link:hover > .arrow-icon,
a:hover > .arrow-icon { transform: translate(3px,-3px); }
.brand-tile > span > .arrow-icon { width: 18px; height: 18px; }

.home-hero {
  min-height: calc(100svh - 96px);
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--ink);
}

.hero-copy h1 {
  max-width: 900px;
  font-size: clamp(60px,6.6vw,112px);
  font-stretch: normal;
  letter-spacing: -.052em;
  line-height: .92;
}

.hero-intro { line-height: 1.52; }

.page-hero {
  min-height: 610px;
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 100% 92px,
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px) 0 0 / 25% 100%,
    var(--ink);
  overflow: visible;
  overflow-x: clip;
}

.page-hero-grid > div:first-child {
  padding-left: clamp(20px,2.6vw,36px);
  border-left: 5px solid var(--red);
}

.page-hero-grid > *,
.distribution-lead > *,
.seo-grid > *,
.entity-grid > *,
.publishing-story > *,
.chart-method > *,
.founder-today > * { min-width: 0; }

.principle,
.chart-signal,
.big-metrics > div,
.global-region { min-width: 0; }

.page-hero h1 {
  max-width: 930px;
  font-size: clamp(62px,7.2vw,116px);
  letter-spacing: -.055em;
  line-height: .9;
}

.page-intro { line-height: 1.48; }

.statement h2, .section-heading h2, .company-duo h2, .founder-copy h2,
.inline-cta h2, .network-note h2, .bridge-statement h2,
.publishing-story h2, .chart-method h2, .chapter-copy h2,
.distrid-panel h2, .indie-panel h2, .seo-card h2,
.editorial-card h2, .office-details h2, .founder-today h2,
.legal-page > h1, .not-found h1, .closing-cta h2,
.publishing-quote p, .founder-quote, .founder-hero-copy h1 {
  letter-spacing: -.045em;
  line-height: .96;
}

.global-intro h2 {
  letter-spacing: -.045em;
  line-height: .94;
}

.entity-card,
.distrid-panel,
.indie-panel,
.seo-card,
.editorial-card,
.music-mark {
  border-radius: 0;
  overflow: hidden;
}

.distrid-panel,
.indie-panel { min-width: 0; }

.europe-card,
.entity-europe,
.distrid-panel,
.founder-today { background: var(--ink); }

.america-card,
.entity-america { background: var(--ink-soft); }

.bridge-statement { overflow: visible; overflow-x: clip; }

.entity-grid,
.distribution-lead,
.seo-grid,
.editorial-grid { gap: 18px; }

.company-logos article { overflow: hidden; }
.company-logos img {
  width: min(100%, 520px);
  height: 166px;
  object-fit: contain;
  image-rendering: auto;
}

.entity-card > img {
  width: min(100%,520px);
  height: 166px;
  margin: 48px 0 54px;
  object-fit: contain;
  object-position: left center;
  image-rendering: auto;
}

.brand-tile {
  min-width: 0;
  border-radius: 0;
}

.brand-tile img {
  width: 100%;
  height: 78px;
  object-fit: contain;
  object-position: left center;
  image-rendering: auto;
}

.distrid-panel > img,
.indie-panel > img,
.editorial-logo img,
.seo-logo img,
.music-mark img {
  object-fit: contain;
  image-rendering: auto;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: transform .35s ease, box-shadow .35s ease;
}

.site-footer {
  padding: 62px 0 22px;
  background:
    radial-gradient(circle at 12% 0, rgba(240,68,50,.12), transparent 32%),
    #09090b;
}

.footer-top {
  grid-template-columns: minmax(0,1fr) auto;
  gap: 60px;
}

.footer-kicker {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
}

.footer-lead {
  max-width: 700px;
  font-size: clamp(15px,1.45vw,19px);
  line-height: 1.55;
}

.footer-lead strong {
  display: block;
  margin-bottom: 4px;
  font-size: 11px;
  letter-spacing: .14em;
}

.footer-links {
  grid-template-columns: repeat(2,max-content);
  column-gap: 24px;
  row-gap: 7px;
}

.footer-links a,
.footer-links button { font-size: 9px; }

.footer-stats {
  margin-top: 38px;
  padding: 20px 0;
  grid-template-columns: 1fr repeat(3,auto);
  gap: clamp(22px,4vw,58px);
}

.footer-stats strong {
  font-size: clamp(30px,3.2vw,46px);
  line-height: .9;
}

.footer-brand-line {
  padding: 30px 0;
  grid-template-columns: 1fr 170px 1fr;
  gap: 26px;
}

.footer-brand-line > a {
  width: 170px;
  height: 55px;
  display: grid;
  place-items: center;
}

.footer-brand-line img {
  width: 170px;
  height: 55px;
  margin: 0;
  object-fit: contain;
  image-rendering: auto;
}

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

.founder-signature {
  grid-template-columns: auto 42px auto;
  gap: 11px;
}

.founder-signature small {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: .13em;
}

.founder-signature img { width: 42px; height: 42px; }

.founder-signature b {
  font-family: "Ms Madi", "Segoe Script", cursive;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: .8;
  white-space: nowrap;
}

.footer-bottom > p { font-size: 8px; }

@media (max-width: 1279px) {
  .desktop-nav { display: none; }
  .header-shell { grid-template-columns: 1fr auto; }
  .nav-toggle { display: grid; }
}

@media (max-width: 900px) {
  .hero-copy h1 { font-size: clamp(56px,9vw,82px); }
  .page-hero h1 { font-size: clamp(54px,9.5vw,76px); }
  .page-hero { min-height: 540px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-stats { grid-template-columns: repeat(3,1fr); }
  .footer-stats > span { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .header-shell { min-height: 76px; }
  .brand { width: 143px; }
  .brand img { width: 143px; }
  .nav-toggle { min-width: 84px; height: 40px; padding: 0 13px; gap: 10px; }
  .mobile-nav { inset: 76px 0 0; }
  .mobile-nav-shell { padding-top: 22px; }
  .mobile-nav-label { margin-bottom: 10px; }
  .mobile-nav nav a {
    min-height: 52px;
    grid-template-columns: 25px minmax(0,1fr) 22px;
    gap: 10px;
    padding: 8px 0;
    font-size: clamp(22px,7vw,31px);
  }
  .mobile-nav nav .arrow-icon { width: 18px; height: 18px; }
  .mobile-nav-meta { padding-top: 18px; align-items: flex-start; flex-direction: column; gap: 7px; }
  .mobile-nav-meta strong { font-size: 13px; }
  .home-hero { min-height: auto; grid-template-columns: minmax(0,1fr); }
  .home-hero > * { min-width: 0; }
  .hero-copy { padding-top: 72px; padding-bottom: 72px; }
  .hero-copy h1 { font-size: clamp(45px,12.6vw,58px); line-height: .96; letter-spacing: -.04em; }
  .hero-intro { font-size: 16px; line-height: 1.5; }
  .page-hero { min-height: 450px; padding-top: 74px; padding-bottom: 38px; }
  .page-hero-grid > div:first-child { padding-left: 18px; border-left-width: 4px; }
  .page-hero h1 { font-size: clamp(43px,12vw,60px); line-height: .94; letter-spacing: -.042em; }
  .page-intro { margin-top: 30px; font-size: 16px; line-height: 1.5; }
  .hero-rule { height: 22px; margin-top: 38px; }
  .statement h2, .section-heading h2, .company-duo h2, .founder-copy h2,
  .inline-cta h2, .network-note h2, .bridge-statement h2,
  .publishing-story h2, .chart-method h2, .chapter-copy h2,
  .distrid-panel h2, .indie-panel h2, .seo-card h2,
  .office-details h2, .founder-today h2 {
    font-size: clamp(36px,10vw,46px);
    line-height: .98;
  }
  .bridge-statement > span { font-size: 38px; }
  .closing-cta h2 { font-size: clamp(36px,10vw,44px); line-height: 1; }
  .publishing-quote p,
  .founder-quote { font-size: clamp(34px,9.5vw,42px); line-height: 1.02; overflow: visible; }
  .founder-hero-copy h1 { font-size: clamp(44px,12vw,58px); line-height: .96; }
  .editorial-card h2 { font-size: clamp(35px,10vw,48px); }
  .entity-card { min-height: 0; padding: 30px; }
  .entity-card > img { width: 100%; height: 108px; margin: 36px 0 38px; }
  .company-logos img { height: 112px; }
  .brand-tile img { height: 70px; }
  .footer-top { gap: 28px; }
  .footer-links { grid-template-columns: repeat(2,max-content); text-align: left; }
  .footer-stats { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .footer-stats > span { grid-column: 1 / -1; }
  .footer-stats strong { font-size: clamp(28px,9vw,38px); }
  .footer-brand-line { grid-template-columns: 1fr 132px 1fr; gap: 15px; }
  .footer-brand-line > span { display: block; }
  .footer-brand-line > a,
  .footer-brand-line img { width: 132px; height: 44px; }
  .footer-bottom { grid-template-columns: 1fr; gap: 22px; }
  .founder-signature { grid-template-columns: auto 40px minmax(0,1fr); }
  .founder-signature small { grid-column: auto; }
  .founder-signature img { width: 40px; height: 40px; }
  .founder-signature b { font-size: 26px; }
  .footer-bottom > p { text-align: left; }
}

@media (max-width: 390px) {
  .nav-toggle b { display: none; }
  .nav-toggle { min-width: 46px; width: 46px; grid-template-columns: 1fr; padding: 0 11px; }
  .brand { width: 136px; }
  .brand img { width: 136px; }
  .hero-copy h1 { font-size: clamp(40px,12vw,47px); }
  .page-hero h1 { font-size: clamp(31px,10vw,42px); }
  .principle,
  .chart-signal { padding-left: 24px; padding-right: 24px; }
  .principle h3,
  .chart-signal h3 { font-size: 30px; }
  .founder-quote { font-size: 30px; }
  .mobile-nav nav a { font-size: 21px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-stats { grid-template-columns: 1fr; }
  .founder-signature { grid-template-columns: 40px 1fr; }
  .founder-signature small { grid-column: 1 / -1; }
}

.editorial-purpose {
  padding-top: clamp(90px,11vw,150px);
  padding-bottom: clamp(90px,11vw,150px);
  display: grid;
  grid-template-columns: minmax(170px,.34fr) minmax(0,1fr);
  gap: 8vw;
  border-bottom: 1px solid var(--ink);
}

.editorial-purpose > div {
  max-width: 960px;
}

.editorial-purpose h2,
.publication-cluster-head h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px,5.6vw,84px);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: .98;
  text-transform: uppercase;
}

.editorial-purpose > div > p {
  max-width: 820px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(18px,1.7vw,24px);
  line-height: 1.55;
}

.publication-cluster {
  padding-top: clamp(80px,9vw,125px);
  padding-bottom: clamp(80px,9vw,125px);
  border-bottom: 1px solid var(--line);
}

.publication-cluster-head {
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(300px,.65fr);
  gap: 8vw;
  align-items: end;
}

.publication-cluster-head .eyebrow { grid-column: 1 / -1; margin-bottom: -18px; }
.publication-cluster-head h2 { max-width: 820px; font-size: clamp(42px,4.8vw,70px); }
.publication-cluster-head > p:last-child { margin: 0; color: var(--muted); font-size: 18px; }

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

.publication-card {
  min-width: 0;
  min-height: 560px;
  padding: clamp(28px,3.7vw,50px);
  display: grid;
  grid-template-rows: auto 145px 1fr;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  border-radius: 0;
  box-shadow: none;
}

.publication-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.publication-meta span:last-child { color: var(--red); text-align: right; }

.publication-logo {
  padding: 24px 0 22px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.publication-logo img {
  width: min(78%,330px);
  height: 92px;
  object-fit: contain;
  object-position: left center;
  image-rendering: auto;
}

.publication-copy {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
}

.publication-copy h3 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(34px,3.4vw,52px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  text-transform: uppercase;
}

.publication-copy > p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.publication-copy ul {
  margin: 26px 0 30px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
}

.publication-copy li {
  padding: 7px 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.publication-copy .text-link { margin-top: auto; align-self: flex-start; }

.page-blogs .network-note {
  padding-top: clamp(80px,9vw,120px);
  padding-bottom: clamp(80px,9vw,120px);
  grid-template-columns: minmax(170px,.34fr) minmax(0,1fr);
  gap: 8vw;
  align-items: start;
}

.page-blogs .network-note > .eyebrow { grid-column: 1; grid-row: 1 / span 2; }
.page-blogs .network-note > h2 { grid-column: 2; max-width: 900px; }
.page-blogs .network-note > * { min-width: 0; }
.page-blogs .network-note > p:last-child {
  grid-column: 2;
  max-width: 780px;
  margin: 26px 0 0;
  align-self: start;
  font-size: 18px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .editorial-purpose { grid-template-columns: 1fr; gap: 20px; }
  .publication-cluster-head { grid-template-columns: 1fr; gap: 22px; }
  .publication-cluster-head .eyebrow { margin-bottom: -4px; }
  .publication-grid { grid-template-columns: 1fr; }
  .publication-card { min-height: 510px; }
  .page-blogs .network-note { grid-template-columns: 1fr; gap: 16px; }
  .page-blogs .network-note > .eyebrow,
  .page-blogs .network-note > h2,
  .page-blogs .network-note > p:last-child { grid-column: 1; grid-row: auto; }
}

@media (max-width: 620px) {
  .editorial-purpose { padding-top: 80px; padding-bottom: 80px; }
  .editorial-purpose h2,
  .publication-cluster-head h2 { font-size: clamp(38px,11vw,52px); line-height: .98; }
  .publication-cluster { padding-top: 72px; padding-bottom: 72px; }
  .publication-cluster-head { margin-bottom: 32px; }
  .publication-card {
    min-height: 0;
    padding: 26px;
    grid-template-rows: auto 116px auto;
  }
  .publication-logo img { width: min(84%,280px); height: 74px; }
  .publication-copy { padding-top: 25px; }
  .publication-copy h3 { font-size: clamp(32px,10vw,44px); }
  .publication-copy > p { font-size: 15px; }
  .publication-copy .text-link { margin-top: 10px; }
}

@media (max-width: 390px) {
  .page-blogs .network-note h2 { font-size: 30px; }
}

/* Homepage identity, distribution services and final responsive refinements */

.home-hero {
  grid-template-columns: minmax(0,1.2fr) minmax(390px,.8fr);
  min-height: calc(100svh - 96px);
}

.hero-copy {
  padding-top: clamp(72px,8vw,118px);
  padding-bottom: clamp(72px,8vw,118px);
}

.hero-kicker-line {
  margin-bottom: clamp(34px,4.5vw,66px);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 28px;
}

.hero-copy .slogan,
.hero-kicker-line .hero-sector { margin: 0; }

.hero-kicker-line .hero-sector {
  max-width: 300px;
  text-align: right;
}

.hero-copy h1 {
  max-width: 800px;
  font-size: clamp(70px,7.2vw,122px);
  line-height: .88;
}

.hero-copy-lower {
  max-width: 780px;
  margin-top: clamp(38px,4.5vw,64px);
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.2);
}

.hero-copy-lower .hero-intro,
.hero-copy-lower .hero-actions { margin-top: 0; }

.hero-copy-lower .hero-actions { margin-top: 34px; }

.hero-identity {
  position: relative;
  min-width: 0;
  padding: clamp(34px,3.5vw,58px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  background: var(--red);
}

.hero-identity::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px) 0 0 / 50% 100%;
  pointer-events: none;
}

.hero-identity > * { position: relative; z-index: 1; }

.hero-identity-top {
  padding-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255,255,255,.55);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-identity-top b {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -.02em;
  white-space: nowrap;
}

.hero-identity-mark {
  flex: 1 1 auto;
  padding: clamp(70px,9vw,140px) 0;
  display: grid;
  place-items: center;
}

.hero-identity-mark img {
  width: min(100%,480px);
  height: auto;
  object-fit: contain;
}

.hero-hubs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid rgba(255,255,255,.55);
  border-bottom: 1px solid rgba(255,255,255,.55);
}

.hero-hubs > div {
  min-width: 0;
  padding: 20px 18px 20px 0;
}

.hero-hubs > div + div {
  padding-left: 18px;
  border-left: 1px solid rgba(255,255,255,.55);
}

.hero-hubs small {
  display: block;
  margin-bottom: 7px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.hero-hubs strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(20px,2vw,30px);
  letter-spacing: -.025em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-signal {
  margin: 20px 0 0;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.library-flag {
  display: inline-grid;
  place-items: center;
  background: var(--white);
}

.library-flag > img,
.library-flag > svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.flag-mobile-only { display: none; }
.flag-desktop-only { display: inline-grid; }

.flag-overflow {
  width: 31px;
  height: 31px;
  display: inline-grid;
  place-items: center;
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(11,11,13,.32);
  border-radius: 50%;
}

.flag-overflow svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: square;
}

.founder-portrait img,
.founder-hero-image img {
  filter: none;
  mix-blend-mode: normal;
}

.founder-hero-image img { object-position: 68% center; }

.office-map {
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  background: var(--white);
}

.office-map iframe { filter: none; }

.distribution-services {
  padding-top: clamp(95px,11vw,155px);
  padding-bottom: clamp(95px,11vw,155px);
}

.distribution-services-head {
  display: grid;
  grid-template-columns: minmax(150px,.35fr) minmax(0,1fr);
  gap: 4vw 7vw;
  align-items: start;
}

.distribution-services-head .eyebrow { grid-row: 1 / span 2; }

.distribution-services-head h2 {
  max-width: 980px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px,5.5vw,82px);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: .94;
  text-transform: uppercase;
}

.distribution-services-head > p:last-child {
  max-width: 800px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.distribution-services-grid {
  margin-top: clamp(52px,7vw,90px);
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.distribution-service {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--white);
}

.distribution-service-logo {
  height: 150px;
  padding: 34px;
  display: grid;
  place-items: center;
  background: var(--ink);
}

.distribution-service-logo img {
  width: 100%;
  height: 62px;
  object-fit: contain;
}

.distribution-service-copy {
  flex: 1 1 auto;
  padding: clamp(28px,3vw,42px);
  display: flex;
  flex-direction: column;
}

.distribution-service-copy h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(35px,3.4vw,52px);
  letter-spacing: -.045em;
  line-height: 1;
  text-transform: uppercase;
}

.distribution-service-copy > p:not(.eyebrow) {
  margin: 24px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.distribution-service-copy ul {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.distribution-service-copy li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.distribution-service-copy .text-link { margin-top: auto; align-self: flex-start; }

@media (max-width: 1180px) {
  .home-hero { grid-template-columns: minmax(0,1fr) minmax(340px,.62fr); }
  .hero-copy h1 { font-size: clamp(64px,7.8vw,92px); }
  .distribution-services-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 901px) and (max-height: 800px) {
  .hero-copy { padding-top: 42px; padding-bottom: 44px; }
  .hero-kicker-line { margin-bottom: 25px; }
  .hero-copy h1 { font-size: clamp(60px,6.35vw,84px); line-height: .9; }
  .hero-copy-lower { margin-top: 28px; padding-top: 18px; }
  .hero-copy-lower .hero-intro { font-size: 17px; line-height: 1.45; }
  .hero-copy-lower .hero-actions { margin-top: 24px; }
  .hero-identity-mark { padding: 48px 0; }
}

@media (max-width: 900px) {
  .home-hero { grid-template-columns: minmax(0,1fr); }
  .founder-hero-image img { object-position: center; }
  .hero-identity { min-height: 450px; }
  .hero-identity-mark { padding: 82px 0; }
  .distribution-services-head { grid-template-columns: 1fr; gap: 18px; }
  .distribution-services-head .eyebrow { grid-row: auto; }
  .distribution-services-grid { grid-template-columns: 1fr; }
  .distribution-service { display: grid; grid-template-columns: minmax(220px,.7fr) minmax(0,1fr); }
  .distribution-service-logo { height: 100%; min-height: 310px; }
}

@media (max-width: 620px) {
  .hero-copy { padding-top: 56px; padding-bottom: 52px; }
  .flag-mobile-only { display: inline-grid; }
  .flag-desktop-only { display: none; }
  .flag-overflow { display: none; }
  .hero-kicker-line {
    margin-bottom: 38px;
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
  .hero-kicker-line .hero-sector { text-align: left; }
  .hero-copy h1 { font-size: clamp(49px,14.4vw,66px); line-height: .91; letter-spacing: -.045em; }
  .hero-copy-lower { margin-top: 38px; padding-top: 23px; }
  .hero-copy-lower .hero-actions { margin-top: 28px; }
  .hero-identity { min-height: 350px; padding: 28px 20px; }
  .hero-identity-mark { padding: 66px 0; }
  .hero-hubs > div { padding-top: 16px; padding-bottom: 16px; }
  .hero-hubs strong { font-size: 20px; }
  .hero-hubs > div:first-child strong { max-width: 112px; }
  .distribution-services { padding-top: 80px; padding-bottom: 80px; }
  .distribution-services-head h2 { font-size: clamp(38px,11vw,50px); line-height: .97; }
  .distribution-services-head > p:last-child { font-size: 16px; }
  .distribution-services-grid { margin-top: 40px; }
  .distribution-service { display: flex; }
  .distribution-service-logo { min-height: 0; height: 124px; padding: 28px; }
  .distribution-service-logo img { height: 54px; }
  .distribution-service-copy { padding: 27px; }
  .footer-bottom { justify-items: center; }
  .founder-signature {
    grid-template-columns: 40px auto;
    justify-content: center;
    justify-self: center;
    text-align: center;
  }
  .founder-signature small {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-bottom > p { width: 100%; text-align: center; }
}

@media (max-width: 390px) {
  .hero-copy h1 { font-size: clamp(44px,14vw,53px); }
  .hero-identity-top { align-items: flex-start; }
  .hero-identity-top span { max-width: 170px; }
  .hero-hubs strong { font-size: 17px; }
  .distribution-service-copy { padding: 24px; }
  .founder-signature { grid-template-columns: 40px auto; }
}

/* Corporate refinement v9 */
h1, h2, h3, h4 { text-wrap: balance; }
p, li, address { text-wrap: pretty; }

@media (min-width: 1181px) {
  .header-shell {
    grid-template-columns: minmax(190px, 230px) minmax(0, 1fr) auto;
    gap: clamp(26px, 3vw, 56px);
  }

  .desktop-nav {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: clamp(16px, 1.45vw, 28px);
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .desktop-nav a {
    position: relative;
    padding: 32px 0 29px;
    color: var(--ink);
    background: transparent;
    border: 0;
    font-size: 10px;
    line-height: 1;
  }

  .desktop-nav a::after {
    display: block;
    left: 0;
    right: 100%;
    bottom: 23px;
    height: 2px;
    background: var(--red);
  }

  .desktop-nav a:hover,
  .desktop-nav a[aria-current="page"] {
    color: var(--ink);
    background: transparent;
  }

  .desktop-nav a:hover::after,
  .desktop-nav a[aria-current="page"]::after { right: 0; }

  .header-actions { gap: 20px; }
  .locale-chip {
    min-width: 0;
    padding: 30px 0 27px;
    color: var(--muted);
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .contact-link {
    position: relative;
    padding: 30px 0 27px;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .contact-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 21px;
    height: 2px;
    background: var(--red);
  }

  .contact-link:hover { color: var(--red-deep); background: transparent; }
}

.home-hero { grid-template-columns: minmax(0, 1.08fr) minmax(430px, .92fr); }
.hero-copy {
  padding-left: clamp(42px, 6vw, 112px);
  padding-right: clamp(42px, 5vw, 92px);
  align-items: flex-start;
  text-align: left;
}
.hero-copy > * { width: 100%; }
.hero-copy h1 {
  max-width: 820px;
  font-size: clamp(62px, 6.9vw, 116px);
  overflow-wrap: normal;
  word-break: normal;
}
.hero-kicker-line { width: 100%; }
.hero-copy .slogan { white-space: nowrap; }
.hero-copy-lower { width: 100%; max-width: 720px; }
.hero-copy-lower .hero-intro { max-width: 660px; }

/* Companies */
.page-companies .page-hero h1 { max-width: 11ch; font-size: clamp(68px, 8vw, 126px); }
.entity-grid { gap: clamp(18px, 2.2vw, 34px); align-items: stretch; }
.entity-card {
  min-width: 0;
  min-height: 660px;
  padding: clamp(40px, 4.5vw, 68px);
}
.entity-card > img { width: min(85%, 480px); height: 150px; margin: 48px 0 52px; object-fit: contain; object-position: left center; }
.entity-card > p:not(.eyebrow) { max-width: 50ch; margin-bottom: 34px; font-size: clamp(16px, 1.25vw, 18px); line-height: 1.62; }
.entity-card ul { margin-top: auto; }
.entity-card li { overflow-wrap: normal; word-break: normal; }
.bridge-statement { grid-template-columns: auto minmax(80px, .24fr) auto minmax(0, 1fr); gap: clamp(20px, 3vw, 48px); }
.bridge-statement > div { min-width: 0; }
.bridge-statement h2 { max-width: 14ch; font-size: clamp(46px, 5vw, 72px); line-height: .95; }
.bridge-statement p { max-width: 58ch; line-height: 1.65; }

/* Promotion */
.promotion-journey {
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}
.promotion-journey li {
  min-height: 144px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-right: 0;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.promotion-journey li:last-child { border-right: 1px solid var(--line); }
.promotion-journey span { color: var(--red); font-size: 10px; letter-spacing: .16em; }
.service-chapter {
  padding-top: clamp(88px, 10vw, 144px);
  padding-bottom: clamp(88px, 10vw, 144px);
  display: grid;
  grid-template-columns: minmax(160px, .25fr) minmax(0, 1fr);
  gap: clamp(42px, 7vw, 110px);
  border-bottom: 1px solid var(--line);
}
.service-chapter:last-child { border-bottom: 0; }
.chapter-index span { display: block; color: var(--red); font-size: 12px; font-weight: 900; letter-spacing: .18em; }
.chapter-index p { margin: 18px 0 0; font-size: 11px; font-weight: 900; letter-spacing: .16em; line-height: 1.35; text-transform: uppercase; }
.chapter-copy { min-width: 0; }
.chapter-copy > h2 { max-width: 15ch; margin-top: 0; font-size: clamp(52px, 6vw, 88px); line-height: .9; }
.chapter-copy > p { max-width: 64ch; margin: 28px 0 0; color: var(--muted); font-size: 19px; line-height: 1.65; }
.service-brand-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.service-brand { min-width: 0; display: grid; grid-template-rows: 152px 1fr; background: var(--white); border-top: 4px solid var(--red); box-shadow: 0 16px 48px rgba(11,11,13,.08); }
.service-brand-logo { padding: 32px; display: grid; place-items: center; background: #fff; border-bottom: 1px solid var(--line); }
.service-brand-logo img { width: min(100%, 270px); height: 76px; object-fit: contain; }
.service-brand-copy { min-height: 330px; padding: 34px; display: flex; flex-direction: column; }
.service-brand-copy h3 { margin: 0 0 18px; font-family: var(--display); font-size: clamp(30px, 2.7vw, 42px); letter-spacing: -.045em; line-height: .96; }
.service-brand-copy > p:not(.eyebrow) { margin: 0 0 28px; color: var(--muted); line-height: 1.62; }
.service-brand-copy .text-link { margin-top: auto; align-self: flex-start; }
.delivery-feature {
  margin-top: 64px;
  padding: clamp(28px, 4vw, 58px);
  display: grid;
  grid-template-columns: minmax(210px, .42fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(32px, 5vw, 74px);
  background: #111114;
  color: var(--white);
}
.delivery-feature-copy img { width: min(100%, 310px); padding: 22px; background: var(--white); }
.delivery-feature-copy p { max-width: 29ch; margin: 32px 0 0; color: rgba(255,255,255,.67); font-size: 17px; line-height: 1.6; }
.delivery-demo { min-width: 0; }
.delivery-browser { overflow: hidden; color: var(--ink); background: #f8f8f8; border: 1px solid rgba(255,255,255,.24); box-shadow: 0 28px 70px rgba(0,0,0,.3); }
.delivery-browser-top { min-height: 44px; padding: 10px 16px; display: grid; grid-template-columns: 64px minmax(0,1fr) 64px; align-items: center; background: #e8e8e8; border-bottom: 1px solid #d5d5d5; }
.delivery-dots { display: flex; gap: 6px; }
.delivery-dots i { width: 8px; height: 8px; border-radius: 50%; background: #aaa; }
.delivery-dots i:first-child { background: var(--red); }
.delivery-address { padding: 5px 12px; overflow: hidden; color: #777; background: #fff; border: 1px solid #d8d8d8; font-size: 9px; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.delivery-browser-body { padding: clamp(18px, 3vw, 32px); }
.delivery-release { display: grid; grid-template-columns: 54px minmax(0, 1fr) auto; align-items: center; gap: 14px; }
.delivery-cover { width: 54px; height: 54px; display: grid; place-items: center; color: var(--white); background: var(--red); }
.delivery-cover svg { width: 30px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-width: 2.5; }
.delivery-release div { min-width: 0; display: grid; }
.delivery-release small { color: var(--red); font-size: 8px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.delivery-release strong { font-size: 16px; line-height: 1.25; }
.delivery-release div span { color: var(--muted); font-size: 12px; }
.delivery-release > b { padding: 7px 9px; color: #1d6b46; background: #dff4e9; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.delivery-tabs { margin-top: 22px; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-bottom: 1px solid #d6d6d6; }
.delivery-tabs button { padding: 13px 7px; color: #777; background: transparent; border: 0; border-bottom: 3px solid transparent; cursor: pointer; font-size: 9px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.delivery-tabs button[aria-selected="true"] { color: var(--ink); border-color: var(--red); }
.delivery-panel { min-height: 196px; padding-top: 22px; }
.delivery-panel[hidden] { display: none; }
.delivery-panel > p { margin: 0 0 18px; color: #666; font-size: 12px; line-height: 1.5; }
.delivery-metrics { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 8px; }
.delivery-metrics div { min-width: 0; padding: 15px 10px; background: #fff; border: 1px solid #dedede; }
.delivery-metrics strong { display: block; font-size: clamp(18px, 2vw, 27px); line-height: 1; }
.delivery-metrics span { display: block; margin-top: 7px; color: #777; font-size: 8px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.delivery-bars { display: grid; gap: 14px; }
.delivery-bars > span { display: grid; grid-template-columns: 72px minmax(0,1fr) 34px; align-items: center; gap: 10px; font-size: 9px; }
.delivery-bars b { font-weight: 800; }
.delivery-bars i { height: 7px; display: block; overflow: hidden; background: #ddd; }
.delivery-bars em { height: 100%; display: block; background: var(--red); }
.delivery-airplay { border-top: 1px solid #ddd; }
.delivery-airplay span { padding: 9px 0; display: grid; grid-template-columns: minmax(0,1fr) minmax(60px,.55fr) auto; gap: 10px; border-bottom: 1px solid #ddd; font-size: 10px; }
.delivery-airplay small { color: #777; }
.delivery-airplay time { font-weight: 800; }

/* Distribution */
.distrid-panel { background: linear-gradient(135deg, #17102b 0%, #291459 48%, #551b65 100%); }
.distrid-wordmark { width: min(100%, 480px); height: clamp(82px, 9vw, 122px); display: block; background: linear-gradient(90deg,#20d6e8,#4374ff,#a53bff,#e839a4,#20d6e8); background-size: 260% 100%; -webkit-mask: url("/assets/images/distrid.png?v=20260905-12") center / contain no-repeat; mask: url("/assets/images/distrid.png?v=20260905-12") center / contain no-repeat; animation: distrid-gradient 8s linear infinite; }
.distrid-wordmark img { width: 100%; height: 100%; opacity: 0; }
@keyframes distrid-gradient { to { background-position: 260% 0; } }
.distrid-panel > h2 { display: none; }
.distrid-panel > p:not(.eyebrow) { max-width: 56ch; }
.indie-panel > h2 { display: none; }
.indie-panel > img { width: min(100%, 430px); height: 130px; max-height: 150px; object-fit: contain; }
.distribution-service-copy h3 { font-size: clamp(30px, 3vw, 44px); line-height: .95; overflow-wrap: normal; word-break: normal; }

/* Digital growth */
.growth-lead {
  padding-top: clamp(90px, 11vw, 150px);
  padding-bottom: clamp(70px, 9vw, 120px);
  display: grid;
  grid-template-columns: minmax(140px, .3fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 120px);
}
.growth-lead > div { min-width: 0; }
.growth-lead h2 { max-width: 13ch; margin: 0; font-family: var(--display); font-size: clamp(54px, 6.4vw, 92px); letter-spacing: -.06em; line-height: .91; text-transform: uppercase; }
.growth-lead > div > p { max-width: 64ch; margin: 30px 0 0; color: var(--muted); font-size: 19px; line-height: 1.65; }
.growth-platforms { padding-bottom: clamp(90px, 12vw, 170px); display: grid; gap: 22px; }
.growth-platform { min-width: 0; display: grid; grid-template-columns: minmax(300px, .72fr) minmax(0, 1fr); background: var(--white); box-shadow: 0 24px 70px rgba(11,11,13,.09); }
.growth-logo { min-height: 440px; padding: clamp(42px, 5vw, 76px); position: relative; display: grid; place-items: center; border-right: 1px solid var(--line); }
.growth-bowau .growth-logo { background: #fff2f8; }
.growth-hitsfy .growth-logo { background: #eefbfd; }
.growth-logo > img { width: min(100%, 350px); max-height: 145px; object-fit: contain; }
.growth-metric { position: absolute; left: 38px; right: 38px; bottom: 34px; padding-top: 20px; display: flex; align-items: baseline; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); }
.growth-metric strong { font-family: var(--display); font-size: clamp(38px, 4vw, 60px); letter-spacing: -.05em; line-height: 1; }
.growth-metric span { max-width: 18ch; color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-align: right; text-transform: uppercase; }
.growth-copy { padding: clamp(42px, 5vw, 78px); display: flex; flex-direction: column; }
.growth-copy h2 { margin: 0 0 24px; font-family: var(--display); font-size: clamp(44px, 5vw, 72px); letter-spacing: -.06em; line-height: .9; text-transform: uppercase; }
.growth-copy > p:not(.eyebrow) { max-width: 60ch; margin: 0; color: var(--muted); font-size: 18px; line-height: 1.65; }
.growth-points { margin: 34px 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; list-style: none; border-top: 1px solid var(--line); }
.growth-points li { padding: 13px 0; border-bottom: 1px solid var(--line); font-size: 12px; font-weight: 800; line-height: 1.35; }
.growth-copy .text-link { margin-top: auto; align-self: flex-start; }
.platform-ribbon { padding: 44px 0; color: var(--white); background: var(--ink); }
.platform-ribbon .section-shell { display: grid; grid-template-columns: auto minmax(0,1fr); align-items: center; gap: 44px; }
.platform-ribbon p { margin: 0; color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.platform-ribbon ul { margin: 0; padding: 0; display: flex; justify-content: flex-end; gap: 10px 28px; flex-wrap: wrap; list-style: none; }
.platform-ribbon li { color: rgba(255,255,255,.74); font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

/* Charts */
.chart-method { grid-template-columns: minmax(0, 1fr) minmax(340px, .72fr); }
.chart-console { padding: 14px 32px; color: var(--white); background: var(--ink); }
.chart-console p { margin: 0; padding: 24px 0; display: grid; grid-template-columns: 34px minmax(0,.8fr) minmax(0,1fr); align-items: center; gap: 18px; border-bottom: 1px solid rgba(255,255,255,.18); }
.chart-console p:last-child { border-bottom: 0; }
.chart-console span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.chart-console strong { font-size: 13px; text-transform: uppercase; }
.chart-console i { color: rgba(255,255,255,.58); font-size: 12px; font-style: normal; line-height: 1.4; }
.chart-markets { display: block; }
.chart-markets > .section-heading { margin-bottom: 64px; display: grid; grid-template-columns: minmax(140px,.32fr) minmax(0,1fr); gap: 52px; align-items: end; }
.chart-market { margin: 0; padding: 64px 0; display: grid; grid-template-columns: minmax(170px,.28fr) minmax(0,1fr); gap: clamp(36px, 6vw, 90px); border-top: 1px solid var(--line); border-bottom: 0; }
.chart-market:last-child { border-bottom: 1px solid var(--line); }
.chart-market-copy > p:last-child { max-width: 28ch; line-height: 1.6; }
.chart-product-grid { min-width: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.chart-product { min-width: 0; display: grid; grid-template-rows: 145px 1fr; background: var(--white); box-shadow: 0 16px 45px rgba(11,11,13,.07); }
.chart-product-logo { padding: 28px; display: grid; place-items: center; background: #f7f7f7; border-bottom: 1px solid var(--line); }
.chart-product-logo img { width: min(100%, 300px); height: 82px; object-fit: contain; }
.chart-product-copy { min-height: 300px; padding: 30px; display: flex; flex-direction: column; }
.chart-product-copy > span { margin-bottom: 14px; color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .13em; line-height: 1.3; text-transform: uppercase; }
.chart-product-copy h3 { margin: 0 0 17px; font-family: var(--display); font-size: clamp(28px, 2.4vw, 38px); letter-spacing: -.045em; line-height: .98; }
.chart-product-copy p { margin: 0 0 24px; color: var(--muted); line-height: 1.58; }
.chart-product-copy .text-link { margin-top: auto; align-self: flex-start; }

/* Contact and forms */
.page-contact .page-hero-grid { grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: 5vw; }
.page-contact .page-hero h1 { max-width: 13ch; font-size: clamp(62px, 6.8vw, 102px); }
.offices { padding-top: clamp(70px, 9vw, 120px); padding-bottom: clamp(90px, 11vw, 150px); display: grid; gap: 34px; }
.office { min-width: 0; display: grid; grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr); align-items: stretch; background: var(--white); box-shadow: 0 20px 64px rgba(11,11,13,.08); }
.office-map { min-height: 760px; }
.office-map iframe { min-height: 690px; }
.office-details { min-width: 0; padding: clamp(44px, 5vw, 72px); }
.office-details h2 { max-width: 14ch; font-size: clamp(42px, 4.4vw, 62px); line-height: .92; overflow-wrap: normal; word-break: normal; }
.office-details address { max-width: 46ch; line-height: 1.65; }
.office-details h3 { margin-top: 46px; font-size: clamp(26px, 2.5vw, 34px); }
.contact-form { min-width: 0; }
.contact-form > label,
.field-grid > label { min-width: 0; }
.contact-form input:not([type="checkbox"]):not([type="radio"]),
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background-color: #fff;
  border: 1px solid #bdbab4;
  border-radius: 0;
  outline: 0;
  box-shadow: none;
}
.contact-form input:not([type="checkbox"]):not([type="radio"]),
.contact-form select { min-height: 54px; padding: 13px 15px; }
.contact-form textarea { padding: 15px; line-height: 1.5; resize: vertical; }
.contact-form select {
  padding-right: 48px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath d='m3.5 6 4.5 4 4.5-4' fill='none' stroke='%230b0b0d' stroke-width='1.5'/%3E%3C/svg%3E");
  background-position: right 16px center;
  background-repeat: no-repeat;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--red); box-shadow: 0 0 0 2px rgba(240,68,50,.12); }

/* Careers */
.careers-promise { padding-top: clamp(90px,11vw,150px); padding-bottom: clamp(70px,9vw,120px); display: grid; grid-template-columns: minmax(150px,.3fr) minmax(0,1fr); gap: clamp(40px,8vw,120px); }
.careers-promise > * { min-width: 0; }
.careers-promise h2 { max-width: 13ch; margin: 0; font-family: var(--display); font-size: clamp(52px,6vw,88px); letter-spacing: -.06em; line-height: .92; text-transform: uppercase; }
.careers-promise > div > p { max-width: 64ch; margin: 30px 0 0; color: var(--muted); font-size: 19px; line-height: 1.65; }
.career-benefits { padding-bottom: clamp(90px,11vw,150px); display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); }
.career-benefits article { min-width: 0; min-height: 330px; padding: 36px; display: flex; flex-direction: column; border: 1px solid var(--line); border-right: 0; }
.career-benefits article:last-child { border-right: 1px solid var(--line); }
.career-benefits span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.career-benefits h3 { margin: auto 0 20px; font-family: var(--display); font-size: 34px; letter-spacing: -.04em; line-height: .95; text-transform: uppercase; }
.career-benefits p { margin: 0; color: var(--muted); line-height: 1.6; }
.application-section { padding: clamp(80px,10vw,140px) 0; color: var(--white); background: var(--ink); }
.application-section > .section-shell { display: grid; grid-template-columns: minmax(280px,.55fr) minmax(0,1fr); align-items: start; gap: clamp(42px,7vw,110px); }
.application-section aside { position: sticky; top: 120px; }
.application-section aside h2 { margin: 0 0 28px; font-family: var(--display); font-size: clamp(46px,5vw,72px); letter-spacing: -.06em; line-height: .92; text-transform: uppercase; }
.application-section aside > p:last-child { color: rgba(255,255,255,.62); font-size: 17px; line-height: 1.65; }
.application-form { padding: clamp(34px,4vw,58px); color: var(--ink); background: var(--paper); }
.application-form-head { margin-bottom: 36px; }
.application-form-head h2 { margin: 0 0 16px; font-family: var(--display); font-size: clamp(36px,4vw,54px); letter-spacing: -.05em; line-height: .95; text-transform: uppercase; }
.application-form-head > p:last-child { max-width: 58ch; color: var(--muted); }
.application-market { margin-bottom: 28px; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.application-market label { position: relative; min-width: 0; cursor: pointer; }
.application-market input { position: absolute; opacity: 0; pointer-events: none; }
.application-market label > span { min-height: 136px; padding: 22px; display: flex; flex-direction: column; border: 1px solid #bdbab4; background: #fff; }
.application-market input:checked + span { border-color: var(--red); box-shadow: inset 0 -4px 0 var(--red); }
.application-market input:focus-visible + span { outline: 2px solid var(--red); outline-offset: 2px; }
.application-market small { color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.application-market strong { margin-top: auto; font-size: 16px; line-height: 1.3; }
.application-market em { margin-top: 5px; color: var(--muted); font-size: 11px; font-style: normal; }
.application-consents { margin: 28px 0; display: grid; gap: 13px; }
.application-consents .privacy-check { margin: 0; align-items: flex-start; }
.application-consents .privacy-check span { font-size: 12px; line-height: 1.55; }

@media (max-width: 1180px) {
  .home-hero { grid-template-columns: minmax(0, 1fr) minmax(360px, .67fr); }
  .hero-copy { padding-left: var(--gutter); padding-right: var(--gutter); }
  .hero-copy h1 { font-size: clamp(58px,7.2vw,84px); }
  .service-brand-grid { grid-template-columns: 1fr; }
  .service-brand { grid-template-columns: 220px minmax(0,1fr); grid-template-rows: 1fr; }
  .service-brand-copy { min-height: 290px; }
  .growth-platform { grid-template-columns: minmax(260px,.62fr) minmax(0,1fr); }
  .chart-product-grid { grid-template-columns: 1fr; }
  .chart-product { grid-template-columns: minmax(220px,.55fr) minmax(0,1fr); grid-template-rows: 1fr; }
  .chart-product-copy { min-height: 270px; }
  .office { grid-template-columns: minmax(310px,.72fr) minmax(0,1.28fr); }
  .office-details { padding: 42px; }
}

@media (max-width: 900px) {
  .home-hero { grid-template-columns: 1fr; }
  .hero-copy { padding-left: var(--gutter); padding-right: var(--gutter); }
  .entity-grid { grid-template-columns: 1fr; }
  .entity-card { min-height: 580px; }
  .bridge-statement { grid-template-columns: auto 1fr auto; }
  .bridge-statement > div { grid-column: 1 / -1; }
  .promotion-journey { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .promotion-journey li:nth-child(2) { border-right: 1px solid var(--line); }
  .promotion-journey li:nth-child(n+3) { border-top: 0; }
  .service-chapter { grid-template-columns: 1fr; }
  .delivery-feature { grid-template-columns: 1fr; }
  .delivery-feature-copy { display: grid; grid-template-columns: minmax(190px,.7fr) minmax(0,1fr); align-items: center; gap: 30px; }
  .delivery-feature-copy p { margin: 0; }
  .growth-lead, .careers-promise { grid-template-columns: 1fr; gap: 28px; }
  .growth-platform { grid-template-columns: 1fr; }
  .growth-logo { min-height: 300px; border-right: 0; border-bottom: 1px solid var(--line); }
  .chart-method { grid-template-columns: 1fr; }
  .chart-market { grid-template-columns: 1fr; }
  .chart-market-copy > p:last-child { max-width: 60ch; }
  .office { grid-template-columns: 1fr; }
  .page-contact .page-hero-grid { grid-template-columns: 1fr; }
  .office-map { min-height: 460px; }
  .office-map iframe { min-height: 400px; }
  .career-benefits { grid-template-columns: 1fr; }
  .career-benefits article { min-height: 250px; border-right: 1px solid var(--line); border-bottom: 0; }
  .career-benefits article:last-child { border-bottom: 1px solid var(--line); }
  .application-section > .section-shell { grid-template-columns: 1fr; }
  .application-section aside { position: static; }
}

@media (max-width: 620px) {
  .hero-copy { padding: 55px 20px 50px; }
  .hero-copy h1 { max-width: 100%; font-size: clamp(46px,14vw,62px); line-height: .9; }
  .hero-copy-lower { max-width: 100%; }
  .page-companies .page-hero h1,
  .page-contact .page-hero h1 { font-size: clamp(46px,14vw,64px); }
  .entity-card { min-height: 0; padding: 30px; }
  .entity-card > img { width: 100%; height: 105px; margin: 38px 0 40px; }
  .entity-card > p:not(.eyebrow) { font-size: 16px; }
  .bridge-statement h2 { font-size: 42px; }
  .promotion-journey { grid-template-columns: 1fr; }
  .promotion-journey li { min-height: 110px; border-right: 1px solid var(--line); border-bottom: 0; }
  .promotion-journey li:nth-child(n+2) { border-top: 1px solid var(--line); }
  .promotion-journey li:last-child { border-bottom: 1px solid var(--line); }
  .service-chapter { padding-top: 78px; padding-bottom: 78px; gap: 30px; }
  .chapter-copy > h2 { font-size: clamp(36px,10.8vw,42px); }
  .chapter-copy > p { font-size: 16px; }
  .service-brand-grid { margin-top: 42px; }
  .service-brand { display: grid; grid-template-columns: 1fr; grid-template-rows: 130px 1fr; }
  .service-brand-copy { min-height: 0; padding: 27px; }
  .service-brand-copy h3 { font-size: 31px; }
  .delivery-feature { margin-left: calc(var(--gutter) * -1); margin-right: calc(var(--gutter) * -1); padding: 24px 20px 30px; }
  .delivery-feature-copy { display: block; }
  .delivery-feature-copy img { width: min(100%, 260px); }
  .delivery-feature-copy p { margin-top: 24px; }
  .delivery-browser-top { grid-template-columns: 50px minmax(0,1fr) 50px; }
  .delivery-browser-body { padding: 17px; }
  .delivery-release { grid-template-columns: 46px minmax(0,1fr); }
  .delivery-cover { width: 46px; height: 46px; }
  .delivery-release > b { grid-column: 1 / -1; justify-self: start; }
  .delivery-tabs { overflow-x: visible; grid-template-columns: repeat(4,minmax(0,1fr)); }
  .delivery-tabs button { min-width: 0; min-height: 44px; padding-inline: 3px; font-size: 8px; }
  .delivery-metrics { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .delivery-panel { min-height: 275px; }
  .distribution-service-copy h3 { font-size: 31px; white-space: normal; }
  .distrid-wordmark { height: 76px; }
  .growth-lead h2, .careers-promise h2 { font-size: clamp(43px,12vw,56px); }
  .growth-lead > div > p, .careers-promise > div > p { font-size: 16px; }
  .growth-logo { min-height: 250px; padding: 36px 28px 90px; }
  .growth-logo > img { max-height: 100px; }
  .growth-copy { padding: 30px 27px; }
  .growth-copy h2 { font-size: 44px; }
  .growth-copy > p:not(.eyebrow) { font-size: 16px; }
  .growth-points { grid-template-columns: 1fr; }
  .platform-ribbon .section-shell { grid-template-columns: 1fr; gap: 18px; }
  .platform-ribbon ul { justify-content: flex-start; }
  .chart-console { padding: 8px 20px; }
  .chart-console p { grid-template-columns: 28px minmax(0,1fr); }
  .chart-console i { grid-column: 2; }
  .chart-markets > .section-heading { grid-template-columns: 1fr; gap: 10px; }
  .chart-market { padding: 50px 0; gap: 28px; }
  .chart-product { display: grid; grid-template-columns: 1fr; grid-template-rows: 125px 1fr; }
  .chart-product-copy { min-height: 0; padding: 27px; }
  .chart-product-copy h3 { font-size: 31px; }
  .office-details { padding: 32px 24px; }
  .office-details h2 { font-size: 43px; }
  .office-map { min-height: 390px; }
  .office-map iframe { min-height: 335px; }
  .contact-form .field-grid { grid-template-columns: 1fr; }
  .application-section { padding: 76px 0; }
  .application-section aside h2 { font-size: 43px; }
  .application-form { padding: 29px 20px; }
  .application-market { grid-template-columns: 1fr; }
  .career-benefits article { padding: 29px; }
  .career-benefits h3 { font-size: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .distrid-wordmark { animation: none; }
}

@media (max-width: 340px) {
  .chapter-copy > h2 { font-size: 36px; letter-spacing: -.045em; }
  .careers-promise h2 { font-size: 36px; letter-spacing: -.045em; }
}

/* Corporate refinement v10 */

/* Stable internal-page heroes */
.page-distribution .page-hero-grid,
.page-publishing .page-hero-grid,
.page-charts .page-hero-grid,
.page-companies .page-hero-grid,
.page-contact .page-hero-grid,
.page-promotion .page-hero-grid,
.page-blogs .page-hero-grid,
.page-seo .page-hero-grid,
.page-white_label .page-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, .58fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: end;
}

.page-distribution .page-hero h1,
.page-publishing .page-hero h1,
.page-charts .page-hero h1,
.page-companies .page-hero h1,
.page-contact .page-hero h1,
.page-promotion .page-hero h1,
.page-blogs .page-hero h1,
.page-seo .page-hero h1,
.page-white_label .page-hero h1 {
  max-width: 13.5ch;
  font-size: clamp(62px, 6.15vw, 98px);
  letter-spacing: -.048em;
  line-height: .91;
  overflow-wrap: normal;
  word-break: normal;
}

.page-contact .page-hero h1 { max-width: 10ch; }
.page-charts .page-hero h1 { max-width: calc(13.5ch + 6px); font-size: clamp(58px, 5.65vw, 90px); }
.page-distribution .page-intro,
.page-publishing .page-intro,
.page-charts .page-intro,
.page-companies .page-intro,
.page-contact .page-intro,
.page-promotion .page-intro,
.page-blogs .page-intro,
.page-seo .page-intro,
.page-white_label .page-intro { max-width: 40ch; }

/* Promotion: one authoritative delivery.radio presentation */
.delivery-feature-copy img {
  width: min(100%, 340px);
  height: auto;
  padding: 0;
  background: transparent;
  object-fit: contain;
  object-position: left center;
}

/* Distribution */
.distribution-core {
  padding-top: clamp(86px, 10vw, 145px);
  padding-bottom: clamp(24px, 4vw, 58px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.distribution-core-card {
  min-width: 0;
  min-height: 690px;
  display: grid;
  grid-template-rows: 270px minmax(0, 1fr);
  border: 1px solid var(--line);
}

.distribution-core-card > header {
  min-width: 0;
  padding: clamp(34px, 4.2vw, 62px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.distribution-core-card > header .eyebrow { margin: 0; }
.distribution-core-distrid {
  color: var(--white);
  border-color: rgba(255,255,255,.16);
  background: linear-gradient(145deg, #151020 0%, #281550 54%, #531b63 100%);
}

.distribution-core-distrid .eyebrow { color: rgba(255,255,255,.66); }
.distribution-core-indie { background: var(--white); }
.distribution-core-indie > header { border-bottom: 1px solid var(--line); }
.distribution-core-indie > header img {
  width: min(100%, 390px);
  height: 118px;
  object-fit: contain;
  object-position: left center;
}

.distribution-core .distrid-wordmark {
  width: min(100%, 460px);
  height: 118px;
  background: linear-gradient(90deg,#20d6e8,#4374ff,#a53bff,#e839a4,#20d6e8);
  background-size: 260% 100%;
  -webkit-mask: url("/assets/images/distrid.png?v=20260905-12") left center / contain no-repeat;
  mask: url("/assets/images/distrid.png?v=20260905-12") left center / contain no-repeat;
}

.distribution-core-copy {
  min-width: 0;
  padding: clamp(34px, 4.2vw, 62px);
  display: flex;
  flex-direction: column;
}

.distribution-core-copy > p {
  max-width: 58ch;
  margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.62;
}

.distribution-core-distrid .distribution-core-copy > p { color: rgba(255,255,255,.7); }
.distribution-core-copy ul {
  margin: 0 0 40px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
  list-style: none;
  border-top: 1px solid var(--line);
}

.distribution-core-distrid .distribution-core-copy ul { border-color: rgba(255,255,255,.24); }
.distribution-core-copy li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.distribution-core-distrid .distribution-core-copy li { border-color: rgba(255,255,255,.24); }
.distribution-core-copy .button { margin-top: auto; align-self: flex-start; }

/* Supplied editorial and chart marks */
.publication-logo img { object-position: left center; }
.chart-markets > .section-heading {
  position: static;
  top: auto;
}
.chart-product-logo img[src*="classifica-indie"],
.chart-product-logo img[src*="lista-indie-spain"],
.chart-product-logo img[src*="lista-indie-latam"] {
  width: min(100%, 340px);
  height: 86px;
}

/* Company cards */
.entity-grid { align-items: stretch; }
.entity-card { height: 100%; }
.entity-card > img {
  width: min(82%, 480px);
  margin-left: auto;
  margin-right: auto;
  object-position: center;
}

/* White Label */
.page-white_label .page-hero h1 {
  max-width: 12ch;
  font-size: clamp(60px, 6.15vw, 96px);
}
.page-white_label h1,
.white-label-promise h2,
.white-label-principles h3,
.white-label-studio h2,
.white-label-panel h3,
.white-label-modules strong,
.white-label-capabilities h2,
.white-label-capabilities h3,
.white-label-process h2,
.white-label-process h3,
.white-label-ownership h2 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}
.page-white_label p,
.white-label-modules span { text-wrap: pretty; }
.white-label-promise {
  padding-top: clamp(90px, 11vw, 155px);
  padding-bottom: clamp(70px, 9vw, 125px);
  display: grid;
  grid-template-columns: minmax(150px, .3fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 120px);
}
.white-label-promise > div { min-width: 0; }
.white-label-promise h2,
.white-label-studio h2,
.white-label-capabilities h2,
.white-label-process h2,
.white-label-ownership h2 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .93;
  text-transform: uppercase;
}
.white-label-promise > div > p {
  max-width: 66ch;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
}
.white-label-principles {
  padding-bottom: clamp(90px, 11vw, 150px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid var(--line);
}
.white-label-principles article {
  min-width: 0;
  min-height: 310px;
  padding: clamp(28px, 3.5vw, 48px);
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.white-label-principles span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.white-label-principles h3 { margin: auto 0 18px; font-family: var(--display); font-size: clamp(30px, 2.2vw, 36px); letter-spacing: -.035em; line-height: .98; text-transform: uppercase; }
.white-label-principles p { margin: 0; color: var(--muted); line-height: 1.6; }
.white-label-studio { padding: clamp(90px, 11vw, 150px) 0; color: var(--white); background: #0b0b0d; }
.white-label-studio .section-shell > header {
  margin-bottom: clamp(52px, 7vw, 92px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, .62fr);
  gap: 24px clamp(50px, 8vw, 120px);
  align-items: end;
}
.white-label-studio .section-shell > header .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.white-label-studio .section-shell > header > p:last-child { margin: 0; color: rgba(255,255,255,.63); font-size: 18px; line-height: 1.62; }
.white-label-builder { display: grid; grid-template-columns: minmax(190px, .28fr) minmax(0, 1fr); border: 1px solid rgba(255,255,255,.22); }
.white-label-controls { display: flex; flex-direction: column; border-right: 1px solid rgba(255,255,255,.22); }
.white-label-controls button {
  min-height: 96px;
  padding: 24px;
  color: rgba(255,255,255,.52);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-align: left;
  text-transform: uppercase;
}
.white-label-controls button:last-child { border-bottom: 0; }
.white-label-controls button[aria-selected="true"] { color: var(--white); background: var(--red); }
.white-label-controls button:focus-visible { outline: 2px solid var(--white); outline-offset: -4px; }
.white-label-browser { min-width: 0; color: var(--ink); background: #f5f4f0; }
.white-label-browser-bar {
  min-height: 48px;
  padding: 10px 18px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  color: #777;
  background: #dfded9;
  border-bottom: 1px solid #cac8c1;
  font-size: 9px;
}
.white-label-browser-bar > span { display: flex; gap: 6px; }
.white-label-browser-bar i { width: 8px; height: 8px; display: block; background: #aaa; border-radius: 50%; }
.white-label-browser-bar i:first-child { background: var(--red); }
.white-label-browser-bar b { min-width: 0; padding: 6px 14px; overflow: hidden; background: var(--white); border: 1px solid #ceccc5; font-weight: 600; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.white-label-browser-bar em { font-style: normal; text-transform: uppercase; }
.white-label-browser-brand { padding: 24px clamp(24px, 4vw, 52px); display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); }
.white-label-browser-brand strong { font-family: var(--display); font-size: 24px; letter-spacing: -.03em; }
.white-label-browser-brand span { color: var(--muted); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.white-label-panel { min-height: 440px; padding: clamp(32px, 5vw, 66px); }
.white-label-panel[hidden] { display: none; }
.white-label-panel > header > span { color: var(--red); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.white-label-panel h3 { max-width: 15ch; margin: 18px 0; font-family: var(--display); font-size: clamp(40px, 4.4vw, 62px); letter-spacing: -.045em; line-height: .96; text-transform: uppercase; }
.white-label-panel header p { max-width: 62ch; margin: 0; color: var(--muted); line-height: 1.6; }
.white-label-modules { margin-top: clamp(36px, 5vw, 62px); display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-top: 1px solid var(--ink); border-left: 1px solid var(--ink); }
.white-label-modules div { min-width: 0; min-height: 130px; padding: 22px; position: relative; display: flex; flex-direction: column; border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.white-label-modules span { font-size: 10px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.white-label-modules strong { margin-top: auto; font-family: var(--display); font-size: clamp(19px, 1.75vw, 26px); letter-spacing: -.025em; line-height: 1.04; }
.white-label-modules i { width: 8px; height: 8px; position: absolute; top: 20px; right: 20px; background: var(--red); border-radius: 50%; }
.white-label-capabilities,
.white-label-process { padding-top: clamp(95px, 12vw, 165px); padding-bottom: clamp(95px, 12vw, 165px); }
.white-label-capabilities > header,
.white-label-process > header { margin-bottom: clamp(52px, 7vw, 88px); display: grid; grid-template-columns: minmax(150px, .32fr) minmax(0, 1fr); gap: 7vw; }
.white-label-capabilities > header h2,
.white-label-process > header h2 { max-width: 15ch; }
.white-label-capabilities > div { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border-left: 1px solid var(--ink); }
.white-label-capabilities article { min-width: 0; min-height: 340px; padding: clamp(30px, 3.5vw, 50px); display: flex; flex-direction: column; border-top: 1px solid var(--ink); border-right: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.white-label-capabilities h3 { margin: auto 0 20px; font-family: var(--display); font-size: clamp(30px, 2.2vw, 36px); letter-spacing: -.035em; line-height: .98; text-transform: uppercase; }
.white-label-capabilities article p { margin: 0; color: var(--muted); line-height: 1.65; }
.white-label-process { border-top: 1px solid var(--line); }
.white-label-process > div { border-top: 1px solid var(--ink); }
.white-label-process article { min-height: 148px; padding: 24px 0; display: grid; grid-template-columns: 70px minmax(180px, .4fr) minmax(0, 1fr); align-items: center; gap: 30px; border-bottom: 1px solid var(--line); }
.white-label-process article > span { color: var(--red); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.white-label-process article > div { grid-column: 2 / -1; display: grid; grid-template-columns: minmax(180px, .4fr) minmax(0, 1fr); align-items: center; gap: 30px; }
.white-label-process h3 { margin: 0; font-family: var(--display); font-size: clamp(30px, 2.4vw, 40px); letter-spacing: -.035em; line-height: 1; text-transform: uppercase; }
.white-label-process article p { max-width: 65ch; margin: 0; color: var(--muted); line-height: 1.6; }
.white-label-ownership { padding: clamp(78px, 10vw, 140px) max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter))); display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, .68fr); gap: clamp(50px, 8vw, 125px); align-items: end; color: var(--white); background: var(--red); }
.white-label-ownership > div:first-child > span { display: block; margin-bottom: 28px; font-size: 9px; font-weight: 900; letter-spacing: .18em; }
.white-label-ownership h2 { max-width: 13ch; }
.white-label-ownership > div:last-child > p { margin: 0 0 34px; color: rgba(255,255,255,.76); font-size: 18px; line-height: 1.65; }

/* Cookie controls belong to the Cookie Policy page */
.cookie-preferences-block {
  margin-top: clamp(60px, 8vw, 100px);
  padding: clamp(34px, 5vw, 64px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--red);
  scroll-margin-top: 120px;
}
.cookie-preferences-block h2 { margin: 0 0 20px; font-family: var(--display); font-size: clamp(42px, 5vw, 68px); letter-spacing: -.045em; line-height: .95; text-transform: uppercase; }
.cookie-preferences-block > p:not(.eyebrow) { max-width: 64ch; margin: 0 0 30px; color: var(--muted); line-height: 1.65; }

@media (max-width: 900px) {
  .page-distribution .page-hero-grid,
  .page-publishing .page-hero-grid,
  .page-charts .page-hero-grid,
  .page-companies .page-hero-grid,
  .page-contact .page-hero-grid,
  .page-promotion .page-hero-grid,
  .page-blogs .page-hero-grid,
  .page-seo .page-hero-grid,
  .page-white_label .page-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .distribution-core { grid-template-columns: 1fr; }
  .distribution-core-card { min-height: 0; }
  .white-label-promise,
  .white-label-studio .section-shell > header,
  .white-label-capabilities > header,
  .white-label-process > header,
  .white-label-ownership { grid-template-columns: 1fr; }
  .white-label-builder { grid-template-columns: 1fr; }
  .white-label-controls { flex-direction: row; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .white-label-controls button { min-width: 0; min-height: 72px; flex: 1 1 0; border-right: 1px solid rgba(255,255,255,.18); border-bottom: 0; text-align: center; }
  .white-label-controls button:last-child { border-right: 0; }
  .white-label-capabilities > div { grid-template-columns: 1fr; }
  .white-label-capabilities article { min-height: 250px; }
}

@media (max-width: 620px) {
  .page-distribution .page-hero,
  .page-publishing .page-hero,
  .page-charts .page-hero,
  .page-companies .page-hero,
  .page-contact .page-hero,
  .page-promotion .page-hero,
  .page-blogs .page-hero,
  .page-seo .page-hero,
  .page-white_label .page-hero { min-height: 0; padding-top: 76px; padding-bottom: 36px; }
  .page-distribution .page-hero h1,
  .page-publishing .page-hero h1,
  .page-charts .page-hero h1,
  .page-companies .page-hero h1,
  .page-contact .page-hero h1,
  .page-promotion .page-hero h1,
  .page-blogs .page-hero h1,
  .page-seo .page-hero h1,
  .page-white_label .page-hero h1 { max-width: 100%; font-size: clamp(42px, 12.2vw, 56px); line-height: .94; letter-spacing: -.042em; }
  .page-contact .page-hero h1 { font-size: clamp(40px, 11.8vw, 52px); }
  .page-distribution .page-hero h1 { font-size: clamp(38px, 10.2vw, 46px); }
  .page-publishing .page-hero h1 { font-size: clamp(38px, 10.8vw, 44px); }
  .page-charts .page-hero h1 { font-size: clamp(39px, 11.5vw, 52px); }
  .page-intro { font-size: 17px; }
  .page-hero .hero-rule { height: 28px; margin-top: 42px; }
  .delivery-feature-copy img { width: min(100%, 290px); padding: 0; }
  .distribution-core { padding-top: 72px; }
  .distribution-core-card { grid-template-rows: 210px auto; }
  .distribution-core-card > header,
  .distribution-core-copy { padding: 28px; }
  .distribution-core-indie > header img { height: 88px; }
  .distribution-core .distrid-wordmark { height: 88px; }
  .distribution-core-copy ul { grid-template-columns: 1fr; }
  .entity-card > img { width: min(100%, 430px); margin-left: auto; margin-right: auto; object-position: center; }
  .white-label-promise { grid-template-columns: 1fr; gap: 24px; }
  .white-label-promise h2,
  .white-label-studio h2,
  .white-label-capabilities h2,
  .white-label-process h2,
  .white-label-ownership h2 { font-size: clamp(40px, 11.5vw, 52px); }
  .white-label-principles { grid-template-columns: 1fr; }
  .white-label-principles article { min-height: 230px; border-top: 0; }
  .white-label-principles article:first-child { border-top: 1px solid var(--line); }
  .white-label-studio .section-shell > header { gap: 24px; }
  .white-label-controls { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); overflow: visible; }
  .white-label-controls button { min-width: 0; padding: 18px 8px; font-size: 8px; line-height: 1.35; }
  .white-label-browser-bar { grid-template-columns: 42px minmax(0, 1fr); gap: 9px; padding: 9px 12px; }
  .white-label-browser-bar em { display: none; }
  .white-label-browser-brand { padding: 18px; align-items: flex-start; flex-direction: column; gap: 6px; }
  .white-label-panel { min-height: 0; padding: 28px 20px; }
  .white-label-panel h3 { font-size: 39px; }
  .white-label-modules { grid-template-columns: 1fr; }
  .white-label-modules div { min-height: 105px; }
  .white-label-capabilities > header,
  .white-label-process > header { grid-template-columns: 1fr; gap: 20px; }
  .white-label-capabilities article { min-height: 230px; }
  .white-label-process article { min-height: 0; grid-template-columns: 42px minmax(0, 1fr); gap: 16px; }
  .white-label-process article > div { grid-column: 2; grid-template-columns: 1fr; gap: 12px; }
  .white-label-ownership { grid-template-columns: 1fr; gap: 32px; }
  .cookie-preferences-block h2 { font-size: clamp(28px, 9vw, 34px); }
}

@media (prefers-reduced-motion: reduce) {
  .distribution-core .distrid-wordmark { animation: none; }
}

/* Corporate refinement v13 */

/* Header call to action */
@media (min-width: 1181px) {
  .site-header .contact-link {
    min-height: 42px;
    padding: 14px 20px;
    display: inline-flex;
    align-items: center;
    color: var(--white);
    background: var(--red);
    border: 1px solid var(--red);
  }

  .site-header .contact-link::after { display: none; }
  .site-header .contact-link:hover {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
  }
}

/* Homepage hero labels */
.hero-kicker-line .hero-sector {
  width: auto;
  max-width: none;
  flex: 0 0 auto;
  white-space: nowrap;
  letter-spacing: .11em;
}

/* Homepage service directory */
.verticals {
  grid-template-columns: minmax(300px, .42fr) minmax(0, 1fr);
  gap: clamp(56px, 6vw, 96px);
}

.vertical-row {
  min-height: 156px;
  padding: 0;
  grid-template-columns: 38px minmax(230px, .88fr) minmax(230px, 1.12fr) 24px;
  gap: clamp(18px, 2vw, 30px);
  transition: color .25s ease, background .25s ease;
}

.vertical-row > * { min-width: 0; }
.vertical-row:hover { padding: 0; }
.vertical-row h3 {
  font-size: clamp(30px, 2.65vw, 38px);
  line-height: .98;
  overflow-wrap: normal;
  word-break: normal;
}
.vertical-row p {
  max-width: 34ch;
  line-height: 1.5;
  overflow-wrap: normal;
  word-break: normal;
}

/* Homepage White Label feature */
.home-white-label { padding-bottom: clamp(100px, 12vw, 170px); }
.home-white-label-card {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
}
.home-white-label-graphic {
  min-width: 0;
  min-height: 520px;
  padding: clamp(34px, 4vw, 58px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--red);
}
.home-white-label-graphic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.13) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, rgba(255,255,255,.13) 1px, transparent 1px) 0 0 / 50% 100%;
  pointer-events: none;
}
.home-white-label-graphic > * { position: relative; z-index: 1; }
.home-white-label-graphic span {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .18em;
}
.home-white-label-graphic strong {
  font-family: var(--display);
  font-size: clamp(68px, 7vw, 108px);
  letter-spacing: -.055em;
  line-height: .82;
}
.home-white-label-graphic i {
  width: 100%;
  height: 18px;
  display: block;
  background: var(--ink);
  transform: skewX(-18deg);
}
.home-white-label-copy {
  min-width: 0;
  padding: clamp(48px, 7vw, 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.home-white-label-copy h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(50px, 5.5vw, 82px);
  font-weight: 900;
  letter-spacing: -.048em;
  line-height: .93;
  text-transform: uppercase;
}
.home-white-label-copy > p:not(.eyebrow) {
  max-width: 60ch;
  margin: 30px 0 34px;
  color: rgba(255,255,255,.68);
  font-size: 17px;
  line-height: 1.62;
}
.home-white-label-copy ul {
  margin: 0 0 36px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.25);
  border-bottom: 1px solid rgba(255,255,255,.25);
}
.home-white-label-copy li {
  min-width: 0;
  padding: 18px 16px 18px 0;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}
.home-white-label-copy li + li {
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,.25);
}
.home-white-label-copy li span {
  margin-bottom: 9px;
  display: block;
  color: var(--red);
  font-size: 9px;
}
.home-white-label-copy .button { align-self: flex-start; }

/* Concise internal heroes */
.page-promotion .page-hero h1,
.page-blogs .page-hero h1,
.page-seo .page-hero h1 {
  max-width: 100%;
  font-size: clamp(52px, 4.7vw, 70px);
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: wrap;
}

@media (max-width: 1180px) {
  .verticals { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .vertical-row {
    min-height: 0;
    padding: 26px 0;
    grid-template-columns: 36px minmax(0, 1fr) 22px;
    align-items: start;
    gap: 14px 18px;
  }
  .vertical-row:hover { padding: 26px 0; }
  .vertical-row > span:first-child { grid-column: 1; grid-row: 1; margin-top: 7px; }
  .vertical-row h3 { grid-column: 2; grid-row: 1; }
  .vertical-row > .arrow-icon { grid-column: 3; grid-row: 1; margin-top: 4px; }
  .vertical-row p { grid-column: 2 / -1; grid-row: 2; max-width: 52ch; }

  .home-white-label-card { grid-template-columns: 1fr; }
  .home-white-label-graphic { min-height: 330px; }
  .home-white-label-graphic strong { font-size: clamp(72px, 13vw, 104px); }
}

@media (max-width: 620px) {
  .header-shell { gap: 10px; }
  .header-actions { gap: 6px; }
  .site-header .locale-chip { display: none; }
  .site-header .contact-link {
    min-height: 40px;
    padding: 12px 11px;
    display: inline-flex;
    align-items: center;
    color: var(--white);
    background: var(--red);
    border: 1px solid var(--red);
    font-size: 8px;
    line-height: 1;
  }
  .site-header .contact-link:hover { color: var(--white); background: var(--ink); border-color: var(--ink); }
  .hero-kicker-line .hero-sector {
    max-width: 100%;
    font-size: 8px;
    letter-spacing: .08em;
    text-align: left;
  }
  .vertical-row h3 { font-size: clamp(26px, 8.3vw, 32px); }

  .home-white-label { padding-bottom: 88px; }
  .home-white-label-graphic { min-height: 245px; padding: 28px; }
  .home-white-label-graphic strong { font-size: clamp(58px, 18vw, 78px); }
  .home-white-label-copy { padding: 34px 28px 38px; }
  .home-white-label-copy h2 { max-width: 100%; font-size: clamp(40px, 12vw, 52px); }
  .home-white-label-copy > p:not(.eyebrow) { margin-top: 24px; font-size: 16px; }
  .home-white-label-copy ul { grid-template-columns: 1fr; }
  .home-white-label-copy li { padding: 14px 0; }
  .home-white-label-copy li + li { padding-left: 0; border-top: 1px solid rgba(255,255,255,.25); border-left: 0; }

  .page-promotion .page-hero h1,
  .page-blogs .page-hero h1,
  .page-seo .page-hero h1 { font-size: clamp(36px, 10.2vw, 46px); }
}

@media (max-width: 340px) {
  .hero-copy h1 { font-size: 42px; }
  .page-seo .page-hero h1 { font-size: 34px; }
}
