/* =========================================================
   Sweetbixx Publishing
   ========================================================= */

:root {
  --navy-900: #16222F;
  --navy-800: #1E2D40;
  --navy-100: #E8EDF2;
  --accent: #0FC2A0;
  --accent-dk: #0AA085;
  --white: #FFFFFF;
  --grey-50: #F7F8F9;

  --ink: var(--navy-800);
  --muted: #5B6874;
  --line: rgba(255, 255, 255, .12);
  --line-dark: rgba(22, 34, 47, .12);

  --maxw: 1200px;
  --gutter: clamp(20px, 4vw, 48px);

  --py-dark: 8rem;
  --py-light: 7rem;
  --py-stats: 4rem;

  --font-display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --header-h: 96px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + env(safe-area-inset-top) + 16px);
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
  touch-action: none;
}

::selection { background: var(--accent); color: var(--navy-900); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; padding: 0; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-left: max(var(--gutter), env(safe-area-inset-left));
  padding-right: max(var(--gutter), env(safe-area-inset-right));
}

.section--dark {
  background: var(--navy-900);
  color: var(--white);
  padding-block: var(--py-dark);
}
.section--light {
  background: var(--white);
  padding-block: var(--py-light);
}
.section[id] {
  scroll-margin-top: calc(var(--header-h) + env(safe-area-inset-top) + 16px);
}

.eyebrow {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--navy-800);
}

.hero-title {
  font-size: clamp(2.75rem, 5vw, 4.25rem);
  line-height: 1.05;
  color: var(--white);
  max-width: 16ch;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.08;
  margin-bottom: 0;
}

.section--dark .section-title { color: var(--white); }

.section-head { margin-bottom: 56px; }

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

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .95rem;
  padding: 13px 22px;
  border-radius: 4px;
  border: 1px solid transparent;
  min-height: 48px;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
  white-space: nowrap;
}
.btn .arrow { transition: transform .2s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary { background: var(--accent); color: var(--navy-900); }
.btn--primary:hover { background: var(--accent-dk); color: var(--white); }

.btn--ghost-light {
  background: transparent;
  color: var(--navy-100);
  border-color: var(--navy-100);
}
.btn--ghost-light:hover { color: var(--white); border-color: var(--white); }

/* ---------- header ---------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: transparent;
  padding-top: env(safe-area-inset-top);
}
.page-home .site-header.is-scrolled {
  position: fixed;
  background: var(--navy-900);
}
.page-legal .site-header,
.site-header--solid {
  position: sticky;
  background: var(--navy-900);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: var(--header-h);
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand__logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: none;
}

.nav { display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy-100);
  padding: 9px 14px;
  transition: color .2s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav .btn { padding: 11px 20px; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 4px;
}
.lang-switch a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .06em;
  color: var(--navy-100);
  padding: 6px 8px;
  opacity: .7;
  transition: opacity .2s var(--ease), color .2s var(--ease);
}
.lang-switch a:hover,
.lang-switch a.is-active {
  opacity: 1;
  color: var(--white);
}
.lang-switch a.is-active { text-decoration: underline; text-underline-offset: 3px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  background: var(--navy-100);
  transition: transform .3s var(--ease), opacity .2s var(--ease), top .3s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.is-open span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--navy-900);
  color: var(--white);
  padding-top: calc(var(--header-h) + env(safe-area-inset-top));
  padding-bottom: 72px;
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 32px;
  min-height: clamp(520px, 72vh, 760px);
  padding-left: max(var(--gutter), env(safe-area-inset-left), calc((100vw - var(--maxw)) / 2 + var(--gutter)));
}

.hero-copy { padding-right: 24px; padding-bottom: 24px; }
.hero-lead {
  width: 65%;
  max-width: 42ch;
  margin-top: 24px;
  color: var(--navy-100);
  font-size: 1.0625rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 560px;
  overflow: visible;
}

.collage {
  position: absolute;
  left: 4%;
  right: -12%;
  bottom: 4%;
  top: auto;
  width: min(720px, 92%);
  height: 380px;
}

.window {
  position: absolute;
  background: var(--white);
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}
.collage .window {
  width: 480px;
  max-width: none;
  transform-origin: bottom center;
  bottom: 24px;
}
.window .bar {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 12px;
  background: #EEF1F4;
}
.window .bar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C5CDD4;
  display: block;
}
.window .bar .url {
  margin-left: 8px;
  font-size: .62rem;
  font-weight: 600;
  color: #7A8692;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.window .shot { aspect-ratio: 16 / 10; background: var(--navy-800); }
.window .shot .screenshot,
.window .shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Hero fan: shared origin, small horizontal step, slight vertical drift */
.collage .window.w1 {
  left: 0;
  bottom: 28px;
  z-index: 1;
  transform: rotate(-9deg);
}
.collage .window.w2 {
  left: 60px;
  bottom: 18px;
  z-index: 2;
  transform: rotate(-3deg);
}
.collage .window.w3 {
  left: 120px;
  bottom: 22px;
  z-index: 3;
  transform: rotate(3deg);
}
.collage .window.w4 {
  left: 180px;
  bottom: 12px;
  z-index: 4;
  transform: rotate(9deg);
}

.collage .window.float { animation: floaty 8s ease-in-out infinite; }
.collage .window.w2.float { animation-delay: -1.6s; }
.collage .window.w3.float { animation-delay: -3s; }
.collage .window.w4.float { animation-delay: -4.2s; }

@keyframes floaty {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}

img, picture, svg {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* ---------- platformband ---------- */
.platform-band {
  background: var(--navy-800);
  padding-block: var(--py-stats);
}
.platform-band__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 24px;
}
.platform-band__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 16px;
  column-gap: 0;
}
.platform-band__list li {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(232, 237, 242, .75);
  line-height: 1.3;
}
.platform-band__list li:not(:last-child)::after {
  content: "·";
  margin: 0 18px;
  color: rgba(15, 194, 160, .4);
  pointer-events: none;
}

