:root {
  color-scheme: light;
  --ink: #101722;
  --ink-2: #172231;
  --steel: #667684;
  --mist: #edf1f2;
  --paper: #f7f4ec;
  --warm: #e7dcc7;
  --brass: #b98942;
  --red: #ad352f;
  --red-deep: #7e2728;
  --line: rgba(16, 23, 34, 0.14);
  --line-light: rgba(247, 244, 236, 0.18);
  --shadow: 0 24px 80px rgba(16, 23, 34, 0.2);
  --font-body: Aptos, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Bahnschrift, "Aptos Display", "Arial Narrow", "Segoe UI", sans-serif;
  --font-utility: "Segoe UI", Aptos, ui-sans-serif, system-ui, sans-serif;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--brass);
  color: var(--ink);
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(185, 137, 66, 0.22);
}

img,
svg {
  display: block;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 1.2rem;
  min-height: 76px;
  padding: 0.75rem 4vw;
  padding-left: max(4vw, env(safe-area-inset-left));
  padding-right: max(4vw, env(safe-area-inset-right));
  border-bottom: 1px solid transparent;
  background: rgba(16, 23, 34, 0.78);
  color: var(--paper);
  backdrop-filter: blur(18px);
  transition:
    background 220ms ease,
    border-color 220ms ease,
    min-height 220ms ease;
}

.site-header.is-scrolled {
  min-height: 64px;
  border-bottom-color: rgba(247, 244, 236, 0.12);
  background: rgba(16, 23, 34, 0.94);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(247, 244, 236, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(185, 137, 66, 0.96), rgba(173, 53, 47, 0.88)),
    var(--red);
  color: #fffaf0;
  font-family: var(--font-display);
  font-weight: 850;
  letter-spacing: 0;
}

.brand-name,
.brand-domain {
  display: block;
  letter-spacing: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 850;
  line-height: 1.05;
}

.brand-domain {
  color: rgba(247, 244, 236, 0.72);
  font-size: 0.78rem;
  font-weight: 750;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  border: 1px solid rgba(247, 244, 236, 0.14);
  border-radius: 8px;
  padding: 0.25rem;
  background: rgba(247, 244, 236, 0.07);
}

.site-nav a,
.header-cta {
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
  color: rgba(247, 244, 236, 0.82);
  font-family: var(--font-utility);
  font-size: 0.92rem;
  font-weight: 750;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(247, 244, 236, 0.12);
  color: #fffaf0;
}

.header-cta {
  border: 1px solid rgba(247, 244, 236, 0.2);
  background: #fffaf0;
  color: var(--ink);
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
}

.usa-banner {
  position: relative;
  z-index: 90;
  border-bottom: 1px solid rgba(247, 244, 236, 0.16);
  background:
    linear-gradient(90deg, rgba(126, 39, 40, 0.96), rgba(16, 23, 34, 0.98) 42%, rgba(30, 80, 55, 0.96)),
    var(--ink);
  color: var(--paper);
  overflow: hidden;
}

.usa-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255, 250, 240, 0.08) 0 8px,
      transparent 8px 18px
    );
  opacity: 0.55;
  pointer-events: none;
}

.usa-banner-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  width: min(var(--max), calc(100% - 8vw));
  min-height: 86px;
  margin: 0 auto;
  padding: 0.8rem 0;
}

.usa-seal {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(255, 250, 240, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.16), rgba(255, 250, 240, 0.04)),
    var(--red-deep);
  box-shadow: inset 0 0 0 4px rgba(16, 23, 34, 0.24);
}

.usa-seal span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #fffaf0;
  color: var(--red-deep);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 900;
}

.usa-banner-copy {
  display: grid;
  gap: 0.12rem;
}

.usa-banner-copy strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.05;
}

.usa-banner-copy span {
  color: rgba(247, 244, 236, 0.78);
  font-size: 0.95rem;
  font-weight: 700;
}

.usa-banner-sustainability {
  justify-self: end;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.7rem;
  max-width: 360px;
  border-left: 1px solid rgba(255, 250, 240, 0.22);
  padding-left: 1rem;
}

.eco-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(223, 242, 221, 0.32);
  border-radius: 8px;
  background: rgba(223, 242, 221, 0.12);
  color: #dff2dd;
}

.eco-mark svg {
  width: 22px;
  height: 22px;
}

