:root {
  --bg-dark: #022f0a;
  --bg-mid: #0c4a16;
  --text: #dce8dc;
  --text-soft: rgba(220, 232, 220, 0.9);
  --nav-text: #c6d7c6;
  --accent-red: #b50000;
  --accent-red-hover: #cc0606;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
}

body {
  overflow: hidden;
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  background:
    radial-gradient(circle at 20% 30%, rgba(91, 143, 73, 0.27), transparent 35%),
    radial-gradient(circle at 80% 55%, rgba(91, 143, 73, 0.24), transparent 34%),
    repeating-linear-gradient(
      78deg,
      rgba(71, 122, 59, 0.28) 0 86px,
      rgba(25, 82, 32, 0.05) 86px 192px
    ),
    linear-gradient(180deg, var(--bg-mid) 0%, var(--bg-dark) 100%);
}

img {
  max-width: 100%;
  display: block;
}

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

.landing {
  height: 100vh;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: clamp(0.75rem, 1.8vh, 1.5rem) clamp(1rem, 2vw, 2rem);
  overflow: hidden;
}

.hero {
  width: 100%;
  max-width: 1260px;
  height: 100%;
}

.hero-inner {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-items: start;
  justify-items: center;
  padding:
    clamp(0.75rem, 2vh, 1.5rem)
    clamp(1.25rem, 4vw, 4rem)
    clamp(1rem, 2.5vh, 2rem);
  overflow: hidden;
}

.topbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: clamp(1.8rem, 3.2vh, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-soft);
  line-height: 1;
}

.brand img {
  width: clamp(32px, 2.1vw, 42px);
  height: clamp(32px, 2.1vw, 42px);
  object-fit: contain;
}

.top-links {
  display: flex;
  gap: clamp(1rem, 2vw, 2rem);
  color: var(--nav-text);
  font-size: clamp(1rem, 1.8vh, 1.45rem);
  line-height: 1.1;
}

.top-links a:hover {
  color: #ffffff;
}

.hero-logo {
  width: min(30vw, 32vh, 420px);
  max-height: 34vh;
  object-fit: contain;
  margin-top: clamp(0.4rem, 1.5vh, 1rem);
}

.hero-copy {
  margin-top: clamp(0.35rem, 1vh, 0.75rem);
  max-width: 900px;
  text-align: center;
  align-self: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2rem, 5.2vh, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 760px;
  margin: clamp(0.45rem, 1.2vh, 0.9rem) auto 0;
  font-size: clamp(1.05rem, 2.2vh, 1.9rem);
  line-height: 1.22;
  color: var(--text-soft);
  overflow-wrap: anywhere;
}

.hero-actions {
  margin-top: clamp(0.9rem, 2.4vh, 1.75rem);
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(56px, 8vh, 82px);
  padding: 0 clamp(1.4rem, 3vw, 3.2rem);
  border-radius: 36px;
  background: var(--accent-red);
  color: #f8f2f2;
  font-size: clamp(1.05rem, 2.1vh, 1.7rem);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  box-shadow: 0 8px 14px rgba(0, 0, 0, 0.26), inset 0 -2px 0 rgba(0, 0, 0, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.store-btn:hover {
  background: var(--accent-red-hover);
  transform: translateY(-1px);
}

.simple-page {
  min-height: 100dvh;
  height: 100dvh;
  padding: clamp(0.65rem, 1.8vh, 1rem);
  overflow: hidden;
}

.simple-inner {
  min-height: 100%;
  height: 100%;
  gap: clamp(0.7rem, 1.5vh, 1.2rem);
  max-width: 680px;
  padding-top: clamp(0.8rem, 1.6vh, 1.2rem);
  padding-bottom: clamp(0.8rem, 1.6vh, 1.2rem);
  grid-template-rows: auto auto 1fr auto;
}

.simple-copy h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
}

.simple-copy p {
  margin-top: 0.35rem;
  font-size: clamp(1.05rem, 1.85vw, 1.45rem);
  overflow-wrap: anywhere;
}

.simple-card {
  width: 100%;
  max-width: 620px;
  padding: clamp(0.75rem, 1.8vh, 1rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.12);
  text-align: left;
}

.simple-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(220, 232, 220, 0.8);
  line-height: 1.55;
}

.simple-meta {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: rgba(220, 232, 220, 0.8);
}

