/* ======================================================================
   Greenway — marketing + ride-guide pages
   Shares the app's playful trail-map language (Fredoka + Nunito, vibrant
   green, sticker shadows) but tuned for editorial reading. Self-contained:
   does NOT load the app's style.css.
   ====================================================================== */
:root {
  --bg: #f6fbf3;
  --bg-2: #ecf8ef;
  --card: #ffffff;
  --ink: #1f3a2e;
  --ink-soft: #5f7a68;
  --green: #16a34a;
  --green-2: #22c55e;
  --green-d: #0f7a37;
  --green-soft: #d6f5e0;
  --sun: #fbbf24;
  --coral: #fb7185;
  --sky: #38bdf8;
  --blaze: #fb7a3c;
  --amber: #f59e0b;
  --red: #ef4444;
  --line: #d2ecd9;
  --line-2: #bce4c8;
  --shadow: 0 3px 0 var(--line-2), 0 16px 30px -16px rgba(31, 58, 46, 0.35);
  --shadow-sm: 0 2px 0 var(--line-2), 0 8px 16px -10px rgba(31, 58, 46, 0.3);
  --shadow-btn: 0 4px 0 var(--green-d), 0 10px 18px -8px rgba(22, 163, 74, 0.55);
  --font-d: "Fredoka", system-ui, sans-serif;
  --font-b: "Nunito", system-ui, sans-serif;
  --wrap: 1080px;
  font-synthesis: none;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; color: var(--ink); font-family: var(--font-b); font-weight: 600;
  background: var(--bg);
  background-image:
    radial-gradient(620px 460px at 90% -8%, rgba(34, 197, 94, 0.14), transparent 70%),
    radial-gradient(560px 480px at -6% 12%, rgba(56, 189, 248, 0.12), transparent 72%),
    radial-gradient(620px 520px at 105% 88%, rgba(251, 122, 60, 0.10), transparent 72%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { color: var(--green-d); }
img, svg { max-width: 100%; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 22px; }

/* ---- header / nav ---------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(1.3) blur(8px);
  background: rgba(246, 251, 243, 0.82);
  border-bottom: 2px solid var(--line-2);
}
.site-header .wrap { display: flex; align-items: center; gap: 16px; height: 66px; }
.logo { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); margin-right: auto; }
.logo .mark {
  width: 38px; height: 38px; border-radius: 12px; flex: none;
  background: linear-gradient(150deg, var(--green-2), var(--green));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 0 var(--green-d), 0 8px 14px -7px rgba(22, 163, 74, 0.6);
}
.logo .mark i { width: 9px; height: 19px; border-radius: 5px; background: var(--sun); box-shadow: 0 2px 0 #d99a14; display: block; }
.logo b { font-family: var(--font-d); font-weight: 700; font-size: 23px; letter-spacing: -0.01em; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a { color: var(--ink-soft); text-decoration: none; font-weight: 800; font-size: 14px; padding: 8px 12px; border-radius: 10px; }
.nav a:hover { color: var(--ink); background: var(--green-soft); }
.btn {
  display: inline-flex; align-items: center; gap: 7px; cursor: pointer;
  font-family: var(--font-d); font-weight: 600; font-size: 15px; text-decoration: none;
  border: 0; border-radius: 13px; padding: 11px 18px; line-height: 1;
}
.btn.primary { background: linear-gradient(160deg, var(--green-2), var(--green)); color: #fff; box-shadow: var(--shadow-btn); }
.btn.primary:hover { transform: translateY(-2px); }
.btn.primary:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--green-d); }
.btn.ghost { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); border: 2px solid var(--line-2); }
.btn.ghost:hover { transform: translateY(-2px); }
.btn.sm { font-size: 13.5px; padding: 9px 14px; border-radius: 11px; }
.nav .btn { transition: transform .12s; }

/* ---- hero ------------------------------------------------------------ */
.hero { position: relative; overflow: hidden; padding: 70px 0 56px; }
.hero .contours { position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5; }
.hero .wrap { position: relative; z-index: 1; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-weight: 900; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: .08em; color: var(--green-d);
  background: var(--green-soft); padding: 7px 13px; border-radius: 999px; box-shadow: var(--shadow-sm);
}
.hero h1 {
  font-family: var(--font-d); font-weight: 700; letter-spacing: -0.02em; line-height: 1.02;
  font-size: clamp(38px, 7vw, 68px); margin: 20px 0 0; max-width: 16ch; color: var(--ink);
}
.hero h1 .hl { position: relative; white-space: nowrap; color: var(--green-d); }
.hero h1 .hl::after {
  content: ""; position: absolute; left: -2%; right: -2%; bottom: 8%; height: 36%;
  background: var(--sun); opacity: .42; border-radius: 6px; z-index: -1; transform: rotate(-1.2deg);
}
.hero .sub { font-size: clamp(16px, 2.1vw, 20px); color: var(--ink-soft); max-width: 56ch; margin: 22px 0 0; font-weight: 700; }
.hero .cta { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 30px; }
.hero .cta .btn { font-size: 17px; padding: 14px 24px; }

/* coverage chips */
.coverage { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 34px; }
.coverage .lab { font-size: 12.5px; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-soft); margin-right: 4px; }
.chip { background: #fff; border: 2px solid var(--line-2); border-radius: 999px; padding: 6px 14px; font-weight: 800; font-size: 13.5px; box-shadow: var(--shadow-sm); }

/* ---- section scaffolding -------------------------------------------- */
section.band { padding: 56px 0; }
.band.alt { background: linear-gradient(180deg, transparent, rgba(214, 245, 224, .5), transparent); }
.kicker { font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: var(--green-d); font-size: 13px; }
h2.sec { font-family: var(--font-d); font-weight: 700; letter-spacing: -0.01em; font-size: clamp(27px, 4vw, 38px); margin: 8px 0 0; line-height: 1.08; }
.sec-intro { color: var(--ink-soft); font-size: 16.5px; font-weight: 700; max-width: 60ch; margin: 14px 0 0; }
.sec-head { margin-bottom: 30px; }

/* ---- why / features -------------------------------------------------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.why-card { background: var(--card); border: 2px solid var(--line-2); border-radius: 22px; padding: 24px 22px; box-shadow: var(--shadow); }
.why-card .ic { width: 50px; height: 50px; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.why-card h3 { font-family: var(--font-d); font-weight: 600; font-size: 20px; margin: 0 0 7px; }
.why-card p { margin: 0; color: var(--ink-soft); font-size: 14.5px; font-weight: 600; line-height: 1.5; }

/* faq */
.faq { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.faq-item { background: var(--card); border: 2px solid var(--line-2); border-radius: 18px; padding: 20px 22px; box-shadow: var(--shadow-sm); }
.faq-item h3 { font-family: var(--font-d); font-weight: 600; font-size: 17.5px; margin: 0 0 8px; line-height: 1.2; }
.faq-item p { margin: 0; color: var(--ink-soft); font-size: 14.5px; font-weight: 600; line-height: 1.55; }
@media (max-width: 720px) { .faq { grid-template-columns: 1fr; } }

/* honesty showcase */
.honest { display: grid; grid-template-columns: 1.05fr 1fr; gap: 34px; align-items: center; }
.honest .prose-lg p { font-size: 17px; color: var(--ink-soft); font-weight: 700; }
.honest .prose-lg strong { color: var(--ink); }
.demo-card { background: var(--card); border: 2px solid var(--line-2); border-radius: 22px; padding: 22px; box-shadow: var(--shadow); }
.demo-card .dc-name { font-family: var(--font-d); font-weight: 600; font-size: 19px; }
.protbar { display: flex; height: 12px; border-radius: 999px; overflow: hidden; margin: 14px 0 8px; background: var(--green-soft); }
.protbar i { display: block; height: 100%; }
.protbar .p { background: var(--green); } .protbar .c { background: var(--amber); } .protbar .r { background: var(--red); }
.protline { display: flex; justify-content: space-between; font-size: 13.5px; font-weight: 800; color: var(--ink-soft); }
.demo-card ul { list-style: none; margin: 14px 0 0; padding: 13px 0 0; border-top: 2px dashed var(--line); }
.demo-card li { display: flex; justify-content: space-between; font-size: 13.5px; font-weight: 700; padding: 4px 0; }
.demo-card li .road { color: var(--red); }

/* ---- ride grid / guide cards ---------------------------------------- */
.ride-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.guide-card {
  display: flex; flex-direction: column; background: var(--card); border: 2px solid var(--line-2);
  border-radius: 22px; overflow: hidden; box-shadow: var(--shadow); text-decoration: none; color: var(--ink);
  transition: transform .15s, border-color .15s;
}
.guide-card:hover { transform: translateY(-4px) rotate(-.4deg); border-color: var(--green-2); }
.guide-card .sketch { background: linear-gradient(165deg, #eefaf1, #e0f5e7); border-bottom: 2px solid var(--line); aspect-ratio: 16/9; display: block; width: 100%; height: auto; }
.guide-card .gc-body { padding: 16px 17px 18px; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.gc-top { display: flex; align-items: center; gap: 9px; }
.grade { width: 28px; height: 28px; border-radius: 10px; color: #fff; font-weight: 700; font-family: var(--font-d); font-size: 14px; display: flex; align-items: center; justify-content: center; flex: none; box-shadow: var(--shadow-sm); }
.gc-name { font-family: var(--font-d); font-weight: 600; font-size: 17.5px; line-height: 1.1; flex: 1; }
.gc-city { font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); }
.gc-desc { font-size: 13.5px; color: var(--ink-soft); font-weight: 600; line-height: 1.45; flex: 1; }
.gc-stats { display: flex; flex-wrap: wrap; gap: 11px; font-size: 13px; font-weight: 700; color: var(--ink-soft); margin-top: 2px; }
.gc-stats b { color: var(--ink); font-family: var(--font-d); font-weight: 600; }
.shape-chip { font-weight: 800; color: var(--blaze); background: #fff3e6; padding: 2px 9px; border-radius: 999px; font-size: 12px; }
.kidpill { font-size: 10px; font-weight: 900; color: var(--green-d); background: var(--green-soft); padding: 3px 9px; border-radius: 999px; letter-spacing: .03em; text-transform: uppercase; }

/* ---- breadcrumb ------------------------------------------------------ */
.crumbs { font-size: 13px; font-weight: 800; color: var(--ink-soft); padding: 22px 0 0; }
.crumbs a { color: var(--green-d); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }
.crumbs span { opacity: .6; margin: 0 7px; }

/* ---- ride guide page ------------------------------------------------- */
.guide { padding: 8px 0 60px; }
.guide-head { max-width: 760px; }
.guide-head .gc-city { color: var(--green-d); }
.guide-head h1 { font-family: var(--font-d); font-weight: 700; letter-spacing: -0.015em; font-size: clamp(30px, 5vw, 46px); margin: 10px 0 0; line-height: 1.05; }
.guide-head .lede { font-size: clamp(17px, 2.2vw, 21px); color: var(--ink-soft); font-weight: 700; margin: 16px 0 0; }
.guide-hero { margin: 26px 0; border: 2px solid var(--line-2); border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); background: linear-gradient(165deg, #eefaf1, #dcf2e4); }
.guide-hero img { display: block; width: 100%; height: auto; aspect-ratio: 1200/630; object-fit: cover; }
.guide-hero svg { display: block; width: 100%; height: auto; }
.stat-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 8px; }
.stat { background: var(--card); border: 2px solid var(--line-2); border-radius: 16px; padding: 12px 16px; box-shadow: var(--shadow-sm); min-width: 92px; }
.stat .k { font-size: 11.5px; font-weight: 900; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-soft); }
.stat .v { font-family: var(--font-d); font-weight: 600; font-size: 22px; line-height: 1.15; margin-top: 2px; }
.guide-body { display: grid; grid-template-columns: 1fr 320px; gap: 38px; margin-top: 30px; align-items: start; }
.prose h2 { font-family: var(--font-d); font-weight: 600; font-size: 23px; margin: 28px 0 8px; }
.prose h2:first-child { margin-top: 0; }
.prose p { font-size: 16.5px; color: #33503f; font-weight: 600; margin: 0 0 14px; }
.prose ul.high { list-style: none; padding: 0; margin: 6px 0 0; display: flex; flex-direction: column; gap: 9px; }
.prose ul.high li { position: relative; padding-left: 30px; font-weight: 700; font-size: 15.5px; }
.prose ul.high li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 21px; height: 21px; border-radius: 7px; background: var(--green-soft); color: var(--green-d); font-weight: 900; font-size: 12px; display: flex; align-items: center; justify-content: center; }
.aside-stick { position: sticky; top: 86px; display: flex; flex-direction: column; gap: 16px; }
.grade-box { background: var(--card); border: 2px solid var(--line-2); border-radius: 20px; padding: 20px; box-shadow: var(--shadow); }
.grade-box h3 { font-family: var(--font-d); font-weight: 600; font-size: 17px; margin: 0 0 4px; }
.grade-box .gnote { font-size: 13.5px; color: var(--ink-soft); font-weight: 700; }
.grade-box ul { list-style: none; margin: 12px 0 0; padding: 12px 0 0; border-top: 2px dashed var(--line); }
.grade-box li { display: flex; justify-content: space-between; gap: 10px; font-size: 13.5px; font-weight: 700; padding: 4px 0; }
.grade-box li .road { color: var(--red); }
.grade-box .allgood { color: var(--green-d); font-weight: 800; font-size: 14px; }
.cta-box { background: linear-gradient(160deg, #effaf2, #ddf3e4); border: 2px solid var(--line-2); border-radius: 20px; padding: 20px; box-shadow: var(--shadow); text-align: center; }
.cta-box p { margin: 0 0 13px; font-weight: 800; font-size: 14.5px; color: var(--ink); }
.cta-box .btn { width: 100%; justify-content: center; }

/* ---- footer ---------------------------------------------------------- */
.site-footer { border-top: 2px solid var(--line-2); margin-top: 30px; padding: 40px 0 50px; background: var(--bg-2); }
.site-footer .cols { display: flex; flex-wrap: wrap; gap: 36px 60px; }
.site-footer .about { max-width: 320px; }
.site-footer .about p { color: var(--ink-soft); font-size: 13.5px; font-weight: 600; margin: 10px 0 0; }
.fcol h4 { font-family: var(--font-d); font-weight: 600; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-soft); margin: 0 0 10px; }
.fcol a { display: block; color: var(--ink); text-decoration: none; font-weight: 700; font-size: 14px; padding: 4px 0; }
.fcol a:hover { color: var(--green-d); }
.legal { margin-top: 32px; padding-top: 20px; border-top: 2px solid var(--line); color: var(--ink-soft); font-size: 12.5px; font-weight: 600; }
.legal a { color: var(--green-d); }

/* ---- responsive ------------------------------------------------------ */
@media (max-width: 880px) {
  .why-grid { grid-template-columns: 1fr; }
  .ride-grid { grid-template-columns: repeat(2, 1fr); }
  .honest { grid-template-columns: 1fr; }
  .guide-body { grid-template-columns: 1fr; }
  .aside-stick { position: static; }
  .nav .show-wide { display: none; }
}
@media (max-width: 560px) {
  .ride-grid { grid-template-columns: 1fr; }
  .nav a.show-wide { display: none; }
  .hero { padding: 46px 0 40px; }
}