/* ---------- merken ---------- */
#merken.section--light {
  padding-block: 88px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.brand-tile {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--grey-50);
  border: 1px solid rgba(30, 45, 64, .08);
  border-radius: 16px;
  transition: border-color .2s ease, background-color .2s ease;
}
.brand-tile:hover {
  border-color: rgba(15, 194, 160, .4);
  background: var(--white);
}

.brand-tile.is-more {
  background: var(--navy-900);
  border-color: transparent;
}
.brand-tile.is-more:hover {
  background: var(--navy-900);
  border-color: transparent;
}
.brand-tile.is-more h3 {
  color: var(--white);
}
.brand-tile.is-more p {
  color: rgba(255, 255, 255, .72);
}
.brand-tile.is-more .brand-tile__link {
  color: var(--accent);
}
.brand-tile.is-more .brand-tile__link:hover {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.brand-tile.is-more .brand-tile__link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.brand-tile h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -.01em;
  color: var(--navy-800);
  margin: 0 0 8px;
}
.brand-tile p {
  font-size: .9375rem;
  line-height: 1.55;
  color: rgba(30, 45, 64, .65);
  margin: 0;
}
.brand-tile__link {
  display: inline-flex;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .9375rem;
  color: var(--accent);
}
.brand-tile__link:hover {
  color: var(--accent-dk);
}

/* ---------- aanpak ---------- */
.section--aanpak {
  background: var(--navy-900);
  color: var(--white);
  padding-block: 96px;
}
.section--dark.section--aanpak {
  background: var(--navy-900);
  padding-block: 96px;
}
.section--aanpak .section-title { color: var(--white); }
.section--aanpak .eyebrow { color: var(--accent); }

/* ---------- adverteerders ---------- */
#samenwerken.section--dark {
  background: var(--navy-800);
  padding-block: 96px;
}
#samenwerken {
  position: relative;
  color: var(--white);
}

