@font-face {
  font-family: "Dilemma";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("https://cdn.shopify.com/s/files/1/0700/8953/9805/files/dilemma-sansboldxp-webfont.woff2?v=1721806150") format("woff2");
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-dark: #212c1c;
  --green-text: #212c1c;
  --cream: #f4f1df;
  --cream-logo: #f5eac8;
  --gold: #d8a929;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Courier Prime", "Courier New", monospace;
  background-color: var(--cream);
  color: var(--green-text);
  -webkit-font-smoothing: antialiased;
  overflow-y:hidden;
}

/* Header */
.site-header {
  background-color: ##f4f1df;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
}

.header-logo {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
}

.header-logo img {
  display: block;
  width: 200px;
  height: auto;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 70px);
  background-color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 56px 28px 72px;
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  width: min(92vw, 720px);
  opacity: 0.065;
  filter: brightness(0) saturate(100%) invert(12%) sepia(18%) saturate(1200%) hue-rotate(95deg) brightness(95%);
}

.hero-watermark img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 420px;
  gap: 0;
}

/* Trust badge */
.trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--gold);
}

.stars svg {
  width: 18px;
  height: 18px;
  display: block;
}

.trust-text {
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: 12px;
  font-weight: 400;
  color: var(--green-text);
  line-height: 1;
}

/* Headline */
.hero-headline {
  font-family: "Dilemma", "Arial Narrow", sans-serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--green-text);
  text-transform: uppercase;
  margin-bottom: 18px;
}

/* Bullets */
.hero-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-bottom: 28px;
}

.hero-bullets li {
  font-family: "Courier Prime", "Courier New", monospace;
  font-size: 12px;
  font-weight: 400;
  color: var(--green-text);
  line-height: 1.4;
}

.hero-bullets li::before {
  content: "• ";
}

/* CTA */
.cta-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 32px;
  background-color: var(--green-dark);
  color: var(--cream);
  font-family: "Dilemma", "Arial Narrow", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: #1a2319;
}

@media (min-width: 768px) {
  .hero-headline {
    font-size: 44px;
  }

  .trust-text {
    font-size: 16px;
  }

  .hero-bullets li {
    font-size: 14px;
  }

  .hero-content {
    max-width: 560px;
  }
}

@media (max-width: 480px) {
  .header-logo img {
    width: 170px;
  }

  .hero {
    padding-top: 48px;
  }
}