.eco-copy {
  display: grid;
  gap: 0.12rem;
}

.eco-copy strong {
  color: #dff2dd;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.1;
}

.eco-copy > span {
  color: rgba(247, 244, 236, 0.78);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 86svh;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(16, 23, 34, 0.98), rgba(16, 23, 34, 0.74) 38%, rgba(16, 23, 34, 0.15) 76%),
    url("assets/hobbyplug-hero.png") center right / cover no-repeat;
  color: var(--paper);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(16, 23, 34, 0.2), rgba(16, 23, 34, 0.92)),
    linear-gradient(135deg, rgba(185, 137, 66, 0.16), transparent 42%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(247, 244, 236, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 236, 0.055) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 72%);
  animation: gridDrift 16s linear infinite;
}

.hero-content {
  width: min(var(--max), calc(100% - 8vw));
  margin: 0 auto;
  padding: 5rem 0 6rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  color: var(--brass);
  font-family: var(--font-utility);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 1.03;
  overflow-wrap: break-word;
}

h1 {
  max-width: 660px;
  margin-bottom: 1.25rem;
  font-size: 4.8rem;
  font-weight: 900;
}

.brand-line {
  width: fit-content;
  margin: 0 0 1.15rem;
  border-left: 4px solid var(--brass);
  padding: 0.28rem 0 0.28rem 0.9rem;
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 850;
}

h2 {
  max-width: 800px;
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 900;
}

h3 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
  font-weight: 850;
}

.hero-copy {
  max-width: 620px;
  color: rgba(247, 244, 236, 0.88);
  font-size: 1.24rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.hero-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 260px));
  align-items: stretch;
  max-width: 680px;
  gap: 0.85rem;
}

.hero-path {
  position: relative;
  display: grid;
  gap: 0.45rem;
  min-height: 176px;
  border: 1px solid rgba(247, 244, 236, 0.2);
  border-radius: 8px;
  padding: 1rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.12), rgba(255, 250, 240, 0.035)),
    rgba(16, 23, 34, 0.62);
  color: var(--paper);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.hero-path::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 4px solid var(--brass);
  pointer-events: none;
}

.hero-path-dealer::before {
  border-top-color: var(--red);
}

.hero-path:hover,
.hero-path:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(247, 244, 236, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.16), rgba(255, 250, 240, 0.05)),
    rgba(16, 23, 34, 0.76);
}

.path-label {
  width: fit-content;
  border: 1px solid rgba(255, 250, 240, 0.2);
  border-radius: 6px;
  padding: 0.32rem 0.48rem;
  color: var(--brass);
  font-family: var(--font-utility);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-path-dealer .path-label {
  color: #ffcbc6;
}

.hero-path strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.05;
}

.hero-path > span:not(.path-label):not(.path-action) {
  color: rgba(247, 244, 236, 0.74);
  font-size: 0.94rem;
}

.path-action {
  display: inline-flex;
  align-items: center;
  align-self: end;
  gap: 0.5rem;
  color: #fffaf0;
  font-family: var(--font-utility);
  font-size: 0.86rem;
  font-weight: 900;
}

.path-action svg {
  width: 1rem;
  height: 1rem;
  transition: transform 180ms ease;
}

.hero-path:hover .path-action svg,
.hero-path:focus-visible .path-action svg {
  transform: translateX(3px);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 44px;
  gap: 0.65rem;
  border-radius: 8px;
  padding: 0.82rem 1rem;
  overflow: hidden;
  font-family: var(--font-utility);
  font-weight: 850;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button svg {
  width: 1.1rem;
  height: 1.1rem;
}

.button-primary {
  border: 1px solid rgba(255, 250, 240, 0.2);
  background: var(--red);
  color: #fffaf0;
  box-shadow: 0 14px 34px rgba(126, 39, 40, 0.34);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px);
  background: #c33d35;
  box-shadow: 0 18px 42px rgba(126, 39, 40, 0.4);
}

.button-secondary {
  border: 1px solid rgba(247, 244, 236, 0.22);
  background: rgba(247, 244, 236, 0.08);
  color: var(--paper);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  transform: translateY(-2px);
  background: rgba(247, 244, 236, 0.14);
}

.section {
  padding: 6.5rem 4vw;
}

.section-intro {
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto 2.4rem;
}

