/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black: #0D0D0D;
  --orange: #FF5722;
  --yellow: #F7D000;
  --white: #F5F0E8;
  --grey: #1A1A1A;
  --grey-mid: #2E2E2E;
  --grey-light: #888;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--grey-mid);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 4px;
  color: var(--white);
}

.nav__tagline {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--grey-light);
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 48px 80px;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 40%;
  height: 100%;
  background: var(--grey);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero__text {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--orange);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 100px);
  line-height: 0.95;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 32px;
}

.hero__sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.7);
  max-width: 420px;
}

.hero__graphic {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: 48px;
}

.hero__tag-block {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  padding: 8px 16px;
  text-transform: uppercase;
}

.tag--orange { background: var(--orange); color: var(--black); }
.tag--yellow { background: var(--yellow); color: var(--black); }
.tag--filled { background: var(--white); color: var(--black); }
.tag--outline { border: 1px solid var(--grey-light); color: var(--grey-light); }

.hero__accent-bar {
  width: 80px;
  height: 6px;
  background: var(--orange);
}

.hero__stripe-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stripe {
  height: 16px;
  width: 100%;
}

.stripe--orange { background: var(--orange); }
.stripe--yellow { background: var(--yellow); }
.stripe--white { background: var(--white); }

/* ===== MANIFESTO ===== */
.manifesto {
  background: var(--grey);
  padding: 100px 48px;
}

.manifesto__inner {
  max-width: 900px;
  margin: 0 auto;
}

.manifesto__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--orange);
  margin-bottom: 48px;
  text-transform: uppercase;
}

.manifesto__quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 48px;
  border-left: 6px solid var(--orange);
  padding-left: 32px;
}

.manifesto__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 64px;
}

.manifesto__body p {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(245, 240, 232, 0.65);
}

.manifesto__border-art {
  display: flex;
  gap: 8px;
}

.border-line {
  width: 80px;
  height: 2px;
  background: var(--orange);
}

.border-line--offset {
  background: var(--yellow);
  margin-top: 4px;
}

/* ===== OUTCOMES ===== */
.outcomes {
  padding: 100px 48px;
  background: var(--black);
}

.outcomes__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.outcomes__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--orange);
  margin-bottom: 56px;
  text-transform: uppercase;
}

.outcomes__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.outcome-card {
  background: var(--grey);
  padding: 48px 40px;
  position: relative;
}

.outcome-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 0;
  background: var(--orange);
  transition: height 0.4s ease;
}

.outcome-card:hover::after {
  height: 100%;
}

.outcome-card__number {
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(255, 87, 34, 0.12);
  line-height: 1;
  margin-bottom: 16px;
}

.outcome-card__title {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 16px;
}

.outcome-card__body {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.6);
}

/* ===== DROPS ===== */
.drops {
  background: var(--grey);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}

.drops__inner {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.drops__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--yellow);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.drops__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 24px;
}

.drops__sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.65);
  max-width: 500px;
  margin-bottom: 72px;
}

.drops__track {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--orange);
  padding-left: 40px;
  margin-bottom: 64px;
}

.drops__step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid var(--grey-mid);
}

.drops__step:last-child { border-bottom: none; }

.drops__step-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--orange);
  line-height: 1;
  min-width: 40px;
}

.drops__step-content {
  font-size: 15px;
  color: rgba(245, 240, 232, 0.8);
  line-height: 1.6;
  padding-top: 4px;
}

.drops__step-content strong {
  color: var(--white);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.drops__art {
  display: flex;
  gap: 20px;
  align-items: center;
}

.drops__circle {
  border-radius: 50%;
}

.drops__circle--1 { width: 120px; height: 120px; background: var(--orange); opacity: 0.8; }
.drops__circle--2 { width: 80px; height: 80px; background: var(--yellow); opacity: 0.9; }
.drops__circle--3 { width: 50px; height: 50px; background: var(--white); opacity: 0.3; }

/* ===== CLOSING ===== */
.closing {
  background: var(--black);
  padding: 100px 48px;
}

.closing__inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}

.closing__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--grey-light);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.closing__headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  color: var(--white);
}

.closing__art {
  display: flex;
  gap: 4px;
  flex-direction: column;
}

.closing__block {
  width: 40px;
}

.closing__block--orange { height: 80px; background: var(--orange); }
.closing__block--yellow { height: 56px; background: var(--yellow); }
.closing__block--dark { height: 32px; background: var(--grey-mid); }

/* ===== FOOTER ===== */
.footer {
  background: var(--grey);
  padding: 64px 48px;
}

.footer__inner {
  max-width: 900px;
  margin: 0 auto;
}

.footer__brand {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: 6px;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__desc {
  font-size: 13px;
  color: var(--grey-light);
  font-family: var(--font-mono);
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.footer__rule {
  height: 1px;
  background: var(--grey-mid);
  margin-bottom: 24px;
}

.footer__copy {
  font-size: 12px;
  color: var(--grey-light);
  font-family: var(--font-mono);
}

/* ===== ART SECTION ===== */
.art-section {
  background: var(--grey);
  padding: 100px 48px;
}

.art-section__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.art-section__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--orange);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.art-section__heading {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}

.art-section__sub {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.65);
  max-width: 500px;
  margin-bottom: 56px;
}

.art-section__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.art-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--grey-mid);
  padding: 16px;
}

.art-card--dark {
  background: var(--black);
  border: 1px solid var(--grey-mid);
}

.art-card__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.art-card__caption {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.art-card__name {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 1px;
  color: var(--white);
}

.art-card__badge {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 8px;
  background: var(--orange);
  color: var(--black);
}

/* Responsive */
@media (max-width: 900px) {
  .art-section__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .art-section { padding: 64px 24px; }
  .art-section__grid { grid-template-columns: 1fr 1fr; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 64px;
    min-height: auto;
  }

  .hero::before { display: none; }
  .hero__graphic { padding-left: 0; }

  .manifesto { padding: 64px 24px; }
  .manifesto__body { grid-template-columns: 1fr; }

  .outcomes { padding: 64px 24px; }
  .outcomes__grid { grid-template-columns: 1fr; }

  .drops { padding: 64px 24px; }
  .drops__track { padding-left: 24px; }

  .closing { padding: 64px 24px; }
  .closing__inner { grid-template-columns: 1fr; gap: 40px; }
  .closing__art { flex-direction: row; }
  .closing__block--orange { height: 60px; }
  .closing__block--yellow { height: 60px; }
  .closing__block--dark { height: 60px; }

  .footer { padding: 48px 24px; }

  .hero__headline { font-size: 56px; }
  .drops__heading { font-size: 48px; }
  .manifesto__quote { font-size: 24px; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 44px; }
  .outcome-card { padding: 32px 24px; }
  .outcome-card__number { font-size: 60px; }
  .drops__track { padding-left: 16px; }
  .drops__step-num { font-size: 28px; min-width: 28px; }
}
