/* 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); }

.hero-photo {
  background:
    linear-gradient(160deg, rgba(20, 53, 40, 0.88) 0%, rgba(31, 81, 63, 0.72) 55%, rgba(44, 107, 82, 0.55) 100%),
    url("hero.jpg") center 40% / cover no-repeat,
    linear-gradient(160deg, var(--green-deep) 0%, var(--green) 55%, #2c6b52 100%);
}

.hero-slim { padding-bottom: 3rem; }
.hero-slim .hero-inner { padding-top: clamp(1.5rem, 4vw, 3rem); }

.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; text-decoration: none; color: inherit; }
.brand span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 1.2rem; }
.nav-links > a:not(.nav-cta) {
  color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.95rem;
}
.nav-links > a:not(.nav-cta):hover { color: #fff; }
.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-layout {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 1.4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}
.shot { text-align: center; margin: 0; }
.shot img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 10px 32px rgba(24, 36, 32, 0.18);
  border: 1px solid rgba(24, 36, 32, 0.08);
}
.shot-tall img { max-width: 320px; }
.shot figcaption { margin-top: 0.7rem; color: var(--ink-soft); font-size: 0.92rem; }
@media (max-width: 760px) {
  .shots-layout { grid-template-columns: 1fr; }
}

/* photo band */
.band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 0 !important;
}
.band-item { margin: 0; position: relative; overflow: hidden; border-radius: 16px; }
.band-item img {
  width: 100%; height: 300px; object-fit: cover; display: block;
  border-radius: 16px;
  transition: transform 0.4s ease;
}
.band-item:hover img { transform: scale(1.03); }
.band-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.2rem 0.9rem;
  color: #fff; font-weight: 600; font-size: 0.98rem;
  background: linear-gradient(transparent, rgba(15, 30, 24, 0.85));
  border-radius: 0 0 16px 16px;
}
@media (max-width: 640px) {
  .band { grid-template-columns: 1fr; }
  .band-item img { height: 220px; }
}

/* hero ctas */
.hero-ctas { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.cta-ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
  box-shadow: none;
}
.cta-ghost:hover { background: rgba(255,255,255,0.12); }

/* faq */
.tag {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.5rem;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: var(--gold);
  color: var(--green-deep);
}
.how-alt { background: var(--paper); }
.how-more { text-align: center; margin-top: 2rem; }
.how-more a { color: var(--green); font-weight: 600; }
.faq-list { background: #efeee8; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.faq-grid h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.faq-grid p { color: var(--ink-soft); font-size: 0.95rem; }
.faq-grid a { color: var(--green); }

/* 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; }
}
