:root {
  --bg: #0b0806;
  --bg-soft: #130d09;
  --panel: #17100b;
  --orange: #ff641f;
  --orange-2: #ff8a3d;
  --orange-3: #ffb26f;
  --cream: #fff8f1;
  --muted: #b8aaa0;
  --line: rgba(255,255,255,.11);
  --shadow: 0 30px 80px rgba(0,0,0,.38);
  --radius: 28px;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--cream);
  background:
    radial-gradient(circle at 65% 20%, rgba(255,100,31,.08), transparent 28%),
    linear-gradient(180deg, #090604 0%, #0c0806 100%);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

img {
  max-width: 100%;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .035;
  background-image:
    repeating-radial-gradient(circle at 0 0, transparent 0, #fff 1px, transparent 2px);
  background-size: 5px 5px;
  mix-blend-mode: soft-light;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4vw;
  border-bottom: 1px solid transparent;
  transition: .35s ease;
}

.topbar.scrolled {
  height: 72px;
  background: rgba(11,8,6,.76);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255,255,255,.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -.02em;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(255,100,31,.25));
}

.nav {
  display: flex;
  gap: 28px;
  color: rgba(255,248,241,.72);
  font-size: 14px;
}

.nav a {
  transition: .2s ease;
}

.nav a:hover {
  color: #fff;
}

.top-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  font-size: 14px;
  background: rgba(255,255,255,.035);
  transition: .25s ease;
}

.top-cta:hover {
  border-color: rgba(255,100,31,.7);
  background: rgba(255,100,31,.08);
}

/* HERO */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 5vw;
  padding: 140px max(5vw, calc((100vw - var(--max))/2)) 90px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11,8,6,.98) 0%, rgba(11,8,6,.78) 44%, rgba(11,8,6,.18) 100%),
    radial-gradient(circle at 78% 47%, rgba(255,100,31,.16), transparent 34%);
  pointer-events: none;
}

.hero-light {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: .32;
  pointer-events: none;
}

.hero-light-a {
  width: 600px;
  height: 600px;
  right: -220px;
  top: -130px;
  background: rgba(255,100,31,.28);
}

.hero-light-b {
  width: 340px;
  height: 340px;
  left: 30%;
  bottom: -130px;
  background: rgba(255,134,44,.12);
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 720px;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 12px;
  color: var(--orange-2);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(255,100,31,.28);
  border-radius: 999px;
  background: rgba(255,100,31,.06);
  margin-bottom: 26px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255,100,31,.12);
}

.hero h1 {
  font-family: "Manrope", sans-serif;
  margin: 0;
  font-size: clamp(50px, 6.1vw, 96px);
  line-height: .97;
  letter-spacing: -.055em;
  max-width: 880px;
}

.hero h1 .accent {
  color: var(--orange);
  display: inline-block;
  text-shadow: 0 0 40px rgba(255,100,31,.16);
}

.hero-lead {
  max-width: 640px;
  margin: 28px 0 0;
  color: #d7cbc3;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.65;
}

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

.primary-button,
.secondary-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 23px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.primary-button {
  background: linear-gradient(135deg, var(--orange), #ff7e34);
  color: #fff;
  box-shadow: 0 16px 40px rgba(255,100,31,.22);
  font-weight: 700;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 46px rgba(255,100,31,.34);
}

.secondary-button {
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  color: #fff;
}

.secondary-button:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.08);
}

.play-icon {
  font-size: 12px;
}

.hero-proof {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  gap: 34px;
}

.hero-proof div {
  display: grid;
  gap: 5px;
}

.hero-proof strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.hero-proof span {
  color: #9f9087;
  font-size: 12px;
}

/* WORLD */
.world-stage {
  position: relative;
  z-index: 3;
  width: min(46vw, 650px);
  aspect-ratio: 1 / 1;
  justify-self: end;
  perspective: 1500px;
  isolation: isolate;
}

.world-stage::before {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,139,58,.20), rgba(255,100,31,.08) 38%, transparent 70%);
  filter: blur(14px);
  animation: breathe 4.4s ease-in-out infinite;
}

.world-3d {
  position: absolute;
  inset: 13%;
  transform-style: preserve-3d;
  animation: worldFloat 6s ease-in-out infinite;
}

