:root {
  --black: #1d1d20;
  --dark: #101012;
  --ink: #303036;
  --muted: #696971;
  --line: #e8e4df;
  --paper: #f7f3ed;
  --paper-2: #fffaf2;
  --white: #ffffff;
  --accent: #e83f8f;
  --accent-2: #26b7c8;
  --shadow: 0 24px 70px rgba(16, 16, 18, .14);
  --radius: 28px;
  --container: 1180px;
  --wide: 1320px;
  --font-title: "Archivo Black", Impact, sans-serif;
  --font-body: "Manrope", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--black);
  background:
    radial-gradient(circle at 5% 9rem, rgba(38, 183, 200, .13), transparent 23rem),
    radial-gradient(circle at 88% 10rem, rgba(232, 63, 143, .13), transparent 24rem),
    linear-gradient(180deg, var(--paper-2), #fff 48rem);
  font-family: var(--font-body);
  line-height: 1.58;
}

a { color: inherit; text-decoration: none; }
img, video { display: block; max-width: 100%; }
p, h1, h2, h3, figure { margin-top: 0; }

.container {
  width: min(var(--container), calc(100% - 44px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 242, .94);
  border-bottom: 1px solid rgba(29, 29, 32, .08);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: clamp(170px, 15vw, 230px); height: auto; }

.brand-links {
  display: grid;
  gap: 3px;
  margin-right: auto;
  font-size: .9rem;
  font-weight: 900;
  line-height: 1.15;
}

.brand-links a { width: max-content; }
.brand-links a:hover,
.nav a:hover { color: var(--accent); }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 34px);
  color: var(--ink);
  font-weight: 900;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font: 900 .82rem var(--font-body);
  letter-spacing: .055em;
  text-transform: uppercase;
}

.btn-light {
  background: rgba(255, 255, 255, .62);
  color: var(--black);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
}

h1, h2 {
  font-family: var(--font-title);
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 6vw, 92px) 0 clamp(48px, 7vw, 96px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.76), rgba(255,255,255,.22) 52%, rgba(255,255,255,.7));
  pointer-events: none;
}

.big-bg-title {
  position: absolute;
  top: clamp(40px, 5vw, 76px);
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  color: rgba(29, 29, 32, .055);
  font-family: var(--font-title);
  font-size: clamp(6rem, 13vw, 13rem);
  line-height: .75;
  text-transform: uppercase;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  width: min(var(--wide), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(38px, 5vw, 92px);
}

.hero-copy {
  max-width: 560px;
  min-width: 0;
}

h1 {
  margin-bottom: 18px;
  line-height: .92;
}

.title-main,
.title-rest { display: block; }

.title-main span {
  display: inline;
}

.title-main {
  font-size: clamp(3.2rem, 4.9vw, 5.85rem);
  line-height: .86;
}

.title-rest {
  max-width: 540px;
  margin-top: 14px;
  font-size: clamp(1.45rem, 2.1vw, 2.35rem);
  line-height: 1.08;
}

.hero-subtitle {
  max-width: 600px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.35vw, 1.36rem);
  font-weight: 900;
  line-height: 1.28;
}

.lead {
  max-width: 560px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.03rem;
}

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

.hero-media {
  position: relative;
  min-height: clamp(430px, 44vw, 590px);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(29, 29, 32, .12);
  border-radius: clamp(28px, 4vw, 48px);
  background: var(--black);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.06);
  transform: scale(1.32);
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(135deg, rgba(16, 16, 18, .62), rgba(16, 16, 18, .08) 58%, rgba(232, 63, 143, .28)),
    radial-gradient(circle at 82% 18%, rgba(38, 183, 200, .3), transparent 24rem);
}

.hero-video-trigger {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  padding: 12px 18px 12px 12px;
  background: rgba(16, 16, 18, .38);
  color: var(--white);
  font: 900 .78rem var(--font-body);
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
  backdrop-filter: blur(16px);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.hero-video-trigger:hover,
.hero-video-trigger:focus-visible {
  background: rgba(16, 16, 18, .54);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .34);
  transform: translate(-50%, -50%) scale(1.035);
}

.hero-video-trigger:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .8);
  outline-offset: 4px;
}

.play-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 16px 34px rgba(0, 0, 0, .24);
}

.play-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid var(--white);
}

.summary-band {
  padding: clamp(34px, 5vw, 70px) 0 0;
}

.summary-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, .32fr);
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(28px, 4vw, 54px);
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}

.summary-card h2 {
  margin-bottom: 16px;
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
  line-height: .9;
}

.summary-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(1rem, 1.15vw, 1.13rem);
}

.facts {
  display: grid;
  gap: 12px;
  align-content: start;
}

.fact {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.09);
}

.fact b {
  display: block;
  color: var(--white);
  font-family: var(--font-title);
  font-size: clamp(1.45rem, 2.1vw, 2.1rem);
  line-height: 1;
}

.fact span {
  color: rgba(255,255,255,.72);
  font-size: .94rem;
}

