:root {
  --red: #e30613;
  --red-dark: #b9000a;
  --ink: #08090a;
  --muted: #5e6268;
  --line: #d9dde1;
  --paper: #fff;
  --soft: #f3f4f5;
  --header-height: 86px;
  --page: min(1440px, calc(100vw - 96px));
  --section-space: clamp(76px, 9vw, 144px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Now Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 8px; left: 8px; z-index: 1000; padding: 12px 16px;
  background: var(--ink); color: #fff; transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header-height); padding: 0 max(28px, calc((100vw - 1440px) / 2));
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,.93); border-bottom: 1px solid rgba(8,9,10,.08);
  backdrop-filter: blur(16px); transition: height .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { height: 70px; box-shadow: 0 12px 40px rgba(10,14,20,.08); }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 212px; height: auto; }
.site-nav { display: flex; align-items: center; gap: clamp(24px, 3vw, 48px); }
.site-nav > a { position: relative; text-decoration: none; font-size: 15px; font-weight: 650; }
.site-nav > a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -9px; height: 2px;
  background: var(--red); transition: right .25s ease;
}
.site-nav > a:hover::after, .site-nav > a:focus-visible::after { right: 0; }
.nav-divider { width: 1px; height: 30px; background: var(--line); }
.language-switch { display: flex; gap: 7px; align-items: center; font-size: 13px; font-weight: 800; }
.language-switch button { padding: 4px 2px; border: 0; background: transparent; cursor: pointer; color: var(--muted); }
.language-switch button.is-active { color: var(--red); }
.menu-toggle { display: none; }

