:root {
  --bg: #111315;
  --bg-soft: #191d22;
  --panel: #222931;
  --panel-soft: #2a323c;
  --line: #485565;
  --text: #f3f7fa;
  --muted: #b7c3cf;
  --steel: #99a9ba;
  --mist: #d9e0e7;
  --signal: #f2bf77;
  --wave-a: #444f5d;
  --wave-b: #2b3440;
  --accent: #f0a23c;
  --accent-soft: #f7d2a0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "IBM Plex Sans", "Segoe UI", Tahoma, sans-serif;
  line-height: 1.58;
  background:
    radial-gradient(65vw 40vw at 5% 0%, rgba(240, 162, 60, 0.1), transparent 60%),
    radial-gradient(65vw 45vw at 90% 10%, rgba(68, 79, 93, 0.22), transparent 55%),
    linear-gradient(180deg, #171b1f 0%, #111519 38%, #0d1115 100%);
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 5vw;
  border-bottom: 1px solid rgba(217, 224, 231, 0.16);
  background: rgba(10, 16, 24, 0.88);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand img {
  width: 66px;
  height: auto;
}

#site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 600;
}

#site-nav a {
  transition: color 0.2s ease;
}

#site-nav a:hover {
  color: var(--text);
}

#site-nav a.is-active {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 9px;
  border-radius: 10px;
  border: 1px solid rgba(217, 224, 231, 0.2);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--mist);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.hero {
  min-height: 84vh;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  padding: 70px 7vw 44px;
}

.drop-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 7vw;
  border-top: 0;
  border-bottom: 1px solid rgba(217, 224, 231, 0.12);
  background: linear-gradient(90deg, rgba(240, 162, 60, 0.16), rgba(44, 53, 63, 0.7));
}

.drop-strip p {
  margin: 0;
  color: var(--mist);
}

.hero-kicker {
  margin: 0 0 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border: 1px solid rgba(240, 162, 60, 0.32);
  border-radius: 999px;
  color: var(--accent-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(240, 162, 60, 0.08);
}

.hero-trust {
  margin: 14px 0 0;
  color: var(--steel);
  font-size: 0.96rem;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--steel);
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6.4rem);
  line-height: 0.94;
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(2rem, 4.1vw, 3.9rem);
  line-height: 0.96;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
}

.lead {
  max-width: 740px;
  font-size: clamp(1.08rem, 2vw, 1.48rem);
  color: var(--muted);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  border: 1px solid var(--line);
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease;
}

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

.button.primary {
  background: linear-gradient(180deg, #ffc57d, #f0a23c);
  border-color: rgba(240, 162, 60, 0.9);
  color: #1d1408;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.button.secondary:hover {
  background: rgba(240, 162, 60, 0.1);
  border-color: rgba(240, 162, 60, 0.38);
}

.hero-card {
  padding: 30px;
  border-radius: 26px;
  border: 1px solid rgba(217, 224, 231, 0.14);
  background:
    linear-gradient(160deg, rgba(240, 162, 60, 0.1), transparent 45%),
    linear-gradient(200deg, rgba(56, 67, 80, 0.66), rgba(28, 34, 42, 0.84));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.33);
}

.hero-card img {
  width: 100%;
  height: auto;
}

.hero-card p {
  margin: 10px 0 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.9rem;
  color: var(--muted);
}

