:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-soft: #fff7ed;
  --orange-mid: #fed7aa;
  --ink: #071327;
  --muted: #526070;
  --line: #e6e9ef;
  --panel: #ffffff;
  --page: #f7f8fb;
  --blue: #2563eb;
  --blue-soft: #eaf3ff;
  --green: #16a34a;
  --green-soft: #e9fbee;
  --rose: #e11d48;
  --rose-soft: #fff1f2;
  --gold: #d97706;
  --gold-soft: #fff7db;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 10%, rgb(249 115 22 / 0.10), transparent 30%),
    radial-gradient(circle at 85% 16%, rgb(37 99 235 / 0.10), transparent 28%),
    var(--page);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  min-height: 64px;
  padding: 10px clamp(18px, 3vw, 54px);
  background: rgb(255 255 255 / 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 14px 34px rgb(7 19 39 / 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: linear-gradient(135deg, #fb923c, #f97316);
  border-radius: 15px;
  box-shadow: 0 10px 24px rgb(249 115 22 / 0.28);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  color: #1f2937;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--orange-dark);
  background: var(--orange-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  width: min(28vw, 330px);
  height: 42px;
  padding: 0 14px;
  background: #eef2f7;
  border-radius: 18px;
  color: var(--muted);
}

.search-box input {
  min-width: 0;
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 13px;
}

.login-button,
.nav-cta,
.primary-action,
.secondary-action,
.signup-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 900;
}

.login-button,
.secondary-action {
  background: white;
  border: 1px solid #cbd5e1;
}

.nav-cta,
.primary-action,
.signup-form button {
  color: white;
  background: linear-gradient(135deg, #ff7a1a, #f25516);
  border: 0;
  box-shadow: 0 14px 28px rgb(249 115 22 / 0.25);
}

.page-shell {
  width: min(1920px, 100%);
  margin: 0 auto;
  padding: 12px clamp(12px, 2vw, 28px) 0;
}

.hero-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.86fr) minmax(760px, 1.14fr);
  gap: 28px;
  min-height: 390px;
  overflow: hidden;
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 70px);
  background:
    linear-gradient(90deg, rgb(255 247 237 / 0.98) 0%, rgb(255 255 255 / 0.64) 45%, rgb(255 237 213 / 0.92) 100%),
    url("assets/cats/misket.jpg") center / cover;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 52px rgb(7 19 39 / 0.08);
}

