:root {
  --paper: #f2ede4;
  --ink: #1a1612;
  --ink-mid: #4a4440;
  --ink-light: #9a9088;
  --forge-red: #c8352a;
  --steel: #d8d2c8;
  --paper-dark: #e8e2d8;
  --white: #ffffff;
  --shell: min(1200px, calc(100vw - 40px));
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.7;
}

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

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

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.paper-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.28;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(26, 22, 18, 0.05), transparent 24%),
    radial-gradient(circle at 70% 30%, rgba(26, 22, 18, 0.03), transparent 18%),
    radial-gradient(circle at 40% 80%, rgba(26, 22, 18, 0.03), transparent 22%);
}

.brand-lockup,
.help-nav,
.section-kicker,
.product-card-cta,
.product-thumb p,
.help-card h3,
.help-feature-title h3 {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  letter-spacing: 0.06em;
}

.brand-lockup {
  display: inline-flex;
  flex-direction: column;
  line-height: 0.88;
}

.brand-lockup span:first-child {
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  color: var(--forge-red);
}

.brand-lockup span:last-child {
  font-size: clamp(18px, 2vw, 26px);
}

.help-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 20px 0;
}

.help-nav {
  display: flex;
  gap: 22px;
  font-size: 14px;
  text-transform: uppercase;
}

.help-main {
  padding-bottom: 96px;
}

.help-hero {
  padding: 52px 0 48px;
}

.help-hero-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 40px;
  align-items: center;
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--forge-red);
  font-size: 14px;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(52px, 7vw, 92px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(36px, 4vw, 54px);
}

.help-intro,
.product-card-copy p,
.help-card p,
.help-feature-row li,
.help-number-list li,
.help-image-callout p {
  color: var(--ink-mid);
  font-size: 18px;
}

.help-catalog {
  padding-top: 18px;
}

.help-catalog-grid,
.help-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  border: 1px solid var(--steel);
  background: rgba(255, 255, 255, 0.48);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px rgba(26, 22, 18, 0.08);
}

.product-card-link {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  min-height: 100%;
}

.product-thumb {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(150deg, rgba(26, 22, 18, 0.92), rgba(74, 68, 64, 0.84)),
    linear-gradient(180deg, rgba(200, 53, 42, 0.2), transparent 65%);
  color: var(--paper);
}

.product-thumb p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 900;
  text-align: center;
}

.product-wheel-mark {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.product-wheel-mark::before,
.product-wheel-mark::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(242, 237, 228, 0.2);
}

.product-wheel-mark::before {
  width: 180px;
  height: 180px;
}

.product-wheel-mark::after {
  width: 110px;
  height: 110px;
}

.product-wheel-mark span {
  position: absolute;
  width: 1px;
  height: 170px;
  background: rgba(242, 237, 228, 0.18);
}

.product-wheel-mark span:nth-child(2) {
  transform: rotate(45deg);
}

.product-wheel-mark span:nth-child(3) {
  transform: rotate(90deg);
}

.product-wheel-mark span:nth-child(4) {
  transform: rotate(135deg);
}

.product-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 30px;
}

.product-card-meta,
.help-note {
  font-family: "Courier New", monospace;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--ink-light);
}

.product-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-card-cta {
  color: var(--forge-red);
  font-size: 18px;
  text-transform: uppercase;
}

.help-section {
  padding-top: 42px;
}

.help-section-head {
  margin-bottom: 28px;
}

.help-number-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding-left: 24px;
}

.help-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-left: 3px solid var(--forge-red);
  background: rgba(200, 53, 42, 0.05);
}

.help-card {
  padding: 24px;
  border: 1px solid var(--steel);
  background: rgba(255, 255, 255, 0.46);
}

.help-card h3,
.help-feature-title h3 {
  margin-bottom: 12px;
  font-size: 24px;
  text-transform: uppercase;
}

.help-feature-list {
  border-top: 1px solid var(--steel);
}

.help-feature-row {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid var(--steel);
}

.help-feature-row ul,
.help-image-callout ul {
  margin: 0;
  padding-left: 20px;
}

.help-feature-row li,
.help-image-callout li {
  margin-bottom: 10px;
  color: var(--ink-mid);
}

.help-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
}

.help-tag-row span {
  padding: 7px 10px;
  border: 1px solid rgba(216, 210, 200, 0.45);
  font-family: "Courier New", monospace;
  font-size: 12px;
}

.help-hero-art {
  display: flex;
  justify-content: center;
}

.hero-wheel-preview {
  position: relative;
  width: 280px;
  height: 280px;
}

.wheel-ring,
.wheel-center {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 999px;
}

.wheel-ring.outer {
  width: 280px;
  height: 280px;
  background: conic-gradient(
    from 0deg,
    rgba(26, 22, 18, 0.86) 0deg 44deg,
    rgba(200, 53, 42, 0.88) 44deg 46deg,
    rgba(26, 22, 18, 0.86) 46deg 88deg,
    rgba(200, 53, 42, 0.88) 88deg 90deg,
    rgba(26, 22, 18, 0.86) 90deg 134deg,
    rgba(200, 53, 42, 0.88) 134deg 136deg,
    rgba(26, 22, 18, 0.86) 136deg 178deg,
    rgba(200, 53, 42, 0.88) 178deg 180deg,
    rgba(26, 22, 18, 0.86) 180deg 224deg,
    rgba(200, 53, 42, 0.88) 224deg 226deg,
    rgba(26, 22, 18, 0.86) 226deg 268deg,
    rgba(200, 53, 42, 0.88) 268deg 270deg,
    rgba(26, 22, 18, 0.86) 270deg 314deg,
    rgba(200, 53, 42, 0.88) 314deg 316deg,
    rgba(26, 22, 18, 0.86) 316deg 358deg,
    rgba(200, 53, 42, 0.88) 358deg 360deg
  );
}

.wheel-ring.inner {
  width: 140px;
  height: 140px;
  background: var(--paper);
  border: 1px solid rgba(26, 22, 18, 0.16);
}

.wheel-center {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  background: var(--forge-red);
  color: var(--paper);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 28px;
  font-weight: 900;
}

.help-image-callout {
  padding: 28px;
  border: 1px solid var(--steel);
  background: rgba(255, 255, 255, 0.46);
}

@media (max-width: 1080px) {
  .help-hero-detail,
  .product-card-link,
  .help-feature-row,
  .help-catalog-grid,
  .help-card-grid {
    grid-template-columns: 1fr;
  }

  .help-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .help-hero-art {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100vw - 28px, 1200px);
  }

  .help-main {
    padding-bottom: 72px;
  }

  .help-hero {
    padding: 34px 0 32px;
  }

  .help-nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .product-thumb {
    min-height: 220px;
  }

  .product-card-copy,
  .help-card,
  .help-image-callout {
    padding: 22px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-wheel-preview {
    width: 220px;
    height: 220px;
  }

  .wheel-ring.outer {
    width: 220px;
    height: 220px;
  }

  .wheel-ring.inner {
    width: 114px;
    height: 114px;
  }

  .wheel-center {
    width: 74px;
    height: 74px;
    font-size: 24px;
  }
}
