:root {
  --ink: #11110f;
  --ink-soft: #2a2925;
  --paper: #f7f0df;
  --paper-strong: #fff8e8;
  --muted: #6d675b;
  --line: rgba(17, 17, 15, 0.16);
  --yellow: #f7c948;
  --red: #df3f32;
  --green: #17856b;
  --blue: #3268b8;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 10;
  transform: translateY(-150%);
  background: var(--yellow);
  color: var(--ink);
  padding: 0.7rem 0.9rem;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
  padding: 0.9rem 5vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(17, 17, 15, 0.92);
  color: var(--paper-strong);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 2px solid var(--yellow);
  background: var(--red);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
}

.brand-copy {
  display: grid;
  gap: 0.1rem;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand-copy span {
  color: rgba(255, 248, 232, 0.72);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-links a {
  min-width: 72px;
  padding: 0.6rem 0.85rem;
  text-align: center;
  text-decoration: none;
  color: rgba(255, 248, 232, 0.78);
  font-weight: 800;
  border: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--paper-strong);
  border-color: rgba(255, 248, 232, 0.36);
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  background: var(--ink);
  color: var(--paper-strong);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center;
  opacity: 0.78;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 17, 15, 0.9), rgba(17, 17, 15, 0.54), rgba(17, 17, 15, 0.28)),
    linear-gradient(0deg, rgba(17, 17, 15, 0.74), rgba(17, 17, 15, 0.08) 48%, rgba(17, 17, 15, 0.42));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(760px, 90vw);
  min-height: calc(100svh - 76px);
  padding: 5rem 0 7rem 5vw;
}

.eyebrow,
.section-kicker,
.label {
  margin: 0 0 0.8rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: 4.4rem;
  font-weight: 900;
}

h2 {
  font-size: 2.5rem;
  font-weight: 900;
}

h3 {
  font-size: 1.35rem;
  font-weight: 900;
}

.hero-lede {
  max-width: 660px;
  margin: 1.3rem 0 0;
  color: rgba(255, 248, 232, 0.86);
  font-size: 1.25rem;
}

.hero-actions,
.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.82rem 1rem;
  border: 2px solid var(--ink);
  border-radius: 6px;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--yellow);
  color: var(--ink);
}

.button-quiet {
  background: transparent;
  color: currentColor;
  border-color: currentColor;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.disclaimer {
  max-width: 620px;
  margin: 1.35rem 0 0;
  color: rgba(255, 248, 232, 0.74);
  font-size: 0.92rem;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 3px solid var(--ink);
  background: var(--yellow);
}

.ticker p {
  min-height: 72px;
  margin: 0;
  padding: 1rem;
  border-right: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.ticker p:last-child {
  border-right: 0;
}

.section {
  padding: 5.5rem 5vw;
}

.purpose-grid,
.guardrails-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 3rem;
  align-items: start;
}

.purpose-copy p,
.section-heading p,
.join-copy p,
.report-panel p,
.guardrails-list p,
.video-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.purpose-copy p:first-child,
.guardrails-list p:first-child {
  margin-top: 0;
}

.proof-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding-top: 0;
}

.pillar {
  min-height: 250px;
  padding: 1.35rem;
  border: 3px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--ink);
}

.pillar span {
  display: inline-block;
  margin-bottom: 2.2rem;
  font-weight: 900;
}

.pillar p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.pillar-yellow {
  background: var(--yellow);
}

.pillar-red {
  background: #ffd6d1;
}

.pillar-green {
  background: #d8f2e8;
}

.video-section {
  background: var(--ink);
  color: var(--paper-strong);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-heading p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 248, 232, 0.76);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 280px));
  gap: 0.85rem;
  align-items: start;
  justify-content: start;
}

.video-card {
  overflow: hidden;
  border: 2px solid rgba(255, 248, 232, 0.28);
  border-radius: 8px;
  background: rgba(255, 248, 232, 0.06);
  color: var(--paper-strong);
  text-decoration: none;
}

.video-frame {
  position: relative;
  background: #000000;
}