.world-shell {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: worldTurn 12s ease-in-out infinite;
  filter: drop-shadow(0 45px 80px rgba(0,0,0,.55));
}

.world-face {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #050302;
  box-shadow:
    inset -40px -24px 60px rgba(0,0,0,.48),
    inset 20px 12px 30px rgba(255,255,255,.06),
    0 0 0 1px rgba(255,255,255,.07);
}

.world-face::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.20), transparent 17%),
    linear-gradient(110deg, rgba(255,255,255,.07), transparent 35%, rgba(0,0,0,.22) 75%),
    radial-gradient(circle at 72% 65%, transparent 32%, rgba(0,0,0,.42) 86%);
  pointer-events: none;
}

.world-face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.055);
  user-select: none;
}

.world-rim {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, rgba(255,100,31,.1), rgba(255,180,99,.6), rgba(255,100,31,.08), rgba(255,255,255,.5), rgba(255,100,31,.1));
  filter: blur(1px);
  transform: translateZ(-4px);
}

.world-shine {
  position: absolute;
  width: 34%;
  height: 48%;
  left: 17%;
  top: 12%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.27), rgba(255,255,255,.02) 70%);
  filter: blur(2px);
  transform: translateZ(26px) rotate(-24deg);
  pointer-events: none;
}

.world-shadow {
  position: absolute;
  width: 58%;
  height: 12%;
  bottom: 10%;
  left: 22%;
  background: rgba(0,0,0,.65);
  border-radius: 50%;
  filter: blur(26px);
  transform: rotateX(70deg);
}

.orbit {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255,140,68,.22);
  border-radius: 50%;
  transform-style: preserve-3d;
}

.orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 50%;
  top: 12%;
  left: 27%;
  box-shadow: 0 0 20px rgba(255,100,31,.9);
}

.orbit-1 {
  transform: rotateX(64deg) rotateZ(10deg);
  animation: orbitSpinA 14s linear infinite;
}

.orbit-2 {
  inset: 3%;
  transform: rotateX(70deg) rotateY(35deg) rotateZ(-18deg);
  opacity: .5;
  animation: orbitSpinB 18s linear infinite reverse;
}

.orbit-3 {
  inset: 18%;
  transform: rotateY(68deg) rotateZ(26deg);
  opacity: .28;
  animation: orbitSpinC 11s linear infinite;
}

.floating-label {
  position: absolute;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: #e9ddd5;
  background: rgba(22,14,10,.62);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.floating-label span {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(255,100,31,.8);
}

.label-one {
  left: 4%;
  top: 31%;
  animation: labelFloat 4.6s ease-in-out infinite;
}

.label-two {
  right: 0;
  top: 48%;
  animation: labelFloat 5.2s ease-in-out .6s infinite;
}

.label-three {
  left: 20%;
  bottom: 13%;
  animation: labelFloat 5s ease-in-out 1.1s infinite;
}

.scroll-cue {
  position: absolute;
  z-index: 6;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255,255,255,.45);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
}

.scroll-cue i {
  display: block;
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--orange), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

/* SECTIONS */
.section {
  width: min(var(--max), calc(100% - 10vw));
  margin: 0 auto;
  padding: 130px 0;
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 54px;
}

.section-head h2,
.manifesto h2,
.association h2,
.partnership h2,
.finale h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(38px, 4.8vw, 70px);
  line-height: 1.04;
  letter-spacing: -.045em;
}

.section-head h2 span,
.manifesto h2 span,
.partnership h2 span {
  color: var(--orange);
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}

.section-label {
  margin-bottom: 18px;
}

.section-label.light {
  color: #ffd7bf;
}

/* MANIFESTO */
.manifesto-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 90px;
  align-items: start;
}

.manifesto h2 span {
  display: block;
}

.manifesto-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.manifesto-copy p:first-child {
  color: #e7dbd3;
}

.impact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 80px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  overflow: hidden;
}

.impact-card {
  padding: 34px;
  background: rgba(255,255,255,.025);
  min-height: 240px;
  transition: .25s ease;
}

.impact-card:hover {
  background: rgba(255,100,31,.06);
}

.impact-index {
  color: var(--orange);
  font-size: 12px;
  letter-spacing: .15em;
}

