: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: center;
}

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

.partner-photo img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  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 stacked layout */

.partner-ask {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 28px;
  text-align: center;
}

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

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

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

.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);
  }
}

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

  h2 {
    font-size: 48px;
  }

  .split-section,
  .product-world,
  .strategy,
  .partner-ask,
  .proof-band {
    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 {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 14px;
  }

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

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

  .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);
  }

  .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;
  }
}