.hero-copy {
  position: relative;
  z-index: 5;
  align-self: center;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero-copy h1 {
  max-width: 660px;
  margin-bottom: 8px;
  font-size: clamp(46px, 5.7vw, 82px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-copy h1 span {
  color: var(--orange);
}

.hero-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(21px, 2.1vw, 30px);
  line-height: 1.15;
}

.hero-copy p {
  max-width: 560px;
  color: #263241;
  font-size: 17px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.centered {
  justify-content: center;
}

.scribble,
.quote-note {
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  color: #2c1a0e;
  font-size: 17px;
  line-height: 1.25;
  transform: rotate(-8deg);
}

.s1 {
  display: none;
}

.hero-cat-stage {
  position: relative;
  min-height: 338px;
  isolation: isolate;
}

.hero-cat {
  position: absolute;
  left: 318px;
  bottom: -20px;
  width: 330px;
  height: 318px;
  object-fit: cover;
  border-radius: 32px 32px 0 0;
  filter: saturate(1.06);
  box-shadow: 0 28px 60px rgb(7 19 39 / 0.18);
}

.floating-note {
  position: absolute;
  z-index: 2;
  padding: 14px 16px;
  background: rgb(255 255 255 / 0.9);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgb(7 19 39 / 0.12);
}

.map-note {
  top: 38px;
  left: 560px;
}

.floating-note strong,
.floating-note span {
  display: block;
}

.floating-note span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.quote-note {
  right: 18px;
  top: 92px;
  opacity: 0.32;
}

.profile-stack {
  position: absolute;
  right: 24px;
  top: 94px;
  z-index: 3;
  display: grid;
  gap: 12px;
  width: 316px;
  transform: rotate(-2deg);
}

.mini-profile {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: rgb(255 255 255 / 0.94);
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: 0 18px 34px rgb(7 19 39 / 0.12);
}

.mini-profile img {
  grid-row: span 2;
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 14px;
}

.mini-profile span,
.mini-profile small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.mini-profile button,
.cat-profile-card button,
.community-list button {
  min-height: 32px;
  background: white;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
}

.hero-map {
  position: absolute;
  left: 20px;
  top: 56px;
  z-index: 2;
  width: 270px;
  height: 178px;
  transform: rotate(-5deg);
}

.map-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(105deg, transparent 0 46%, rgb(255 255 255 / 0.76) 46% 50%, transparent 50%),
    linear-gradient(24deg, transparent 0 42%, rgb(255 255 255 / 0.72) 42% 46%, transparent 46%),
    linear-gradient(90deg, #bde7ff 0 34%, #e5f5e4 34% 100%);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgb(255 255 255 / 0.4);
}

.pin {
  position: absolute;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: var(--orange);
  border: 3px solid white;
  border-radius: 50% 50% 50% 8px;
  transform: rotate(-45deg);
  box-shadow: 0 8px 18px rgb(249 115 22 / 0.32);
}

.pin::first-letter {
  transform: rotate(45deg);
}

.p-a {
  left: 28%;
  top: 18%;
}

.p-b {
  right: 20%;
  top: 28%;
}

.p-c {
  left: 18%;
  bottom: 20%;
}

.p-d {
  right: 32%;
  bottom: 14%;
}

.locator {
  position: absolute;
  left: 50%;
  top: 52%;
  width: 28px;
  height: 28px;
  background: #2563eb;
  border: 5px solid white;
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgb(37 99 235 / 0.2);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr)) minmax(220px, 0.95fr);
  gap: 14px;
  margin: 14px clamp(44px, 2vw, 54px);
}

.stat-card,
.quote-card,
.panel,
.signup-section,
.story-band {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 12px 28px rgb(7 19 39 / 0.06);
}

.stat-card {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 14px 18px;
}

.stat-card span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: 50%;
  font-size: 25px;
}

.stat-card strong {
  display: block;
  font-size: 26px;
}

.stat-card small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.stat-card b {
  color: var(--orange);
  font-size: 28px;
}

