/* GFA PNG Angler Hub — marketing site styles.
   Palette mirrors the app: navy #1e3a5f, gradient hero, slate neutrals. */

:root {
  --navy: #1e3a5f;
  --navy-dark: #162d4a;
  --slate-50: #f8fafc;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-900: #0f172a;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background: var(--slate-50);
  color: var(--slate-900);
  line-height: 1.6;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 16px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 16px; }

/* ── Header ── */
header.site { background: var(--navy); position: sticky; top: 0; z-index: 50; }
header.site .bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; max-width: 1100px; margin: 0 auto; }
header.site .brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; font-size: 14px; text-decoration: none; letter-spacing: 0.02em; }
header.site .brand img { width: 32px; height: 32px; border-radius: 8px; }
header.site nav { display: flex; align-items: center; gap: 18px; }
header.site nav a { color: rgba(255,255,255,0.7); font-size: 13px; text-decoration: none; }
header.site nav a:hover { color: #fff; }
header.site nav a.btn-solid { background: #fff; color: var(--navy); font-weight: 700; padding: 7px 16px; border-radius: 10px; }
header.site nav a.btn-ghost { background: rgba(255,255,255,0.15); color: #fff; font-weight: 600; padding: 7px 16px; border-radius: 10px; }
header.site nav a.btn-ghost:hover { background: rgba(255,255,255,0.25); }
@media (max-width: 720px) { header.site nav a.nav-link { display: none; } }

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #1e3a5f 0%, #0c5a8a 50%, #0891b2 100%);
  text-align: center; color: #fff; padding: 64px 16px 96px; position: relative; overflow: hidden;
}
.hero img.appicon { width: 104px; height: 104px; border-radius: 24px; margin: 0 auto 24px; box-shadow: 0 20px 50px rgba(0,0,0,0.35); border: 2px solid rgba(255,255,255,0.2); }
.hero h1 { font-size: clamp(28px, 5vw, 46px); font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.hero p.tag { font-size: clamp(15px, 2vw, 18px); color: rgba(255,255,255,0.8); max-width: 560px; margin: 0 auto 32px; }
.hero .cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; max-width: 440px; margin: 0 auto; }
.hero .cta-grid a { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 14px 16px; border-radius: 14px; font-size: 14px; font-weight: 600; text-decoration: none; min-height: 48px; }
.hero .cta-grid a.primary { background: #fff; color: var(--navy); font-weight: 700; box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.hero .cta-grid a.secondary { background: rgba(255,255,255,0.15); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.hero .cta-grid a.secondary:hover { background: rgba(255,255,255,0.25); }

/* ── Cards / sections ── */
section.pad { padding: 56px 0; }
.card { background: #fff; border: 1px solid var(--slate-200); border-radius: 16px; padding: 24px; }
.section-head { text-align: center; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-bottom: 6px; }
.section-head p { font-size: 14px; color: var(--slate-500); }

.help-card { max-width: 620px; margin: -56px auto 16px; position: relative; z-index: 5; box-shadow: 0 6px 20px rgba(15,23,42,0.06); }
.help-card p { font-size: 14px; color: var(--slate-600); margin-bottom: 6px; }
.help-card p.lead { font-weight: 700; color: var(--slate-900); }

/* ── Steps ── */
.steps { max-width: 560px; margin: 0 auto; }
.step { display: flex; gap: 16px; }
.step .num-col { display: flex; flex-direction: column; align-items: center; }
.step .num { width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step .line { width: 2px; flex: 1; background: var(--slate-200); margin-top: 8px; min-height: 24px; }
.step .body { padding: 6px 0 28px; }
.step .body h3 { font-size: 16px; font-weight: 700; }
.step .body p { font-size: 14px; color: var(--slate-500); margin-top: 2px; }
.step .body ol { font-size: 14px; color: var(--slate-600); margin: 8px 0 0 20px; }
.step .body ol li { margin-bottom: 4px; }

/* ── Features grid ── */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.features .card h3 { font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.features .card p { font-size: 14px; color: var(--slate-500); }
.features .card .ico { width: 44px; height: 44px; border-radius: 12px; background: rgba(30,58,95,0.1); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 14px; }

/* ── Screenshots ── */
.shots { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; }
.phone { width: 200px; }
.phone .frame { border: 6px solid var(--slate-900); border-radius: 30px; overflow: hidden; background: var(--slate-900); box-shadow: 0 24px 50px rgba(15,23,42,0.25); }
.phone .frame img { border-radius: 22px; }
.phone .label { text-align: center; font-size: 12px; font-weight: 600; color: var(--slate-600); margin-top: 10px; }
.desktop-shot { max-width: 860px; margin: 40px auto 0; border-radius: 12px; border: 2px solid var(--slate-200); overflow: hidden; box-shadow: 0 20px 40px rgba(15,23,42,0.12); }
.desktop-shot .chrome { display: flex; align-items: center; gap: 6px; background: #334155; padding: 8px 12px; }
.desktop-shot .chrome i { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.desktop-shot .caption { text-align: center; font-size: 11px; color: var(--slate-400); margin-top: 8px; }

/* ── Clubs ── */
.clubs { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 16px; max-width: 980px; margin: 0 auto; }
.clubs a { background: #fff; border: 1px solid var(--slate-200); border-radius: 16px; padding: 20px 12px; text-align: center; text-decoration: none; transition: box-shadow 0.15s, transform 0.15s; }
.clubs a:hover { box-shadow: 0 10px 24px rgba(15,23,42,0.1); transform: translateY(-2px); }
.clubs img { width: 64px; height: 64px; object-fit: contain; margin: 0 auto 10px; }
.clubs .code { font-weight: 700; font-size: 13px; }
.clubs .name { font-size: 10px; color: var(--slate-500); margin-top: 2px; }

/* ── Install / app section ── */
.install-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .install-cols { grid-template-columns: 1fr; } }
.install-cols .card h3 { font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.install-cols .card ol { font-size: 13px; color: var(--slate-500); margin-left: 18px; }
.install-cols .card ol li { margin-bottom: 4px; }

/* ── Final CTA ── */
.final-cta { background: linear-gradient(135deg, #1e3a5f 0%, #0c5a8a 100%); text-align: center; color: #fff; padding: 64px 16px; }
.final-cta h2 { font-size: clamp(22px, 3vw, 30px); font-weight: 800; margin-bottom: 6px; }
.final-cta p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 28px; }
.final-cta a.primary { background: #fff; color: var(--navy); font-weight: 700; padding: 14px 32px; border-radius: 14px; font-size: 14px; text-decoration: none; box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.final-cta a.signin { display: inline-block; color: rgba(255,255,255,0.8); font-size: 14px; text-decoration: underline; margin-top: 16px; }

/* ── Footer ── */
footer.site { background: var(--navy); color: rgba(255,255,255,0.7); font-size: 13px; }
footer.site .inner { max-width: 1100px; margin: 0 auto; padding: 24px 16px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
footer.site .left { display: flex; align-items: center; gap: 8px; }
footer.site .left img { width: 20px; height: 20px; border-radius: 5px; }
footer.site .links { display: flex; gap: 18px; flex-wrap: wrap; }
footer.site a { color: rgba(255,255,255,0.7); text-decoration: none; }
footer.site a:hover { color: #fff; }

/* ── Getting-started page extras ── */
.gs-section { margin-bottom: 32px; }
.gs-section h2 { font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.gs-feature { display: flex; gap: 12px; margin-bottom: 14px; }
.gs-feature .ico { width: 36px; height: 36px; border-radius: 10px; background: rgba(30,58,95,0.1); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.gs-feature h4 { font-size: 14px; font-weight: 600; }
.gs-feature p { font-size: 12px; color: var(--slate-500); }
.btn-navy { display: inline-block; background: var(--navy); color: #fff; font-weight: 600; font-size: 14px; padding: 11px 22px; border-radius: 10px; text-decoration: none; margin-top: 8px; }
.btn-navy:hover { background: var(--navy-dark); }
