/* ═══════════════════════════════════════════════════════════
   PeakDork — Site stylesheet
   Tokens · base · chrome · home · roadmap · legal · contact · thanks
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ──────────────────────────────────────────── */
:root {
  /* Brand */
  --peak-system:   #FF7601;
  --peak-dark:     #144711;
  --peak-light:    #FCF8A3;
  --checkin:       #00C3D1;
  --saved:         #59D66F;
  --plan:          #FF41FF;
  --trip-report:   #CD3BE1;
  --sky-blue:      #E5F3FE;

  /* Surfaces */
  --bg:            #f2faf0;
  --bg-card:       #ffffff;
  --bg-hero-top:   #c0e0f5;
  --bg-hero-mid:   #fef7dc;

  /* Text */
  --text:          #162f14;
  --text-muted:    #628060;
  --text-light:    #9ab898;

  /* Roadmap version-family colors */
  --v1:            #2db845;
  --v2:            #FF7601;
  --v3:            #CD3BE1;
  --v4:            #E53935;
  --vp:            #2A8FD4;

  /* Misc */
  --border:        rgba(20, 71, 17, 0.10);
  --shadow:        0 2px 12px rgba(20, 71, 17, 0.08);
  --shadow-hover:  0 8px 28px rgba(20, 71, 17, 0.13);
  --radius:        14px;
}

/* ─── RESET + BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Visually hidden, but readable by screen readers and search engines.
   Used to give image-based headings real text content. */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Varela Round', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

/* ─── HEADER (shared) ─────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 28px;
  height: 58px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.logo {
  font-size: 17px;
  color: var(--peak-system);
  white-space: nowrap;
  flex-shrink: 0;
}
.logo-sep {
  color: var(--text-muted);
  font-size: 13px;
  margin-left: 8px;
}

/* ─── BRAND (shared) ─────────────────────────────────── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}
.brand-icon {
  width: 38px;
  height: 38px;
  border-radius: 22%;
  box-shadow: 0 2px 10px rgba(20, 71, 17, 0.22);
  display: block;
}

/* ─── NAV (shared) ───────────────────────────────────── */
.nav-links {
  display: flex;
  gap: 6px;
  margin-left: auto;
  align-items: center;
}
.nav-link {
  padding: 5px 15px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Varela Round', sans-serif;
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.18s;
}
.nav-link:hover {
  color: var(--text);
  border-color: rgba(20, 71, 17, 0.25);
  background: rgba(20, 71, 17, 0.04);
}
.nav-link.active {
  color: var(--peak-system);
  border-color: rgba(255, 118, 1, 0.5);
  background: rgba(255, 118, 1, 0.08);
}
.nav-appstore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 99px;
  background: var(--peak-dark);
  color: var(--peak-light);
  font-size: 13px;
  text-decoration: none;
  transition: opacity 0.18s, transform 0.18s;
  white-space: nowrap;
}
.nav-appstore:hover { opacity: 0.9; transform: translateY(-1px); }
.nav-appstore svg { width: 14px; height: 14px; }

/* ─── ROADMAP FILTERS ────────────────────────────────── */
.filters {
  display: flex;
  gap: 6px;
  margin-left: auto;
}
.filter-btn {
  padding: 5px 15px;
  border-radius: 99px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  font-family: 'Varela Round', sans-serif;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.18s;
  white-space: nowrap;
  user-select: none;
}
.filter-btn:hover {
  color: var(--text);
  border-color: rgba(20, 71, 17, 0.25);
  background: rgba(20, 71, 17, 0.04);
}
.filter-btn.active[data-filter="all"] { color: var(--peak-system); border-color: rgba(255, 118, 1, 0.5); background: rgba(255, 118, 1, 0.08); }
.filter-btn.active[data-filter="v1"]  { color: var(--v1); border-color: rgba(45, 184, 69, 0.5);  background: rgba(45, 184, 69, 0.08); }
.filter-btn.active[data-filter="v2"]  { color: var(--v2); border-color: rgba(255, 118, 1, 0.5);  background: rgba(255, 118, 1, 0.08); }
.filter-btn.active[data-filter="v3"]  { color: var(--v3); border-color: rgba(205, 59, 225, 0.5); background: rgba(205, 59, 225, 0.08); }
.filter-btn.active[data-filter="v4"]  { color: var(--v4); border-color: rgba(229, 57, 53, 0.5);  background: rgba(229, 57, 53, 0.08); }
.filter-btn.active[data-filter="vp"]  { color: var(--vp); border-color: rgba(42, 143, 212, 0.5); background: rgba(42, 143, 212, 0.08); }