.impact-card h3 {
  margin: 52px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 29px;
}

.impact-card p {
  color: var(--muted);
  line-height: 1.6;
  max-width: 280px;
}

/* STORY */
.story {
  width: 100%;
  padding-left: max(5vw, calc((100vw - var(--max))/2));
  padding-right: max(5vw, calc((100vw - var(--max))/2));
  background:
    radial-gradient(circle at 15% 60%, rgba(255,100,31,.08), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.018), transparent);
}

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

.video-card {
  min-height: 340px;
  position: relative;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 26px;
  overflow: hidden;
  cursor: pointer;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,100,31,.12), transparent 35%),
    linear-gradient(155deg, rgba(255,255,255,.045), rgba(255,255,255,.012));
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.video-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, transparent 0 45%, rgba(255,100,31,.03) 100%);
  opacity: 0;
  transition: .3s;
}

.video-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,100,31,.35);
  box-shadow: 0 28px 60px rgba(0,0,0,.2);
}

.video-card:hover::before {
  opacity: 1;
}

.video-card.featured {
  grid-column: span 2;
  min-height: 410px;
  background:
    radial-gradient(circle at 82% 50%, rgba(255,100,31,.22), transparent 27%),
    linear-gradient(120deg, #17100b 0%, #100a07 70%);
}

.video-number {
  position: absolute;
  right: 26px;
  top: 22px;
  font-family: "Manrope", sans-serif;
  font-size: 72px;
  line-height: 1;
  font-weight: 800;
  color: rgba(255,255,255,.035);
}

.video-card-copy {
  position: relative;
  z-index: 2;
  width: min(78%, 640px);
  margin-top: 118px;
}

.featured .video-card-copy {
  width: min(62%, 700px);
  margin-top: 170px;
}

.video-kicker {
  color: var(--orange-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.video-card h3 {
  margin: 12px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.1;
  letter-spacing: -.03em;
}

.video-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.round-play {
  position: absolute;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.045);
  color: #fff;
  cursor: pointer;
  transition: .25s ease;
}

.video-card:hover .round-play {
  background: var(--orange);
  border-color: var(--orange);
  transform: scale(1.06);
}

/* JOURNEY */
.journey {
  overflow: hidden;
}

.journey-bg-word {
  position: absolute;
  right: -3vw;
  top: 160px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(100px, 17vw, 250px);
  font-weight: 800;
  letter-spacing: -.06em;
  color: rgba(255,255,255,.018);
  pointer-events: none;
}

.journey-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 72px;
  position: relative;
}

.journey-line::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  top: 21px;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), rgba(255,255,255,.12));
}

.journey-step {
  position: relative;
  padding-right: 34px;
}

.journey-step span {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid rgba(255,100,31,.6);
  color: var(--orange);
  font-size: 11px;
}

.journey-step h3 {
  margin: 26px 0 10px;
  font-family: "Manrope", sans-serif;
  font-size: 26px;
}

.journey-step p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ASSOCIATION */
.association {
  width: 100%;
  padding-left: max(5vw, calc((100vw - var(--max))/2));
  padding-right: max(5vw, calc((100vw - var(--max))/2));
}

.association-panel {
  padding: clamp(38px, 6vw, 80px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 92% 14%, rgba(255,190,130,.18), transparent 30%),
    linear-gradient(135deg, #ff641f 0%, #dc4c0c 55%, #b53808 100%);
  box-shadow: 0 40px 90px rgba(196,67,10,.16);
}

.association-copy {
  max-width: 920px;
}

.association h2 {
  color: #fff;
  max-width: 940px;
}

.association-copy p {
  max-width: 760px;
  color: rgba(255,255,255,.84);
  line-height: 1.75;
  font-size: 18px;
}

.association-equation {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1.15fr;
  gap: 14px;
  align-items: stretch;
  margin-top: 56px;
}

.equation-box {
  padding: 22px;
  border-radius: 20px;
  background: rgba(58,14,0,.18);
  border: 1px solid rgba(255,255,255,.16);
  display: grid;
  gap: 10px;
}

.equation-box span {
  color: rgba(255,255,255,.7);
  font-size: 12px;
}

.equation-box strong {
  font-family: "Manrope", sans-serif;
  font-size: 21px;
}

.equation-box.highlighted {
  background: #fff8f1;
  color: #3d1304;
}

.equation-box.highlighted span {
  color: #7c4a36;
}

.equation-sign {
  display: grid;
  place-items: center;
  font-size: 25px;
  color: rgba(255,255,255,.7);
}

/* BUSINESS */
.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.business-card {
  padding: 32px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.025);
  transition: .25s ease;
}

