:root {
  --bg: #f4efe6;
  --bg-deep: #e9e0d0;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-muted: rgba(249, 246, 240, 0.86);
  --text: #18211b;
  --text-soft: #2d3931;
  --muted: #66756b;
  --accent: #1f6b45;
  --accent-strong: #174f34;
  --accent-soft: #e3f0e7;
  --line: rgba(24, 33, 27, 0.1);
  --line-strong: rgba(24, 33, 27, 0.16);
  --shadow-sm: 0 12px 30px rgba(36, 42, 34, 0.08);
  --shadow-md: 0 24px 60px rgba(36, 42, 34, 0.12);
  --shadow-lg: 0 36px 90px rgba(36, 42, 34, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1140px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.85), transparent 28%),
    radial-gradient(circle at 100% 20%, rgba(201, 229, 203, 0.48), transparent 20%),
    linear-gradient(180deg, #efe8da 0%, var(--bg) 28%, #f7f4ee 100%);
  line-height: 1.68;
  letter-spacing: 0.01em;
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent);
}

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

.site-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 1rem 0 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 1rem 0.85rem 1.2rem;
  background: rgba(255, 253, 248, 0.74);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-logo-link,
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.brand-logo-link {
  padding: 0.2rem 0.35rem 0.2rem 0;
}

.footer-logo-link {
  padding: 0.2rem 0.35rem 0.35rem 0;
}

.brand-logo,
.footer-logo {
  width: auto;
  display: block;
  object-fit: contain;
}

.brand-logo {
  max-height: 50px;
}

.footer-logo {
  max-height: 34px;
}

.footer-logo-link + .microcopy {
  margin-top: 0.2rem;
}

.brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background:
    linear-gradient(135deg, #dff1cf, #8fd39e),
    #8fd39e;
  color: #123720;
  font-size: 0.98rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--accent-strong);
  background: rgba(227, 240, 231, 0.9);
}

.hero,
.category-hero,
.article-hero {
  position: relative;
}

