/* ArcheryScores marketing page — no build tooling, no external assets. */
:root {
  --ink: #182420;
  --ink-soft: #46564f;
  --paper: #f7f6f2;
  --card: #ffffff;
  --green: #1f513f;
  --green-deep: #143528;
  --gold: #e8b73a;
  --gold-deep: #c99a1f;
  --ring: rgba(255, 255, 255, 0.08);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(160deg, var(--green-deep) 0%, var(--green) 55%, #2c6b52 100%);
  padding-bottom: 5rem;
}

.target {
  position: absolute;
  right: -180px;
  top: -120px;
  width: 640px;
  height: 640px;
  opacity: 0.9;
  pointer-events: none;
}
.ring { position: absolute; border-radius: 50%; border: 2px solid var(--ring); }
.r1 { inset: 0; }
.r2 { inset: 70px; }
.r3 { inset: 140px; }
.r4 { inset: 210px; border-color: rgba(232, 183, 58, 0.25); }
.r5 { inset: 280px; background: rgba(232, 183, 58, 0.12); border-color: rgba(232, 183, 58, 0.35); }

.nav {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4rem clamp(1.2rem, 5vw, 4rem);
}
.brand { font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; }
.brand span { color: var(--gold); }
.nav-cta {
  color: #fff; text-decoration: none; font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 0.45rem 1rem; border-radius: 999px;
  transition: background 0.15s ease;
}
.nav-cta:hover { background: rgba(255,255,255,0.12); }

.hero-inner {
  position: relative;
  max-width: 720px;
  padding: clamp(2.5rem, 8vw, 6rem) clamp(1.2rem, 5vw, 4rem) 0;
}
.hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}
.hero .sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 34em;
}
.hero strong { color: var(--gold); font-weight: 600; }

.cta {
  display: inline-block;
  background: var(--gold);
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: none;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.15s ease, background 0.15s ease;
}
.cta:hover { background: var(--gold-deep); transform: translateY(-1px); }

/* ---------- sections ---------- */
main section { padding: clamp(3rem, 7vw, 5rem) clamp(1.2rem, 5vw, 4rem); }
h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.card {
  background: var(--card);
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 2px 12px rgba(24, 36, 32, 0.07);
}
.card .icon { font-size: 1.9rem; margin-bottom: 0.8rem; }
.card h3 { margin-bottom: 0.5rem; font-size: 1.12rem; }
.card p { color: var(--ink-soft); font-size: 0.97rem; }

/* how it works */
.how { background: #efeee8; }
.steps {
  list-style: none;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 1.6rem;
}
.steps li { display: flex; gap: 1.1rem; align-items: flex-start; }
.steps .n {
  flex: 0 0 auto;
  width: 2.4rem; height: 2.4rem;
  display: grid; place-items: center;
  background: var(--green);
  color: var(--gold);
  font-weight: 800;
  border-radius: 50%;
}
.steps h3 { font-size: 1.08rem; margin-bottom: 0.15rem; }
.steps p { color: var(--ink-soft); font-size: 0.97rem; }

/* screenshots */
.shots-grid { max-width: 1000px; }
.shot { text-align: center; }
.frame {
  aspect-ratio: 16 / 10;
  display: grid; place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(150deg, rgba(31,81,63,0.10), rgba(31,81,63,0.03)),
    var(--card);
  border: 1.5px dashed rgba(31,81,63,0.35);
  color: var(--green);
  font-weight: 650;
}
.shot figcaption { margin-top: 0.6rem; color: var(--ink-soft); font-size: 0.92rem; }

/* get started */
.get-started {
  background: linear-gradient(160deg, var(--green-deep), var(--green));
  color: #fff;
  text-align: center;
}
.get-started p {
  max-width: 42em;
  margin: 0 auto 1.8rem;
  color: rgba(255,255,255,0.85);
}
.get-started .alt { margin-top: 1.2rem; font-size: 0.95rem; margin-bottom: 0; }
.get-started .alt a { color: var(--gold); }

/* footer */
footer {
  padding: 2rem clamp(1.2rem, 5vw, 4rem);
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.95rem;
}
footer .brand { color: var(--ink); font-size: 1rem; }
footer .brand span { color: var(--gold-deep); }
footer a { color: var(--green); }
footer .fine { margin-top: 0.4rem; font-size: 0.85rem; }

@media (max-width: 640px) {
  .target { right: -260px; top: -220px; }
  .nav-cta { display: none; }
}