.pink {
  background: linear-gradient(135deg, #fff1f2, #fff);
}

.pink span {
  background: #ffe4e6;
}

.blue {
  background: linear-gradient(135deg, #eaf3ff, #fff);
}

.blue span {
  background: #dbeafe;
}

.gold {
  background: linear-gradient(135deg, #fff7db, #fff);
}

.gold span {
  background: #fef3c7;
}

.green {
  background: linear-gradient(135deg, #e9fbee, #fff);
}

.green span {
  background: #dcfce7;
}

.quote-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #fff7ed, #fff);
}

.quote-card span {
  font-size: 44px;
}

.quote-card p {
  margin: 0;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 17px;
  line-height: 1.25;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.78fr 0.62fr 0.78fr;
  gap: 14px;
  margin: 14px clamp(44px, 2vw, 54px);
}

.panel {
  padding: 14px;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.panel-head h3 {
  margin: 0;
  font-size: 19px;
}

.panel-head a {
  color: #2563eb;
  font-size: 12px;
  font-weight: 900;
}

.nearby-panel {
  grid-column: span 1;
}

.nearby-content {
  display: grid;
  grid-template-columns: 0.92fr 1.45fr;
  gap: 12px;
}

.big-map {
  min-height: 286px;
  padding: 24px;
}

.big-map strong {
  position: absolute;
  right: 34px;
  top: 102px;
  font-size: 18px;
}

.big-map small {
  position: absolute;
  right: 22px;
  top: 130px;
  color: var(--muted);
  font-weight: 800;
}

.big-map button {
  position: absolute;
  left: 14px;
  bottom: 14px;
  min-height: 36px;
  padding: 0 14px;
  color: #2563eb;
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 900;
}

.cat-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.cat-profile-card {
  position: relative;
  padding: 0 10px 10px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.cat-profile-card img {
  width: calc(100% + 20px);
  height: 132px;
  margin: 0 -10px 10px;
  object-fit: cover;
}

.heart {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 28px;
  min-height: 28px;
  padding: 0;
  background: white;
  border: 0;
  border-radius: 50%;
  font-size: 18px;
}

.cat-profile-card strong,
.cat-profile-card span,
.cat-profile-card small {
  display: block;
}

.cat-profile-card span,
.cat-profile-card small {
  color: var(--muted);
  font-size: 12px;
}

.cat-profile-card button:last-child {
  width: 100%;
  margin-top: 10px;
}

.task-list,
.community-list,
.leader-list {
  display: grid;
  gap: 10px;
}

.task-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
}

.task-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 13px;
  font-size: 22px;
}

.task-icon.orange {
  background: var(--orange-soft);
}

.task-icon.green {
  background: var(--green-soft);
}

.task-icon.blue {
  background: var(--blue-soft);
}

.task-item p {
  margin: 3px 0 7px;
  color: var(--muted);
  font-size: 12px;
}

.task-item i {
  display: block;
  height: 8px;
  overflow: hidden;
  background: #e5e7eb;
  border-radius: 999px;
}

.task-item i b {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #fbbf24);
}

.task-item em {
  color: var(--orange-dark);
  font-style: normal;
  font-weight: 900;
}

.leader-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.leader-list li {
  display: grid;
  grid-template-columns: 28px 38px 1fr auto;
  gap: 10px;
  align-items: center;
}

.leader-list span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  background: #f1f5f9;
  border-radius: 50%;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.leader-list li:first-child span {
  color: white;
  background: #f59e0b;
}

.leader-list img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
}

.leader-list b {
  color: var(--orange-dark);
  font-size: 12px;
}

.side-stack {
  display: grid;
  gap: 14px;
}

.community-list article {
  display: grid;
  grid-template-columns: 48px 1fr 70px;
  gap: 10px;
  align-items: center;
}

.community-list img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
}

.community-list span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.shop-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.shop-row article {
  min-height: 94px;
  padding: 8px;
  text-align: center;
  background: #f8fafc;
  border-radius: 12px;
}

.shop-row span {
  display: block;
  margin-bottom: 5px;
  font-size: 28px;
}

.shop-row strong,
.shop-row small {
  display: block;
}

.shop-row strong {
  font-size: 11px;
}

.shop-row small {
  color: var(--muted);
  font-size: 10px;
}

.story-band {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.45fr;
  gap: 24px;
  align-items: center;
  min-height: 150px;
  overflow: hidden;
  margin: 14px clamp(44px, 2vw, 54px);
  padding: 0 34px 0 0;
  background: linear-gradient(90deg, #fff7ed, white 48%, #ffedd5);
}

.story-image {
  position: relative;
  height: 150px;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-image span {
  position: absolute;
  left: 34px;
  top: 26px;
  max-width: 160px;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 18px;
  line-height: 1.15;
  transform: rotate(-8deg);
}

.story-copy {
  text-align: center;
}

.story-copy h2 {
  margin-bottom: 6px;
  font-size: 28px;
  line-height: 1.05;
}

.story-copy p {
  color: var(--muted);
  margin-bottom: 10px;
}

.impact-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: 800;
}

.signup-section {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 460px);
  gap: 28px;
  align-items: center;
  margin: 14px clamp(44px, 2vw, 54px) 0;
  padding: 28px;
  background: white;
}

.signup-section h2 {
  margin-bottom: 8px;
  font-size: 32px;
}

.signup-section p {
  color: var(--muted);
}

.signup-form label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.signup-form div {
  display: flex;
  gap: 8px;
}

.signup-form input {
  min-width: 0;
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  outline: 0;
}

.form-note {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
  margin-top: 18px;
  padding: 18px clamp(44px, 3vw, 70px);
  background: white;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.site-footer .brand {
  color: var(--ink);
  font-size: 18px;
}

.site-footer .brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 12px;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.simple-page-header {
  grid-template-columns: auto 1fr;
}

.simple-page-header .nav-links {
  justify-content: flex-end;
}

.content-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 18px;
}

.content-hero {
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(135deg, rgb(255 247 237 / 0.96), rgb(255 255 255 / 0.94)),
    url("assets/cats/misket.jpg") center / cover;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 18px 52px rgb(7 19 39 / 0.08);
}

.content-hero h1 {
  max-width: 820px;
  margin-bottom: 12px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

.content-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.content-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.contact-layout {
  grid-template-columns: 0.85fr 1.15fr;
}

.content-card {
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgb(7 19 39 / 0.06);
}

.content-card h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.7;
}

.content-card ul {
  padding-left: 20px;
}

.legal-page .content-card {
  max-width: 900px;
  margin: 14px auto 0;
}

.legal-page .content-card h2 {
  margin-top: 24px;
}

.legal-page .content-card h2:first-child {
  margin-top: 0;
}

.contact-form {
  display: grid;
  gap: 10px;
}

.contact-form label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  color: var(--ink);
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-radius: 14px;
  outline: 0;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgb(249 115 22 / 0.12);
}

