:root {
  --black: #06120a;
  --charcoal: #0d1b12;
  --ink: #082011;
  --green: #009639;
  --green-2: #78be20;
  --lime: #a6ce39;
  --yellow: #fff200;
  --white: #ffffff;
  --muted: #667064;
  --soft: #fbfdfb;
  --shadow: 0 16px 34px rgba(6, 18, 10, 0.13);
  --shadow-hover: 0 22px 46px rgba(6, 18, 10, 0.18);
  --radius: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 100;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--green-2);
  color: var(--black);
  text-decoration: none;
  font-weight: 900;
}
.skip-link:focus { top: 16px; }
.page-shell { width: 100%; overflow: hidden; }

.hero-banner {
  background: radial-gradient(circle at 50% 0%, #1c351a 0%, #06120a 62%, #010502 100%);
  line-height: 0;
}
.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 62vh;
  object-fit: contain;
  margin: 0 auto;
}

.links-section {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 54px) 18px clamp(36px, 5vw, 74px);
  background:
    radial-gradient(circle at top center, rgba(120, 190, 32, 0.08), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
  text-align: center;
}
.brand-lockup,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 4vw, 34px);
}
.brand-lockup { margin-bottom: 8px; }
.brand-line,
.footer-line {
  width: min(28vw, 240px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-2), transparent);
}
.brand-mark {
  width: clamp(76px, 12vw, 120px);
  height: auto;
  object-fit: contain;
}
h1 {
  margin: 0;
  color: var(--ink);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 7vw, 82px);
  line-height: 0.96;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}
.intro-text {
  margin: 12px 0 clamp(24px, 4vw, 42px);
  color: var(--muted);
  font-size: clamp(15px, 2vw, 21px);
  letter-spacing: 0.01em;
}
.link-list {
  width: min(100%, 980px);
  margin: 0 auto;
  display: grid;
  gap: clamp(14px, 2vw, 20px);
}
.link-card {
  min-height: 106px;
  display: grid;
  grid-template-columns: clamp(76px, 10vw, 104px) 1fr 40px;
  align-items: center;
  gap: clamp(14px, 2.4vw, 26px);
  padding: clamp(10px, 1.5vw, 15px) clamp(14px, 2.5vw, 28px) clamp(10px, 1.5vw, 15px) clamp(10px, 1.5vw, 15px);
  border: 1px solid rgba(6, 18, 10, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  text-align: left;
  text-decoration: none;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}
.link-card:hover,
.link-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(120, 190, 32, 0.34);
  outline: none;
}
.icon-box {
  position: relative;
  min-height: clamp(76px, 10vw, 92px);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background:
    linear-gradient(90deg, var(--green-2) 0 6px, transparent 6px),
    linear-gradient(145deg, #00843d 0%, #009639 55%, #0f6b2b 100%);
  color: var(--yellow);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.16), 0 10px 20px rgba(6, 18, 10, 0.15);
}
.icon-box svg { width: 52%; height: 52%; }
.card-copy { min-width: 0; display: grid; gap: 6px; }
.card-copy strong {
  color: var(--ink);
  font-size: clamp(18px, 2.3vw, 27px);
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.025em;
}
.card-copy small {
  color: #5e695d;
  font-size: clamp(13px, 1.7vw, 18px);
  line-height: 1.28;
}
.arrow {
  width: 25px;
  height: 25px;
  justify-self: center;
  border-top: 4px solid var(--green);
  border-right: 4px solid var(--green);
  transform: rotate(45deg);
  border-radius: 2px;
  transition: transform 240ms ease;
}
.link-card:hover .arrow,
.link-card:focus-visible .arrow { transform: translateX(4px) rotate(45deg); }

.site-footer {
  padding: clamp(28px, 5vw, 58px) 18px clamp(32px, 5vw, 64px);
  background:
    radial-gradient(circle at 50% -20%, rgba(120, 190, 32, 0.2), transparent 42%),
    repeating-linear-gradient(45deg, rgba(166,206,57,0.035) 0 1px, transparent 1px 14px),
    linear-gradient(145deg, #010502 0%, #0d1b12 100%);
  color: var(--white);
  text-align: center;
}
.footer-inner { gap: clamp(16px, 5vw, 46px); margin-bottom: 14px; }
.footer-logo {
  width: clamp(70px, 10vw, 108px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 9px rgba(0,0,0,0.32));
}
.site-footer p {
  margin: 0 0 22px;
  font-size: clamp(15px, 2vw, 24px);
  letter-spacing: 0.01em;
}
.footer-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 34px);
}
.footer-icons span {
  width: clamp(30px, 5vw, 46px);
  height: clamp(30px, 5vw, 46px);
  color: var(--white);
}
.footer-icons svg { width: 100%; height: 100%; }
.footer-icons i {
  width: 2px;
  height: clamp(26px, 4vw, 38px);
  border-radius: 999px;
  background: rgba(120, 190, 32, 0.95);
}
.link-card.is-pressed { transform: scale(0.995); }

@media (max-width: 760px) {
  .hero-banner img { max-height: none; }
  h1 {
    font-size: clamp(32px, 10vw, 56px);
    letter-spacing: 0.02em;
  }
  .link-card {
    grid-template-columns: 78px 1fr 24px;
    min-height: 96px;
    gap: 13px;
    padding-right: 16px;
  }
  .icon-box { min-height: 68px; }
  .card-copy strong { font-size: clamp(17px, 4.7vw, 23px); }
  .card-copy small { font-size: clamp(12px, 3.5vw, 15px); }
  .arrow {
    width: 19px;
    height: 19px;
    border-top-width: 3px;
    border-right-width: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .link-card,
  .arrow { transition: none; }
}
