:root {
  --green: #7be01c;
  --green-strong: #55b914;
  --ink: #f7fff4;
  --muted: #c4d2be;
  --soft: #edf5e9;
  --bg: #040704;
  --panel: rgba(8, 14, 10, 0.82);
  --panel-strong: rgba(10, 18, 13, 0.96);
  --line: rgba(123, 224, 28, 0.28);
  --white-line: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 75% 14%, rgba(123, 224, 28, 0.18), transparent 28rem),
    linear-gradient(135deg, #020402, #08110a 54%, #020402);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

main {
  width: min(1180px, 92vw);
  margin: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 16px 0;
  background: rgba(4, 7, 4, 0.76);
  backdrop-filter: blur(18px);
}

.nav-brand,
.brand,
.footer-brand {
  display: flex;
  align-items: center;
}

.nav-brand {
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0;
}

.nav-brand strong {
  color: var(--green);
  font-weight: 900;
}

.nav-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 3px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  font-size: 19px;
  font-weight: 900;
  box-shadow: 0 0 24px rgba(123, 224, 28, 0.18);
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.07);
  outline: none;
}

.nav-contact {
  border: 1px solid var(--line);
  color: var(--green);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(28px, 5vw, 56px);
  padding: 38px 0 56px;
}

.brand {
  gap: 16px;
  margin-bottom: clamp(34px, 6vw, 56px);
}

.mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border: 5px solid var(--green);
  border-radius: 8px;
  color: var(--green);
  font-size: 38px;
  font-weight: 900;
  box-shadow: 0 0 32px rgba(123, 224, 28, 0.2);
}

.mark.small {
  width: 48px;
  height: 48px;
  border-width: 3px;
  font-size: 25px;
  flex: 0 0 auto;
}

.brand h1 {
  margin: 0;
  font-size: clamp(27px, 4vw, 34px);
  line-height: 1;
  font-weight: 900;
}

.brand h1 span {
  display: block;
  color: var(--green);
  font-size: 0.53em;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand p,
.footer-brand p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h2,
.apply-panel h2,
.poster-section h2 {
  margin: 0 0 24px;
  font-size: clamp(42px, 7vw, 92px);
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h2 span {
  display: block;
  color: var(--green);
}

.lead {
  max-width: 620px;
  color: #e6eee2;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.65;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.primary {
  color: #061006;
  background: linear-gradient(135deg, var(--green), var(--green-strong));
  box-shadow: 0 16px 36px rgba(123, 224, 28, 0.24);
}

.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
}

.hero-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.hero-card img,
.poster-section img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.grid-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  scroll-margin-top: 96px;
  margin: 24px 0 36px;
}

.card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.card h3 {
  margin-top: 0;
  color: var(--green);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card ul {
  padding-left: 20px;
}

.card li {
  margin: 14px 0;
  color: var(--soft);
  line-height: 1.5;
}

.pill-grid {
  display: grid;
  gap: 12px;
}

.pill-grid span {
  padding: 14px 16px;
  border: 1px solid var(--white-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 800;
}

.apply-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  scroll-margin-top: 96px;
  margin: 28px 0;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(123, 224, 28, 0.16), rgba(7, 13, 9, 0.94));
}

.apply-panel h2 {
  max-width: 850px;
  font-size: clamp(32px, 5vw, 58px);
}

.apply-panel p {
  color: #e7f0e3;
  line-height: 1.6;
}

.qr-box {
  width: min-content;
  padding: 16px;
  border-radius: 8px;
  color: #111;
  text-align: center;
  background: #fff;
}

.qr-box img {
  display: block;
  width: 210px;
  max-width: 56vw;
}

.qr-box small {
  display: block;
  max-width: 230px;
  overflow-wrap: anywhere;
  font-weight: 800;
}

.poster-section {
  scroll-margin-top: 96px;
  padding: 56px 0;
}

.poster-section h2 {
  font-size: clamp(32px, 5vw, 56px);
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(4vw, calc((100vw - 1180px) / 2)) 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: rgba(4, 7, 4, 0.45);
}

.footer-brand {
  gap: 14px;
}

.footer-brand strong {
  display: block;
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-links a {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0 0;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 12px;
  }

  nav a {
    white-space: nowrap;
  }

  .hero,
  .apply-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  .hero-card {
    max-width: 720px;
    margin: 0 auto;
  }

  .grid-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  main,
  .site-header {
    width: min(100% - 28px, 1180px);
  }

  .brand {
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .mark {
    width: 58px;
    height: 58px;
    font-size: 30px;
  }

  .hero h2,
  .apply-panel h2,
  .poster-section h2 {
    overflow-wrap: anywhere;
  }

  .cta-row,
  .btn {
    width: 100%;
  }

  .card {
    padding: 22px;
  }

  .apply-panel {
    gap: 24px;
  }

  .qr-box {
    width: 100%;
  }

  .qr-box img {
    width: min(210px, 100%);
    margin: auto;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
    width: 100%;
  }

  .footer-links a {
    width: 100%;
  }
}