.stat-row {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat-card {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(217, 224, 231, 0.12);
  background: linear-gradient(170deg, rgba(24, 36, 50, 0.86), rgba(18, 27, 38, 0.85));
}

.stat-value {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.stat-label {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.section {
  padding: 74px 7vw;
  border-top: 1px solid rgba(217, 224, 231, 0.1);
}

.apparel-intro {
  max-width: 840px;
  margin-bottom: 18px;
}

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

.apparel-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(217, 224, 231, 0.14);
  background:
    linear-gradient(160deg, rgba(240, 162, 60, 0.08), transparent 55%),
    linear-gradient(190deg, rgba(36, 44, 53, 0.9), rgba(22, 28, 35, 0.9));
}

.apparel-badge {
  margin: 0 0 10px;
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.apparel-price {
  margin: 12px 0 0;
  color: var(--mist);
  font-family: "Barlow Condensed", Impact, sans-serif;
  letter-spacing: 0.03em;
  font-size: 1.2rem;
}

.apparel-actions {
  margin-top: 20px;
}

.social-proof {
  background:
    linear-gradient(120deg, rgba(37, 45, 54, 0.8), rgba(19, 24, 30, 0.88)),
    radial-gradient(80% 100% at 90% 10%, rgba(240, 162, 60, 0.13), transparent 60%);
}

.proof-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.proof-card {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(217, 224, 231, 0.14);
  background: rgba(20, 26, 33, 0.7);
}

.proof-quote {
  margin: 0;
  color: var(--mist);
  font-size: 1rem;
}

.proof-meta {
  margin: 10px 0 0;
  color: var(--steel);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

.launch-steps article {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(217, 224, 231, 0.14);
  background: linear-gradient(180deg, rgba(33, 41, 50, 0.82), rgba(18, 24, 31, 0.88));
}

.launch-step {
  margin-bottom: 8px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 50px;
}

.copy-block p,
.section > p,
.section li {
  color: var(--muted);
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 16px;
}

.cards {
  margin-top: 26px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards article {
  padding: 22px;
  border-radius: 20px;
  border: 1px solid rgba(217, 224, 231, 0.12);
  background: linear-gradient(190deg, rgba(29, 43, 58, 0.78), rgba(17, 25, 35, 0.88));
}

.cards p {
  margin-bottom: 0;
}

.quote-panel {
  background:
    linear-gradient(100deg, rgba(36, 44, 53, 0.78), rgba(17, 23, 29, 0.84)),
    repeating-linear-gradient(-40deg, rgba(240, 162, 60, 0.08) 0 8px, transparent 8px 24px);
}

.quote-panel blockquote {
  margin: 0 0 18px;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(2.1rem, 5.2vw, 5rem);
  line-height: 0.96;
}

.impact-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  background: linear-gradient(90deg, rgba(24, 36, 50, 0.72), rgba(18, 28, 39, 0.75));
}

.impact-band article {
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(217, 224, 231, 0.12);
  background: rgba(12, 19, 28, 0.42);
}

.impact-band p {
  margin: 0;
}

.impact-number {
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--mist);
}

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

.roadmap-card {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(217, 224, 231, 0.12);
  background: linear-gradient(160deg, rgba(26, 38, 51, 0.82), rgba(16, 24, 34, 0.86));
}

.roadmap-step {
  margin-bottom: 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--signal);
}

.occupations .chip-wrap {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(217, 224, 231, 0.18);
  background: rgba(24, 36, 50, 0.75);
  color: var(--mist);
  font-size: 0.9rem;
  font-weight: 600;
}

.filter-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.story-controls {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.story-search-wrap {
  display: block;
  width: min(360px, 100%);
}

#story-search {
  width: 100%;
}

.filter-button {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--mist);
  cursor: pointer;
}

.filter-button.active {
  background: var(--mist);
  border-color: var(--mist);
  color: #13202d;
}

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

.story-card {
  padding: 22px;
  border-radius: 18px;
  border: 1px solid rgba(217, 224, 231, 0.12);
  background: linear-gradient(200deg, rgba(24, 36, 50, 0.8), rgba(15, 22, 31, 0.9));
}

.story-card mark {
  padding: 0 2px;
  border-radius: 4px;
  background: rgba(217, 224, 231, 0.3);
  color: var(--text);
}

.story-card.is-hidden {
  display: none;
}

.story-tag {
  margin-bottom: 8px;
  color: var(--signal);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.story-meta {
  margin-top: 12px;
  color: var(--steel);
  font-size: 0.84rem;
}

.form-card {
  padding: 24px;
  display: grid;
  gap: 14px;
  border-radius: 20px;
  border: 1px solid rgba(217, 224, 231, 0.12);
  background: linear-gradient(170deg, rgba(24, 36, 50, 0.9), rgba(16, 24, 34, 0.92));
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

label {
  display: grid;
  gap: 6px;
  color: var(--steel);
  font-weight: 600;
  font-size: 0.92rem;
}

input,
textarea {
  width: 100%;
  padding: 12px 13px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 18, 0.8);
  color: var(--text);
  font: inherit;
}

select {
  width: 100%;
  padding: 12px 13px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 18, 0.8);
  color: var(--text);
  font: inherit;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

input:focus,
textarea:focus,
.form-card select:focus,
.filter-button:focus,
.button:focus,
.nav-toggle:focus {
  outline: 2px solid rgba(217, 224, 231, 0.45);
  outline-offset: 2px;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: var(--mist);
}

.form-status.error {
  color: #ffc9c9;
}

.faq-list {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.faq-list details {
  border-radius: 14px;
  border: 1px solid rgba(217, 224, 231, 0.12);
  background: rgba(24, 36, 50, 0.64);
  padding: 14px 16px;
}

.faq-list summary {
  cursor: pointer;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: 1.36rem;
}

.faq-list p {
  margin: 10px 0 0;
}

.creed-panel {
  display: grid;
  gap: 14px;
}

.creed-box {
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(217, 224, 231, 0.12);
  background: linear-gradient(180deg, rgba(24, 36, 50, 0.72), rgba(16, 24, 34, 0.78));
}

.creed-box p {
  margin: 0;
  color: var(--mist);
}

.participate-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.participate-grid article {
  padding: 20px;
  border-radius: 16px;
  border: 1px solid rgba(217, 224, 231, 0.12);
  background: linear-gradient(180deg, rgba(24, 36, 50, 0.8), rgba(16, 24, 34, 0.86));
}

.launch-banner {
  text-align: center;
  background:
    radial-gradient(70% 120% at 50% 0%, rgba(240, 162, 60, 0.2), transparent 68%),
    linear-gradient(180deg, rgba(34, 41, 49, 0.86), rgba(18, 23, 29, 0.92));
}

.launch-banner p {
  max-width: 720px;
  margin: 0 auto;
}

.launch-banner .actions {
  justify-content: center;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(217, 224, 231, 0.25);
  background: rgba(12, 19, 28, 0.88);
  color: var(--mist);
  font-weight: 700;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.section-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

footer {
  padding: 28px 7vw 34px;
  border-top: 1px solid rgba(217, 224, 231, 0.1);
  color: var(--muted);
}

footer .small {
  font-size: 0.86rem;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
}

.thanks-card {
  width: min(680px, 100%);
  text-align: center;
  padding: 40px 26px;
  border-radius: 26px;
  border: 1px solid rgba(217, 224, 231, 0.13);
  background: linear-gradient(180deg, rgba(24, 36, 50, 0.9), rgba(16, 24, 34, 0.92));
}

.thanks-card img {
  width: min(350px, 100%);
  height: auto;
}

.thanks-actions {
  justify-content: center;
}

.admin-auth {
  max-width: 620px;
}

.remember-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.remember-row input {
  width: 16px;
  height: 16px;
}

#admin-audit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.audit-item {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(217, 224, 231, 0.12);
  background: rgba(24, 36, 50, 0.64);
}

.audit-item p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 860px) {
  #admin-audit-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .drop-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .proof-grid,
  .launch-steps {
    grid-template-columns: 1fr;
  }

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

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

  .impact-band {
    grid-template-columns: 1fr;
  }

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

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

  .story-controls {
    grid-template-columns: 1fr;
  }

  .story-search-wrap {
    width: 100%;
  }

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

  .stat-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 12px 5vw;
  }

  .nav-toggle {
    display: block;
  }

  #site-nav {
    position: fixed;
    inset: 68px 5vw auto;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid rgba(217, 224, 231, 0.15);
    border-radius: 12px;
    background: rgba(10, 16, 24, 0.98);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  #site-nav a {
    padding: 10px;
    border-radius: 8px;
  }

  #site-nav a:hover {
    background: rgba(217, 224, 231, 0.08);
  }

  #site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 38px;
  }

  .brand img {
    width: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
    animation: none !important;
  }

  .section-reveal {
    opacity: 1;
    transform: none;
  }
}
