@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600;700&family=Inter:wght@400;500;600&display=swap');

:root{
  --bg: #0a1a12;
  --bg-2: #0f2419;
  --panel: #142d20;
  --line: rgba(238,242,238,0.08);
  --court: #1c8a5c;
  --gold: #d8b34a;
  --red: #c94a3d;
  --ink: #eef2ee;
  --muted: #9db3a5;
  --max: 760px;
}

*{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* subtle court-arc watermark behind the whole page */
body::before{
  content: "";
  position: fixed;
  top: -20vw; left: 50%;
  width: 140vw; height: 140vw;
  transform: translateX(-50%);
  border: 1px solid rgba(216,179,74,0.06);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

header{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px 20px;
  flex-wrap: wrap;
  gap: 14px;
}

.brand{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.3px;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.brand span{ color: var(--gold); }

nav{ display: flex; gap: 18px; flex-wrap: wrap; }
nav a{
  color: var(--muted);
  text-decoration: none;
  font-size: 13.5px;
  letter-spacing: 0.2px;
  transition: color 0.15s ease;
}
nav a:hover, nav a:focus-visible{ color: var(--ink); }
nav a.active{ color: var(--gold); }

.header-actions{
  display: flex;
  align-items: center;
  gap: 12px;
}
.app-icon{
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: block;
}
.hero-icon{
  height: 100%;
  width: auto;
  max-width: 120px;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  display: block;
}
.store-row{
  display: flex;
  align-items: stretch;
  gap: 14px;
  margin: 8px 0;
}
.store-badges{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.store-badges .btn{ margin: 0; }
.store-link{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--muted);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 12.5px;
  letter-spacing: 0.2px;
  border: 1px solid var(--line);
  padding: 7px 14px;
  border-radius: 999px;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.store-link:hover, .store-link:focus-visible{
  color: var(--ink);
  border-color: rgba(238,242,238,0.25);
}

@media (max-width: 400px){
  nav{ gap: 12px; }
  nav a{ font-size: 12.5px; }
}

main{
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 12px 24px 100px;
}

h1{
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 40px);
  letter-spacing: 0.2px;
  margin: 18px 0 6px;
}

h2{
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 19px;
  color: var(--gold);
  margin: 40px 0 10px;
  letter-spacing: 0.2px;
}

p{ color: var(--ink); font-size: 15px; margin: 10px 0; }
p.lede{ color: var(--muted); font-size: 16.5px; max-width: 52ch; }

.rule{
  width: 56px; height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 18px 0 28px;
}

.placeholder{
  color: var(--red);
  background: rgba(201,74,61,0.1);
  border: 1px dashed rgba(201,74,61,0.4);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.95em;
}

.card{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 24px;
  margin: 16px 0;
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #10240f;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.2px;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  margin: 8px 10px 8px 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 8px 20px rgba(216,179,74,0.25); }
.btn.ghost{
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.tiers{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin: 20px 0;
}
.tier{
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px;
}
.tier .name{ font-family: 'Oswald', sans-serif; font-size: 15px; color: var(--gold); }
.tier .price{ font-size: 22px; font-weight: 600; margin: 6px 0 2px; }
.tier .unit{ font-size: 12px; color: var(--muted); }

footer{
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  padding: 24px;
  text-align: center;
  color: var(--muted);
  font-size: 12.5px;
}
footer a{ color: var(--muted); }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}
