:root {
  --accent-primary: #70A537;
  --accent-secondary: #A3FC33;
  --bg-main: #0A0A08;
  --bg-soft: #12120f;
  --panel: #171712;
  --text-main: #f2f5ea;
  --text-muted: #b4bda2;
  --line: #2a3320;
  --max-width: 1140px;
  --radius: 16px;
  --shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Inter", sans-serif;
  background: radial-gradient(120% 120% at 20% 0%, #151814 0%, var(--bg-main) 48%);
  color: var(--text-main);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  padding-bottom: 2.5rem;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.9rem;
  padding: 0.8rem 1rem;
  background: rgba(10, 10, 8, 0.78);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand-mark {
  width: 1.1rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  box-shadow: 0 0 0 5px rgba(112, 165, 55, 0.22);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.96rem;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent-secondary);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  margin-top: 1.4rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(160deg, rgba(112, 165, 55, 0.08), transparent 34%),
    var(--panel);
}

.eyebrow {
  width: fit-content;
  margin: 0 0 0.8rem;
  padding: 0.34rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  color: #d9e9c7;
  border: 1px solid rgba(163, 252, 51, 0.4);
  background: rgba(112, 165, 55, 0.2);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.2;
}

.hero h1 {
  max-width: 18ch;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.hero p {
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.55rem;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
}

.btn-primary {
  color: #0a0a08;
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
}

.btn-secondary {
  color: var(--text-main);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.02);
}

.platform-note {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.platform-note li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-muted);
}

.platform-note li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.38rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent-secondary);
}

.hero-visual {
  position: relative;
  min-height: 260px;
  border: 1px dashed rgba(163, 252, 51, 0.28);
  border-radius: 18px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(163, 252, 51, 0.3);
}

.ring-a {
  width: 220px;
  aspect-ratio: 1;
}

.ring-b {
  width: 300px;
  aspect-ratio: 1;
  border-color: rgba(112, 165, 55, 0.25);
}

.pitch-svg {
  width: min(92%, 320px);
  stroke: var(--accent-secondary);
  stroke-width: 1.7;
  fill: none;
  opacity: 0.75;
}

.section-title {
  margin-bottom: 0.95rem;
}

.section-title p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
}

.route {
  margin-top: 1.1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(112, 165, 55, 0.06), transparent 35%), var(--panel);
}

.route-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.route-stop {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 65%);
}

.stop-index {
  display: inline-flex;
  margin-bottom: 0.45rem;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #d2e1ba;
  padding: 0.22rem 0.52rem;
  border: 1px solid rgba(163, 252, 51, 0.28);
  border-radius: 999px;
}

.route-stop p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
}

.gallery {
  margin-top: 1.1rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.shots-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.shot-card {
  margin: 0;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #11110e;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.shot-card img {
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  background: #0f100c;
}

.shot-card figcaption {
  padding: 0.65rem 0.72rem 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.feature-band {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.feature-band article {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.92rem;
  background:
    linear-gradient(180deg, rgba(163, 252, 51, 0.08), rgba(255, 255, 255, 0.01) 52%),
    var(--panel);
}

.feature-band p {
  margin: 0.45rem 0 0;
  color: var(--text-muted);
}

.footer {
  margin-top: 1.2rem;
  padding: 1rem 0 0.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  color: var(--text-muted);
}

.footer-links {
  display: inline-flex;
  gap: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-secondary);
}

.legal-page main {
  margin-top: 1.2rem;
}

.legal-hero {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1.2rem;
}

.legal-hero p {
  color: var(--text-muted);
  margin: 0.55rem 0 0;
}

.legal-body {
  margin-top: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1.2rem;
  display: grid;
  gap: 1rem;
}

.legal-body section {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.02);
}

.legal-body p,
.legal-body li {
  color: var(--text-muted);
}

.legal-body ul {
  margin: 0.45rem 0 0;
  padding-left: 1.1rem;
}

.contacts-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 1.05rem;
}

.contact-list {
  margin: 0.75rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.contact-list li {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.6rem 0.7rem;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-muted);
}

.contact-list strong {
  color: var(--text-main);
}

.contact-form p {
  margin: 0.5rem 0 0.9rem;
  color: var(--text-muted);
}

.field {
  display: grid;
  gap: 0.34rem;
  margin-bottom: 0.65rem;
}

.field label {
  font-size: 0.88rem;
  color: #d3dbbf;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #10100d;
  color: var(--text-main);
  padding: 0.66rem 0.7rem;
  font: inherit;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.hint {
  margin-top: 0.6rem;
  font-size: 0.86rem;
  color: var(--text-muted);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .route-grid,
  .shots-grid,
  .feature-band {
    grid-template-columns: 1fr 1fr;
  }

  .contacts-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-shell {
    width: min(100% - 1rem, var(--max-width));
  }

  .topbar {
    border-radius: 14px;
    padding: 0.8rem;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links {
    justify-content: space-between;
  }

  .route-grid,
  .shots-grid,
  .feature-band {
    grid-template-columns: 1fr;
  }

  .hero,
  .route,
  .gallery,
  .legal-hero,
  .legal-body,
  .contact-card,
  .contact-form {
    padding: 0.95rem;
  }
}