.contact-form button {
  min-height: 44px;
  color: white;
  background: linear-gradient(135deg, #ff7a1a, #f25516);
  border: 0;
  border-radius: 14px;
  font-weight: 900;
}

.contact-form small,
.muted-note {
  color: var(--muted);
}

.live-toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  padding: 12px 16px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgb(7 19 39 / 0.24);
  font-size: 13px;
  font-weight: 900;
  opacity: 0;
  transform: translateY(10px);
  transition: 220ms ease;
}

.live-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 650ms ease, transform 650ms ease;
}

.panel,
.stat-card,
.cat-profile-card,
.task-item,
.community-list article,
.shop-row article,
.mini-profile {
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.panel:hover,
.stat-card:hover,
.cat-profile-card:hover,
.task-item:hover,
.community-list article:hover,
.shop-row article:hover,
.mini-profile:hover {
  transform: translateY(-3px);
  border-color: var(--orange-mid);
  box-shadow: 0 18px 40px rgb(7 19 39 / 0.10);
}

@media (max-width: 1350px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .header-actions {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .dashboard-grid {
    grid-template-columns: 1.35fr 0.9fr;
  }

  .side-stack {
    grid-column: span 2;
    grid-template-columns: 1fr 1fr;
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-board {
    grid-template-columns: minmax(380px, 0.9fr) minmax(560px, 1fr);
  }

  .hero-copy h1 {
    font-size: clamp(42px, 5vw, 64px);
  }

  .hero-cat {
    left: 8%;
    width: min(34vw, 360px);
    height: 310px;
  }

  .hero-map {
    width: 224px;
    height: 150px;
    left: 0;
    top: 22px;
  }

  .map-note {
    right: 248px;
  }

  .profile-stack {
    width: 286px;
    right: 8px;
  }

  .mini-profile {
    grid-template-columns: 72px 1fr;
  }

  .mini-profile img {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 980px) {
  .site-header {
    display: flex;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .header-actions {
    margin-left: auto;
  }

  .search-box {
    display: none;
  }

  .hero-board,
  .dashboard-grid,
  .nearby-content,
  .story-band,
  .signup-section {
    grid-template-columns: 1fr;
  }

  .hero-cat-stage {
    min-height: 430px;
  }

  .hero-cat {
    width: 72%;
    left: 0;
  }

  .profile-stack {
    right: 0;
    width: 300px;
  }

  .hero-map,
  .map-note,
  .quote-note,
  .scribble {
    display: none;
  }

  .side-stack {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .cat-card-grid,
  .shop-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-band {
    padding: 0 0 24px;
  }

  .impact-list {
    padding-inline: 24px;
  }
}

@media (max-width: 620px) {
  .page-shell {
    padding-inline: 8px;
  }

  .hero-board,
  .stats-strip,
  .dashboard-grid,
  .story-band,
  .signup-section {
    margin-inline: 0;
  }

  .hero-board {
    padding: 24px 18px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-cat-stage {
    min-height: 520px;
  }

  .hero-cat {
    width: 100%;
    height: 300px;
  }

  .profile-stack {
    top: 260px;
    width: 100%;
  }

  .stats-strip,
  .cat-card-grid,
  .shop-row {
    grid-template-columns: 1fr;
  }

  .task-item,
  .leader-list li,
  .community-list article {
    grid-template-columns: auto 1fr;
  }

  .task-item em,
  .leader-list b,
  .community-list button {
    grid-column: 2;
    justify-self: start;
  }

  .signup-form div,
  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}