.hero {
  padding: 4.6rem 0 3.8rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 1rem 0 auto;
  height: 31rem;
  background:
    radial-gradient(circle at 15% 30%, rgba(255, 255, 255, 0.8), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(183, 225, 191, 0.38), transparent 24%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2rem;
  align-items: start;
}

.hero-copy {
  padding-top: 1.2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.2rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(227, 240, 231, 0.92);
  color: var(--accent-strong);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 0.8rem;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 10.5ch;
  font-size: clamp(3rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.3rem);
}

h3 {
  font-size: 1.38rem;
}

p {
  margin: 0 0 1rem;
}

.lede,
.section-lede {
  max-width: 62ch;
  font-size: 1.12rem;
  color: var(--muted);
}

.hero-lede {
  max-width: 56ch;
  font-size: 1.16rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.95rem;
  align-items: center;
  margin-top: 2rem;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.button {
  color: #f7fff7;
  background: linear-gradient(180deg, #23764d 0%, #1a5f3d 100%);
  box-shadow: 0 16px 34px rgba(31, 107, 69, 0.24);
}

.button:hover {
  color: #fff;
  box-shadow: 0 20px 38px rgba(31, 107, 69, 0.28);
}

.button-secondary {
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.button-secondary:hover {
  color: var(--text);
  border-color: var(--line-strong);
}

.hero-subtext {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-subtext span::before {
  content: "";
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: #7bb588;
  vertical-align: middle;
}

.hero-panel {
  display: grid;
  gap: 1rem;
}

.hero-feature,
.card,
.stat-card,
.callout,
.article-card,
.article-body,
.footer-box {
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-md);
}

.hero-feature,
.card,
.article-card,
.callout,
.footer-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(252, 250, 246, 0.92));
}

.hero-feature,
.card,
.article-card,
.callout {
  border-radius: var(--radius-lg);
}

.hero-feature {
  padding: 1.55rem;
  background:
    radial-gradient(circle at top right, rgba(227, 240, 231, 0.95), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(246, 250, 244, 0.95));
}

.sa-flag-band {
  display: grid;
  grid-template-columns: 1.2fr 1.2fr 1.5fr 0.8fr 0.8fr;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.sa-flag-band span {
  display: block;
  height: 0.62rem;
  border-radius: 999px;
}

.flag-red {
  background: #de3831;
}

.flag-blue {
  background: #002395;
}

.flag-green {
  background: #007a4d;
}

.flag-gold {
  background: #ffb612;
}

.flag-black {
  background: #111111;
}

.hero-feature-title {
  font-size: 1.55rem;
}

.hero-feature ul,
.content-list,
.article-body ul,
.article-body ol,
.value-list {
  padding-left: 1.2rem;
}

.hero-feature li,
.content-list li,
.article-body li,
.value-list li {
  margin-bottom: 0.65rem;
  color: var(--text-soft);
}

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

.mini-card {
  padding: 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(24, 33, 27, 0.08);
}

.mini-card strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card {
  padding: 1.15rem 1.05rem;
  border-radius: 22px;
  background: rgba(252, 250, 245, 0.78);
}

.stat-card strong {
  display: block;
  margin-bottom: 0.2rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  letter-spacing: -0.04em;
}

.section {
  padding: 2rem 0 4rem;
}

.section-alt {
  padding: 3rem 0 4rem;
}

.section-panel {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 249, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.section-head {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.6rem;
}

.section-head.compact {
  margin-bottom: 1.1rem;
}

.section-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

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

.card,
.article-card,
.callout,
.footer-box {
  padding: 1.5rem;
}

.card,
.article-card {
  position: relative;
  overflow: hidden;
}

.card::after,
.article-card::after {
  content: "";
  position: absolute;
  inset: auto -2rem -2rem auto;
  width: 7rem;
  height: 7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 240, 231, 0.9), transparent 68%);
  pointer-events: none;
}

.card h3,
.article-card h3 {
  max-width: 14ch;
}

.card p,
.article-card p,
.callout p,
.meta,
.microcopy,
.breadcrumb,
.highlight-band,
.article-meta {
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.35rem;
  font-weight: 800;
  text-decoration: none;
}

.card-link::after {
  content: "→";
}

.tool-promo-card {
  display: flex;
  flex-direction: column;
}

.tool-promo-card h3 {
  max-width: none;
}

.tool-promo-card .card-link {
  margin-top: auto;
}

.tool-wheel-art {
  justify-self: start;
  display: inline-grid;
  justify-items: center;
  gap: 0.7rem;
  margin-top: 0.55rem;
  padding: 1rem 1.1rem 0.95rem;
  border-radius: 22px;
  text-decoration: none;
  background:
    radial-gradient(circle at top, rgba(255, 247, 228, 0.92), rgba(244, 238, 224, 0.92)),
    #fff;
  border: 1px solid rgba(24, 33, 27, 0.08);
  box-shadow: var(--shadow-sm);
}

.tool-wheel-art:hover {
  background:
    radial-gradient(circle at top, rgba(255, 251, 240, 0.96), rgba(240, 246, 237, 0.94)),
    #fff;
}

.tool-wheel-art-pointer {
  width: 0;
  height: 0;
  margin-bottom: -0.35rem;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 18px solid #b38a2f;
  filter: drop-shadow(0 2px 4px rgba(42, 34, 18, 0.18));
}

.tool-wheel-art-disc {
  position: relative;
  width: 7.4rem;
  height: 7.4rem;
  border-radius: 50%;
  border: 4px solid #c5a24d;
  box-shadow:
    inset 0 0 0 4px rgba(36, 33, 27, 0.08),
    0 12px 22px rgba(42, 34, 18, 0.14);
  background:
    conic-gradient(
      from -45deg,
      #14211b 0deg 90deg,
      #8f6b22 90deg 180deg,
      #1f2c27 180deg 270deg,
      #d8bf7a 270deg 360deg
    );
}

.tool-wheel-art-disc::before,
.tool-wheel-art-disc::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.tool-wheel-art-disc::before {
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(255, 245, 217, 0.48) 50%, transparent calc(50% + 1px)),
    linear-gradient(0deg, transparent calc(50% - 1px), rgba(255, 245, 217, 0.48) 50%, transparent calc(50% + 1px));
}

.tool-wheel-art-disc::after {
  inset: 0.7rem;
  border: 1px solid rgba(255, 244, 213, 0.3);
  background: radial-gradient(circle, transparent 58%, rgba(255, 244, 213, 0.08) 100%);
}

.tool-wheel-art-center {
  position: absolute;
  inset: 2.5rem;
  border-radius: 50%;
  background: radial-gradient(circle, #f4ead2 0%, #d0b370 52%, #8b6726 100%);
  box-shadow: 0 0 0 3px rgba(20, 33, 27, 0.12);
}

.tool-wheel-art-label {
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.meta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.meta-strip strong {
  color: var(--text-soft);
}

.intro-callout {
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.97), rgba(244, 250, 245, 0.96)),
    #fff;
}

.promo-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  align-items: center;
}

