:root {
  --bg: #0f172a;
  --muted: #94a3b8;
  --container-width: 1100px;
  --green: #515942;
  --gold: #f6ae2d;
  --white: #fffffc;
  --red: #f34213;
  --tan: #feeec5;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  font-family: "Barlow", Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  font-size: 1rem;
  line-height: 1.6;
}

h2 {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

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

.hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  background-color: var(--green);
  color: #fff;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-text {
  display: none;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-family: "Barlow Semi Condensed", sans-serif;
}
.logo-text-mobile {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 2rem;
  text-transform: uppercase;
  font-family: "Barlow Semi Condensed", sans-serif;
}
.menu {
  display: none;
  gap: 18px;
  align-items: center;
  text-transform: uppercase;
  font-family: "Barlow Semi Condensed", sans-serif;
}
.menu a {
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 12px;
  border-radius: 6px;
  display: block;
}
.menu a:hover {
  background: rgba(255, 255, 255, 0.06);
}
a.menu-buy {
  background: var(--gold);
  color: #04201b;
  font-weight: 600;
}

a.menu-buy:hover {
  background: #f5b94a;
}

/* hamburger toggle (CSS-only) */
.menu-toggle {
  display: none;
}
.hamburger {
  display: block;
  width: 36px;
  height: 36px;
  cursor: pointer;
  position: relative;
  background: transparent;
  border: none;
  padding: 0;
}

.hamburger::before,
.hamburger::after,
.hamburger span {
  content: "";
  display: block;
  width: 20px;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 240ms ease, opacity 180ms ease;
}

.hamburger span {
  top: 50%;
  transform: translate(-50%, -50%);
}

.hamburger::before {
  top: 10px;
}

.hamburger::after {
  bottom: 10px;
}

.hero-content {
  padding: 12px 16px 36px;
  text-align: left;
  line-height: 1.2;
  max-width: var(--container-width);
  margin: 0 auto;
  width: 100%;
}
.brand {
  font-size: 1.75rem;
  margin: 8px 0;
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
}
.gold {
  color: var(--gold);
  /* font-style: italic; */
  border-bottom: 3px solid var(--gold);
}
.mission {
  color: var(--white);
  font-size: 1.25rem;
  padding: 18px 0;
  margin: 10px 0 18px;
}
.cta {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 12px 12px;
  border-radius: 6px;
  text-align: center;
  font-weight: 600;
  font-family: "Barlow Semi Condensed", sans-serif;
  text-transform: uppercase;
}

.cta:hover {
  background: #f5b94a;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 48px 24px;
}

.problem {
  background: #fff;
  color: #0f172a;
  text-align: center;
  max-width: 1024px;
  margin: 0 auto;
}
.problem h2 {
  margin-top: 0;
}

.solution {
  background: #f8fafc;
  margin: 0 auto;
  text-align: center;
}
.steps {
  list-style: none;
  padding: 16px 0 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 18px;
}
.steps li {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}
.steps h3 {
  margin: 0 0 8px;
}

.construction {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.site-footer {
  background: #061126;
  color: rgba(255, 255, 255, 0.8);
  padding: 18px 24px;
}
.site-footer .container {
  display: flex;
  justify-content: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-content p {
  margin: 0;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  color: var(--gold);
}

.social-links i {
  font-size: 24px;
}

#menu-toggle:checked ~ * {
  overflow: hidden;
}
body:has(#menu-toggle:checked) {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* Mobile-first: default behaviors are for small screens */
/* show menu when toggle checked (mobile) - full-screen centered overlay */
#menu-toggle:checked ~ .menu {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(6, 8, 15, 0.96);
  padding: 24px;
  border-radius: 0;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  gap: 18px;
  box-shadow: none;
}

/* larger, centered menu items when overlay open */
#menu-toggle:checked ~ .menu a {
  font-size: 1.25rem;
  padding: 12px 20px;
  text-align: center;
}

/* animate hamburger into an X when menu open (mobile) */
#menu-toggle:checked + .hamburger::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

#menu-toggle:checked + .hamburger span {
  opacity: 0;
}

#menu-toggle:checked + .hamburger::after {
  bottom: 50%;
  transform: translate(-50%, 50%) rotate(-45deg);
}

/* keep hamburger interactive above the full-screen overlay */
#menu-toggle:checked + .hamburger {
  z-index: 10001;
  pointer-events: auto;
}

.nav {
  padding: 12px 16px;
}

.buy {
  display: none;
}

/* Larger screens: override mobile defaults */
@media (min-width: 426px) {
  .logo-text {
    display: block;
    font-size: 2rem;
  }
  .logo-text-mobile {
    display: none;
  }
  .hero-content {
    padding: 48px 24px 64px;
  }

  .brand {
    font-size: 3.5rem;
  }

  .nav {
    padding: 18px 24px;
  }

  .problem h2 {
    font-size: 2rem;
  }

  .solution h2 {
    font-size: 2rem;
  }

  .mission {
    font-size: 1.5rem;
  }
}

@media (min-width: 769px) {
  .hamburger {
    display: none;
  }
  .menu {
    display: flex;
    position: static;
    background: transparent;
    padding: 0;
    border-radius: 0;
    flex-direction: row;
    align-items: center;
    gap: 18px;
    box-shadow: none;
    min-width: 0;
  }

  .menu a {
    display: inline-block;
  }

  .logo-text {
    font-size: 1.5rem;
  }
}

@media (min-width: 1025px) {
  .logo-text {
    font-size: 2rem;
  }
}
