:root {
  --ink: #111111;
  --paper: #f6f3ee;
  --paper-deep: #e8e2d8;
  --white: #ffffff;
  --muted: #6b6964;
  --line: rgba(17, 17, 17, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);
  --mint: #64c5c1;
  --green: #00a341;
  --gold: #d3a746;
  --red: #b93b32;
  --blue: #1f5c96;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  --condensed: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.56));
  color: var(--white);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  mix-blend-mode: normal;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  width: 128px;
  min-width: 112px;
}

.brand-lockup img {
  width: 100%;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: var(--condensed);
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.94);
  text-decoration: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}

.section-dark {
  background: #080808;
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: 112px 5vw 46px;
}

.hero-bg,
.hero-overlay,
.closing-bg {
  position: absolute;
  inset: 0;
}

.hero-bg,
.closing-bg {
  overflow: hidden;
}

.hero-bg img,
.closing-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg img {
  opacity: 0.7;
  transform: scale(1.08);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.94) 0%, rgba(0, 0, 0, 0.7) 42%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--mint);
  font-family: var(--condensed);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--condensed);
  font-weight: 900;
  line-height: 0.93;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin-bottom: 28px;
  font-size: 84px;
}

h2 {
  margin-bottom: 28px;
  font-size: 60px;
}

h3 {
  margin-bottom: 16px;
  font-size: 28px;
  overflow-wrap: break-word;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

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

.button-primary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 6px;
  font-family: var(--condensed);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  background: var(--mint);
  color: #071011;
}

.button-ghost {
  border: 1px solid var(--line-light);
  color: var(--white);
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 860px;
  margin: 58px 0 0;
  padding-top: 28px;
  border-top: 1px solid var(--line-light);
}

.hero-stats div {
  min-width: 0;
}

.hero-stats dt {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 0;
  font-family: var(--condensed);
  font-size: 21px;
  font-weight: 900;
}

.split-section,
.product-world,
.strategy,

.partner-ask {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  padding: 118px 12vw;
}


.split-section,

.proof-actions {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.product-world {
  gap: clamp(44px, 5.2vw, 78px);
}


.split-section .section-copy h2 {
  max-width: 760px;
  font-size: clamp(36px, 3.8vw, 54px);
  line-height: 0.96;
  text-wrap: balance;
}

.section-copy,
.product-copy,
.strategy-copy {
  align-self: center;
}

.section-copy p,
.product-copy p,
.strategy-copy p,
.ask-panel p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
}

.section-dark .product-copy p,
.section-dark .strategy-copy p,
.section-dark .ask-panel p {
  color: rgba(255, 255, 255, 0.72);
}

.image-stack {
  display: grid;
  gap: 10px;
}

.image-stack img,
.strategy-media img,
.gallery-main,
.release-card,
.timeline-card,
.ask-panel {
  border-radius: 8px;
}

.wide-img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
}

.small-img-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.small-img-row img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  object-fit: cover;
}

.why-photo {
  align-self: center;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 58px rgba(17, 17, 17, 0.16);
}

.why-photo img {
  width: 100%;
  max-height: 520px;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  object-position: center 42%;
}

.proof-band {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 54px;
  padding: 100px 12vw;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

.proof-grid article {
  min-height: 190px;
  padding: 28px;
  background: var(--paper);
}

.proof-grid strong {
  display: block;
  margin-bottom: 18px;
  color: var(--mint);
  font-family: var(--condensed);
  font-size: 54px;
  line-height: 0.9;
  text-transform: uppercase;
}

.proof-grid span {
  display: block;
  max-width: 280px;
  color: var(--muted);
}

.product-world {
  align-items: center;
}


.product-world {
  column-gap: clamp(72px, 7vw, 112px);
}

.feature-gallery {
  min-width: 0;
}

.gallery-main {
  overflow: hidden;
  margin: 0;
  background: #111;
  box-shadow: var(--shadow);
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(100, 197, 193, 0.22), rgba(211, 167, 70, 0.18)),
    #151515;
}