.section-intro::after {
  content: "";
  display: block;
  width: 92px;
  height: 4px;
  margin-top: 1.35rem;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--red), var(--brass)),
    var(--brass);
}

.section-intro p:not(.eyebrow) {
  max-width: 680px;
  color: #4e5c65;
  font-size: 1.08rem;
}

.section-shops {
  position: relative;
  overflow: hidden;
  border-top: 5px solid var(--brass);
  border-image:
    linear-gradient(90deg, var(--red), var(--brass), rgba(247, 244, 236, 0.4))
    1;
  background:
    linear-gradient(180deg, #2a211d, #3a2c24 48%, #1d252b),
    #2a211d;
  color: var(--paper);
}

.section-shops::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 244, 236, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 236, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, rgba(185, 137, 66, 0.1), transparent 44%);
  background-size: 44px 44px, 44px 44px, auto;
  opacity: 0.86;
  pointer-events: none;
}

.section-shops::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background:
    linear-gradient(90deg, var(--red), var(--brass), rgba(247, 244, 236, 0.4)),
    var(--brass);
}

.shop-heading,
.section-shops .shop-grid {
  position: relative;
  z-index: 1;
}

.shop-heading {
  width: fit-content;
  margin: 0 auto 2.4rem;
  border: 1px solid rgba(255, 214, 90, 0.36);
  border-radius: 10px;
  padding: 0.62rem 1.7rem 0.72rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.035)),
    linear-gradient(115deg, rgba(255, 214, 90, 0.3), rgba(173, 53, 47, 0.22) 44%, rgba(108, 165, 255, 0.2)),
    #161d27;
  color: #fffaf0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.45),
    0 18px 46px rgba(0, 0, 0, 0.3);
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 1;
  text-align: center;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-items: center;
  gap: clamp(1.4rem, 4vw, 3rem);
  width: min(920px, 100%);
  margin: 0 auto;
}

.shop-card {
  --accent: var(--brass);
  --logo-bg: var(--ink);
  display: grid;
  justify-items: center;
  gap: 0.82rem;
  min-width: 0;
  color: var(--paper);
  text-align: center;
  transition:
    transform 180ms ease,
    filter 180ms ease;
}

.shop-card:hover,
.shop-card:focus-visible {
  transform: translateY(-5px);
  filter: brightness(1.08);
}

.shop-card-etsy {
  --accent: #f1641e;
  --logo-bg: #f1641e;
}

.shop-card-ebay {
  --accent: var(--brass);
  --logo-bg: #fffaf0;
}

.shop-card-whatnot {
  --accent: #ffde33;
  --logo-bg: #050505;
}

.shop-card-whatnot .shop-icon {
  border-color: rgba(255, 222, 51, 0.68);
  background:
    linear-gradient(120deg, rgba(255, 222, 51, 0.34), transparent 21%, rgba(255, 255, 255, 0.13) 42%, transparent 58%, rgba(255, 222, 51, 0.25) 78%, transparent),
    repeating-linear-gradient(135deg, rgba(255, 222, 51, 0.12) 0 2px, transparent 2px 10px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(0, 0, 0, 0.42)),
    #050505;
}

