:root {
  color-scheme: light;
  --ink: #152238;
  --muted: #5a6675;
  --paper: #f7f8f5;
  --panel: #ffffff;
  --line: #d7dde2;
  --field: #2f6b52;
  --field-dark: #1f4e3b;
  --signal: #8f3f2b;
  --sun: #c68a2f;
  --water: #255f7e;
  --cream: #f0eee7;
  --moss: #e5ecdf;
  --sky: #e3edf1;
  --shadow: 0 12px 32px rgba(21, 34, 56, 0.08);
  --shadow-strong: 0 24px 60px rgba(21, 34, 56, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f7f8f5 0%, #f1f3ef 58%, #e9efe7 100%);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: inherit;
}

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

.official-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 8px clamp(18px, 5vw, 64px);
  background: #152238;
  color: #eef4f0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
}

.official-strip span:last-child {
  color: #cfd8df;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(21, 34, 56, 0.05);
  backdrop-filter: blur(14px) saturate(1.05);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  gap: 12px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  min-width: 76px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: var(--ink);
  border-radius: 4px;
  color: var(--paper);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.site-nav a,
.nav-toggle {
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 9px 12px;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: var(--line);
  background: #f3f6f4;
  color: var(--ink);
}

.nav-toggle {
  display: none;
  background: var(--panel);
  cursor: pointer;
}

main {
  overflow: hidden;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
  min-height: min(860px, calc(100vh - 76px));
  padding: clamp(44px, 7vw, 84px) clamp(18px, 5vw, 64px) 42px;
  border-bottom: 1px solid rgba(215, 221, 226, 0.9);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.54)),
    linear-gradient(180deg, #f8faf7, #eef3ec);
}

.hero-copy,
.section {
  max-width: 1180px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--field);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 5.1vw, 4.75rem);
}

h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.6rem);
}

h3 {
  font-size: 1.35rem;
}

.lede,
.hero-copy > p:not(.eyebrow),
.section p,
.content-page p,
.article-page p {
  color: var(--muted);
  font-size: 1.08rem;
}

.lede {
  max-width: 690px;
  margin: 24px 0 0;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  padding: 11px 18px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 10px 22px rgba(21, 34, 56, 0.16);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin: 38px 0 0;
}

.hero-stats div {
  min-height: 124px;
  padding: 18px;
  border: 1px solid rgba(217, 222, 216, 0.9);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 18px rgba(21, 34, 56, 0.05);
}

.hero-stats dt {
  color: var(--water);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-stats dd {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.35;
}

.hero-image-card {
  position: relative;
  width: 100%;
  min-width: 0;
  aspect-ratio: 16 / 10;
  min-height: 0;
  max-height: min(560px, 64vh);
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 4px;
  background: #152238;
  box-shadow: var(--shadow-strong);
}

.hero-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(21, 34, 56, 0.44), transparent 42%),
    linear-gradient(0deg, rgba(21, 34, 56, 0.48), transparent 52%);
  pointer-events: none;
}

.hero-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 50%;
}

.hero-image-card figcaption {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: min(340px, calc(100% - 44px));
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background: rgba(21, 34, 56, 0.82);
  color: #fff;
  backdrop-filter: blur(12px);
}

.hero-image-card span {
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-image-card strong {
  font-size: 1.28rem;
  line-height: 1.2;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 68px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 268px;
  padding: 26px;
  border: 1px solid rgba(217, 222, 216, 0.9);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 26px rgba(21, 34, 56, 0.06);
}

.feature-card::after,
.topic-card::after,
.product-card::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--water), var(--field));
  opacity: 0.9;
}

.feature-icon {
  display: inline-block;
  margin-bottom: 52px;
  color: var(--water);
  font-weight: 900;
}

.split-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  max-width: none;
  padding: 70px clamp(18px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(232, 239, 233, 0.96), rgba(225, 235, 239, 0.94)),
    var(--moss);
}

.visual-band {
  position: relative;
}

.visual-band::before {
  content: "";
  position: absolute;
  inset: 34px 0 auto;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 111, 143, 0.28), transparent);
}

.feature-callout {
  position: relative;
  overflow: hidden;
}

.feature-callout::after {
  content: "146.520";
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: -20px;
  color: rgba(24, 33, 31, 0.08);
  font-size: clamp(4rem, 12vw, 11rem);
  font-weight: 900;
  line-height: 1;
}

.split-band > div {
  max-width: 760px;
}

.signup-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 28px;
  align-items: end;
  padding: 74px clamp(18px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(21, 34, 56, 0.98), rgba(31, 78, 59, 0.96)),
    #152238;
  color: #fff;
}

.signup-band h2 {
  max-width: 760px;
}

.signup-band p:not(.eyebrow) {
  max-width: 690px;
  color: #dce7e0;
}

.inline-signup,
.lead-form {
  display: grid;
  gap: 12px;
}