/* ─── HOME HERO ──────────────────────────────────────── */
.hero-wrap {
  position: relative;
  width: 100%;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 28px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/landscape.png');
  background-size: cover;
  background-position: center;
  opacity: 0.55;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(242, 250, 240, 0) 0%,
    rgba(242, 250, 240, 0) 55%,
    rgba(242, 250, 240, 0.85) 92%,
    rgba(242, 250, 240, 1) 100%);
}
.hero-wrap .hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}
.hero-title-img {
  max-width: 100%;
  width: 520px;
  height: auto;
  filter: drop-shadow(0 6px 18px rgba(20, 71, 17, 0.22));
  margin-bottom: 22px;
}
.hero-tagline {
  font-size: 19px;
  color: var(--text);
  max-width: 540px;
  margin: 0 auto 30px;
  line-height: 1.5;
}
.hero-cta-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.appstore-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--peak-dark);
  color: var(--peak-light);
  border-radius: 14px;
  padding: 14px 26px;
  text-decoration: none;
  transition: opacity 0.18s, transform 0.18s;
  box-shadow: 0 4px 18px rgba(20, 71, 17, 0.18);
}
.appstore-badge:hover { opacity: 0.92; transform: translateY(-2px); }
.appstore-badge svg { width: 28px; height: 28px; }
.appstore-badge .ab-line1 { font-size: 11px; opacity: 0.85; letter-spacing: 0.5px; }
.appstore-badge .ab-line2 { font-size: 18px; font-family: 'Varela Round', sans-serif; }

/* ─── ROADMAP HERO ───────────────────────────────────── */
.hero {
  position: relative;
  text-align: center;
  overflow: hidden;
  padding: 80px 28px 0;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 28px;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--peak-system);
  margin-bottom: 14px;
}
.hero-title {
  font-size: 52px;
  line-height: 1.07;
  letter-spacing: -1.5px;
  color: var(--peak-dark);
  margin-bottom: 18px;
}
.hero-title em { color: var(--peak-system); font-style: normal; }
.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 400px;
  margin: 0 auto 52px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 64px;
}
.stat-num { font-size: 38px; color: var(--peak-system); line-height: 1; }
.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 4px;
}
.mountains { display: block; width: 100%; max-width: 960px; margin: 0 auto; }

/* ─── ROADMAP MAIN + VERSION GROUPS ──────────────────── */
.roadmap-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 8px 28px 100px;
}
.version-group { margin-bottom: 8px; }
.version-group.hidden { display: none; }
.group-divider {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 44px 0 18px;
}
.group-line { flex: 1; height: 2px; border-radius: 2px; }
.v1-group .group-line { background: linear-gradient(90deg, transparent, rgba(45,184,69,0.35), transparent); }
.v2-group .group-line { background: linear-gradient(90deg, transparent, rgba(255,118,1,0.35), transparent); }
.v3-group .group-line { background: linear-gradient(90deg, transparent, rgba(205,59,225,0.35), transparent); }
.v4-group .group-line       { background: linear-gradient(90deg, transparent, rgba(229,57,53,0.35), transparent); }
.platform-group .group-line { background: linear-gradient(90deg, transparent, rgba(42,143,212,0.35), transparent); }
.group-pill {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
  border: 1.5px solid;
  white-space: nowrap;
  font-weight: 700;
}
.v1-group .group-pill { color: var(--v1); border-color: rgba(45,184,69,0.5);   background: rgba(45,184,69,0.08); }
.v2-group .group-pill { color: var(--v2); border-color: rgba(255,118,1,0.5);   background: rgba(255,118,1,0.08); }
.v3-group .group-pill { color: var(--v3); border-color: rgba(205,59,225,0.5);  background: rgba(205,59,225,0.08); }
.v4-group .group-pill       { color: var(--v4); border-color: rgba(229,57,53,0.5);   background: rgba(229,57,53,0.08); }
.platform-group .group-pill { color: var(--vp); border-color: rgba(42,143,212,0.5); background: rgba(42,143,212,0.08); }

/* ─── ROADMAP RELEASE CARDS ──────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 0.18s, box-shadow 0.18s;
  will-change: transform;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow-hover); }
.v1-group .card { border-left: 4px solid rgba(45,184,69,0.55); }
.v2-group .card { border-left: 4px solid rgba(255,118,1,0.55); }
.v3-group .card { border-left: 4px solid rgba(205,59,225,0.55); }
.v4-group .card       { border-left: 4px solid rgba(229,57,53,0.55); }
.platform-group .card { border-left: 4px solid rgba(42,143,212,0.55); }

/* Shipped items — set by the admin via the `done` checkbox.
   Visual treatment is intentionally subtle: the card recedes a little,
   the title strikes through, and a small ✓ replaces the chevron's
   visual weight via a green border-left swap. */