.gallery-main figcaption {
  padding: 18px 20px 22px;
  color: rgba(255, 255, 255, 0.72);
}

.gallery-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.gallery-button {
  min-height: 44px;
  border: 1px solid var(--line-light);
  border-radius: 6px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-family: var(--condensed);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.gallery-button.is-active {
  background: var(--mint);
  color: #061010;
}

.collection-strip {
  padding: 104px 5vw 120px;
}

.strip-heading {
  max-width: 980px;
  margin: 0 auto 40px;
}

.card-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.card-strip-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.release-card {
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
}

.release-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.release-card div {
  padding: 18px;
}

.release-card span,
.ask-grid span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-family: var(--condensed);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.release-card strong,
.ask-grid strong {
  display: block;
  font-family: var(--condensed);
  font-size: 23px;
  line-height: 1;
  text-transform: uppercase;
}


.collection-statement {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 330px;
  overflow: hidden;
  padding: 86px 5vw 104px;
  border-bottom: 0;
  background: #000000;
  color: var(--white);
  text-align: center;
}

.collection-statement::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: #050505;
}

.collection-statement::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 58px;
  width: min(340px, 52vw);
  height: 5px;
  background: var(--mint);
  transform: translateX(-50%);
}

.statement-panel {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  max-width: 1120px;
}

.statement-panel .eyebrow {
  margin-bottom: 20px;
  letter-spacing: 0.08em;
}

.statement-panel h2 {
  max-width: 980px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(40px, 5.5vw, 82px);
  font-weight: 900;
  line-height: 0.88;
}

.playbook {
  padding: 108px 12vw 126px;
  background: #fdfbf6;
}

.playbook-header {
  max-width: 780px;
  margin-bottom: 46px;
}

.stacked-headline {
  font-size: clamp(30px, 4.35vw, 56px);
}

.stacked-headline span {
  display: block;
  white-space: nowrap;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.timeline-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-card {
  min-height: 360px;
  min-width: 0;
  padding: 26px;
  background: var(--paper);
}

.timeline-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 28px;
  margin-bottom: 34px;
  border-radius: 4px;
  background: var(--blue);
  color: var(--white);
  font-family: var(--condensed);
  font-size: 14px;
  font-weight: 900;
}

.timeline-card p {
  color: var(--muted);
  overflow-wrap: break-word;
}

.timeline-card h3 {
  font-size: 24px;
  overflow-wrap: break-word;
}

.strategy {
  align-items: center;
}

.strategy-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #111;
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.82);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--mint);
}

.partner-ask {
  background: var(--paper-deep);
}

.ask-panel {
  align-self: center;
  padding: 34px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.ask-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 32px;
  background: var(--line);
}

.ask-grid div {
  min-height: 142px;
  padding: 20px;
  background: #fbfaf7;
}


.partner-cta {
  justify-self: start;
}

.partner-photo {
  align-self: center;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1.1 / 1;
  max-height: 560px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
}

.partner-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

/* Story flow color rhythm */

.collection-strip {
  background: var(--paper);
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}

.collection-strip.collection-statement {
  background: #000000;
  color: var(--white);
  border-bottom: 0;
}

.split-section {
  background: var(--white);
  color: var(--ink);
}

.product-world {
  background: #070707;
  color: var(--white);
}

.playbook {
  background: #f8f4ed;
  color: var(--ink);
}

.strategy {
  background: #080808;
  color: var(--white);
}

.proof-band {
  background: #f1ece3;
  color: var(--ink);
  border-top: 0;
  border-bottom: 0;
}

.proof-grid article {
  background: #fffdf8;
}

.partner-ask {
  background: #111111;
  color: var(--white);
}

.partner-ask .eyebrow {
  color: var(--mint);
}

.partner-ask h2 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(36px, 4.2vw, 52px);
}

.partner-photo {
  box-shadow: 0 22px 58px rgba(17, 17, 17, 0.18);
}



main p.eyebrow,
.section-dark p.eyebrow {
  color: var(--mint);
}