.simple-form {
  display: grid;
  gap: 0.55rem;
  align-content: start;
}

.simple-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.92rem;
  color: rgba(220, 232, 220, 0.8);
}

.simple-form input,
.simple-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.55rem 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font: inherit;
}

.simple-form textarea {
  resize: none;
  min-height: 72px;
}

.simple-form .store-btn {
  border: 0;
  cursor: pointer;
  width: 100%;
}

@media (max-width: 960px) {
  html,
  body {
    height: auto;
    min-height: 100%;
  }

  body {
    overflow-x: hidden;
    overflow-y: auto;
  }

  .landing,
  .landing.simple-page,
  .hero,
  .hero-inner,
  .simple-page,
  .simple-inner {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

  .landing,
  .simple-page {
    padding: 1.1rem 0.95rem 2rem;
  }

  .hero-inner,
  .simple-inner {
    min-height: unset;
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    padding: 1.1rem 0.55rem 2rem;
    grid-template-rows: auto auto auto auto;
    gap: 1rem;
    justify-items: center;
    align-content: start;
  }

  .topbar {
    justify-content: center;
    flex-direction: column;
    gap: 0.9rem;
    text-align: center;
  }

  .brand,
  .hero-copy,
  .simple-copy,
  .top-links,
  .footer-links {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .brand {
    font-size: clamp(2.15rem, 8vw, 3.35rem);
    flex-wrap: wrap;
  }

  .brand img {
    width: clamp(36px, 11vw, 54px);
    height: clamp(36px, 11vw, 54px);
  }

  .top-links {
    flex-wrap: wrap;
    font-size: clamp(1.02rem, 4.2vw, 1.2rem);
    gap: 0.65rem 1.25rem;
  }

  .top-links a,
  .footer-links a {
    display: inline-block;
    padding: 0.15rem 0.2rem;
  }

  .hero-logo {
    width: min(72vw, 290px);
    max-height: none;
    margin-top: 0.25rem;
  }

  .hero-copy {
    margin-top: 0.45rem;
  }

  .hero-copy h1,
  .simple-copy h1 {
    font-size: clamp(1.72rem, 7vw, 2.5rem);
    line-height: 1.15;
    text-wrap: balance;
  }

  .hero-copy p,
  .simple-copy p {
    margin-top: 0.55rem;
    font-size: clamp(0.98rem, 4.1vw, 1.2rem);
    line-height: 1.45;
    max-width: 40ch;
    margin-inline: auto;
    overflow-wrap: anywhere;
  }

  .hero-actions {
    width: 100%;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
  }

  .store-btn {
    min-height: 62px;
    width: min(100%, 520px);
    padding: 0.8rem 1.1rem;
    font-size: clamp(1.05rem, 4.2vw, 1.35rem);
  }

  .simple-card,
  .simple-form {
    width: min(100%, 620px);
    max-width: 100%;
    margin: 0 auto;
  }

  .simple-card {
    padding: 0.85rem 0.8rem;
  }

  .simple-card ul {
    line-height: 1.45;
    overflow-wrap: anywhere;
  }

  .simple-form {
    gap: 0.75rem;
    overflow-y: auto;
  }

  .simple-form label {
    gap: 0.4rem;
    font-size: 0.98rem;
    text-align: left;
  }

  .simple-form input,
  .simple-form textarea {
    font-size: 1rem;
    padding: 0.72rem 0.78rem;
  }

  .simple-form textarea {
    min-height: 124px;
  }

  .simple-form .store-btn {
    min-height: 56px;
    width: 100%;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.6rem 1rem;
    width: 100%;
    margin-top: 0.15rem;
    font-size: 1rem;
  }
}

@media (max-height: 760px) and (min-width: 961px) {
  .landing.simple-page {
    min-height: 100dvh;
    height: 100dvh;
  }

  .simple-inner {
    gap: 0.5rem;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
  }

  .simple-copy h1 {
    font-size: clamp(1.65rem, 4.5vw, 2.2rem);
  }

  .simple-copy p {
    font-size: clamp(0.95rem, 2.8vw, 1.1rem);
  }

  .simple-card {
    padding: 0.6rem 0.7rem;
  }

  .simple-card ul {
    line-height: 1.35;
    font-size: 0.92rem;
  }

  .simple-form textarea {
    min-height: 60px;
  }
}