.promo-copy {
  display: grid;
  gap: 0.85rem;
}

.promo-actions {
  margin-top: 0;
}

.promo-note {
  max-width: 58ch;
  margin-bottom: 0;
}

.feature-link-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.feature-link-card:hover {
  color: inherit;
}

.feature-link-card .callout {
  transition: transform 140ms ease, box-shadow 140ms ease, border-color 140ms ease;
}

.feature-link-card:hover .callout {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(24, 33, 27, 0.12);
}

.feature-link-card .promo-copy h2,
.feature-link-card .promo-copy h3,
.feature-link-card .promo-copy p {
  color: inherit;
}

.feature-art {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(24, 33, 27, 0.08);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-sm);
}

.feature-art img {
  width: 100%;
  height: auto;
}

.feature-link-card .button {
  width: auto;
}

.promo-rail {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.promo-links {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.quick-link {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  text-decoration: none;
  font-weight: 700;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 33, 27, 0.08);
  box-shadow: var(--shadow-sm);
}

.quick-link:hover {
  color: var(--accent-strong);
  background: rgba(243, 250, 244, 0.95);
}

.trust-grid {
  display: grid;
  gap: 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card {
  padding: 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 33, 27, 0.08);
  box-shadow: var(--shadow-sm);
}

.contact-list {
  padding-left: 1.1rem;
}

.source-list {
  padding-left: 1.1rem;
}

.source-list li {
  margin-bottom: 0.65rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.95rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  padding: 0.34rem 0.75rem;
  border-radius: 999px;
  background: #edf5ea;
  color: var(--accent-strong);
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.category-hero,
.article-hero {
  padding: 4.2rem 0 1.7rem;
}

.breadcrumb {
  margin: 0 0 1rem;
  font-size: 0.92rem;
}

.highlight-band {
  margin-top: 1.4rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 248, 234, 0.94), rgba(240, 248, 236, 0.94));
  border: 1px solid rgba(24, 33, 27, 0.08);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.88fr);
  gap: 1.5rem;
}

.article-body {
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(252, 250, 247, 0.96));
}

.article-body p + h2,
.article-body ul + h2,
.article-body ol + h2 {
  margin-top: 2.1rem;
}

.article-body strong {
  color: var(--text-soft);
}

.article-body .article-note,
.article-body .article-figure,
.article-body .offer-cta {
  margin: 1.5rem 0;
}

.article-note {
  padding: 1.2rem 1.3rem;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(255, 248, 234, 0.94), rgba(240, 248, 236, 0.94));
  border: 1px solid rgba(24, 33, 27, 0.08);
}

.article-note h2,
.article-note h3 {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
}

.article-note ul {
  margin: 0;
}

.article-figure {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 33, 27, 0.08);
  box-shadow: var(--shadow-sm);
}

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