.section-dark .product-copy p.eyebrow,
.section-dark .strategy-copy p.eyebrow,
.section-dark .section-copy p.eyebrow,
.section-dark .ask-panel p.eyebrow {
  color: var(--mint);
}

/* Partner feature layout */

.partner-ask {
  display: grid;
  grid-template-columns: minmax(410px, 0.95fr) minmax(320px, 0.82fr);
  align-items: center;
  justify-items: stretch;
  gap: clamp(96px, 8vw, 144px);
  text-align: left;
}

.partner-copy {
  min-width: 0;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 24px;
  max-width: 560px;
  padding-right: clamp(24px, 3vw, 48px);
}

.partner-ask h2 {
  max-width: 640px;
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 4.1vw, 58px);
  line-height: 0.94;
}

.partner-ask .eyebrow {
  margin-bottom: 0;
}

.partner-photo {
  min-width: 0;
  justify-self: end;
  width: min(100%, 560px);
}

.index-expansion .site-nav {
  gap: 18px;
}

.index-expansion .site-nav a {
  font-size: 14px;
  letter-spacing: 0;
}

.index-expansion .split-section {
  display: grid;
}

.gravity-section,
.rights-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 72px;
  padding: 118px 12vw;
  align-items: stretch;
}

.gravity-section {
  position: relative;
  overflow: hidden;
  column-gap: 72px;
  row-gap: 26px;
  background:
    radial-gradient(ellipse at 76% 24%, rgba(100, 197, 193, 0.15), transparent 34%),
    radial-gradient(ellipse at 24% 78%, rgba(211, 167, 70, 0.1), transparent 30%),
    linear-gradient(135deg, #030707 0%, #080808 52%, #020202 100%),
    #050505;
}

.gravity-section::before,
.gravity-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gravity-section::before {
  opacity: 0.62;
  background-image:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.78) 0 1px, transparent 1.6px),
    radial-gradient(circle at 72% 16%, rgba(100, 197, 193, 0.58) 0 1px, transparent 1.7px),
    radial-gradient(circle at 38% 64%, rgba(255, 255, 255, 0.52) 0 1px, transparent 1.6px),
    radial-gradient(circle at 84% 72%, rgba(255, 255, 255, 0.42) 0 1px, transparent 1.5px),
    radial-gradient(circle at 9% 82%, rgba(211, 167, 70, 0.5) 0 1px, transparent 1.7px);
  background-size: 220px 220px, 260px 260px, 180px 180px, 300px 300px, 240px 240px;
}

.gravity-section::after {
  opacity: 0.46;
  background: linear-gradient(112deg, transparent 13%, rgba(100, 197, 193, 0.04) 32%, rgba(255, 255, 255, 0.08) 48%, rgba(211, 167, 70, 0.05) 58%, transparent 76%);
  filter: blur(16px);
  transform: rotate(-5deg) scale(1.18);
}

.gravity-section > * {
  position: relative;
  z-index: 1;
}

.gravity-copy p,
.rights-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
}

.gravity-copy {
  min-width: 0;
  grid-column: 1;
  grid-row: 1;
  align-self: center;
}

.gravity-copy h2 {
  max-width: 980px;
  text-wrap: normal;
}

.gravity-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.gravity-copy p.eyebrow,
.rights-copy p.eyebrow {
  max-width: none;
  color: var(--mint);
  font-size: 13px;
}

.gravity-photo {
  min-width: 0;
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  align-self: center;
  width: min(100%, 860px);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4961 / 3508;
  background:
    linear-gradient(135deg, rgba(100, 197, 193, 0.16), rgba(211, 167, 70, 0.12)),
    #111;
  box-shadow: var(--shadow);
}

.gravity-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.gravity-points {
  grid-column: 1 / -1;
  grid-row: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 0;
  background: var(--line-light);
}

.gravity-points article,
.rights-lanes article {
  min-width: 0;
  border-radius: 8px;
}

.gravity-points article {
  min-height: 156px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.09);
}

