:root {
  --ink: #0a120f;
  --deep: #0d1b16;
  --deep-2: #15271f;
  --green: #7fa93e;
  --lime: #b1d451;
  --yellow: #f5b83d;
  --orange: #e87622;
  --paper: #f3ead7;
  --cream: #fff6df;
  --muted: #b8c2ba;
  --line: rgba(255,255,255,.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--cream);
  background:
    radial-gradient(circle at 15% 20%, rgba(127,169,62,.12), transparent 30rem),
    radial-gradient(circle at 85% 15%, rgba(232,118,34,.1), transparent 24rem),
    var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.noise {
  position: fixed; inset: 0; opacity: .05; pointer-events: none; z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.site-header {
  position: sticky; top: 0; z-index: 30;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 70px);
  background: rgba(10,18,15,.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand, .footer-brand { display: flex; align-items: center; gap: 12px; }
.brand strong, .footer-brand strong { display: block; font-size: .9rem; letter-spacing: .08em; }
.brand small, .footer-brand small { color: var(--lime); font-weight: 800; }
.brand-mark {
  width: 42px; height: 42px; display: grid; place-items: center;
  background: var(--green); color: var(--deep); border-radius: 50%;
  font-family: "Anton", sans-serif; font-size: 1.55rem; border: 3px solid var(--cream);
}
.nav-links { display: flex; align-items: center; gap: 28px; font-weight: 700; }
.nav-links a { opacity: .82; }
.nav-links a:hover { opacity: 1; color: var(--lime); }
.nav-cta {
  padding: 12px 18px; border: 1px solid var(--lime);
  border-radius: 999px; color: var(--lime);
}
.menu-button {
  display: none; border: 0; background: transparent; padding: 8px;
}
.menu-button span:not(.sr-only) {
  display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--cream);
}

.hero {
  min-height: 86vh;
  display: grid; grid-template-columns: 1.05fr .95fr; align-items: center;
  gap: clamp(30px, 5vw, 90px);
  padding: clamp(60px, 8vw, 120px) clamp(20px, 7vw, 110px);
  position: relative;
}
.hero-copy { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 14px; color: var(--lime); font-weight: 800;
  letter-spacing: .16em; font-size: .78rem;
}
h1, h2, h3 {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400; text-transform: uppercase; margin: 0;
}
h1 {
  font-size: clamp(4.4rem, 10vw, 9.2rem);
  line-height: .82; letter-spacing: -.03em;
  text-shadow: 0 7px 0 rgba(0,0,0,.3);
}
.hero-kicker {
  margin: 20px 0 0; font-family: "Anton"; font-size: clamp(2rem, 4vw, 4.2rem);
  color: var(--paper); transform: rotate(-1deg);
}
.hero-kicker span { color: var(--lime); }
.hero-description {
  max-width: 650px; margin: 24px 0; color: #d7ded8;
  font-size: clamp(1rem, 1.8vw, 1.18rem); line-height: 1.7;
}
.hero-actions, .workforce-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 22px; border-radius: 10px;
  border: 1px solid transparent; font-weight: 800; cursor: pointer;
  text-transform: uppercase; letter-spacing: .05em;
}
.button-primary {
  background: var(--lime); color: var(--deep); box-shadow: 0 6px 0 #5c7d28;
}
.button-primary:hover { transform: translateY(2px); box-shadow: 0 4px 0 #5c7d28; }
.button-secondary {
  color: var(--cream); background: transparent; border-color: rgba(255,255,255,.28);
}
.button-secondary:hover { border-color: var(--lime); color: var(--lime); }

.contract-card {
  margin-top: 20px; display: inline-flex; align-items: center; gap: 14px;
  padding: 12px 16px; border: 1px dashed rgba(255,255,255,.28);
  border-radius: 8px; background: rgba(255,255,255,.04);
}
.contract-card span { color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .12em; }
.contract-card code { font-size: .86rem; color: var(--yellow); }
.hero-meta {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px; margin-top: 32px; max-width: 720px;
}
.hero-meta > div {
  padding: 14px; border-top: 1px solid var(--line); background: rgba(255,255,255,.025);
}
.meta-label { display: block; color: var(--muted); font-size: .66rem; letter-spacing: .13em; margin-bottom: 6px; }

.hero-visual { min-height: 620px; position: relative; display: grid; place-items: center; }
.hero-visual img {
  position: relative; z-index: 2; width: min(100%, 650px);
  filter: drop-shadow(0 28px 30px rgba(0,0,0,.45));
}
.sun-disc {
  position: absolute; width: 85%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, #ffd45f, var(--orange) 65%, transparent 66%);
  filter: saturate(.9);
}
.timecard, .sticky-note {
  position: absolute; z-index: 4; box-shadow: 0 16px 30px rgba(0,0,0,.35);
  transform: rotate(-4deg);
}
.timecard {
  left: 0; bottom: 8%; width: 180px; padding: 16px;
  background: var(--paper); color: var(--deep); border: 4px solid var(--deep);
}
.timecard span, .timecard small { display: block; font-size: .72rem; font-weight: 800; }
.timecard strong {
  display: block; color: #c54428; border: 3px solid #c54428;
  padding: 7px; margin: 7px 0; text-align: center;
}
.sticky-note {
  right: -1%; top: 16%; background: var(--yellow); color: var(--deep);
  padding: 18px; font-weight: 900; font-size: 1.1rem; transform: rotate(5deg);
}

.ticker-strip {
  overflow: hidden; border-block: 1px solid rgba(255,255,255,.18);
  background: var(--lime); color: var(--deep); transform: rotate(-1deg) scale(1.02);
}
.ticker-track {
  width: max-content; display: flex; gap: 28px; padding: 14px 0;
  font-family: "Anton"; font-size: 1.35rem; animation: ticker 24s linear infinite;
}
@keyframes ticker { to { transform: translateX(-50%); } }

.section { padding: clamp(70px, 10vw, 140px) clamp(20px, 7vw, 110px); }
.section-heading { max-width: 950px; margin-bottom: 48px; }
.section-heading h2, .workforce-card h2, .disclaimer-section h2 {
  font-size: clamp(2.7rem, 6vw, 5.6rem); line-height: .95;
}
.section-note { color: var(--muted); line-height: 1.6; max-width: 700px; }

.story-section { background: var(--paper); color: var(--deep); }
.story-section .eyebrow { color: #54791f; }
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: start; }
.story-copy { font-size: 1.08rem; line-height: 1.8; }
.story-copy .lead { font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.3; }
blockquote {
  margin: 30px 0 0; padding: 24px 0 0; border-top: 3px solid var(--green);
  font-family: "Anton"; font-size: 2rem;
}
blockquote cite { display: block; margin-top: 8px; font-family: "Inter"; font-size: .8rem; font-style: normal; }
.employee-file {
  border: 3px solid var(--deep); background: #e4d8be; box-shadow: 12px 12px 0 rgba(13,27,22,.14);
  transform: rotate(1deg);
}
.file-header {
  display: flex; justify-content: space-between; padding: 16px 20px;
  background: var(--deep); color: var(--cream); font-weight: 800;
}
.file-header strong { color: var(--lime); }
.employee-file dl { margin: 0; padding: 12px 20px 20px; }
.employee-file dl div { display: grid; grid-template-columns: 140px 1fr; gap: 16px; padding: 16px 0; border-bottom: 1px dashed #9b8d71; }
.employee-file dt { font-size: .75rem; font-weight: 800; text-transform: uppercase; color: #59635b; }
.employee-file dd { margin: 0; font-weight: 800; }

.shifts-section { background: var(--deep); }
.shift-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.shift-card {
  min-height: 390px; padding: 28px; border: 1px solid var(--line);
  background: rgba(255,255,255,.035); position: relative; overflow: hidden;
}
.shift-card::after {
  content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%;
  right: -45px; bottom: -45px; background: rgba(177,212,81,.08);
}
.shift-card:hover { border-color: var(--lime); transform: translateY(-4px); }
.shift-number { color: var(--lime); font-weight: 800; font-size: .74rem; letter-spacing: .14em; }
.shift-card h3 { font-size: 2.5rem; margin: 32px 0 18px; }
.shift-card p { color: var(--muted); line-height: 1.7; }
.shift-card ul { list-style: none; margin: 28px 0 0; padding: 0; }
.shift-card li { padding: 10px 0; border-top: 1px solid var(--line); font-weight: 700; }

.tokenomics-section { background: #101a15; }
.tokenomics-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.allocation-chart {
  aspect-ratio: 1; border-radius: 50%; display: grid; place-items: center;
  background: conic-gradient(
    var(--lime) 0 40%,
    var(--yellow) 40% 60%,
    var(--orange) 60% 75%,
    #608db0 75% 90%,
    #d5d0bd 90% 100%
  );
  position: relative;
}
.allocation-chart::after {
  content: ""; position: absolute; inset: 22%; background: var(--deep); border-radius: 50%;
  box-shadow: inset 0 0 0 1px var(--line);
}
.chart-center { position: relative; z-index: 2; text-align: center; }
.chart-center span, .chart-center small { display: block; color: var(--muted); font-size: .72rem; font-weight: 800; letter-spacing: .1em; }
.chart-center strong { display: block; font-family: "Anton"; font-size: clamp(3rem, 6vw, 6rem); }
.allocation-list { display: grid; gap: 12px; }
.allocation-list > div {
  display: grid; grid-template-columns: 16px 72px 1fr; gap: 14px; align-items: center;
  padding: 18px; border-bottom: 1px solid var(--line);
}
.allocation-list strong { font-family: "Anton"; font-size: 2rem; }
.allocation-list p { margin: 0; color: var(--muted); }
.dot { width: 14px; height: 14px; border-radius: 50%; }
.dot-1 { background: var(--lime); }.dot-2 { background: var(--yellow); }
.dot-3 { background: var(--orange); }.dot-4 { background: #608db0; }.dot-5 { background: #d5d0bd; }

.workforce-section { background: var(--paper); color: var(--deep); }
.workforce-card {
  padding: clamp(30px, 6vw, 70px); background: var(--yellow);
  border: 5px solid var(--deep); box-shadow: 16px 16px 0 var(--green);
  display: flex; justify-content: space-between; align-items: center; gap: 30px;
}
.workforce-card p { max-width: 650px; font-weight: 600; line-height: 1.7; }
.workforce-card .button-secondary { color: var(--deep); border-color: var(--deep); }

.poster-section { background: #0b120f; padding-top: 40px; }
.poster-section img {
  margin: auto; width: min(100%, 1400px); border: 1px solid var(--line);
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.disclaimer-section { border-top: 1px solid var(--line); }
.disclaimer-section h2 { font-size: clamp(2rem, 4vw, 4rem); }
.disclaimer-section p { color: var(--muted); line-height: 1.8; max-width: 1000px; }

footer {
  padding: 28px clamp(20px, 7vw, 110px); border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
footer p { color: var(--muted); font-size: .82rem; }
.footer-brand small { display: block; margin-top: 4px; color: var(--muted); font-size: .65rem; }

.toast {
  position: fixed; right: 20px; bottom: 20px; z-index: 50;
  padding: 14px 18px; border-radius: 8px; background: var(--lime); color: var(--deep);
  font-weight: 800; opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1020px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 530px; }
  .shift-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid, .tokenomics-layout { grid-template-columns: 1fr; }
  .allocation-chart { width: min(100%, 520px); margin: auto; }
}

@media (max-width: 760px) {
  .menu-button { display: block; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    padding: 20px; background: var(--deep); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 0; }
  h1 { font-size: clamp(3.8rem, 19vw, 6.5rem); }
  .hero { padding-top: 55px; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-visual { min-height: 430px; }
  .timecard { width: 145px; left: -6px; }
  .sticky-note { right: -8px; font-size: .9rem; }
  .shift-grid { grid-template-columns: 1fr; }
  .workforce-card { align-items: flex-start; flex-direction: column; box-shadow: 9px 9px 0 var(--green); }
  .employee-file dl div { grid-template-columns: 1fr; gap: 4px; }
  footer { flex-direction: column; align-items: flex-start; }
}

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