.section {
  padding: clamp(70px, 8vw, 124px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(320px, 470px) minmax(0, 720px);
  gap: clamp(42px, 6vw, 92px);
  align-items: start;
}

.section-heading {
  min-width: 0;
}

.section-heading h2 {
  max-width: 470px;
  margin-bottom: 0;
  font-size: clamp(1.75rem, 2.15vw, 2.65rem);
  line-height: 1.04;
  overflow-wrap: normal;
}

.text-stack {
  display: grid;
  gap: 22px;
  max-width: 760px;
  min-width: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.25vw, 1.22rem);
}

.text-stack p { margin: 0; }
.text-stack strong { color: var(--black); font-weight: 900; }

.black-band {
  background: var(--black);
  color: var(--white);
}

.black-band .eyebrow,
.black-band .text-stack,
.black-band .text-stack p {
  color: rgba(255,255,255,.78);
}

.black-band h2,
.black-band strong { color: var(--white); }

.wide-media,
.media-grid {
  width: min(860px, calc(100% - 44px));
  margin: clamp(-28px, -2vw, -12px) auto clamp(44px, 5vw, 76px);
}

.wide-media {
  padding: 12px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(16, 16, 18, .1);
}

.wide-media img {
  width: 100%;
  max-height: 340px;
  aspect-ratio: 16 / 8.2;
  object-fit: cover;
  border-radius: 18px;
}

.wide-media figcaption,
.media-grid figcaption {
  margin: 14px 8px 2px;
  color: var(--muted);
  font-size: .95rem;
}

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

.media-grid figure {
  margin: 0;
  padding: 12px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(16, 16, 18, .1);
}

.media-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 18px;
}

.quote-panel {
  padding: clamp(30px, 5vw, 62px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 20%, rgba(232,63,143,.14), transparent 22rem),
    var(--paper);
  box-shadow: var(--shadow);
}

.quote-panel p {
  max-width: 1040px;
  margin: 0;
  color: var(--black);
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 900;
  line-height: 1.25;
  text-transform: none;
}

.final-section { padding-bottom: clamp(72px, 9vw, 140px); }

.footer {
  padding: 34px 0;
  border-top: 1px solid rgba(29,29,32,.08);
  color: var(--muted);
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 42px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility 0s linear .22s;
}

.video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

body.modal-open {
  overflow: hidden;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 75% 18%, rgba(232, 63, 143, .24), transparent 26rem),
    rgba(8, 8, 10, .78);
  backdrop-filter: blur(14px);
}

.video-modal-panel {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 32px), calc((86svh - 132px) * 1.777));
  max-height: 86svh;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: clamp(22px, 3vw, 38px);
  padding: clamp(16px, 2.4vw, 28px);
  background: rgba(255, 250, 242, .96);
  box-shadow: 0 40px 110px rgba(0, 0, 0, .42);
  transform: translateY(16px) scale(.98);
  transition: transform .22s ease;
}

.video-modal.is-open .video-modal-panel {
  transform: translateY(0) scale(1);
}

.video-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.video-modal-header .eyebrow {
  margin-bottom: 10px;
}

.video-modal-header h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 3.3rem);
  line-height: .92;
}

.video-modal-close {
  flex: 0 0 auto;
  min-height: 44px;
  border: 2px solid var(--black);
  border-radius: 999px;
  padding: 0 18px;
  background: var(--black);
  color: var(--white);
  font: 900 .74rem var(--font-body);
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
}

.modal-video {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: clamp(16px, 2vw, 26px);
  background: var(--black);
  object-fit: contain;
  pointer-events: none;
}

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

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .55s ease, transform .55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .hero-grid,
  .summary-card,
  .split {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .section-heading h2,
  .text-stack {
    max-width: 760px;
  }

  .hero-media {
    max-width: 820px;
  }
}

@media (max-width: 720px) {
  .container,
  .hero-grid,
  .wide-media,
  .media-grid {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .brand-links,
  .nav {
    width: 100%;
  }

  .nav {
    gap: 18px;
    flex-wrap: wrap;
  }

  .hero {
    padding: 42px 0 58px;
  }

  .hero-grid {
    width: 100%;
    padding: 0 14px;
  }

  .hero-copy,
  h1,
  .title-main,
  .title-rest,
  .hero-subtitle,
  .lead {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero-copy {
    max-width: 330px;
  }

  .big-bg-title {
    left: 0;
    transform: none;
    font-size: clamp(4.4rem, 24vw, 7rem);
  }

  .title-main {
    max-width: 100%;
    font-size: clamp(2rem, 9.2vw, 2.3rem);
    overflow-wrap: anywhere;
  }

  .title-main span {
    display: block;
  }

  .title-rest {
    max-width: 100%;
    font-size: clamp(1.12rem, 5vw, 1.45rem);
    overflow-wrap: anywhere;
  }

  .hero-actions {
    display: grid;
  }

  .hero-media {
    margin-top: 28px;
    border-radius: 28px;
    min-height: 310px;
  }

  .hero-video-trigger {
    width: min(300px, calc(100% - 28px));
    justify-content: center;
    white-space: nowrap;
  }

  .play-icon {
    width: 48px;
    height: 48px;
  }

  .section {
    padding: 58px 0;
  }

  .summary-card h2,
  .quote-panel p {
    font-size: clamp(2rem, 11vw, 3.25rem);
  }

  .section-heading h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

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

  .wide-media {
    padding: 12px;
    border-radius: 26px;
  }

  .wide-media img {
    max-height: 260px;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