.business-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,100,31,.32);
}

.business-icon {
  width: 58px;
  height: 58px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: rgba(255,100,31,.10);
  border: 1px solid rgba(255,100,31,.24);
  color: var(--orange);
  font-weight: 800;
  font-family: "Manrope", sans-serif;
}

.business-card h3 {
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  margin: 28px 0 12px;
}

.business-card p,
.business-card li {
  color: var(--muted);
  line-height: 1.65;
}

.business-card ul {
  margin: 24px 0 0;
  padding: 20px 0 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.08);
}

.business-card li {
  padding: 7px 0;
  font-size: 14px;
}

.business-card li::before {
  content: "•";
  color: var(--orange);
  margin-right: 8px;
}

/* PARTNERSHIP */
.partnership {
  width: 100%;
  padding-left: max(5vw, calc((100vw - var(--max))/2));
  padding-right: max(5vw, calc((100vw - var(--max))/2));
  background:
    radial-gradient(circle at 70% 30%, rgba(255,100,31,.17), transparent 32%),
    #120b08;
}

.partnership-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.partnership h2 {
  max-width: 1000px;
}

.partnership h2 span {
  display: block;
  margin-top: 10px;
}

.partnership-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 62px;
}

.partnership-options a {
  min-height: 180px;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.03);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: end;
  transition: .25s ease;
}

.partnership-options a:hover {
  transform: translateY(-4px);
  border-color: rgba(255,100,31,.45);
  background: rgba(255,100,31,.06);
}

.partnership-options > a > span {
  color: var(--orange);
  align-self: start;
  font-size: 12px;
}

.partnership-options strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}

.partnership-options small {
  display: block;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 7px;
}

.partnership-options b {
  font-size: 26px;
  color: var(--orange);
}

/* FINALE */
.finale {
  min-height: 72vh;
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.finale-world {
  width: min(380px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  position: relative;
  animation: finaleFloat 7s ease-in-out infinite;
}

.finale-world::before {
  content: "";
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,100,31,.18), transparent 70%);
  filter: blur(15px);
}

.finale-world img {
  width: 100%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 35px 60px rgba(0,0,0,.45));
}

.finale-copy p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 18px;
  max-width: 720px;
  margin: 24px 0 30px;
}

/* FOOTER */
footer {
  width: min(var(--max), calc(100% - 10vw));
  margin: 0 auto;
  padding: 28px 0 38px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #81736b;
  font-size: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.footer-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

/* MODAL */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(4,2,1,.93);
  backdrop-filter: blur(24px);
  display: grid;
  place-items: center;
  padding: 4vw;
  opacity: 0;
  pointer-events: none;
  transition: .3s ease;
}

.video-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: min(1120px, 100%);
}

.modal-meta {
  margin-bottom: 18px;
}

.modal-meta span {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 11px;
  font-weight: 700;
}

.modal-meta h2 {
  margin: 8px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 4vw, 48px);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.video-frame {
  aspect-ratio: 16/9;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: none;
  object-fit: contain;
  background: #000;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  text-align: center;
  padding: 30px;
  background:
    radial-gradient(circle at 50% 40%, rgba(255,100,31,.13), transparent 34%),
    #0d0906;
}

.video-placeholder strong {
  font-size: 20px;
}

.video-placeholder span {
  color: var(--muted);
  font-size: 14px;
}

.video-placeholder code {
  color: var(--orange-2);
}

.placeholder-play {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,100,31,.45);
  background: rgba(255,100,31,.1);
  color: var(--orange);
  margin-bottom: 8px;
}

/* REVEAL */
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity .8s cubic-bezier(.2,.7,.2,1),
    transform .8s cubic-bezier(.2,.7,.2,1);
}

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

