@font-face {
  font-family: "CampDisplay";
  src: local("Arial Black");
}

:root {
  --bg: #fff8ef;
  --bg-2: #ffe8c8;
  --ink: #07111f;
  --muted: #6e5f52;
  --orange: #ff7a00;
  --orange-2: #ff3f2f;
  --gold: #ffb21e;
  --line: rgba(7, 17, 31, 0.12);
  --card: rgba(255, 255, 255, 0.74);
  --shadow: 0 30px 90px rgba(54, 25, 0, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 178, 30, 0.36), transparent 28rem),
    radial-gradient(circle at 88% 4%, rgba(255, 63, 47, 0.18), transparent 28rem),
    linear-gradient(180deg, #fffdf8 0%, var(--bg) 42%, #ffffff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 16px;
  z-index: 20;
  width: calc(100% - 40px);
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 60px rgba(7, 17, 31, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(7, 17, 31, 0.72);
  font-size: 0.92rem;
  font-weight: 800;
}

.nav-links a {
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--orange);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.button.primary {
  color: white;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 16px 34px rgba(255, 90, 0, 0.28);
}

.button.secondary {
  border: 1px solid rgba(7, 17, 31, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.button.light {
  margin-top: 18px;
  background: white;
  color: var(--ink);
}

.button.inverse {
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
  background: rgba(255, 255, 255, 0.1);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.section {
  padding: 92px 40px;
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 56px;
  padding-top: 80px;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 13px;
  border: 1px solid rgba(255, 122, 0, 0.25);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #9c4600;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.54);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(255, 122, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
  }
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin: 26px 0 24px;
  max-width: 980px;
  font-size: clamp(4rem, 8.2vw, 8.6rem);
  line-height: 0.92;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.12rem, 1.7vw, 1.45rem);
  line-height: 1.65;
  font-weight: 650;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
  max-width: 740px;
}

.hero-stats div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.55);
}

.hero-stats strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.06em;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.hero-card {
  position: relative;
  isolation: isolate;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 8% -8% auto auto;
  width: 72%;
  height: 72%;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.45), rgba(255, 63, 47, 0.18));
  filter: blur(28px);
  z-index: -1;
}

.logo-panel {
  padding: 22px;
  border: 1px solid rgba(255, 122, 0, 0.16);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.logo-panel img {
  width: 100%;
  display: block;
  border-radius: 32px;
}

.dispatch-card {
  width: min(88%, 420px);
  margin: -56px auto 0;
  position: relative;
  padding: 24px;
  border-radius: 28px;
  color: white;
  background: #07111f;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.32);
  transform: rotate(-2.5deg);
}

.dispatch-card .tag {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dispatch-card h2 {
  margin: 10px 0 10px;
  font-size: 2.1rem;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.dispatch-card p {
  margin-bottom: 0;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(7, 17, 31, 0.1);
  background: #07111f;
  color: white;
  transform: rotate(-1deg) scale(1.04);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 38px;
  padding: 22px 0;
  animation: ticker 28s linear infinite;
  font-size: clamp(1.1rem, 2vw, 1.8rem);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.ticker-track span::before {
  content: "✦";
  margin-right: 34px;
  color: var(--orange);
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.intro {
  text-align: center;
  max-width: 1120px;
  margin: 0 auto;
}

.section-kicker {
  margin-bottom: 16px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: 0.96;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.intro p,
.brand-copy p,
.creator-text p,
.split-copy p {
  color: var(--muted);
  font-size: clamp(1.1rem, 1.55vw, 1.35rem);
  line-height: 1.72;
  font-weight: 650;
}

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

.feature-card {
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 70px rgba(54, 25, 0, 0.07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.number {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 122, 0, 0.11);
  color: var(--orange);
  font-weight: 950;
}

.feature-card h3 {
  margin: auto 0 14px;
  font-size: clamp(2.3rem, 3.5vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.08em;
  text-transform: uppercase;
  margin-top: 20px;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 50px;
  align-items: start;
  margin: 40px;
  border-radius: 40px;
  padding: 74px;
}

.dark {
  color: white;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,122,0,0.25), transparent 24rem),
    #07111f;
  box-shadow: 0 40px 100px rgba(7, 17, 31, 0.22);
}

.dark .split-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 30px 0 12px;
}

.check-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.check-list span {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  margin-top: 2px;
  border-radius: 99px;
  background: linear-gradient(135deg, var(--orange), var(--gold));
  position: relative;
}

.check-list span::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(42deg);
}

.creators h2 {
  max-width: 1120px;
}

.creator-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 26px;
  align-items: stretch;
  margin-top: 30px;
}

.creator-text {
  padding: 34px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
}

.camp-map {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 122, 0, 0.24);
  background:
    linear-gradient(45deg, rgba(255, 122, 0, 0.09) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255, 122, 0, 0.09) 25%, transparent 25%),
    linear-gradient(135deg, #fff3df, #ffffff);
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow: var(--shadow);
}

.map-title {
  position: absolute;
  left: 28px;
  top: 24px;
  z-index: 2;
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9c4600;
}

.map-item,
.map-fire {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 24px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  box-shadow: 0 18px 54px rgba(54, 25, 0, 0.12);
}

.map-item {
  min-width: 140px;
  min-height: 86px;
  padding: 18px;
  background: white;
  border: 1px solid rgba(7, 17, 31, 0.08);
}

.item-1 { left: 8%; top: 22%; transform: rotate(-5deg); }
.item-2 { right: 10%; top: 18%; transform: rotate(4deg); }
.item-3 { left: 18%; bottom: 12%; transform: rotate(6deg); }
.item-4 { right: 8%; bottom: 18%; transform: rotate(-4deg); }
.item-5 { left: 37%; top: 47%; transform: rotate(-2deg); }

.map-fire {
  width: 96px;
  height: 96px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #07111f;
  font-size: 2.6rem;
}

.brand-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
  align-items: center;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.sponsor-grid div {
  min-height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.25rem, 2vw, 2.4rem);
  font-weight: 950;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.how {
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,232,200,0.45) 100%);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
  counter-reset: step;
}