.shop-icon {
  position: relative;
  display: grid;
  width: clamp(122px, 15vw, 168px);
  aspect-ratio: 0.78;
  place-items: center;
  border: 2px solid rgba(255, 214, 90, 0.5);
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.34), transparent 22%, rgba(108, 165, 255, 0.22) 42%, transparent 58%, rgba(255, 214, 90, 0.26) 78%, transparent),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.11) 0 2px, transparent 2px 10px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(0, 0, 0, 0.22)),
    linear-gradient(135deg, color-mix(in srgb, var(--logo-bg) 82%, #ffffff), var(--logo-bg));
  box-shadow:
    inset 0 0 0 4px rgba(16, 23, 34, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -26px 38px rgba(0, 0, 0, 0.32),
    0 24px 58px rgba(0, 0, 0, 0.42);
}

.shop-icon::before {
  content: "";
  position: absolute;
  inset: 9px 10px auto;
  height: 34%;
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.shop-icon::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(255, 250, 240, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(35deg, transparent 20%, rgba(255, 255, 255, 0.18) 48%, transparent 62%);
  pointer-events: none;
}

.platform-logo {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.6vw, 2.05rem);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
}

.logo-etsy {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.logo-ebay {
  gap: 0;
  text-shadow: none;
}

.logo-ebay b {
  display: inline-block;
  font-weight: 900;
}

.logo-ebay b:nth-child(1) {
  color: #e53238;
}

.logo-ebay b:nth-child(2) {
  color: #0064d2;
}

.logo-ebay b:nth-child(3) {
  color: #f5af02;
}

.logo-ebay b:nth-child(4) {
  color: #86b817;
}

.logo-whatnot {
  color: #ffde33;
  font-size: clamp(1.28rem, 2.1vw, 1.68rem);
  text-transform: lowercase;
  text-shadow:
    0 0 14px rgba(255, 222, 51, 0.36),
    0 2px 0 rgba(0, 0, 0, 0.72);
}

.shop-content {
  display: grid;
  justify-items: center;
  gap: 0.66rem;
}

.shop-rating {
  display: inline-grid;
  justify-items: center;
  gap: 0.14rem;
  width: fit-content;
  border: 1px solid rgba(255, 214, 90, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 214, 90, 0.18), rgba(108, 165, 255, 0.08) 52%, rgba(255, 255, 255, 0.06)),
    rgba(16, 23, 34, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(0, 0, 0, 0.38),
    0 12px 26px rgba(0, 0, 0, 0.24);
  padding: 0.42rem 0.7rem;
  color: #fffaf0;
  font-family: var(--font-utility);
  font-size: 0.76rem;
  font-weight: 900;
}

.rating-stars {
  color: #ffd84d;
  font-size: 0.86rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 8px rgba(255, 216, 77, 0.42),
    0 1px 0 rgba(0, 0, 0, 0.45);
}

.rating-score {
  color: rgba(255, 250, 240, 0.9);
  line-height: 1.1;
  white-space: nowrap;
}

.shop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid color-mix(in srgb, var(--accent) 52%, rgba(255, 250, 240, 0.18));
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.035)),
    linear-gradient(115deg, rgba(255, 214, 90, 0.12), rgba(108, 165, 255, 0.08)),
    color-mix(in srgb, var(--accent) 20%, rgba(16, 23, 34, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -1px 0 rgba(0, 0, 0, 0.36),
    0 12px 26px rgba(0, 0, 0, 0.22);
  padding: 0.56rem 0.9rem;
  color: #fffaf0;
  font-family: var(--font-utility);
  font-size: 0.82rem;
  font-weight: 900;
}

.section-made {
  background:
    linear-gradient(135deg, rgba(16, 23, 34, 0.96), rgba(23, 34, 49, 0.98)),
    var(--ink);
  color: var(--paper);
}

.made-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: center;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.section-made .section-intro {
  margin: 0;
}

.section-made .section-intro::after {
  background:
    linear-gradient(90deg, var(--brass), rgba(247, 244, 236, 0.34)),
    var(--brass);
}

.section-made .section-intro p:not(.eyebrow) {
  color: rgba(247, 244, 236, 0.76);
}

.build-panel {
  position: relative;
  border: 1px solid var(--line-light);
  border-radius: 8px;
  padding: 1.25rem;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(247, 244, 236, 0.09), rgba(247, 244, 236, 0.025)),
    rgba(255, 250, 240, 0.04);
}

.build-track {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247, 244, 236, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 236, 0.055) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.75;
}

.build-track span {
  position: absolute;
  left: 12%;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--brass);
  box-shadow: 0 0 0 10px rgba(185, 137, 66, 0.13);
  animation: trackPulse 2.8s ease-in-out infinite;
}

.build-track span:nth-child(1) {
  top: 24%;
}

.build-track span:nth-child(2) {
  top: 50%;
  animation-delay: 0.35s;
}

.build-track span:nth-child(3) {
  top: 76%;
  animation-delay: 0.7s;
}

.build-panel ol {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.build-panel li {
  display: grid;
  gap: 0.25rem;
  border: 1px solid rgba(247, 244, 236, 0.14);
  border-radius: 8px;
  background: rgba(16, 23, 34, 0.68);
  padding: 1rem;
}

.build-panel strong {
  color: #fffaf0;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.build-panel span {
  color: rgba(247, 244, 236, 0.72);
}

.section-scales {
  background: var(--mist);
}

.scale-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.scale-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  padding: 1.25rem;
  min-height: 250px;
}

