/* ============================================
   HOME — v2
   Full-screen slideshow hook → white parallax →
   grey parallax → 9:16 vertical loops
   ============================================ */

/* ============================================
   HERO — full-screen cinematic slideshow
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  width: 100%;
  overflow: hidden;
  background: var(--paper-2);
  cursor: pointer;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s cubic-bezier(0.65, 0, 0.35, 1);
  /* Ken Burns subtle zoom — only active slide animates */
  transform: scale(1.04);
}

.hero__slide.active {
  opacity: 1;
  animation: ken-burns 12s ease-out forwards;
}

@keyframes ken-burns {
  0% { transform: scale(1.04) translate(0, 0); }
  100% { transform: scale(1.18) translate(-1.5%, -1.5%); }
}

.hero__slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.1) 0%,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.12) 100%
  );
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad-x) clamp(60px, 10vh, 120px);
  z-index: 2;
  color: var(--ink);
}

.hero__eyebrow {
  margin-bottom: 28px;
  opacity: 0;
  animation: fade-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero__title {
  max-width: 18ch;
  margin-bottom: 32px;
  opacity: 0;
  animation: fade-up 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.hero__title em {
  color: var(--signal);
  font-style: normal;
}

.hero__meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  opacity: 0;
  animation: fade-up 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.9s forwards;
}

.hero__meta-text {
  max-width: 38ch;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-mute);
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Slide dots / progress */
.hero__progress {
  position: absolute;
  top: 50%;
  right: 32px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 3;
}

.hero__dot {
  width: 1px;
  height: 28px;
  background: rgba(11, 11, 10, 0.2);
  cursor: pointer;
  transition: background 0.3s, height 0.3s;
  position: relative;
}

.hero__dot.active {
  background: rgba(11, 11, 10, 0.8);
  height: 40px;
}

.hero__counter {
  position: absolute;
  top: 50%;
  left: var(--pad-x);
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(11, 11, 10, 0.45);
  z-index: 3;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__counter::after {
  content: '';
  width: 1px;
  height: 60px;
  background: rgba(11, 11, 10, 0.2);
}

@media (max-width: 700px) {
  .hero__progress { display: none; }
  .hero__counter { display: none; }
  .hero__meta { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ============================================
   BAND 1 — White parallax: the concept + buckyball bleed
   The buckyball is a spatial element, full-height of the band,
   anchored to the left edge with the right ~40% bleeding off-screen.
   ============================================ */
.band-concept {
  position: relative;
  background: #eaeaea;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.08);
  min-height: clamp(640px, 85vh, 900px);
  display: flex;
  align-items: center;
}

.band-concept__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: clamp(100px, 14vh, 160px) var(--pad-x);
  position: relative;
  z-index: 2;
  width: 100%;
}

.band-concept__inner > .band-concept__copy {
  max-width: min(420px, 40vw);
}

/* Logo — absolute, right side, bleeds off edge */
.band-concept__bucky {
  position: absolute;
  top: calc(100px - 1.1%);
  right: 0;
  height: 150%;
  aspect-ratio: 1584 / 1806;
  transform: translateX(0%);
  z-index: 1;
  pointer-events: none;
}

.band-concept__bucky img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 900px) {
  .band-concept { min-height: auto; }
  .band-concept__inner { padding-bottom: clamp(60vw, 64vw, 600px); }
  .band-concept__inner > .band-concept__copy { max-width: 100%; }
  .band-concept__bucky {
    top: auto;
    bottom: -5%;
    right: -10%;
    transform: none;
    height: 70vw;
  }
}

.band-concept__copy .eyebrow { margin-bottom: 32px; }

.band-concept__title {
  margin-bottom: 32px;
}

.band-concept__title em { color: var(--signal); font-style: normal; }

.band-concept__body p {
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 52ch;
  margin-bottom: 20px;
}

.band-concept__body p strong {
  color: var(--ink);
  font-weight: 500;
}

.band-concept__body p em {
  color: var(--signal);
  font-style: normal;
}

/* ============================================
   BAND 2 — Grey parallax: what we do (manifesto bullets)
   ============================================ */
.band-doing {
  position: relative;
  background: var(--paper-3);
  padding: clamp(100px, 18vh, 200px) var(--pad-x);
  overflow: hidden;
}

.band-doing__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.band-doing__head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}

@media (max-width: 900px) {
  .band-doing__head { grid-template-columns: 1fr; gap: 28px; margin-bottom: 56px; }
}

.band-doing__head-left .eyebrow { margin-bottom: 32px; }

.band-doing__title em { color: var(--signal); }

.band-doing__list {
  list-style: none;
  border-top: 1px solid var(--ink);
}

.band-doing__item {
  display: grid;
  grid-template-columns: 80px 1fr 2.5fr;
  gap: 40px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule-strong);
  align-items: start;
  transition: padding 0.4s cubic-bezier(0.65, 0, 0.35, 1),
              background 0.4s;
}

.band-doing__item:hover {
  padding-left: 16px;
  padding-right: 16px;
  background: rgba(11, 11, 10, 0.04);
}

@media (max-width: 800px) {
  .band-doing__item { grid-template-columns: 1fr; gap: 12px; padding: 24px 0; }
  .band-doing__item:hover { padding-left: 0; padding-right: 0; }
}

.band-doing__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  padding-top: 8px;
}

.band-doing__what {
  font-family: var(--font-brand);
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 500;
  font-style: normal;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.0;
  color: var(--ink);
}

.band-doing__how {
  font-size: 15px;
  color: var(--ink-mute);
  line-height: 1.55;
  max-width: 52ch;
  padding-top: 14px;
}

