/* Activity Savant — recreation management theme
   Palette: deep ink navy + vibrant community green + fresh accents */

:root {
  --ink: #0d1b2a;
  --ink-2: #12283f;
  --navy-soft: #1b3a57;
  --green: #12b76a;
  --green-600: #0d9a58;
  --green-700: #0d7a4c;
  --amber: #f59e0b;
  --paper: #ffffff;
  --mist: #f4f8f6;
  --mist-2: #eef4f1;
  --line: #e2e9e6;
  --text: #1f2a33;
  --muted: #5a6b76;
  --muted-2: #8595a0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(13,27,42,.06), 0 4px 12px rgba(13,27,42,.05);
  --shadow: 0 10px 30px rgba(13,27,42,.10);
  --shadow-lg: 0 24px 60px rgba(13,27,42,.18);
  --maxw: 1120px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 14px 22px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .12s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-block { width: 100%; }
.btn-primary { background: var(--green); color: #fff; box-shadow: 0 6px 18px rgba(18,183,106,.30); }
.btn-primary:hover { background: var(--green-600); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green-700); background: var(--mist); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 20px; height: 68px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; letter-spacing: -.02em; }
.brand:hover { text-decoration: none; }
.brand-mark { border-radius: 9px; box-shadow: 0 4px 10px rgba(13,122,76,.25); }
.brand-text { font-size: 18px; }
.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a { color: var(--muted); font-weight: 500; font-size: 15px; }
.nav-links a:hover { color: var(--ink); text-decoration: none; }
.nav .btn { margin-left: 4px; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(1200px 500px at 85% -10%, rgba(18,183,106,.16), transparent 60%),
    radial-gradient(900px 500px at 0% 0%, rgba(27,58,87,.10), transparent 55%),
    linear-gradient(180deg, var(--mist) 0%, #fff 100%);
  padding: 84px 0 72px;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .12em; font-size: 12.5px; font-weight: 700;
  color: var(--green-700); margin: 0 0 14px;
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 60px); line-height: 1.03; letter-spacing: -.03em;
  margin: 0 0 20px; color: var(--ink); font-weight: 800;
}
.lead { font-size: 19px; color: var(--muted); margin: 0 0 28px; max-width: 34em; }
.lead strong { color: var(--text); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { margin: 22px 0 0; color: var(--muted-2); font-size: 14px; }

/* Hero card mock */
.hero-card {
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.hc-head {
  display: flex; align-items: center; gap: 7px; padding: 14px 18px;
  background: var(--ink); color: #cfe;
}
.hc-dot { width: 10px; height: 10px; border-radius: 50%; background: #375; }
.hc-dot:nth-child(1){ background:#ff6058;} .hc-dot:nth-child(2){ background:#ffbd2e;} .hc-dot:nth-child(3){ background:#28c840;}
.hc-title { margin-left: 10px; font-size: 13px; color: #a9c7d6; font-weight: 600; }
.hc-body { padding: 18px; display: grid; gap: 12px; }
.hc-row { display: flex; align-items: center; gap: 14px; padding: 12px; border: 1px solid var(--line); border-radius: 12px; background: var(--mist); }
.hc-avatar { width: 42px; height: 42px; border-radius: 10px; background: linear-gradient(135deg,#12b76a,#0d7a4c); color:#fff; font-weight:700; font-size:12px; display:flex; align-items:center; justify-content:center; letter-spacing:.02em; }
.hc-lines { flex: 1; display: grid; gap: 8px; }
.l { height: 8px; border-radius: 5px; background: #d9e5df; display: block; }
.l-1 { width: 70%; } .l-2 { width: 45%; } .l-3 { width: 55%; }
.pill { font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; }
.pill-green { background: rgba(18,183,106,.14); color: var(--green-700); }
.pill-amber { background: rgba(245,158,11,.16); color: #b45309; }
.hc-stat { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 2px; padding: 14px; background: var(--ink); border-radius: 14px; }
.hc-stat > div { text-align: center; color: #fff; }
.stat-num { display: block; font-size: 22px; font-weight: 800; }
.stat-label { display: block; font-size: 12px; color: #9fc3d3; margin-top: 2px; }

/* ---------- Trust strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.strip-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; padding: 28px 24px; }
.strip-grid > div { text-align: center; }
.strip-num { display: block; font-weight: 800; color: var(--ink); font-size: 18px; letter-spacing: -.01em; }
.strip-label { display: block; color: var(--muted); font-size: 13.5px; margin-top: 3px; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-alt { background: var(--mist); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(28px, 3.6vw, 40px); letter-spacing: -.02em; color: var(--ink); margin: 0 0 14px; font-weight: 800; }
.section-sub { color: var(--muted); font-size: 18px; margin: 0; }

/* Product cards */
.product-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pc-icon { font-size: 30px; margin-bottom: 14px; }
.product-card h3 { margin: 0 0 8px; font-size: 20px; color: var(--ink); }
.product-card p { margin: 0; color: var(--muted); }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.f-icon { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; font-size: 22px; background: var(--mist-2); border-radius: 12px; margin-bottom: 14px; }
.feature h3 { margin: 0 0 6px; font-size: 18px; color: var(--ink); }
.feature p { margin: 0; color: var(--muted); font-size: 15.5px; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.price-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.price-featured { border-color: var(--green); box-shadow: 0 18px 44px rgba(18,183,106,.18); transform: translateY(-6px); }
.badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--green); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .02em;
  padding: 6px 14px; border-radius: 999px; box-shadow: 0 6px 14px rgba(18,183,106,.35);
}
.price-card h3 { margin: 0 0 8px; font-size: 20px; color: var(--ink); }
.price { margin: 0 0 4px; display: flex; align-items: baseline; gap: 6px; }
.amt { font-size: 40px; font-weight: 800; color: var(--ink); letter-spacing: -.02em; }
.per { color: var(--muted); font-size: 15px; }
.price-note { color: var(--muted); margin: 0 0 18px; font-size: 15px; }
.price-list { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; }
.price-list li { position: relative; padding-left: 28px; color: var(--text); font-size: 15px; }
.price-list li::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%;
  background: rgba(18,183,106,.15);
}
.price-list li::after {
  content: ""; position: absolute; left: 6px; top: 8px; width: 6px; height: 3px;
  border-left: 2px solid var(--green-700); border-bottom: 2px solid var(--green-700);
  transform: rotate(-45deg);
}
.price-card .btn { margin-top: auto; }
.step-tag {
  display: inline-block; align-self: flex-start; font-size: 11.5px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--green-700);
  background: rgba(18,183,106,.12); padding: 4px 11px; border-radius: 999px; margin-bottom: 12px;
}
.price-disclaimer { text-align: center; color: var(--muted-2); font-size: 13.5px; margin: 28px 0 0; }

.pricing-callout {
  margin-top: 36px; text-align: center;
  background: linear-gradient(135deg, var(--mist) 0%, #fff 100%);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px 32px; box-shadow: var(--shadow-sm);
}
.pricing-callout h3 { font-size: 22px; color: var(--ink); margin: 0 0 12px; }
.pricing-callout p { color: var(--muted); max-width: 62ch; margin: 0 auto 24px; font-size: 16.5px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 48px; align-items: start; }
.about-grid h2 { font-size: clamp(26px,3.4vw,36px); color: var(--ink); margin: 8px 0 18px; letter-spacing: -.02em; font-weight: 800; }
.about-grid p { color: var(--muted); font-size: 17px; margin: 0 0 16px; }
.about-grid p strong { color: var(--text); }
.about-facts { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.about-facts h3 { margin: 0 0 16px; font-size: 17px; color: var(--ink); }
.about-facts dl { margin: 0; display: grid; gap: 14px; }
.about-facts dl > div { display: grid; gap: 2px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.about-facts dl > div:last-child { border-bottom: 0; padding-bottom: 0; }
.about-facts dt { font-size: 12.5px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted-2); font-weight: 700; }
.about-facts dd { margin: 0; color: var(--text); font-weight: 600; }

/* CTA */
.cta { background: linear-gradient(135deg, var(--ink) 0%, var(--navy-soft) 100%); color: #fff; }
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta h2 { font-size: clamp(28px,3.6vw,40px); margin: 0 0 14px; letter-spacing: -.02em; }
.cta p { color: #b9d3e0; font-size: 18px; margin: 0 0 26px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.cta-fine { color: #7fa3b5 !important; font-size: 14px !important; margin: 20px 0 0 !important; }

/* Footer */
.site-footer { background: var(--ink); color: #c7d6df; padding: 56px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand-text { color: #fff; }
.footer-tag { color: #8fb0c1; font-size: 14px; margin: 14px 0 0; max-width: 26em; }
.footer-col h4 { color: #fff; font-size: 14px; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 14px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #a9c4d2; font-size: 15px; }
.footer-col a:hover { color: #fff; text-decoration: none; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 14px; flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.10); margin-top: 40px; padding-top: 22px;
}
.footer-bottom p { margin: 0; color: #7fa3b5; font-size: 13.5px; }

/* Legal pages */
.legal { padding: 60px 0 80px; }
.legal .container { max-width: 820px; }
.legal h1 { font-size: clamp(30px,4vw,42px); color: var(--ink); letter-spacing: -.02em; margin: 0 0 8px; }
.legal .updated { color: var(--muted-2); font-size: 14px; margin: 0 0 36px; }
.legal h2 { color: var(--ink); font-size: 22px; margin: 34px 0 10px; }
.legal p, .legal li { color: var(--text); font-size: 16px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--green-700); }
.back-link { display: inline-block; margin-bottom: 24px; color: var(--muted); font-weight: 600; font-size: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .product-grid, .feature-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .strip-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .price-featured { transform: none; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 56px 0 48px; }
  .section { padding: 60px 0; }
  .product-grid, .feature-grid, .price-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