/* Scheiding tussen aanpak ↔ adverteerders (volgorde NL of EN/DE) */
.section--aanpak + #samenwerken,
#samenwerken + .section--aanpak {
  position: relative;
}
.section--aanpak + #samenwerken::before,
#samenwerken + .section--aanpak::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(0px, calc((100vw - var(--maxw)) / 2));
  right: max(0px, calc((100vw - var(--maxw)) / 2));
  height: 1px;
  background: rgba(255, 255, 255, .10);
  pointer-events: none;
  z-index: 1;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 24px;
  position: relative;
  margin-bottom: 72px;
  align-items: start;
}
.timeline li {
  position: relative;
  padding-top: 40px;
  padding-right: 0;
  padding-left: 14px;
  min-width: 0;
}
.timeline li:nth-child(1) { margin-top: 0; }
.timeline li:nth-child(2) { margin-top: 24px; }
.timeline li:nth-child(3) { margin-top: 48px; }
.timeline li:nth-child(4) { margin-top: 72px; }
.timeline li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  right: 8%;
  height: 1px;
  background: rgba(255, 255, 255, .15);
}
.timeline li::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 3px;
  height: 24px;
  background: var(--accent);
  border-radius: 1px;
}
.timeline__num {
  position: absolute;
  top: 28px;
  left: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -.04em;
  color: rgba(255, 255, 255, .06);
  pointer-events: none;
  z-index: 0;
}
.timeline__label {
  position: relative;
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.3;
  color: var(--white);
  z-index: 1;
}
.timeline__text {
  position: relative;
  display: block;
  margin-top: 10px;
  font-size: .95rem;
  line-height: 1.55;
  color: rgba(232, 237, 242, .8);
  max-width: 28ch;
  z-index: 1;
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(0, .45fr) minmax(0, .55fr);
  gap: 48px;
  align-items: center;
}
.case-copy h3 {
  font-size: clamp(1.4rem, 2vw, 1.75rem);
  line-height: 1.2;
  margin-bottom: 18px;
  max-width: 18ch;
  color: var(--white);
}
.case-copy p {
  color: rgba(232, 237, 242, .8);
  margin-bottom: 16px;
}
.case-copy p:last-child { margin-bottom: 0; }

.case-visual {
  position: relative;
  min-height: 480px;
  width: 100%;
  margin-right: calc(-1 * max(var(--gutter), env(safe-area-inset-right), calc((100vw - var(--maxw)) / 2 + var(--gutter))));
}
.case-stack {
  position: absolute;
  inset: 0 0 0 0;
}
.case-stack .window {
  width: 78%;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
}
/* ~20% of each window overlaps the previous; middle on top */
.case-w1 { top: 16%; left: 0; z-index: 2; transform: rotate(-2deg); }
.case-w2 { top: 0; left: 16%; z-index: 4; transform: rotate(0deg); }
.case-w3 { top: 20%; left: 32%; z-index: 3; transform: rotate(2deg); }

.format-intro {
  max-width: 60ch;
  color: var(--navy-100);
  margin: -24px 0 40px;
}
.format-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 48px;
}
.format-list li {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.format-list h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.format-list p {
  color: var(--navy-100);
  margin: 0;
  max-width: 46ch;
}
.format-example {
  margin-top: 10px !important;
  font-size: .875rem !important;
  color: rgba(232, 237, 242, .7) !important;
}

.partner-block {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.partner-block__eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 28px;
}
.partner-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 20px;
  column-gap: 0;
}
.partner-list li {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: rgba(232, 237, 242, .7);
  line-height: 1.3;
}
.partner-list li:not(:last-child)::after {
  content: "·";
  margin: 0 20px;
  color: rgba(15, 194, 160, .4);
  pointer-events: none;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 48px;
}