/* Parallax background mark on band-doing */
.band-doing__bg-mark {
  position: absolute;
  bottom: -10%;
  right: -5%;
  font-family: var(--font-brand);
  font-size: clamp(180px, 30vw, 520px);
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(11, 11, 10, 0.06);
  letter-spacing: -0.02em;
  line-height: 0.85;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  transform: rotate(-4deg);
}

/* ============================================
   BAND 3 — Vertical 9:16 looping reels
   ============================================ */
.band-reels {
  position: relative;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(100px, 14vh, 160px) var(--pad-x);
  overflow: hidden;
}

.band-reels__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.band-reels__head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: end;
}

@media (max-width: 900px) {
  .band-reels__head { grid-template-columns: 1fr; gap: 24px; }
}

.band-reels__head .eyebrow { color: var(--paper); margin-bottom: 24px; }
.band-reels__head .eyebrow::before { background: var(--paper); }

.band-reels__title em { color: var(--signal); }

.band-reels__head-right p {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(250, 250, 247, 0.7);
  max-width: 50ch;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

@media (max-width: 1200px) {
  .reels-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}

@media (max-width: 700px) {
  .reels-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.reel {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: var(--ink-2);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.reel:hover { transform: translateY(-6px); }

.reel__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(42, 122, 116, 0.3), transparent 60%),
    linear-gradient(180deg, var(--ink-2) 0%, var(--ink) 100%);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  color: rgba(250, 250, 247, 0.35);
  text-transform: uppercase;
  padding: 24px;
  line-height: 1.6;
}

.reel__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.7) 0%,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0) 60%,
    rgba(0,0,0,0.4) 100%
  );
  z-index: 2;
  pointer-events: none;
}

.reel__tag {
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 9px;
  background: rgba(250, 250, 247, 0.95);
  color: var(--ink);
}

.reel__caption {
  font-family: var(--font-mono);
  font-size: clamp(11px, 1vw, 13px);
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.4;
}

/* ============================================
   BAND 4 — Pricing teaser (white, brutalist columns)
   ============================================ */
.band-pricing {
  background: var(--paper);
  padding: clamp(100px, 14vh, 160px) var(--pad-x);
  overflow: hidden;
}

.band-pricing__inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.band-pricing__head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  margin-bottom: 60px;
  align-items: end;
}

@media (max-width: 900px) {
  .band-pricing__head { grid-template-columns: 1fr; gap: 24px; }
}

.band-pricing__head .eyebrow { margin-bottom: 24px; }
.band-pricing__title em { color: var(--signal); }

.tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

@media (max-width: 900px) {
  .tiers { grid-template-columns: 1fr 1fr; }
  .tiers > .tier:nth-child(odd) { border-right: 1px solid var(--ink); }
  .tiers > .tier:nth-child(-n+2) { border-bottom: 1px solid var(--ink); }
}

@media (max-width: 500px) {
  .tiers { grid-template-columns: 1fr; }
  .tiers > .tier { border-right: none !important; border-bottom: 1px solid var(--ink); }
  .tiers > .tier:last-child { border-bottom: none; }
}

.tier {
  padding: 36px 28px;
  border-right: 1px solid var(--ink);
  transition: background 0.4s;
  position: relative;
}

.tier:last-child { border-right: none; }

.tier:hover { background: var(--paper-2); }

.tier__num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-mute);
  margin-bottom: 40px;
}

.tier__name {
  font-family: var(--font-brand);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  line-height: 0.9;
  margin-bottom: 8px;
}

.tier__name em { font-style: normal; color: var(--signal); }

.tier__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
}

.tier__bar {
  display: flex;
  height: 4px;
  margin-bottom: 6px;
}

.tier__bar span:first-child { background: var(--signal); }
.tier__bar span:last-child { background: var(--ink); }

.tier__bar-label {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
  color: var(--ink-mute);
}

.tier__price {
  font-family: var(--font-brand);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

.tier__price-unit {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.band-pricing__cta {
  text-align: center;
  margin-top: 60px;
}

/* ============================================
   BAND 5 — Closing CTA (black brutalist)
   ============================================ */
.band-cta {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(100px, 18vh, 200px) var(--pad-x);
  text-align: left;
  position: relative;
  overflow: hidden;
}

.band-cta__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: end;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .band-cta__inner { grid-template-columns: 1fr; gap: 40px; }
}

.band-cta__title {
  max-width: 12ch;
}

.band-cta__title em { color: var(--signal); font-style: normal; }

.band-cta__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.band-cta__form-row {
  display: flex;
  border-bottom: 1px solid rgba(250, 250, 247, 0.3);
  padding-bottom: 8px;
  transition: border-color 0.3s;
}

.band-cta__form-row:focus-within { border-color: var(--paper); }

.band-cta__form-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--paper);
  padding: 8px 0;
}

.band-cta__form-row input::placeholder {
  color: rgba(250, 250, 247, 0.4);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.band-cta__form button {
  align-self: flex-start;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--paper);
  color: var(--ink);
  padding: 16px 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: background 0.3s;
}

.band-cta__form button:hover {
  background: var(--signal);
  color: var(--paper);
}

.band-cta__note {
  margin-top: 30px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.5);
}

/* Background mark on CTA */
.band-cta__bg-mark {
  position: absolute;
  top: -20%;
  right: -8%;
  font-family: var(--font-brand);
  font-size: clamp(220px, 36vw, 680px);
  font-weight: 500;
  text-transform: uppercase;
  color: rgba(250, 250, 247, 0.04);
  letter-spacing: -0.02em;
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