.scale-card span {
  display: inline-grid;
  width: 42px;
  height: 32px;
  place-items: center;
  margin-bottom: 2.4rem;
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
}

.scale-card p {
  color: #4c5964;
}

.scale-card h3 {
  color: var(--ink);
}

.precision-strip {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--red-deep);
  color: #fffaf0;
}

.strip-track {
  display: flex;
  width: max-content;
  gap: 0;
  animation: stripMove 26s linear infinite;
}

.strip-track span {
  display: inline-flex;
  align-items: center;
  min-height: 58px;
  padding: 0 2rem;
  border-right: 1px solid rgba(247, 244, 236, 0.18);
  font-family: var(--font-utility);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-contact {
  background:
    linear-gradient(180deg, #f1eee6, var(--paper));
}

.contact-panel {
  width: min(900px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  background:
    linear-gradient(135deg, rgba(185, 137, 66, 0.16), transparent 52%),
    var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow);
}

.contact-panel p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(247, 244, 236, 0.76);
  font-size: 1.08rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 4vw;
  border-top: 1px solid var(--line);
  background: #fffaf0;
}

.site-footer div:first-child {
  display: grid;
  gap: 0.12rem;
}

.site-footer strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.site-footer span,
.footer-links a {
  color: #596773;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--red);
}

.reveal {
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(20px);
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(185, 137, 66, 0.7);
  outline-offset: 3px;
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 54px 54px;
  }
}

@keyframes trackPulse {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.6;
  }
  50% {
    transform: translateX(28px);
    opacity: 1;
  }
}