/* ---------- contact ---------- */
.section--contact {
  background: var(--white);
  padding-block: var(--py-light);
}
.contact-panel {
  background: var(--navy-900);
  color: var(--white);
  border-radius: 16px;
  padding: 64px;
  max-width: var(--maxw);
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: start;
}
.contact-panel .section-title { color: var(--white); }
.contact-aside p {
  color: var(--navy-100);
  max-width: 40ch;
  margin-top: 18px;
}
.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
}
.contact-mail .arrow { transition: transform .2s var(--ease); }
.contact-mail:hover .arrow { transform: translateX(4px); }

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
}
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.field { display: flex; flex-direction: column; gap: 0; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8125rem;
  color: rgba(232, 237, 242, .7);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  font: inherit;
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--white);
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.field input::placeholder,
.field textarea::placeholder {
  color: rgba(232, 237, 242, .4);
}
.field input:hover,
.field textarea:hover {
  border-color: rgba(255, 255, 255, .22);
}
.field textarea {
  min-height: 140px;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(15, 194, 160, .15);
}
.field.is-invalid input,
.field.is-invalid textarea {
  border-color: #FF6B6B;
  box-shadow: none;
}
.field.is-invalid input:focus,
.field.is-invalid textarea:focus {
  border-color: #FF6B6B;
  box-shadow: 0 0 0 3px rgba(255, 107, 107, .15);
}
.field-error {
  display: none;
  margin-top: 8px;
  font-size: .8125rem;
  color: #FF6B6B;
}
.field.is-invalid .field-error { display: block; }

.contact-form .submit-row {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 0;
}
.contact-form .submit-row .btn--primary {
  padding: 14px 28px;
  font-weight: 600;
  min-height: 0;
}
.form-note {
  margin-top: 16px;
  color: rgba(232, 237, 242, .5);
  font-size: .8125rem;
  max-width: 42ch;
  line-height: 1.5;
}
.contact-status { grid-column: 1 / -1; font-size: .92rem; }
.contact-status.is-success { color: var(--accent); }
.contact-status.is-error { color: #FF6B6B; }

/* ---------- footer ---------- */
.site-footer {
  background: var(--navy-800);
  color: var(--navy-100);
  padding-block: 40px;
  padding-bottom: max(40px, env(safe-area-inset-bottom));
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand img {
  display: block;
  height: 48px;
  width: auto;
  max-width: none;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
}
.footer-links a {
  color: var(--navy-100);
  font-size: .85rem;
  transition: color .2s var(--ease);
}
.footer-links a:not(:last-child)::after {
  content: "·";
  margin: 0 12px;
  color: rgba(232, 237, 242, .4);
  pointer-events: none;
}
.footer-links a:hover { color: var(--white); }

.footer-copy {
  margin: 0;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .10);
  font-size: .8125rem;
  line-height: 1.5;
  color: rgba(232, 237, 242, .55);
  text-align: left;
}

/* ---------- legal ---------- */
.page-legal { background: var(--white); }
.page-legal .section { padding-block: var(--py-light); }
.legal { max-width: 760px; }
.legal h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 16px;
}
.legal h2 { font-size: 1.25rem; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--muted); }
.legal p { margin-bottom: 14px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.legal ol { list-style: decimal; padding-left: 24px; margin-bottom: 14px; }
.legal li { margin-bottom: 7px; }
.legal a { color: var(--accent-dk); font-weight: 600; }
.legal-disclosure {
  margin: 28px 0 8px;
  border: 1px solid var(--line-dark);
  background: var(--grey-50);
}
.legal-disclosure summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 16px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--muted);
}
.legal-disclosure summary::-webkit-details-marker { display: none; }
.legal-disclosure summary::after { content: "+"; float: right; }
.legal-disclosure[open] summary::after { content: "−"; }
.legal-disclosure__body {
  padding: 0 16px 14px;
  border-top: 1px solid var(--line-dark);
}
.legal-disclosure__body p { margin-top: 12px; margin-bottom: 0; }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-dk);
  font-family: var(--font-display);
  font-weight: 700;
  margin-top: 40px;
}

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }

/* ---------- responsive ---------- */
@media (max-width: 1100px) {
  .hero-layout { grid-template-columns: 1fr; padding-right: 0; min-height: 0; }
  .hero-copy { padding-right: max(var(--gutter), env(safe-area-inset-right)); }
  .hero-visual { min-height: 420px; }
  .collage {
    left: 50%;
    right: auto;
    bottom: 0;
    width: min(640px, 100%);
    height: 340px;
    transform: translateX(-42%);
  }
  .collage .window { width: min(420px, 72vw); }
  .collage .window.w1 { left: 0; }
  .collage .window.w2 { left: 52px; }
  .collage .window.w3 { left: 104px; }
  .collage .window.w4 { left: 156px; }
  .case-layout { grid-template-columns: 1fr; gap: 40px; }
  .case-visual {
    min-height: 400px;
    margin-right: 0;
  }
  .case-stack .window { width: 72%; }
  .case-w1 { left: 0; }
  .case-w2 { left: 14%; }
  .case-w3 { left: 28%; }
  .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-panel { padding: 40px; }
  .timeline li:nth-child(n) { margin-top: 0; }
}

@media (max-width: 800px) {
  :root {
    --py-dark: 5rem;
    --py-light: 4.5rem;
    --py-stats: 3rem;
  }
  .platform-band__list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }
  .platform-band__list li:not(:last-child)::after { display: none; content: none; }
  .brand-grid { grid-template-columns: 1fr; gap: 24px; }
  .timeline { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .timeline li::before { display: none; }
  .format-list { grid-template-columns: 1fr; }
  .hero-lead { width: 100%; }
  .partner-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .partner-list li:not(:last-child)::after { display: none; content: none; }
  .case-stack .window { position: relative; width: 100%; max-width: 420px; margin-bottom: 16px; }
  .case-w1, .case-w2, .case-w3 {
    top: auto; left: auto; transform: none; margin: 0 auto 16px;
  }
  .case-visual { min-height: 0; position: static; }
  .case-stack { position: static; }

  /* Hero fan collapses to one upright window */
  .hero-visual { min-height: 280px; }
  .collage {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: auto;
    transform: none;
    display: flex;
    justify-content: center;
  }
  .collage .window.w2,
  .collage .window.w3,
  .collage .window.w4 { display: none; }
  .collage .window.w1 {
    position: relative;
    left: auto;
    bottom: auto;
    width: min(92vw, 420px);
    transform: none;
    transform-origin: center center;
    animation: none;
  }
}

@media (max-width: 720px) {
  .brand__logo { height: 44px; width: auto; }
  .nav-links, .nav > .btn { display: none; }
  .nav-toggle { display: block; z-index: 61; }
  .lang-switch { order: -1; margin-left: 0; margin-right: auto; }

  .nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    position: fixed;
    top: calc(var(--header-h) + env(safe-area-inset-top));
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy-900);
    padding: 18px max(var(--gutter), env(safe-area-inset-left)) calc(88px + env(safe-area-inset-bottom)) max(var(--gutter), env(safe-area-inset-right));
    overflow-y: auto;
    z-index: 60;
  }
  .nav.is-open .nav-links a {
    padding: 14px 0;
    font-size: 1.15rem;
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .nav.is-open > .btn {
    display: inline-flex;
    position: fixed;
    left: max(var(--gutter), env(safe-area-inset-left));
    right: max(var(--gutter), env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    justify-content: center;
    z-index: 61;
  }
  .nav.is-open .lang-switch {
    position: fixed;
    top: calc(var(--header-h) + env(safe-area-inset-top) + 8px);
    right: max(var(--gutter), env(safe-area-inset-right));
    z-index: 61;
  }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .section-actions { flex-direction: column; align-items: stretch; }
  .section-actions .btn { width: 100%; justify-content: center; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .submit-row { flex-direction: column; align-items: stretch; }
  .contact-form .submit-row .btn { width: 100%; justify-content: center; }
  .contact-panel { padding: 28px 22px; border-radius: 12px; }
  .field input, .field textarea { font-size: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 520px) {
  .platform-band__list { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr; }
}

@media (hover: none) and (pointer: coarse) {
  .btn:hover { transform: none; }
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

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