.step {
  position: relative;
  min-height: 280px;
  padding: 28px;
  border-radius: 28px;
  background: white;
  border: 1px solid var(--line);
  overflow: hidden;
}

.step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  right: -8px;
  top: -24px;
  color: rgba(255, 122, 0, 0.1);
  font-size: 8rem;
  font-weight: 950;
  letter-spacing: -0.08em;
}

.step strong {
  position: relative;
  display: block;
  margin-bottom: 18px;
  font-size: 2.3rem;
  line-height: 1.02;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.step p {
  position: relative;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}

.manifesto {
  padding-block: 120px;
  text-align: center;
}

.manifesto p {
  max-width: 1150px;
  margin: 0 auto;
  font-size: clamp(3rem, 7vw, 8rem);
  line-height: 0.98;
  font-weight: 950;
  letter-spacing: -0.085em;
  text-transform: uppercase;
}

.final-cta {
  padding-top: 30px;
}

.cta-card {
  padding: clamp(34px, 6vw, 78px);
  border-radius: 44px;
  color: white;
  background:
    radial-gradient(circle at 76% 20%, rgba(255,178,30,0.36), transparent 22rem),
    linear-gradient(135deg, #07111f, #111827 58%, #381406);
  box-shadow: 0 40px 120px rgba(7, 17, 31, 0.25);
  text-align: center;
}

.cta-card h2 {
  max-width: 1000px;
  margin-inline: auto;
}

.cta-card p {
  max-width: 760px;
  margin: 0 auto 30px;
  color: rgba(255,255,255,0.72);
  font-size: 1.2rem;
  line-height: 1.55;
  font-weight: 650;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 40px 48px;
  color: rgba(7, 17, 31, 0.75);
}

.footer strong {
  display: block;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.footer p {
  margin: 5px 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 850;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }

  .hero,
  .split,
  .creator-layout,
  .brand-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-card {
    max-width: 620px;
    margin: 0 auto;
  }

  .grid-3,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    margin: 24px;
    padding: 42px;
  }

  h1 {
    font-size: clamp(2.6rem, 7vw, 5rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    line-height: 1.04;
  }

  .manifesto p {
    font-size: clamp(2.2rem, 5.5vw, 5rem);
    line-height: 1.06;
  }

  .map-fire {
    top: 38%;
  }

  .item-5 {
    left: 50%;
    top: auto;
    bottom: 12%;
    transform: translateX(-50%) rotate(-2deg);
  }
}

@media (max-width: 720px) {
  .nav {
    top: 10px;
    width: calc(100% - 22px);
    padding: 10px 12px;
  }

  .brand span {
    display: none;
  }

  .nav-cta {
    min-height: 40px;
    padding-inline: 15px;
    font-size: 0.88rem;
  }

  .section {
    padding: 56px 18px;
  }

  .hero {
    padding-top: 36px;
    gap: 28px;
  }

  .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.03em;
    line-height: 1.4;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.85rem);
    line-height: 1.12;
    letter-spacing: -0.055em;
    margin: 16px 0 14px;
  }

  h2 {
    font-size: clamp(1.65rem, 7vw, 2.35rem);
    line-height: 1.14;
    letter-spacing: -0.055em;
    margin-bottom: 14px;
  }

  .hero-text {
    font-size: 1.02rem;
    line-height: 1.72;
  }

  .intro p,
  .brand-copy p,
  .creator-text p,
  .split-copy p {
    font-size: 1.02rem;
    line-height: 1.75;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 28px;
  }

  .hero-stats div {
    padding: 16px 18px;
  }

  .hero-stats strong {
    font-size: 1.45rem;
    line-height: 1.1;
  }

  .hero-stats span {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .dispatch-card {
    width: min(94%, 420px);
    margin-top: -36px;
    padding: 18px;
  }

  .dispatch-card h2 {
    font-size: 1.35rem;
    line-height: 1.2;
  }

  .dispatch-card p {
    line-height: 1.55;
  }

  .ticker {
    transform: none;
  }

  .ticker-track {
    gap: 22px;
    padding: 14px 0;
    font-size: clamp(0.85rem, 3.5vw, 1.1rem);
    line-height: 1.3;
  }

  .ticker-track span::before {
    margin-right: 22px;
  }

  .feature-card {
    min-height: auto;
    padding: 22px;
  }

  .feature-card h3 {
    font-size: clamp(1.45rem, 5.5vw, 2rem);
    line-height: 1.16;
  }

  .feature-card p {
    line-height: 1.65;
  }

  .grid-3,
  .steps,
  .sponsor-grid {
    grid-template-columns: 1fr;
  }

  .step {
    min-height: auto;
    padding: 22px;
  }

  .step::before {
    font-size: 5rem;
    top: -12px;
  }

  .step strong {
    font-size: 1.4rem;
    line-height: 1.18;
    margin-bottom: 12px;
  }

  .step p {
    line-height: 1.65;
  }

  .manifesto {
    padding-block: 64px;
  }

  .manifesto p {
    font-size: clamp(1.45rem, 6.5vw, 2.2rem);
    line-height: 1.2;
    letter-spacing: -0.05em;
  }

  .sponsor-grid div {
    min-height: 68px;
    font-size: clamp(0.95rem, 4vw, 1.35rem);
    line-height: 1.2;
  }

  .cta-card {
    border-radius: 32px;
    padding: 28px 20px;
  }

  .cta-card p {
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 22px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .split {
    margin: 10px;
    padding: 28px 18px;
    border-radius: 26px;
  }

  .creator-text {
    padding: 22px;
  }

  .camp-map {
    min-height: 400px;
  }

  .map-fire {
    top: 36%;
    width: 72px;
    height: 72px;
    font-size: 2rem;
    z-index: 2;
  }

  .map-item {
    min-width: 100px;
    min-height: 64px;
    font-size: 0.82rem;
    padding: 12px;
    z-index: 1;
  }

  .item-5 {
    left: 50%;
    top: auto;
    bottom: 11%;
    transform: translateX(-50%) rotate(-2deg);
    z-index: 3;
    min-width: 118px;
  }

  .item-1 { left: 5%; top: 24%; }
  .item-2 { right: 5%; top: 18%; }
  .item-3 { left: 8%; bottom: 14%; }
  .item-4 { right: 5%; bottom: 18%; }

  .footer {
    flex-direction: column;
    padding-inline: 18px;
    padding-bottom: 36px;
  }
}
