/* PuttTap marketing — matches kiosk theme (deep green, fairway accents) */
:root {
  --bg: #0f1f14;
  --bg-elevated: #162a1c;
  --bg-card: #1a3222;
  --green: #1f8c47;
  --green-bright: #2dd66a;
  --green-soft: #b3d9b8;
  --accent: #d98c1a;
  --accent-hover: #f0a030;
  --text: #f2faf3;
  --text-muted: #9fbfa6;
  --danger: #b33333;
  --border: rgba(45, 214, 106, 0.12);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
  --radius: 16px;
  --max: 1120px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, Ubuntu, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: var(--green-bright);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Background mesh */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(31, 140, 71, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(217, 140, 26, 0.18), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(15, 80, 40, 0.4), transparent 60%),
    var(--bg);
}

/* Layout */
.wrap {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(15, 31, 20, 0.85);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
  color: var(--green-bright);
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.4rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 8px 24px rgba(31, 140, 71, 0.35);
}

.btn-primary:hover {
  background: #25a052;
  color: #fff;
}

.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(217, 140, 26, 0.3);
}

.btn-accent:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--green-soft);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--green-bright);
  color: var(--text);
}

.btn-sm {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

/* Hero */
.hero {
  padding: 4rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .nav-links .hide-sm {
    display: none;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(31, 140, 71, 0.18);
  color: var(--green-bright);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.12;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero h1 span {
  color: var(--green-bright);
}

.lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin: 0 0 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.hero-meta strong {
  color: var(--text);
  display: block;
  font-size: 1.05rem;
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero-card {
  background: linear-gradient(160deg, var(--bg-card), var(--bg-elevated));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  width: min(100%, 380px);
}

.hero-card img.logo-lg {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  margin: 0 auto 1rem;
}

.hero-card .caption {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.pill {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  color: var(--green-soft);
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Sections */
section {
  padding: 3.5rem 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

@media (max-width: 800px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.step-num {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(45, 214, 106, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.step p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
}

/* Features / modes */
.modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 700px) {
  .modes {
    grid-template-columns: 1fr;
  }
}

.mode-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.mode-card.golfer {
  border-color: rgba(45, 214, 106, 0.25);
}

.mode-card.clubhouse {
  border-color: rgba(217, 140, 26, 0.3);
}

.mode-card img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto;
}

.mode-card h3 {
  margin: 0;
  text-align: center;
  font-size: 1.35rem;
}

.mode-card .tag {
  text-align: center;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-bright);
}

.mode-card.clubhouse .tag {
  color: var(--accent);
}

.mode-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--text-muted);
}

.mode-card li {
  margin-bottom: 0.4rem;
}

/* Feature grid */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 800px) {
  .features {
    grid-template-columns: 1fr;
  }
}

.feature {
  background: rgba(22, 42, 28, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.feature .icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.feature h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.feature p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Screenshots — tablet landscape (16:10 kiosk frames) */
.shots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .shots {
    grid-template-columns: 1fr 1fr;
  }
}

.shot {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.shot img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  background: #000;
  min-height: 180px;
}

.shot.placeholder img {
  object-fit: contain;
  padding: 2rem;
  opacity: 0.85;
}

.shot figcaption {
  padding: 0.9rem 1rem 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.shot figcaption strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.shot-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1.25rem;
}

/* For courses */
.band {
  background: linear-gradient(135deg, rgba(31, 140, 71, 0.15), rgba(217, 140, 26, 0.08));
  border-block: 1px solid var(--border);
}

.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
  max-width: 720px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

@media (max-width: 600px) {
  .checklist {
    grid-template-columns: 1fr;
  }
}

.checklist li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  color: var(--text-muted);
}

.checklist li::before {
  content: "✓";
  color: var(--green-bright);
  font-weight: 800;
  flex-shrink: 0;
}

/* CTA */
.cta-box {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem 1.5rem;
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.cta-box p {
  color: var(--text-muted);
  max-width: 32rem;
  margin: 0 auto 1.5rem;
}

/* Footer */
footer {
  padding: 2.5rem 0 2rem;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-inner a {
  color: var(--text-muted);
}

.footer-inner a:hover {
  color: var(--green-bright);
}