.hero {
  position: relative; min-height: min(870px, 100svh); padding-top: var(--header-height);
  display: grid; grid-template-columns: minmax(520px, .95fr) minmax(560px, 1.05fr);
  overflow: hidden;
}
.hero-copy {
  position: relative; z-index: 2; align-self: center;
  padding: clamp(90px, 10vw, 160px) clamp(48px, 6vw, 110px) 130px max(48px, calc((100vw - 1440px) / 2));
  background: #fff;
  min-width: 0;
}
.hero-copy::after {
  content: ""; position: absolute; z-index: -1; top: 17%; right: -78px;
  width: 160px; height: 66%; background: #fff;
  clip-path: polygon(0 0, 52% 0, 100% 11%, 100% 85%, 52% 100%, 0 100%);
}
.eyebrow {
  margin: 0 0 18px; color: var(--red); font-size: 13px; line-height: 1.2;
  font-weight: 800; letter-spacing: .135em; text-transform: uppercase;
}
.hero .eyebrow { color: var(--ink); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 760px; margin-bottom: 30px; font-size: clamp(48px, 5vw, 82px);
  line-height: .96; letter-spacing: -.055em; font-weight: 790;
}
.hero-intro { max-width: 690px; margin-bottom: 38px; font-size: clamp(18px, 1.45vw, 24px); line-height: 1.38; color: #26292d; }
.release-card {
  position: relative; width: min(500px, 100%); min-height: 108px; padding: 24px 48px 24px 25px;
  display: flex; align-items: center; gap: 24px; border: 2px solid var(--red);
  background: #fff; clip-path: polygon(0 0, calc(100% - 36px) 0, 100% 36px, 100% 100%, 0 100%);
}
.release-card svg { width: 46px; flex: 0 0 auto; fill: none; stroke: var(--red); stroke-width: 2.8; stroke-linecap: round; stroke-linejoin: round; }
.release-card span { display: block; margin-bottom: 5px; color: var(--red); font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.release-card strong { color: var(--red); font-size: clamp(26px, 2.3vw, 38px); line-height: 1; letter-spacing: -.035em; }

.hero-visual { position: relative; min-height: 620px; overflow: hidden; background: #111; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; object-position: 64% center; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,9,10,.3), transparent 38%); pointer-events: none; }
.hero-claim {
  position: absolute; z-index: 2; left: 9%; bottom: 12%; color: #fff;
  font-size: clamp(22px, 2.1vw, 34px); line-height: 1.12; font-weight: 700; letter-spacing: -.025em;
}
.corner-shape {
  position: absolute; z-index: 2; right: -1px; bottom: -1px; width: clamp(170px, 19vw, 300px); aspect-ratio: 1.5;
  background: linear-gradient(135deg, transparent 50%, var(--red) 50%);
}
.corner-shape::after { content: ""; position: absolute; inset: 28% 0 0 35%; background: rgba(130,0,8,.32); clip-path: polygon(0 0,100% 100%,100% 0); }
.rail-line {
  position: absolute; z-index: 4; left: 0; right: 0; bottom: 34px; height: 4px; background: var(--line);
  transform-origin: left center;
}
.rail-line::before { content: ""; position: absolute; left: 0; top: -30px; width: 86px; height: 34px; border: 4px solid var(--line); border-width: 0 0 4px 4px; transform: skewX(45deg); }
.rail-node { position: absolute; top: 50%; width: 23px; height: 23px; border: 4px solid var(--line); border-radius: 50%; background: #fff; transform: translate(-50%,-50%); }
.rail-node:first-child { left: 6%; } .rail-node:last-child { left: 55%; }

.section { padding: var(--section-space) max(48px, calc((100vw - 1440px) / 2)); }
.section-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(64px, 8vw, 130px); align-items: center; }
.section h2, .participation h2 { margin-bottom: 28px; font-size: clamp(42px, 4.5vw, 70px); line-height: .98; letter-spacing: -.05em; }
.section-copy > p:not(.eyebrow), .section-heading > p:not(.eyebrow), .trust-copy > p:not(.eyebrow) { max-width: 780px; font-size: clamp(17px, 1.35vw, 21px); line-height: 1.5; color: #363a3f; }
.strong-line { font-weight: 760; color: var(--ink) !important; }
.statement-card { min-height: 290px; padding: 52px; display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: 42px; border-left: 1px solid var(--line); }
.statement-card p { margin: 0; color: var(--red); font-size: clamp(25px, 2.3vw, 38px); line-height: 1.42; font-weight: 760; letter-spacing: .08em; text-transform: uppercase; }
.brand-mark { width: 110px; height: 130px; object-fit: contain; }

.topics { position: relative; background: #fbfbfb; border-top: 1px solid #eee; border-bottom: 1px solid #eee; overflow: hidden; }
.section-heading { margin-bottom: clamp(50px, 6vw, 88px); }
.topic-grid { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(4,1fr); gap: clamp(24px, 3vw, 48px); }
.topic-track { position: absolute; top: clamp(300px, 26vw, 405px); left: 0; right: 0; height: 4px; background: var(--line); }
.topic-track::before, .topic-track::after { content:""; position:absolute; top:-1px; width:70px; height:4px; background:var(--line); }
.topic-track::before { left:-20px; transform:rotate(45deg); transform-origin:right; }
.topic-track::after { right:-20px; transform:rotate(45deg); transform-origin:left; }
.topic-track span { position: absolute; top: 50%; width: 20px; height: 20px; border: 4px solid var(--red); border-radius: 50%; background: #fff; transform: translate(-50%,-50%); }
.topic-track span:nth-child(1){left:12.5%}.topic-track span:nth-child(2){left:37.5%}.topic-track span:nth-child(3){left:62.5%}.topic-track span:nth-child(4){left:87.5%}
.topic-card { text-align: center; }
.icon-disc { width: 92px; height: 92px; margin: 0 auto 28px; display: grid; place-items: center; border-radius: 50%; background: #eef0f2; }
.icon-disc svg { width: 52px; height: 52px; fill: none; stroke: var(--ink); stroke-width: 2.3; stroke-linecap: round; stroke-linejoin: round; }
.topic-card h3 { max-width: 270px; margin: 0 auto 14px; font-size: clamp(20px, 1.65vw, 27px); line-height: 1.08; letter-spacing: -.03em; }
.topic-card p { max-width: 270px; margin: 0 auto; color: var(--muted); font-size: 17px; line-height: 1.45; }

.audience-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5,1fr); list-style: none; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.audience-list li { min-height: 155px; padding: 26px 24px; border-right: 1px solid var(--line); }
.audience-list li:last-child { border: 0; }
.audience-list span { display: block; margin-bottom: 28px; color: var(--red); font-size: 13px; font-weight: 800; letter-spacing: .12em; }
.audience-list strong { font-size: 17px; line-height: 1.28; }

.trust { display: grid; grid-template-columns: 1.4fr .6fr; align-items: center; gap: clamp(60px, 8vw, 130px); background: #fafafa; }
.benefit-card { padding: 42px; display: flex; align-items: center; gap: 35px; background: #eef0f2; }
.benefit-card svg { width: 70px; min-width: 70px; fill: none; stroke: var(--ink); stroke-width: 2.5; stroke-linejoin: round; }
.benefit-card svg path:last-child { stroke: var(--red); }
.benefit-card span { font-size: 21px; line-height: 1.25; font-weight: 720; }

.participation { display: grid; grid-template-columns: 1.1fr .9fr; min-height: 440px; }
.participation-primary { position: relative; padding: clamp(60px, 7vw, 110px) max(48px, calc((100vw - 1440px) / 2)); color: #fff; background: linear-gradient(135deg, #ef0715, #b9000a); overflow: hidden; }
.participation-primary::before, .participation-primary::after { content:""; position:absolute; width:300px; height:300px; background:rgba(120,0,8,.23); transform:rotate(45deg); }
.participation-primary::before { right:-80px; top:-160px; }.participation-primary::after { right:120px; bottom:-240px; }
.participation-primary > * { position: relative; z-index: 1; }
.eyebrow.light { color: #fff; }
.participation-primary h2 { font-size: clamp(46px, 5vw, 78px); }
.participation-primary p:last-child { max-width: 650px; font-size: 19px; line-height: 1.5; }
.participation-action { padding: clamp(60px, 7vw, 110px) max(48px, calc((100vw - 1440px) / 2)) clamp(60px, 7vw, 110px) clamp(48px, 6vw, 100px); display: flex; flex-direction: column; justify-content: center; background: #f0f2f3; }
.survey-button { width: min(580px,100%); min-height: 78px; padding: 18px 26px; display: grid; grid-template-columns: 32px 1fr auto; align-items:center; gap:20px; color:#8d939a; border:2px solid #b8bec4; background:transparent; text-align:left; font-weight:700; clip-path:polygon(0 0,calc(100% - 24px) 0,100% 24px,100% 100%,0 100%); }
.survey-button svg { width:30px; fill:none; stroke:currentColor; stroke-width:1.8; }
.participation-action p { margin: 20px 0 16px; color: var(--muted); font-size: 16px; }
.text-link { width: fit-content; color: var(--red); font-weight: 750; text-underline-offset: 4px; }

.site-footer { padding: 52px max(48px, calc((100vw - 1440px) / 2)); display: grid; grid-template-columns: .8fr 1.6fr .5fr; gap: 64px; border-top: 1px solid var(--line); }
.footer-brand img { width: 190px; margin-bottom: 12px; }
.footer-brand span { font-size: 11px; font-weight: 750; letter-spacing: .18em; text-transform: uppercase; }
.footer-contact { display: grid; grid-template-columns: auto 1fr 1fr; gap: 30px; }
.footer-contact .eyebrow { grid-column: 1/-1; margin-bottom: -10px; }
.footer-contact div { display:flex; flex-direction:column; gap:4px; }
.footer-contact span, .footer-contact a, .footer-links a { font-size: 14px; }
.footer-contact a { text-decoration: none; }
.footer-links { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }

.reveal { opacity: 0; transform: translateY(38px); transition: opacity .75s cubic-bezier(.2,.75,.2,1), transform .75s cubic-bezier(.2,.75,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.topic-card:nth-child(2), .audience-list li:nth-child(2) { transition-delay: .08s; }
.topic-card:nth-child(3), .audience-list li:nth-child(3) { transition-delay: .16s; }
.topic-card:nth-child(4), .audience-list li:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1080px) {
  :root { --page: calc(100vw - 56px); }
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-copy { padding-left: 32px; padding-right: 46px; }
  .section, .site-footer { padding-left: 32px; padding-right: 32px; }
  .topic-grid { grid-template-columns: repeat(2,1fr); gap: 64px 30px; }
  .topic-track { display:none; }
  .audience-list { grid-template-columns: repeat(2,1fr); }
  .audience-list li:nth-child(even) { border-right:0; }
  .audience-list li:last-child { grid-column:1/-1; border-top:1px solid var(--line); }
  .site-footer { grid-template-columns:1fr 2fr; }.footer-links{grid-column:1/-1;flex-direction:row;}
}

@media (max-width: 760px) {
  :root { --header-height: 72px; --section-space: 76px; }
  .site-header { height: var(--header-height); padding: 0 20px; }
  .brand img { width: 174px; }
  .menu-toggle { position:relative; z-index:102; width:48px; height:48px; display:grid; place-content:center; gap:7px; border:0; background:transparent; }
  .menu-toggle span:not(.sr-only) { width:27px; height:2px; display:block; background:var(--ink); transition:transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:nth-last-child(2){transform:translateY(4.5px) rotate(45deg)}
  .menu-toggle[aria-expanded="true"] span:last-child{transform:translateY(-4.5px) rotate(-45deg)}
  .site-nav { position:fixed; inset:0; padding:120px 32px 48px; display:flex; flex-direction:column; align-items:flex-start; gap:30px; background:#fff; transform:translateX(100%); transition:transform .35s cubic-bezier(.2,.75,.2,1); }
  .site-nav.is-open { transform:translateX(0); }.site-nav>a{font-size:32px;letter-spacing:-.04em}.nav-divider{width:100%;height:1px}.language-switch{font-size:17px}
  .hero { min-height: auto; display: flex; flex-direction: column; padding-top: var(--header-height); }
  .hero-copy { padding: 66px 22px 48px; order:1; }
  .hero-copy::after { display:none; }
  h1 {
    max-width: 100%;
    font-size: clamp(37px, 10.2vw, 48px);
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: manual;
  }
  .hero-copy, .hero-visual { width: 100%; min-width: 0; }
  .hero .eyebrow { max-width: 100%; font-size: 11px; line-height: 1.45; overflow-wrap: anywhere; }
  .hero-intro { font-size:18px; }
  .release-card { min-height:96px; padding:18px 28px 18px 18px; gap:16px; }
  .release-card svg { width:38px; }.release-card strong{font-size:25px}
  .hero-visual { height: 70svh; min-height: 520px; order:2; clip-path:polygon(0 0,100% 0,100% 100%,0 calc(100% - 55px)); }
  .hero-visual img { object-position:63% center; }
  .hero-claim { left:24px; bottom:86px; font-size:25px; }.corner-shape{width:180px;bottom:30px}
  .hero-line { display:none; }
  .section { padding: var(--section-space) 22px; }
  .section-grid, .trust { grid-template-columns:1fr; gap:44px; }
  .section h2, .participation h2 { font-size: clamp(40px, 12vw, 58px); }
  .statement-card { min-height:auto; padding:36px 0 0; grid-template-columns:82px 1fr; gap:24px; border-left:0;border-top:1px solid var(--line); }
  .brand-mark{width:72px;height:90px}.statement-card p{font-size:23px;line-height:1.35}
  .topic-grid { grid-template-columns:1fr; gap:52px; }.topic-card{display:grid;grid-template-columns:76px 1fr;text-align:left;column-gap:22px}.icon-disc{grid-row:1/3;width:76px;height:76px;margin:0}.icon-disc svg{width:43px}.topic-card h3,.topic-card p{max-width:none;margin-left:0}.topic-card h3{font-size:22px}
  .audience-list { grid-template-columns:1fr; }.audience-list li,.audience-list li:nth-child(even),.audience-list li:last-child { min-height:auto; grid-column:auto; display:grid;grid-template-columns:45px 1fr;align-items:center;border:0;border-top:1px solid var(--line);padding:21px 4px}.audience-list li:last-child{border-bottom:1px solid var(--line)}.audience-list span{margin:0}
  .benefit-card { padding:28px; gap:22px; }.benefit-card svg{width:55px;min-width:55px}.benefit-card span{font-size:18px}
  .participation { grid-template-columns:1fr; }.participation-primary,.participation-action{padding:68px 22px}.participation-primary h2{font-size:52px}.survey-button{min-height:72px;padding:14px 18px;gap:12px;font-size:14px}
  .site-footer { padding:48px 22px; grid-template-columns:1fr; gap:38px; }.footer-contact{grid-template-columns:1fr;gap:24px}.footer-links{grid-column:auto;flex-direction:row;flex-wrap:wrap;gap:20px}
}

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

@media print {
  .site-header { position:static; }.hero{padding-top:0}.reveal{opacity:1;transform:none}.menu-toggle{display:none}
}
