/* New Path Pictures, filmmaker invitation page.
   Visual language per NPP_BLUE_ANT_PREVIEW_DESIGN_SYSTEM_v1_0.
   Montserrat display, Hanken Grotesk body, IBM Plex Mono labels.
   Black, warm white, New Path Pictures green as the only accent. */

:root {
  --ink: #0B0C0E;
  --panel: #14161A;
  --paper: #F1EFE9;
  --grey: #95948C;
  --dim: #77766F;
  --green: #2FBF71;
  --line: rgba(241, 239, 233, 0.14);
  --line-soft: rgba(241, 239, 233, 0.08);
  --gutter: clamp(20px, 5vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: 'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

p { margin: 0; }

a { color: inherit; }

::selection { background: rgba(47, 191, 113, 0.28); }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.mono {
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.6;
}

.green { color: var(--green); }
.dim { color: var(--dim); }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 20;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 16px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}
.skip:focus { left: 12px; top: 12px; }

/* Masthead */

.masthead {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 26px var(--gutter) 0;
}

.mark { width: 132px; }
.mark.small { width: 104px; opacity: 0.85; }

/* Hero */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: min(88vh, 860px);
  padding: clamp(56px, 9vh, 120px) 0 clamp(64px, 10vh, 128px);
  overflow: hidden;
}

.globe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 180px;
  background: linear-gradient(to bottom, rgba(11, 12, 14, 0), var(--ink));
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.kicker { margin-bottom: 22px; }

h1 {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.015em;
  max-width: 17ch;
  text-wrap: balance;
}

.lede {
  margin-top: 28px;
  max-width: 56ch;
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.6;
  color: rgba(241, 239, 233, 0.82);
}

.statement {
  margin-top: 26px;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(21px, 2.4vw, 30px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--paper);
}

.hero-action { margin-top: 36px; }

/* Bands */

.band {
  border-top: 1px solid var(--line-soft);
  padding: clamp(48px, 7vw, 88px) 0;
}

.band:first-of-type { border-top: none; }

.section {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.section-head { padding-top: 6px; }

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

.section-head .mono { margin-bottom: 12px; }

h2 {
  margin: 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  max-width: 18ch;
}

.prose { max-width: 62ch; }

.lead-block {
  font-size: clamp(17px, 1.3vw, 18.5px);
}

.prose p + p { margin-top: 20px; }

.prose p { color: rgba(241, 239, 233, 0.84); }

.prose.quiet p {
  color: var(--grey);
  font-size: 15.5px;
}

.close .prose p { color: rgba(241, 239, 233, 0.92); }

strong { color: var(--paper); font-weight: 600; }

/* Numbered items */

.items {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 66ch;
}

.items li {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-soft);
}

.items li:first-child { padding-top: 0; }
.items li:last-child { border-bottom: none; padding-bottom: 0; }

.items .num {
  flex: none;
  padding-top: 5px;
  letter-spacing: 0.14em;
}

.items p { color: rgba(241, 239, 233, 0.78); }

/* Action */

.close {
  border-top: 1px solid var(--line);
  background: linear-gradient(to bottom, rgba(20, 22, 26, 0.55), rgba(11, 12, 14, 0));
}

.action {
  margin-top: 32px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  max-width: 62ch;
}

.btn {
  display: inline-block;
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--paper);
  padding: 15px 24px;
  font-family: 'IBM Plex Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
  transition: background 120ms ease, border-color 120ms ease;
}

.btn:hover { background: #FFFFFF; }

.btn-quiet {
  background: transparent;
  color: var(--paper);
  border-color: rgba(241, 239, 233, 0.42);
}

.btn-quiet:hover {
  background: rgba(241, 239, 233, 0.06);
  border-color: var(--paper);
}

.action .btn {
  padding: 18px 30px;
  font-size: 12px;
}

.action-line {
  margin-top: 18px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--grey);
}

.action-line a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(47, 191, 113, 0.4);
  word-break: break-word;
}

.action-line a:hover { border-bottom-color: var(--green); }

.close .prose.quiet { margin-top: 28px; }

/* Footer */

.footer {
  border-top: 1px solid var(--line-soft);
  padding: 32px 0 44px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

/* Mobile */

@media (max-width: 760px) {
  body { font-size: 16.5px; }

  .masthead { padding-top: 20px; }

  .mark { width: 108px; }
  .mark.small { width: 92px; }

  .hero {
    min-height: auto;
    padding: clamp(40px, 7vh, 64px) 0 56px;
  }

  h1 { max-width: 15ch; }

  .lede { margin-top: 22px; }

  .hero-action { margin-top: 30px; }

  .btn { display: block; text-align: center; padding: 16px 18px; }

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

  .section-head .mono { margin-bottom: 8px; }

  h2 { max-width: 20ch; }

  .items li { gap: 14px; }

  .action { padding: 22px; }

  .footer-inner { align-items: flex-start; }
}

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