.video-disclaimer {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  z-index: 2;
  max-width: calc(100% - 1.5rem);
  padding: 0.42rem 0.55rem;
  background: rgba(17, 17, 15, 0.82);
  color: var(--paper-strong);
  border: 1px solid rgba(255, 248, 232, 0.36);
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1.2;
  pointer-events: none;
}

.video-card-wide .video-frame {
  aspect-ratio: 3 / 2;
}

.video-card-reel .video-frame {
  aspect-ratio: 2 / 3;
}

.video-card-youtube .video-frame {
  aspect-ratio: 4 / 3;
}

.video-frame video,
.video-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-play-label {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 2;
  padding: 0.55rem 0.7rem;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 6px;
  box-shadow: 3px 3px 0 var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-link-card:hover,
.video-link-card:focus-visible {
  border-color: var(--yellow);
  transform: translate(-1px, -1px);
}

.video-copy {
  padding: 0.9rem;
}

.video-copy .label {
  margin-bottom: 0.45rem;
  color: var(--yellow);
}

.video-copy h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
  line-height: 1.15;
}

.video-copy p {
  margin-bottom: 0;
  color: rgba(255, 248, 232, 0.76);
  font-size: 0.88rem;
  line-height: 1.35;
}

.join-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 2rem;
  align-items: start;
}

.join-copy {
  position: sticky;
  top: 110px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: start;
}

.social-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 0.7rem;
  min-height: 138px;
  padding: 1.1rem;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper-strong);
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
}

.social-card-platform {
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-card strong {
  font-size: 1.2rem;
  line-height: 1.15;
}

.social-card-icon,
.social-card-qr {
  grid-template-rows: auto auto 1fr auto;
}

.social-icon {
  align-self: start;
  justify-self: start;
  width: 58px;
  height: 58px;
  border-radius: 14px;
  box-shadow: 2px 2px 0 rgba(16, 16, 15, 0.22);
}

.social-qr {
  align-self: start;
  justify-self: start;
  width: min(132px, 100%);
  height: auto;
  padding: 0.35rem;
  border: 1px solid rgba(16, 16, 15, 0.2);
  border-radius: 6px;
  background: #ffffff;
}

.social-card-action {
  align-self: end;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(16, 16, 15, 0.18);
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.social-card:hover,
.social-card:focus-visible {
  background: #eaf1ff;
  transform: translate(-1px, -1px);
}

.report-section {
  background: var(--red);
  color: var(--paper-strong);
}

.report-panel {
  max-width: 900px;
}

.report-panel .section-kicker {
  color: var(--yellow);
}

.report-panel p {
  color: rgba(255, 248, 232, 0.84);
  font-size: 1.16rem;
}

.report-panel .report-note {
  color: rgba(255, 248, 232, 0.72);
  font-size: 0.96rem;
}

.guardrails-section {
  background: var(--paper-strong);
}

.guardrails-list {
  display: grid;
  gap: 0.9rem;
}

.guardrails-list p {
  margin: 0;
  padding: 1rem;
  border-left: 6px solid var(--green);
  background: var(--paper);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 5vw;
  background: var(--ink);
  color: rgba(255, 248, 232, 0.78);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--yellow);
  font-weight: 800;
  text-decoration: none;
}

.not-found-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper-strong);
}

.not-found {
  width: min(620px, 90vw);
}

.not-found p {
  color: rgba(255, 248, 232, 0.78);
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.4rem;
  }

  h2 {
    font-size: 2.05rem;
  }

  .ticker,
  .proof-section,
  .purpose-grid,
  .guardrails-section,
  .join-section,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: grid;
  }

  .join-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    flex-direction: column;
    align-items: stretch;
    gap: 0.8rem;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero-inner {
    width: 100%;
    padding: 4rem 5vw 5rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

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

  .ticker p {
    min-height: 64px;
    border-bottom: 2px solid var(--ink);
    font-size: 0.88rem;
  }

  .ticker p:nth-child(2n) {
    border-right: 0;
  }

  .section {
    padding: 4rem 5vw;
  }

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

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

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

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