.inline-signup label,
.lead-form label {
  display: grid;
  gap: 7px;
  color: inherit;
  font-weight: 800;
}

.inline-signup input,
.lead-form input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
}

.inline-signup .button {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.form-honey {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 64px);
  background: #111b2c;
  color: #f6f2e8;
}

.site-footer p {
  margin: 0;
}

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

.site-footer a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.social-share {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  margin: 34px 0;
  padding: 22px;
  border: 1px solid rgba(37, 95, 126, 0.24);
  border-radius: 6px;
  background:
    linear-gradient(135deg, rgba(227, 237, 241, 0.94), rgba(255, 255, 255, 0.96)),
    #fff;
  box-shadow: 0 12px 28px rgba(21, 34, 56, 0.07);
}

.social-share h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.social-share p:not(.eyebrow) {
  margin: 10px 0 0;
  font-size: 1rem;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 520px;
  gap: 10px;
}

.social-actions .button {
  min-height: 42px;
  padding: 9px 14px;
  flex: 0 1 auto;
  white-space: nowrap;
}

.social-actions button {
  cursor: pointer;
  font: inherit;
}

.content-page,
.article-page {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 92px;
}

.content-hub-section {
  padding-bottom: 96px;
}

.library-band {
  width: 100%;
  max-width: none;
  padding: 72px clamp(18px, 5vw, 64px);
  border-block: 1px solid rgba(217, 222, 216, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(231, 238, 232, 0.78)),
    var(--paper);
}

.library-band > .section-heading,
.library-band > .topic-grid,
.library-band > .quick-index {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.topic-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(21, 34, 56, 0.055);
}

.topic-card h2,
.topic-card h3 {
  margin-top: 26px;
  font-size: 1.35rem;
}

.topic-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.topic-card li {
  color: var(--muted);
  font-size: 0.98rem;
}

.topic-card a {
  color: var(--field-dark);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.quick-index {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.quick-index a {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto 24px;
}

.proof-strip div {
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.72);
}

.proof-strip strong {
  display: block;
  color: var(--field-dark);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1;
}

.proof-strip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 750;
  line-height: 1.35;
}

.wide-page {
  width: min(1180px, calc(100% - 36px));
}

.lead-page {
  overflow: hidden;
}

.lead-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 98px) 0;
}

.lead-form {
  max-width: 520px;
  margin-top: 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.lead-form small {
  color: var(--muted);
}

.checklist-preview {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e3ecdf;
}

.checklist-preview ul {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.checklist-preview li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 750;
}

.checklist-preview li span {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  border: 2px solid var(--field);
  border-radius: 4px;
  background: #fff;
}

.success-panel {
  padding: clamp(28px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #e3ecdf;
}

.checklist-page h1 {
  max-width: none;
}

.print-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.checklist-section {
  display: grid;
  gap: 12px;
  margin: 28px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.checklist-section h2 {
  margin: 0 0 8px;
  font-size: clamp(1.45rem, 2.5vw, 2.2rem);
}

.checklist-section label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 1.04rem;
}

.checklist-section input {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--field);
}

.content-page h1,
.article-page h1 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5.3vw, 4.8rem);
}

@media print {
  :root {
    --paper: #fff;
    --ink: #111;
    --muted: #333;
  }

  body {
    background: #fff;
    color: #111;
  }

  .no-print {
    display: none !important;
  }

  .content-page,
  .article-page {
    width: 100%;
    padding: 0;
  }

  .checklist-section {
    break-inside: avoid;
    border-color: #999;
    box-shadow: none;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 22px;
  }
}

.content-page h2,
.article-page h2 {
  margin-top: 46px;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
}

.content-page .social-share h2,
.article-page .social-share h2 {
  margin-top: 0;
  font-size: clamp(1.35rem, 2.1vw, 2rem);
}

.content-page ul,
.article-page ul {
  padding-left: 22px;
  color: var(--muted);
  font-size: 1.05rem;
}

.content-page .topic-card h2,
.article-page .topic-card h2,
.topic-card h2,
.topic-card h3 {
  margin-top: 26px;
  font-size: 1.35rem;
}

.content-page .topic-card ul,
.article-page .topic-card ul,
.topic-card ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.callout {
  margin: 38px 0;
  padding: 24px;
  border-left: 5px solid var(--water);
  background: #fff;
}

.affiliate-note {
  margin: 24px 0;
  padding: 16px 18px;
  border: 1px solid #ead9a7;
  border-radius: 4px;
  background: #fff8df;
  color: #59441d;
  font-size: 0.98rem;
}

.article-visual {
  overflow: hidden;
  margin: 34px 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(21, 34, 56, 0.06);
}

.article-visual img {
  width: 100%;
  height: auto;
}

.article-visual figcaption {
  padding: 13px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

.pick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 30px 0;
}

.pick-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(24, 33, 31, 0.06);
}

