:root {
  --cream: #fdf7ea;
  --cream-soft: #fffaf0;
  --green: #064e3b;
  --green-deep: #063525;
  --green-muted: #49675d;
  --gold: #d4af37;
  --gold-soft: #fff4d6;
  --red: #991b1b;
  --red-hover: #7f1d1d;
  --card: #ffffff;
  --line: rgba(6, 78, 59, 0.12);
  --shadow: 0 24px 70px rgba(6, 53, 37, 0.14);
  --shadow-soft: 0 18px 45px rgba(6, 53, 37, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  background: var(--cream);
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--green-deep);
  background:
    radial-gradient(circle at 16% 10%, rgba(212, 175, 55, 0.18), transparent 30%),
    radial-gradient(circle at 86% 8%, rgba(153, 27, 27, 0.10), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, var(--cream) 48%, #fffdf8 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 42px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(253, 251, 247, 0.86);
  border-bottom: 1px solid rgba(6, 78, 59, 0.10);
  box-shadow: 0 18px 48px rgba(6, 78, 59, 0.055);
  backdrop-filter: blur(24px) saturate(150%);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 78px;
  padding: 12px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: var(--green);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 16px 34px rgba(6, 78, 59, 0.14);
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.12;
}

.brand-text strong {
  color: var(--green);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.12;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-text span {
  color: rgba(6, 78, 59, 0.66);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.12;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 72px);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(6, 78, 59, 0.98), rgba(6, 53, 37, 0.98)),
    radial-gradient(circle at 82% 24%, rgba(212, 175, 55, 0.20), transparent 32%);
  border: 1px solid rgba(212, 175, 55, 0.30);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -150px auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.26), transparent 68%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.badge,
.kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  padding: 8px 13px;
  color: #533c08;
  background: linear-gradient(180deg, #fff8df, #f2d888);
  border: 1px solid rgba(212, 175, 55, 0.70);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(2.2rem, 7vw, 4.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.subtitle {
  max-width: 720px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.03rem, 2vw, 1.28rem);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
  gap: 24px;
  margin-top: 24px;
}

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

.card {
  min-width: 0;
  padding: clamp(24px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(212, 175, 55, 0.34);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.card h2 {
  margin: 0;
  color: var(--green-deep);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.1;
}

.card p {
  margin: 14px 0 0;
  color: var(--green-muted);
}

.featured-card {
  border-color: rgba(153, 27, 27, 0.16);
}

.button-row,
.button-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button-stack {
  flex-direction: column;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 16px 34px rgba(153, 27, 27, 0.25);
}

.btn-primary:hover {
  background: var(--red-hover);
}

.btn-secondary {
  color: var(--green);
  background: var(--gold-soft);
  border-color: rgba(212, 175, 55, 0.72);
}

.btn-secondary:hover {
  background: #f6e5b9;
}

.notice {
  margin-top: 22px;
  padding: 16px 18px;
  color: #5d4b20;
  background: #fff7df;
  border: 1px solid rgba(212, 175, 55, 0.46);
  border-left: 5px solid var(--gold);
  border-radius: 18px;
  font-size: 0.95rem;
}

.included {
  margin-top: 24px;
}

.included-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  padding: 14px 16px 14px 42px;
  color: var(--green-deep);
  background: var(--cream-soft);
  border: 1px solid rgba(6, 78, 59, 0.10);
  border-radius: 16px;
}

.included-list li::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 1.35em;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.18);
}

.site-footer {
  border-top: 1px solid rgba(6, 78, 59, 0.09);
  background: rgba(255, 255, 255, 0.52);
  color: rgba(6, 78, 59, 0.72);
}

.footer-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.footer-inner a {
  color: var(--green);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(6, 78, 59, 0.24);
  text-underline-offset: 6px;
}

.footer-inner span:last-child {
  text-align: right;
}

@media (max-width: 820px) {
  .page {
    width: min(100% - 24px, 1120px);
    padding-top: 18px;
  }

  .topbar-inner {
    align-items: flex-start;
    min-height: 72px;
    padding-top: 12px;
  }

  .brand {
    align-items: flex-start;
  }

  .hero {
    border-radius: 22px;
  }

  .content-grid,
  .root-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-inner span:last-child {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-text strong {
    font-size: 0.82rem;
    white-space: normal;
  }

  .brand-text span {
    white-space: normal;
  }

  .hero {
    padding: 30px 22px;
  }

  .hero h1 {
    overflow-wrap: anywhere;
  }

  .card {
    padding: 22px;
    border-radius: 20px;
  }

  .button-row,
  .button-stack {
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