.gravity-points h3,
.rights-lanes h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.gravity-points p,
.rights-lanes p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.rights-section {
  background: #fffdf8;
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.rights-copy h2 {
  max-width: 860px;
}

.rights-lanes {
  display: grid;
  gap: 14px;
}

.rights-lanes article {
  position: relative;
  padding: 26px 28px 26px 34px;
  border-left: 5px solid var(--mint);
  background: var(--paper);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
}

.rights-lanes p {
  color: var(--muted);
}

.testimonial-section {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: clamp(36px, 4.5vw, 58px);
  padding: 112px 12vw;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background:
    radial-gradient(ellipse at 82% 18%, rgba(100, 197, 193, 0.1), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #f6f1e8 100%);
  color: var(--ink);
  text-align: center;
}

.testimonial-copy {
  min-width: 0;
  width: 100%;
  max-width: 1060px;
}

.testimonial-copy blockquote {
  margin: 0;
}

.testimonial-mark {
  display: block;
  height: 44px;
  color: var(--mint);
  font-family: var(--condensed);
  font-size: 104px;
  font-weight: 900;
  line-height: 0.72;
}

.testimonial-copy blockquote p {
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 24px;
  color: var(--ink);
  font-family: var(--condensed);
  font-size: clamp(38px, 4.6vw, 66px);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.testimonial-copy cite {
  display: grid;
  justify-items: center;
  gap: 4px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.testimonial-copy cite strong {
  color: var(--ink);
  font-family: var(--condensed);
  font-size: 21px;
  line-height: 1;
}

.testimonial-copy cite span {
  display: block;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.testimonial-video {
  position: relative;
  display: block;
  min-width: 0;
  width: min(100%, 920px);
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.testimonial-video img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.74) saturate(0.96);
  transition: transform 220ms ease, filter 220ms ease;
}

.testimonial-video:hover img {
  transform: scale(1.025);
  filter: brightness(0.84) saturate(1.05);
}

.testimonial-play {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  width: clamp(68px, 7vw, 92px);
  height: clamp(68px, 7vw, 92px);
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  transform: translate(-50%, -50%);
}

.testimonial-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 6px;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 24px solid #071011;
}

body.video-modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 42px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
}

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

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.video-modal-panel {
  position: relative;
  width: min(100%, 980px);
  background: #050505;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.52);
}

.video-modal-frame {
  aspect-ratio: 16 / 9;
}

.video-modal-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.76);
  color: #ffffff;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

.video-modal-close:hover,
.video-modal-close:focus-visible {
  background: var(--mint);
  color: #071011;
  outline: none;
}

.closing {
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 90px 5vw;
  text-align: center;
}

.closing-bg img {
  opacity: 0.34;
  filter: saturate(0.75);
}

.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.42), rgba(0, 0, 0, 0.88));
}


.closing.section-dark {
  background: #181818;
}

.closing.section-dark::before {
  display: none;
}

.closing-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.closing-content img {
  width: 150px;
  margin: 0 auto 26px;
  filter: brightness(0) invert(1);
}