.card.done { opacity: 0.62; }
.card.done:hover { opacity: 0.85; }
.card.done .card-meta h3 {
  text-decoration: line-through;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(0, 0, 0, 0.35);
}
.card.done .v-badge::after {
  content: " ✓";
  font-weight: 700;
}
.card.done .v-badge {
  background: rgba(45, 184, 69, 0.18);
  color: var(--v1);
}
.card-head { display: flex; align-items: center; gap: 14px; padding: 18px 20px; user-select: none; }
.v-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 11px;
  border-radius: 7px;
  flex-shrink: 0;
  min-width: 44px;
  text-align: center;
}
.v1-group .v-badge { background: rgba(45,184,69,0.12);   color: var(--v1); }
.v2-group .v-badge { background: rgba(255,118,1,0.12);   color: var(--v2); }
.v3-group .v-badge { background: rgba(205,59,225,0.12);  color: var(--v3); }
.v4-group .v-badge       { background: rgba(229,57,53,0.12);   color: var(--v4); }
.platform-group .v-badge { background: rgba(42,143,212,0.12); color: var(--vp); }
.card-icon { font-size: 22px; flex-shrink: 0; width: 32px; text-align: center; }
.card-meta { flex: 1; min-width: 0; }
.card-meta h3 { font-size: 15px; line-height: 1.2; color: var(--text); }
.card-tagline { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.chevron {
  color: var(--text-light);
  font-size: 10px;
  flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
}
.card.open .chevron { transform: rotate(180deg); }
.card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
.card.open .card-body { max-height: 700px; }
.card-body-inner {
  padding: 4px 22px 22px;
  border-top: 1px solid rgba(20, 71, 17, 0.07);
  background: rgba(242, 250, 240, 0.4);
}
.card-desc { font-size: 13.5px; color: var(--text-muted); margin: 16px 0 14px; line-height: 1.7; }
.feat-list { list-style: none; margin-bottom: 22px; }
.feat-list li {
  font-size: 13px;
  color: var(--text);
  padding: 4px 0 4px 20px;
  position: relative;
  line-height: 1.55;
}
.feat-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--text-light);
  font-size: 10px;
  top: 6px;
}

/* ─── ROADMAP MODEL CHIPS ────────────────────────────── */
.models-wrap { margin-top: 4px; }
.models-label {
  font-size: 9.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 9px;
}
.model-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.chip {
  font-size: 10.5px;
  font-family: 'SF Mono', 'Fira Code', ui-monospace, monospace;
  padding: 3px 9px;
  border-radius: 5px;
  background: rgba(0, 195, 209, 0.08);
  border: 1px solid rgba(0, 195, 209, 0.3);
  color: #009daa;
  white-space: nowrap;
}

/* ─── HOME SECTIONS ──────────────────────────────────── */
.section {
  max-width: 960px;
  margin: 0 auto;
  padding: 64px 28px;
}
.section-title {
  font-size: 28px;
  color: var(--text);
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 15px;
  color: var(--text-muted);
  text-align: center;
  max-width: 580px;
  margin: 0 auto 40px;
}

/* ─── HOME FEATURES ──────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-tile {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.feature-tile:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.feature-tile-icon { font-size: 32px; margin-bottom: 12px; }
.feature-tile h3 { font-size: 16px; color: var(--text); margin-bottom: 8px; }
.feature-tile p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; }

/* ─── HOME SCREENSHOT SCROLLER ───────────────────────── */
.screenshots-section { max-width: none; padding: 64px 0; }
.screenshots-section .section-title,
.screenshots-section .section-sub { padding: 0 28px; }
.screenshots-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 28px 32px;
  -webkit-overflow-scrolling: touch;
}
.screenshots-row::-webkit-scrollbar { height: 8px; }
.screenshots-row::-webkit-scrollbar-thumb { background: rgba(20, 71, 17, 0.18); border-radius: 99px; }
.screenshot { flex: 0 0 auto; width: 260px; scroll-snap-align: start; }
.screenshot img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 32px rgba(20, 71, 17, 0.22));
}

/* ─── LEGAL PAGES ────────────────────────────────────── */
.legal-wrap {
  max-width: 760px;
  margin: 60px auto;
  padding: 0 28px;
}
.legal-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
  margin-bottom: 32px;
}
.legal-header h1 { font-size: 36px; color: var(--text); margin-bottom: 10px; }
.legal-meta {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.legal-content h2 { font-size: 20px; color: var(--text); margin-top: 36px; margin-bottom: 12px; }
.legal-content h3 { font-size: 16px; color: var(--text); margin-top: 18px; margin-bottom: 6px; }
.legal-content p,
.legal-content li { font-size: 15px; color: var(--text); line-height: 1.65; margin-bottom: 12px; }
.legal-content ul { padding-left: 22px; margin-bottom: 12px; }
.legal-content a { color: var(--peak-system); text-decoration: none; }
.legal-content a:hover { text-decoration: underline; }
.legal-footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}
.legal-footer-copy { margin-top: 14px; }