/* ANIMATIONS */
@keyframes worldTurn {
  0%   { transform: rotateX(-5deg) rotateY(-14deg) rotateZ(-1deg); }
  25%  { transform: rotateX(4deg) rotateY(10deg) rotateZ(1deg); }
  50%  { transform: rotateX(-2deg) rotateY(16deg) rotateZ(-1deg); }
  75%  { transform: rotateX(5deg) rotateY(-8deg) rotateZ(1deg); }
  100% { transform: rotateX(-5deg) rotateY(-14deg) rotateZ(-1deg); }
}

@keyframes worldFloat {
  0%,100% { transform: translateY(0) rotateZ(-1deg); }
  50% { transform: translateY(-18px) rotateZ(1deg); }
}

@keyframes breathe {
  0%,100% { transform: scale(.93); opacity: .28; }
  50% { transform: scale(1.06); opacity: .45; }
}

@keyframes orbitSpinA {
  to { transform: rotateX(64deg) rotateZ(370deg); }
}

@keyframes orbitSpinB {
  to { transform: rotateX(70deg) rotateY(35deg) rotateZ(342deg); }
}

@keyframes orbitSpinC {
  to { transform: rotateY(68deg) rotateZ(386deg); }
}

@keyframes labelFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes scrollPulse {
  0%,100% { transform: scaleY(.55); opacity: .4; transform-origin: top; }
  50% { transform: scaleY(1); opacity: 1; transform-origin: top; }
}

@keyframes finaleFloat {
  0%,100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 130px;
    text-align: center;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(11,8,6,.92) 0%, rgba(11,8,6,.6) 48%, rgba(11,8,6,.92) 100%),
      radial-gradient(circle at 50% 64%, rgba(255,100,31,.16), transparent 34%);
  }

  .hero-copy {
    margin: 0 auto;
  }

  .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .world-stage {
    width: min(78vw, 600px);
    justify-self: center;
    margin-top: -20px;
  }

  .section-head,
  .manifesto-grid,
  .finale {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .impact-strip,
  .business-grid,
  .partnership-options {
    grid-template-columns: 1fr;
  }

  .association-equation {
    grid-template-columns: 1fr;
  }

  .equation-sign {
    min-height: 24px;
  }

  .journey-line {
    grid-template-columns: 1fr 1fr;
    gap: 50px 24px;
  }

  .journey-line::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .topbar {
    height: 70px;
    padding: 0 18px;
  }

  .top-cta {
    display: none;
  }

  .hero {
    padding: 105px 22px 75px;
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-proof {
    gap: 17px;
    justify-content: space-between;
  }

  .hero-proof strong {
    font-size: 15px;
  }

  .hero-proof span {
    font-size: 10px;
  }

  .world-stage {
    width: 96vw;
    margin-left: -10vw;
    margin-right: -10vw;
  }

  .floating-label {
    font-size: 10px;
  }

  .section {
    width: calc(100% - 40px);
    padding: 92px 0;
  }

  .story,
  .association,
  .partnership {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-head h2,
  .manifesto h2,
  .association h2,
  .partnership h2,
  .finale h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

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

  .video-card.featured {
    grid-column: span 1;
  }

  .video-card,
  .video-card.featured {
    min-height: 320px;
  }

  .featured .video-card-copy,
  .video-card-copy {
    width: 82%;
    margin-top: 120px;
  }

  .journey-line {
    grid-template-columns: 1fr;
  }

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

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


/* Acessibilidade e otimização técnica */
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 12px 16px;
  border-radius: 10px;
  background: #fff8f1;
  color: #0b0806;
  font-weight: 700;
  transform: translateY(-180%);
  transition: transform .2s ease;
}

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

:focus-visible {
  outline: 3px solid #ff8a3d;
  outline-offset: 4px;
}

.video-grid > a.video-card {
  color: inherit;
  text-decoration: none;
}

.chapter-arrow {
  display: grid;
  place-items: center;
  pointer-events: none;
  font-size: 22px;
}

.video-card:hover .chapter-arrow {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateX(3px);
}

footer a {
  color: #b8aaa0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

footer a:hover {
  color: #fff8f1;
}

@media (prefers-reduced-data: reduce) {
  .noise,
  .hero-light,
  .orbit {
    display: none;
  }
}