.closing-content p {
  max-width: 680px;
  margin: 0 auto 30px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 5vw;
  background: #050505;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (min-width: 821px) and (max-width: 1260px) {
  .split-section,
  .product-world {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(40px, 5vw, 60px);
    padding: 88px 6vw;
  }

  .split-section .section-copy h2,
  .product-world h2 {
    max-width: 680px;
    font-size: clamp(34px, 3.8vw, 44px);
    line-height: 0.98;
  }

  .section-copy p,
  .product-copy p {
    max-width: 620px;
  }

  .why-photo,
  .feature-gallery {
    width: 100%;
  }

  .gallery-main img {
    padding: 20px;
  }

  .product-world {
    column-gap: clamp(58px, 6vw, 80px);
  }

  .gravity-section,
  .rights-section {
    gap: 46px;
    padding: 88px 7vw;
  }

  .gravity-section {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

  .rights-section {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .partner-ask {
    grid-template-columns: minmax(340px, 0.98fr) minmax(240px, 0.74fr);
    gap: clamp(92px, 10vw, 124px);
  }

  .partner-copy {
    max-width: 500px;
    padding-right: clamp(30px, 4vw, 52px);
  }

  .partner-ask h2 {
    font-size: clamp(30px, 3.2vw, 40px);
  }

  .partner-photo {
    width: min(100%, 430px);
  }

  .testimonial-section {
    gap: 42px;
    padding: 88px 7vw;
  }

  .testimonial-video {
    justify-self: center;
    width: min(100%, 920px);
  }

  .gravity-section {
    grid-template-columns: 1fr;
  }

  .gravity-copy,
  .gravity-copy p {
    max-width: 780px;
  }

  .gravity-copy,
  .gravity-points,
  .gravity-photo {
    grid-column: 1;
    grid-row: auto;
  }

  .gravity-photo {
    justify-self: center;
    width: min(100%, 820px);
  }

  .gravity-points {
    margin-top: 0;
  }
}

@media (min-width: 1181px) and (max-width: 1400px) {
  .gravity-section {
    grid-template-columns: 1fr;
    gap: 46px;
    padding: 88px 7vw;
  }

  .gravity-copy,
  .gravity-copy p {
    max-width: 860px;
  }

  .gravity-copy,
  .gravity-points,
  .gravity-photo {
    grid-column: 1;
    grid-row: auto;
  }

  .gravity-copy h2 {
    max-width: 980px;
    font-size: clamp(42px, 4.2vw, 56px);
  }

  .gravity-photo {
    justify-self: center;
    width: min(100%, 880px);
  }

  .gravity-points {
    margin-top: 0;
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 74px;
  }

  h2 {
    font-size: 48px;
  }

  .split-section,
  .product-world,
  .strategy,
  .partner-ask,
  .proof-band,
  .testimonial-section,
  .gravity-section,
  .rights-section {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-card {
    min-height: 260px;
  }
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    padding: 18px 20px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 100svh;
    justify-content: flex-start;
    padding: 112px 20px 30px;
  }

  .hero-bg img {
    object-position: 63% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.42)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.12));
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 38px;
  }

  .split-section .section-copy h2 {
    font-size: clamp(30px, 8vw, 38px);
    line-height: 0.98;
  }

  .stacked-headline {
    font-size: clamp(22px, 6vw, 34px);
  }

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

  .hero-stats,
  .split-section,
  .product-world,
  .proof-band,
  .strategy,
  .partner-ask,
  .testimonial-section,
  .gravity-section,
  .rights-section {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 14px;
  }

  .split-section,
  .product-world,
  .strategy,
  .partner-ask,
  .proof-band,
  .collection-strip,
  .playbook,
  .testimonial-section,
  .gravity-section,
  .rights-section {
    padding: 72px 20px;
  }

  .small-img-row,
  .proof-grid,
  .ask-grid,
  .gallery-controls,
  .gravity-points {
    grid-template-columns: 1fr;
  }

  .gravity-section,
  .testimonial-section,
  .rights-section {
    gap: 38px;
  }

  .gravity-copy,
  .gravity-points,
  .gravity-photo {
    grid-column: 1;
    grid-row: auto;
  }

  .partner-ask {
    text-align: center;
  }

  .partner-copy {
    justify-items: center;
    max-width: 720px;
    margin: 0 auto;
    padding-right: 0;
  }

  .partner-photo {
    max-height: none;
  }

  .partner-cta {
    justify-self: center;
  }

  .gravity-points {
    margin-top: 0;
  }

  .gravity-photo {
    min-height: 0;
  }

  .gravity-photo img {
    min-height: 0;
  }

  .card-strip {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .brand-lockup {
    width: 104px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 34px;
  }

  .split-section .section-copy h2 {
    font-size: clamp(27px, 8.4vw, 34px);
  }

  .stacked-headline {
    font-size: clamp(19px, 6vw, 30px);
  }

  .gravity-points article,
  .rights-lanes article {
    padding: 22px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-stats dd {
    font-size: 18px;
  }

  .card-strip {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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