:root {
  --ink: #06140f;
  --turf: #0b1f17;
  --field: #14281f;
  --dugout: #1c3328;
  --chalk: #f2ede3;
  --chalk-muted: #b8b2a6;
  --lime: #b8d44a;
  --lime-dim: #7a9430;
  --stitch: #c8102e;
  --gold: #d4a84b;
  --line: rgba(242, 237, 227, 0.12);
  --font-display: "Bebas Neue", Impact, sans-serif;
  --font-body: "Source Serif 4", Georgia, serif;
  --font-ui: "DM Sans", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--ink);
  color: var(--chalk);
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--lime);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--chalk);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(to bottom, rgba(6, 20, 15, 0.92), rgba(6, 20, 15, 0));
  backdrop-filter: blur(8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--chalk);
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.brand span {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.08em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav a {
  color: var(--chalk-muted);
  text-decoration: none;
}

.nav a:hover {
  color: var(--lime);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.btn-primary {
  background: var(--lime);
  color: var(--ink);
}

.btn-primary:hover {
  background: #c8e45a;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--chalk);
}

.btn-ghost:hover {
  border-color: var(--lime);
  color: var(--lime);
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, var(--ink) 8%, rgba(6, 20, 15, 0.55) 42%, rgba(6, 20, 15, 0.25) 70%, rgba(6, 20, 15, 0.5)),
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(184, 212, 74, 0.18), transparent 60%);
}

.hero-copy {
  width: min(720px, calc(100% - 2.5rem));
  margin: 0 auto 4.5rem;
  text-align: center;
  animation: riseIn 0.9s ease both;
}

.hero-kicker {
  margin: 0 0 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 16vw, 9rem);
  line-height: 0.9;
  letter-spacing: 0.06em;
  color: var(--chalk);
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.55);
}

.hero-lead {
  margin: 1rem auto 0;
  max-width: 28rem;
  font-size: 1.15rem;
  color: var(--chalk-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.section {
  padding: 5rem 1.5rem;
  width: min(1100px, 100%);
  margin: 0 auto;
}

.section-label {
  margin: 0 0 0.5rem;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.section h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 0.05em;
  line-height: 1;
}

.section-lead {
  margin: 0 0 2.5rem;
  max-width: 34rem;
  color: var(--chalk-muted);
}

.features {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 800px) {
  .features {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }

  .features:nth-child(even) .feature-copy {
    order: 2;
  }
}

.feature-visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--turf);
  aspect-ratio: 9 / 16;
  max-height: 560px;
  margin-inline: auto;
  width: min(280px, 100%);
  animation: floatSoft 6s ease-in-out infinite;
}

.feature-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.feature-copy h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
}

.feature-copy p {
  margin: 0;
  color: var(--chalk-muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.pill {
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(184, 212, 74, 0.35);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
}

.pro {
  margin: 2rem auto 0;
  width: min(900px, calc(100% - 2rem));
  padding: 2.5rem 1.75rem;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at top right, rgba(184, 212, 74, 0.18), transparent 55%),
    linear-gradient(145deg, var(--field), var(--ink));
  border: 1px solid rgba(184, 212, 74, 0.28);
  text-align: center;
}

.pro h2 {
  margin: 0;
}

.pro p {
  margin: 0.75rem auto 1.5rem;
  max-width: 28rem;
  color: var(--chalk-muted);
}

.site-footer {
  margin-top: 4rem;
  padding: 2.5rem 1.5rem 3rem;
  border-top: 1px solid var(--line);
  background: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.9rem;
}

.footer-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-links a {
  color: var(--chalk-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--lime);
}

.footer-note {
  color: var(--chalk-muted);
  max-width: 28rem;
  margin: 0;
  line-height: 1.5;
}

/* —— Legal / support pages —— */
.page-shell {
  padding: 7rem 1.5rem 4rem;
  width: min(760px, 100%);
  margin: 0 auto;
}

.page-shell h1 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 4rem);
  letter-spacing: 0.06em;
  line-height: 1;
}

.page-meta {
  margin: 0 0 2rem;
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: var(--chalk-muted);
  letter-spacing: 0.04em;
}

.page-shell h2 {
  margin: 2.25rem 0 0.65rem;
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.05em;
  color: var(--lime);
}

.page-shell h3 {
  margin: 1.5rem 0 0.4rem;
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.page-shell p,
.page-shell li {
  color: var(--chalk-muted);
}

.page-shell ul {
  padding-left: 1.2rem;
}

.page-shell li {
  margin-bottom: 0.4rem;
}

.contact-box {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--turf);
}

.contact-box strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  color: var(--chalk);
  margin-bottom: 0.35rem;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroDrift {
  from {
    transform: scale(1.02) translateY(0);
  }
  to {
    transform: scale(1.08) translateY(-2%);
  }
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