@keyframes stripMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1120px) and (min-width: 981px) {
  .platform-logo {
    font-size: 1.32rem;
  }

  .logo-whatnot {
    font-size: 1.08rem;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 74px;
  }

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

  .site-nav {
    display: none;
  }

  .usa-banner-inner {
    grid-template-columns: auto 1fr;
    width: 100%;
    min-height: 0;
    gap: 0.75rem;
    padding: 0.8rem 0 0;
  }

  .usa-banner {
    background:
      linear-gradient(90deg, rgba(126, 39, 40, 0.96), rgba(16, 23, 34, 0.98)),
      var(--ink);
  }

  .usa-seal {
    margin-left: max(4vw, env(safe-area-inset-left));
  }

  .usa-banner-copy {
    padding-right: max(4vw, env(safe-area-inset-right));
  }

  .usa-banner-sustainability {
    grid-column: 1 / -1;
    justify-self: stretch;
    max-width: none;
    border-left: 0;
    border-top: 1px solid rgba(255, 250, 240, 0.18);
    border-radius: 0;
    margin-top: 0;
    background:
      linear-gradient(90deg, rgba(20, 70, 46, 0.98), rgba(30, 80, 55, 0.94)),
      #1e5037;
    padding: 0.72rem max(4vw, env(safe-area-inset-right));
    padding-left: max(4vw, env(safe-area-inset-left));
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero {
    background-position: 58% center;
  }

  .hero-content {
    padding: 4.25rem 0 4.75rem;
  }

  .hero-paths {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .shop-grid,
  .made-layout,
  .scale-grid {
    grid-template-columns: 1fr;
  }

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(660px, 100%);
  }

  .made-layout {
    gap: 3rem;
  }
}

@media (max-width: 680px) {
  html {
    scroll-padding-top: 68px;
  }

  .site-header {
    min-height: 68px;
    padding-inline: 1rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-domain,
  .header-cta {
    display: none;
  }

  .usa-banner-inner {
    width: 100%;
    gap: 0.65rem;
    min-height: 0;
    padding: 0.75rem 0 0;
  }

  .usa-seal {
    width: 50px;
    height: 50px;
    margin-left: max(1rem, env(safe-area-inset-left));
  }

  .usa-banner-copy {
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .usa-seal span {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }

  .usa-banner-copy strong {
    font-size: 1.08rem;
  }

  .usa-banner-copy span {
    font-size: 0.86rem;
  }

  .eco-copy strong {
    font-size: 0.96rem;
  }

  .eco-copy > span {
    font-size: 0.82rem;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(90deg, rgba(16, 23, 34, 0.98), rgba(16, 23, 34, 0.82) 48%, rgba(16, 23, 34, 0.38)),
      url("assets/hobbyplug-hero.png") 64% center / cover no-repeat;
  }

  .hero-content {
    width: calc(100% - 2rem);
    padding: 3.4rem 0 3.9rem;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  h3 {
    font-size: 1.22rem;
  }

  .brand-line {
    max-width: 100%;
    font-size: 1rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .hero-paths {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .hero-path {
    min-height: auto;
    padding: 0.9rem;
  }

  .hero-path strong {
    font-size: 1.18rem;
  }

  .hero-path > span:not(.path-label):not(.path-action) {
    font-size: 0.9rem;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 4rem 1rem;
  }

  .section-intro {
    margin-bottom: 1.8rem;
  }

  .section-intro::after {
    width: 72px;
    height: 3px;
    margin-top: 1rem;
  }

  .section-intro p:not(.eyebrow),
  .contact-panel p:not(.eyebrow) {
    font-size: 1rem;
  }

  .shop-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .platform-logo {
    font-size: 1.24rem;
  }

  .shop-icon {
    width: 118px;
    border-radius: 10px;
  }

  .shop-rating {
    font-size: 0.74rem;
  }

  .shop-button {
    min-height: 38px;
  }

  .scale-card {
    min-height: auto;
    padding: 1rem;
  }

  .scale-card span {
    margin-bottom: 1.35rem;
  }

  .strip-track span {
    min-height: 50px;
    padding: 0 1.25rem;
    font-size: 0.78rem;
  }

  .contact-panel {
    padding: 1.25rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-name {
    font-size: 0.98rem;
  }

  .usa-banner-inner {
    grid-template-columns: auto 1fr;
  }

  .usa-seal {
    width: 46px;
    height: 46px;
  }

  .usa-seal span {
    width: 32px;
    height: 32px;
    font-size: 0.74rem;
  }

  .usa-banner-copy strong {
    font-size: 1rem;
  }

  .usa-banner-copy span {
    font-size: 0.8rem;
  }

  .usa-banner-sustainability {
    padding-top: 0.62rem;
    padding-bottom: 0.62rem;
    padding-right: max(0.85rem, env(safe-area-inset-right));
    padding-left: max(0.85rem, env(safe-area-inset-left));
  }

  .eco-mark {
    width: 34px;
    height: 34px;
  }

  .eco-mark svg {
    width: 20px;
    height: 20px;
  }

  .eco-copy strong {
    font-size: 0.9rem;
  }

  .eco-copy > span {
    font-size: 0.76rem;
  }

  .eyebrow {
    font-size: 0.72rem;
  }

  .eyebrow::before {
    width: 24px;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.68rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .button {
    padding-inline: 0.85rem;
  }

  .hero-path {
    gap: 0.36rem;
  }

  .path-label {
    font-size: 0.68rem;
  }

  .section {
    padding: 3.4rem 0.85rem;
  }

  .build-panel,
  .contact-panel {
    padding: 1rem;
  }
}

@media (max-width: 360px) {
  .site-header {
    min-height: 62px;
    padding-inline: 0.75rem;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 0.86rem;
  }

  .brand-lockup {
    gap: 0.55rem;
  }

  .hero-content {
    width: calc(100% - 1.5rem);
  }

  .usa-banner-inner {
    width: 100%;
  }

  .usa-banner-copy span {
    display: none;
  }

  .eco-copy > span {
    display: none;
  }

  .hero-content {
    padding: 3rem 0 3.4rem;
  }

  h1 {
    font-size: 2.2rem;
  }

  .hero-path > span:not(.path-label):not(.path-action) {
    display: none;
  }

  .shop-heading {
    font-size: 2rem;
  }

  .shop-icon {
    width: 106px;
    border-radius: 9px;
  }
}

@media (max-height: 520px) and (max-width: 900px) and (orientation: landscape) {
  .usa-banner-inner {
    min-height: 0;
    padding: 0.55rem 0 0;
  }

  .usa-seal {
    width: 44px;
    height: 44px;
  }

  .usa-seal span {
    width: 32px;
    height: 32px;
    font-size: 0.74rem;
  }

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

  h1 {
    font-size: 2.4rem;
  }
}

@media (hover: none) {
  .button:hover,
  .button-primary:hover,
  .button-secondary:hover,
  .shop-card:hover,
  .header-cta:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
