:root {
  --black: #050705;
  --black-soft: #0a0d0a;
  --panel: #0d110d;
  --white: #f2f5f0;
  --muted: #9ba59a;
  --green: #39ff88;
  --green-dark: #18b85a;
  --border: rgba(57, 255, 136, 0.16);
  --max-width: 1180px;
  --transition: 250ms ease;
  color: #000000 !important
  -webkit-text-fill-color: #000000 !important
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.green {
  color: var(--green);
}

.container {
  width: min(calc(100% - 48px), var(--max-width));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.section {
  padding: 130px 0;
}

.section-label {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 7, 5, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(calc(100% - 48px), var(--max-width));
  height: 76px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 31px;
  height: 31px;
  border: 1px solid var(--green);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: #bfc7be;
  font-size: 0.82rem;
  font-weight: 600;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--green);
}

.nav-links .nav-cta {
  border: 1px solid var(--green);
  color: var(--green);
  padding: 9px 16px;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  padding: 9px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--green);
  margin: 5px 0;
}


/* Hero */

.hero {
  min-height: 100vh;
  padding: 170px max(24px, calc((100vw - var(--max-width)) / 2)) 100px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 70px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(57, 255, 136, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 136, 0.07) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero-content,
.hero-side {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin-bottom: 30px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
  font-weight: 950;
}

.hero-lead {
  max-width: 690px;
  margin-top: 32px;
  color: #b5beb4;
  font-size: 1.12rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 50px;
  padding: 0 21px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  transition: transform var(--transition), background var(--transition);
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--green);
  color: #031008;
}

.button-primary:hover {
  background: #6affaa;
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white;
}

.button-secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.trust-message {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 45px;
  max-width: 430px;
  color: #aeb7ad;
}

.trust-icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--green);
  color: var(--green);
  font-weight: 900;
}

.trust-message strong,
.trust-message span {
  display: block;
}

.trust-message strong {
  color: var(--white);
  font-size: 0.82rem;
}

.trust-message span {
  font-size: 0.76rem;
}


/* Terminal */

.hero-side {
  display: flex;
  justify-content: center;
}

.terminal {
  width: min(100%, 440px);
  border: 1px solid var(--border);
  background: rgba(8, 12, 8, 0.9);
  box-shadow:
    0 0 80px rgba(57, 255, 136, 0.06),
    inset 0 0 50px rgba(57, 255, 136, 0.02);
}

.terminal-top {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 16px;
  border-bottom: 1px solid var(--border);
}

.terminal-top > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #354036;
}

.terminal-top > span:nth-child(2) {
  background: #6b8b6e;
}

.terminal-top > span:nth-child(3) {
  background: var(--green);
}

.terminal-top small {
  margin-left: auto;
  color: #627064;
  font-size: 0.6rem;
  letter-spacing: 0.1em;
}

.terminal-body {
  padding: 30px;
  font-family: "Courier New", monospace;
  font-size: 0.83rem;
}

.terminal-body p {
  margin-bottom: 16px;
  color: #abb6aa;
}

.terminal-green {
  color: var(--green);
}

.terminal-answer {
  color: var(--white) !important;
  font-weight: 800;
  margin-left: 15px;
}

.terminal-answer.warning {
  color: var(--green) !important;
}

.cursor {
  width: 8px;
  height: 16px;
  background: var(--green);
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}


/* Typography */

h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.large-text {
  color: var(--white);
  font-size: 1.45rem;
  line-height: 1.55;
  margin-bottom: 30px;
}

.narrow > p:not(.large-text) {
  color: var(--muted);
  margin-bottom: 22px;
}

.narrow strong {
  color: var(--white);
}


/* Dark section */

.dark-section {
  background: var(--black-soft);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 70px;
}

.section-heading p {
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.info-card {
  min-height: 300px;
  padding: 40px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.info-card:hover {
  background: rgba(57, 255, 136, 0.035);
}

.card-number {
  color: var(--green);
  font-family: monospace;
  font-size: 0.7rem;
}

.info-card h3 {
  margin: 35px 0 15px;
  font-size: 1.5rem;
}

.info-card p {
  color: var(--muted);
}


/* =====================================================
   03 / THE DIGITAL TRAIL
   Wider timeline layout
   ===================================================== */

.section-title {
  max-width: 900px;
  margin-bottom: 75px;
}

.timeline {
  width: 100%;
  max-width: 1120px;
  border-left: 1px solid var(--border);
  margin-left: 10px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 35px;
  padding: 0 20px 60px 45px;
  position: relative;
}

.timeline-marker {
  position: absolute;
  left: -13px;
  top: 0;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  background: var(--black);
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 0.62rem;
  font-weight: 900;
}

.timeline-content {
  max-width: 1000px;
}

.timeline-item h3 {
  font-size: 1.45rem;
  margin-bottom: 8px;
   min-width: 500px;
}

.timeline-item p {
  color: var(--muted);
  max-width: 900px;
  line-height: 1.65;
  min-width: 500px;
}


/* Freedom */

.freedom-section {
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(57, 255, 136, 0.08),
      transparent 30%
    ),
    var(--black-soft);
}

.freedom-content {
  max-width: 1000px;
}

.freedom-content > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 25px;
}