/* ─── CONTACT PAGE ───────────────────────────────────── */
.contact-wrap {
  max-width: 560px;
  margin: 80px auto;
  padding: 0 28px;
}
.contact-header { text-align: center; margin-bottom: 36px; }
.contact-header h1 { font-size: 36px; color: var(--text); margin-bottom: 10px; }
.contact-header p { font-size: 16px; color: var(--text-muted); line-height: 1.6; }
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form label { font-size: 13px; color: var(--text); font-family: 'Varela Round', sans-serif; }
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  background: var(--bg-card);
  color: var(--text);
  font-family: 'Varela Round', sans-serif;
  font-size: 14px;
  transition: border-color 0.18s, box-shadow 0.18s;
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: rgba(255, 118, 1, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 118, 1, 0.12);
}
.contact-form textarea { min-height: 160px; resize: vertical; }
/* Override the browser's native select chrome (puny gray dropdown
   arrow on the right) with a custom SVG chevron so the field matches
   the input/textarea look exactly. */
.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23628060' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
  padding-right: 40px;
  cursor: pointer;
}
.contact-form button {
  align-self: flex-start;
  padding: 12px 32px;
  border-radius: 99px;
  border: none;
  background: var(--peak-dark);
  color: var(--peak-light);
  font-family: 'Varela Round', sans-serif;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.18s;
}
.contact-form button:hover { opacity: 0.92; transform: translateY(-1px); }

/* ─── THANKS PAGE ────────────────────────────────────── */
.thanks-wrap {
  max-width: 640px;
  margin: 120px auto;
  padding: 0 28px;
  text-align: center;
}
.thanks-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 28px;
  border-radius: 50%;
  background: rgba(255, 118, 1, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 22px rgba(255, 118, 1, 0.18);
}
.thanks-icon svg { width: 44px; height: 44px; color: var(--peak-system); }
.thanks-wrap h1 { font-size: 38px; color: var(--text); margin-bottom: 14px; }
.thanks-wrap p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 460px;
  margin: 0 auto 32px;
}
.thanks-cta {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 99px;
  background: var(--peak-dark);
  color: var(--peak-light);
  font-family: 'Varela Round', sans-serif;
  font-size: 14px;
  text-decoration: none;
  transition: opacity 0.18s, transform 0.18s;
}
.thanks-cta:hover { opacity: 0.92; transform: translateY(-1px); }

/* ─── FADE-IN ANIMATION (shared) ─────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── FOOTER (default = site pages with .footer-links) ─ */
footer {
  padding: 32px 28px 48px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
footer .footer-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
footer .footer-links a { color: var(--text-muted); text-decoration: none; }
footer .footer-links a:hover { color: var(--peak-system); text-decoration: underline; }

/* Roadmap footer override */
footer.roadmap-footer {
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  color: var(--text-light);
  font-size: 12px;
  letter-spacing: 0.3px;
}
.roadmap-footer-copy { margin-top: 8px; }

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 760px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-wrap { min-height: 440px; padding: 60px 20px; }
  .hero-title-img { width: 360px; }
  .hero-tagline { font-size: 16px; }
  .section { padding: 48px 20px; }
  .screenshot { width: 220px; }
}
@media (max-width: 640px) {
  /* Shared nav */
  .nav-links { gap: 4px; }
  .nav-link { padding: 5px 10px; font-size: 12px; }
  .nav-appstore { padding: 5px 10px; font-size: 12px; }
  .nav-appstore .ns-text-long { display: none; }

  /* Roadmap */
  .hero-title { font-size: 34px; letter-spacing: -0.8px; }
  .hero-stats { gap: 28px; }
  .stat-num { font-size: 30px; }
  .card-icon { display: none; }
  .filters { gap: 4px; }
  .filter-btn { padding: 5px 10px; font-size: 12px; }
  .header-inner { padding: 0 16px; }
  .roadmap-main { padding-left: 16px; padding-right: 16px; }

  /* Legal / Contact / Thanks */
  .legal-wrap { margin: 32px auto; padding: 0 18px; }
  .legal-header h1 { font-size: 28px; }
  .contact-wrap { margin: 40px auto; padding: 0 18px; }
  .contact-header h1 { font-size: 28px; }
  .thanks-wrap { margin: 64px auto; }
  .thanks-wrap h1 { font-size: 30px; }
}
@media (max-width: 480px) {
  .nav-link.nav-link-secondary { display: none; }
}