.article-figure figcaption {
  padding: 0.9rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.offer-cta .button {
  width: auto;
}

.sidebar {
  display: grid;
  gap: 1rem;
  align-self: start;
}

.sidebar .callout {
  position: sticky;
  top: 6.2rem;
}

.footer {
  padding: 2rem 0 3.2rem;
}

.footer-box {
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.78);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1rem;
  margin-top: 0.9rem;
}

.footer-nav a {
  text-decoration: none;
  font-weight: 700;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

.footer-meta {
  display: grid;
  gap: 0.55rem;
}

.footer-meta h2,
.footer-links h2,
.related-articles h2 {
  margin: 0;
  font-size: 1.05rem;
}

.footer-links {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.footer-link-group {
  display: grid;
  gap: 0.55rem;
}

.footer-link-group a {
  text-decoration: none;
  font-weight: 700;
}

.related-articles {
  margin-top: 2rem;
  padding: 1.4rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 251, 245, 0.88);
  border: 1px solid rgba(24, 33, 27, 0.08);
}

.related-articles p {
  margin-top: 0.45rem;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-top: 1.6rem;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 248, 237, 0.98), rgba(237, 248, 240, 0.98)),
    #fff;
  border: 1px solid rgba(24, 33, 27, 0.08);
  box-shadow: var(--shadow-sm);
}

.cta-row-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

@media (max-width: 960px) {
  .hero-grid,
  .promo-split,
  .article-layout,
  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .stats,
  .feature-grid,
  .quick-links,
  .trust-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    border-radius: 30px;
  }

  .nav {
    width: 100%;
  }

  h1 {
    max-width: 12ch;
  }

  .hero,
  .category-hero,
  .article-hero {
    padding-top: 3rem;
  }

  .sidebar .callout {
    position: static;
  }

  .cta-banner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 0.98rem;
  }

  .site-shell {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .topbar {
    padding: 0.9rem;
  }

  .brand-logo {
    max-height: 40px;
  }

  .footer-logo {
    max-height: 28px;
  }

  .nav a {
    padding: 0.45rem 0.78rem;
  }

  .hero {
    padding: 2.4rem 0 3rem;
  }

  .section,
  .section-alt {
    padding: 1.3rem 0 2.6rem;
  }

  .section-panel,
  .hero-feature,
  .card,
  .article-card,
  .callout,
  .article-body,
  .footer-box {
    padding: 1.2rem;
    border-radius: 22px;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .hero-subtext {
    display: grid;
    gap: 0.45rem;
  }

  .tool-wheel-art {
    width: 100%;
    justify-self: stretch;
  }

  .tool-wheel-art-disc {
    width: 6.4rem;
    height: 6.4rem;
  }

  .tool-wheel-art-center {
    inset: 2.1rem;
  }
}

/* Tools and guidance wheel promotion refresh */
.home-wheel-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.home-wheel-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1rem;
  border: 1px solid rgba(24, 33, 27, 0.1);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(227, 240, 231, 0.85), transparent 44%),
    rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-sm);
}

.home-wheel-card h2 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.38rem);
  letter-spacing: -0.02em;
}

.home-wheel-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.small-button {
  min-height: 42px;
  margin-top: auto;
  padding: 0.65rem 0.95rem;
  font-size: 0.9rem;
}

.wheel-decision-promo {
  margin: 2rem 0;
  padding: 1.25rem;
  border: 1px solid rgba(31, 107, 69, 0.16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(227, 240, 231, 0.86), transparent 42%),
    rgba(255, 253, 249, 0.9);
  box-shadow: var(--shadow-sm);
}

.wheel-decision-promo h2 {
  margin-bottom: 0.5rem;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
}

.wheel-decision-promo p {
  color: var(--muted);
}

.wheel-decision-promo .button {
  margin-top: 0.2rem;
}

@media (max-width: 980px) {
  .home-wheel-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .topbar {
    align-items: flex-start;
    border-radius: 28px;
  }

  .nav {
    width: 100%;
  }

  .nav a {
    min-height: 2.25rem;
    padding: 0.42rem 0.7rem;
    font-size: 0.86rem;
  }
}