.freedom-content > p strong {
  color: var(--white);
}

.freedom-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--border);
}

.freedom-principles > div {
  padding: 30px 25px;
  border-right: 1px solid var(--border);
}

.freedom-principles > div:first-child {
  border-left: 1px solid var(--border);
}

.freedom-principles span {
  display: block;
  color: var(--green);
  font-family: monospace;
  font-size: 0.7rem;
  margin-bottom: 25px;
}

.freedom-principles strong {
  font-size: 1.2rem;
}

.freedom-principles p {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 8px;
}


/* Protection */

.protection {
  background: #080b08;
}

.protection-box {
  border: 1px solid var(--border);
  padding: 65px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.protection-box h2 {
  font-size: clamp(2.3rem, 4vw, 4rem);
}

.protection-box p {
  color: var(--muted);
  margin-top: 20px;
}

.protection-list {
  display: grid;
  gap: 15px;
  align-content: center;
}

.protection-list div {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: #c6cec5;
  font-size: 0.9rem;
}

.protection-list span {
  color: var(--green);
  margin-right: 10px;
}


/* Community */

.community {
  position: relative;
}

.shield {
  width: 68px;
  height: 78px;
  margin: 0 auto 35px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid var(--green);
  clip-path: polygon(
    50% 0,
    95% 16%,
    90% 65%,
    50% 100%,
    10% 65%,
    5% 16%
  );
}

.shield span {
  font-size: 1.2rem;
}

.community h2 {
  max-width: 800px;
  margin: auto;
}

.community p {
  max-width: 720px;
  margin: 28px auto 0;
  color: var(--muted);
}

.community strong {
  color: var(--white);
}


/* CTA */

.cta-section {
  background: var(--green);
  color: #031008;
}

.cta-section .section-label {
  color: #126d39;
}

.cta-section h2 {
  font-size: clamp(3.2rem, 7vw, 7rem);
}

.cta-section p {
  margin: 30px auto;
  max-width: 500px;
  color: #245c3a;
}

.cta-section .button-primary {
  background: #031008;
  color: var(--green);
}

.cta-section .button-primary:hover {
  background: #102219;
}


/* Disclaimer */

.disclaimer {
  padding: 40px 0;
  background: #030403;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.disclaimer p {
  max-width: 900px;
  color: #697269;
  font-size: 0.72rem;
  line-height: 1.7;
}

.disclaimer strong {
  color: #8e998e;
}


/* Footer */

.footer {
  padding: 60px 0;
  background: #020302;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 50px;
}

.footer p {
  margin-top: 15px;
  color: #657066;
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  gap: 22px;
}

.footer-links a {
  color: #788278;
  font-size: 0.72rem;
}

.footer-links a:hover {
  color: var(--green);
}

.copyright {
  color: #4d564e;
  font-size: 0.7rem;
}


/* Mobile */

@media (max-width: 850px) {

  .section {
    padding: 90px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    padding: 20px 24px 30px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(5, 7, 5, 0.98);
    border-bottom: 1px solid var(--border);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links .nav-cta {
    text-align: center;
    margin-top: 12px;
  }

  .hero {
    padding-top: 140px;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 5.5rem);
  }

  .hero-side {
    justify-content: flex-start;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .freedom-principles {
    grid-template-columns: 1fr 1fr;
  }

  .protection-box {
    grid-template-columns: 1fr;
    gap: 45px;
    padding: 40px 30px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
  /* Fix for mobile text color inversion in section 07 */
.section-label, 
	div:contains("07 / THE CHOICE") {
  color: #000000 !important;
  -webkit-text-fill-color: #000000 !important;
}

}


@media (max-width: 520px) {

  .container,
  .navbar {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .large-text {
    font-size: 1.2rem;
  }

  .info-card {
    padding: 30px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 30px;
  }

  .timeline-item p {
    max-width: none;
  }

  .freedom-principles {
    grid-template-columns: 1fr;
  }

  .freedom-principles > div,
  .freedom-principles > div:first-child {
    border-left: 1px solid var(--border);
  }

  .protection-box {
    padding: 30px 22px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