.pick-card.featured {
  border-color: rgba(39, 103, 73, 0.45);
  background: linear-gradient(180deg, #ffffff, #f0f7ed);
}

.pick-label {
  color: var(--water);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pick-card h2,
.pick-card h3 {
  margin-top: 12px;
  font-size: 1.45rem;
}

.pick-card p {
  color: var(--muted);
}

.pick-card .button {
  width: 100%;
  margin-top: auto;
}

.trust-panel,
.byline-note {
  margin: 26px 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(21, 34, 56, 0.05);
}

.trust-panel {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.trust-panel p {
  margin: 0;
}

.byline-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 750;
}

.byline-note a,
.trust-panel a {
  color: var(--water);
  font-weight: 850;
}

.decision-note {
  margin: 28px 0;
  padding: 18px 20px;
  border: 1px solid rgba(47, 111, 143, 0.3);
  border-radius: 4px;
  background: #eef7f7;
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--field-dark);
  font-weight: 850;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.gear-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0;
}

.gear-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--panel);
}

.gear-card h2 {
  margin-top: 0;
  font-size: clamp(1.65rem, 2.6vw, 2.45rem);
}

.gear-card .button {
  width: fit-content;
  margin-top: auto;
}

.gear-kicker {
  margin: 0 0 10px;
  color: var(--water);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.guide-list {
  margin-top: 48px;
}

.product-section {
  margin: 48px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.compact-products {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
}

.product-card h3 {
  font-size: 1.25rem;
}

.product-card p {
  color: var(--muted);
}

.product-card ul {
  margin: 0 0 22px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.98rem;
}

.product-card .button {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

.guide-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.guide-row:hover {
  background: rgba(255, 255, 255, 0.55);
}

.guide-row:last-child {
  border-bottom: 1px solid var(--line);
}

.guide-row span {
  display: grid;
  gap: 5px;
}

.guide-row small {
  color: var(--muted);
  font-size: 0.98rem;
}

.guide-row b {
  color: var(--field-dark);
}

.comparison-table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.98rem;
}

.comparison-table th,
.comparison-table td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  background: #e3ecdf;
  color: var(--ink);
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.admin-page {
  width: min(1280px, calc(100% - 36px));
  margin: 0 auto;
  padding: 54px 0 90px;
}

.admin-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 28px;
  align-items: end;
}

.admin-form,
.admin-panel,
.metric-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.admin-form {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.admin-form label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.admin-form input {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  font: inherit;
}

.login-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.login-panel {
  display: grid;
  gap: 26px;
  width: min(520px, 100%);
}

.login-panel h1 {
  font-size: clamp(2.35rem, 7vw, 4.6rem);
}

.admin-status {
  min-height: 46px;
  margin: 24px 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--muted);
}

.admin-status:empty {
  display: none;
}

.admin-status[data-type="success"] {
  border-color: #a8c9ac;
  color: var(--field-dark);
}

.admin-status[data-type="error"] {
  border-color: #e2aaa0;
  color: #8a2e1b;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.metric-card {
  display: grid;
  gap: 10px;
  min-height: 138px;
  padding: 22px;
}

.metric-card span {
  color: var(--muted);
  font-weight: 800;
}

.metric-card strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.admin-panel {
  overflow: hidden;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.panel-heading h2 {
  font-size: 1.45rem;
}

.panel-heading span {
  color: var(--muted);
  font-size: 0.9rem;
}

.table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.admin-table th,
.admin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  background: #e3ecdf;
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 75px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-image-card {
    aspect-ratio: 16 / 10;
    max-height: none;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .gear-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .compact-products,
  .pick-grid,
  .topic-grid,
  .proof-strip {
    grid-template-columns: 1fr;
  }

  .quick-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-band,
  .site-footer,
  .social-share,
  .signup-band,
  .lead-hero,
  .admin-hero,
  .admin-metrics,
  .admin-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .brand span:last-child {
    display: none;
  }

  .hero {
    padding-top: 38px;
    padding-bottom: 42px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 26px;
  }

  .hero-stats div {
    min-height: auto;
    padding: 12px 10px;
  }

  .hero-stats dt {
    font-size: 0.68rem;
  }

  .hero-stats dd {
    margin-top: 6px;
    font-size: 0.8rem;
  }

  .hero-image-card {
    aspect-ratio: 4 / 3;
  }

  .hero-image-card figcaption {
    right: 12px;
    bottom: 12px;
    width: min(320px, calc(100% - 24px));
    padding: 16px;
  }

  .hero-image-card strong {
    font-size: 1rem;
  }

  .button {
    width: 100%;
  }

  .comparison-table {
    display: block;
    overflow-x: auto;
  }

  .site-footer nav {
    gap: 10px 14px;
  }

  .social-actions,
  .social-actions .button {
    width: 100%;
  }

  .guide-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
