@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-07.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-06.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color-scheme: light;
  --ink: #172033;
  --muted: #5d6878;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --line: #dbe2ec;
  --gold: #c8942f;
  --teal: #0c7a75;
  --coral: #c44d3d;
  --navy: #203656;
  --shadow: 0 20px 60px rgba(23, 32, 51, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #111215;
}

.brand,
.nav,
.hero-actions,
.hero-stats,
.check-row,
.utility-bar,
.main-nav,
.hero-benefits,
.review-pill,
.footer {
  display: flex;
  align-items: center;
}

.utility-bar {
  justify-content: center;
  gap: clamp(16px, 4vw, 86px);
  min-height: 24px;
  padding: 2px 18px;
  color: #101010;
  background: #f5f5f5;
  font-size: 12px;
}

.main-nav {
  position: relative;
  justify-content: center;
  gap: clamp(24px, 4vw, 62px);
  min-height: 102px;
  padding: 0 clamp(18px, 4vw, 56px);
}

.brand {
  gap: 0;
  font-weight: 800;
  color: #f1d35f;
  font-size: 22px;
  text-transform: uppercase;
}

.brand-lockup {
  display: grid;
  width: 390px;
  height: 102px;
  object-fit: contain;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 1px solid rgba(241, 211, 95, 0.42);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  background: #f1d35f;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.main-nav.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.main-nav.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.main-nav.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  gap: clamp(22px, 3vw, 42px);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a,
.nav-menu-trigger {
  color: white;
  padding: 20px 0;
  border-bottom: 3px solid transparent;
}

.nav a:hover,
.nav-menu-trigger:hover {
  color: #f1d35f;
}

.nav a.active {
  color: #f1d35f;
  border-color: #f1d35f;
}

.nav-menu-item {
  position: relative;
}

.nav-menu-trigger {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
}

.nav-menu-item:hover .nav-menu-trigger,
.nav-menu-item:focus-within .nav-menu-trigger {
  color: #f1d35f;
  border-color: #f1d35f;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  width: min(948px, calc(100vw - 48px));
  min-height: 480px;
  display: grid;
  grid-template-columns: 260px 1fr;
  color: #343943;
  background: #fff;
  box-shadow: 0 24px 70px rgba(5, 10, 18, 0.24);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-38%, 10px);
  transition: opacity 0.16s ease, transform 0.16s ease, visibility 0.16s ease;
  text-transform: none;
  z-index: 50;
}

.products-nav:hover .mega-menu,
.products-nav:focus-within .mega-menu,
.products-nav.menu-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-38%, 0);
}

.mega-categories {
  padding: 20px 0;
  border-right: 1px solid #e4e7ed;
  background: #fbfbfc;
}

.nav .mega-category {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 52px;
  padding: 0 42px 0 28px;
  color: #313640;
  border: 0;
  font-size: 16px;
  font-weight: 800;
}

.nav .mega-category::after {
  content: ">";
  position: absolute;
  right: 22px;
  color: #242832;
  font-weight: 500;
}

.nav .mega-category:hover,
.nav .mega-category.is-active {
  color: #d84500;
  background: #f1f2f4;
}

.mega-menu:has(.pin-category:hover) .coin-category,
.mega-menu:has(.pin-category:focus) .coin-category,
.mega-menu.show-pins .coin-category {
  color: #313640;
  background: transparent;
}

.mega-menu:has(.pin-category:hover) .pin-category,
.mega-menu:has(.pin-category:focus) .pin-category,
.mega-menu.show-pins .pin-category {
  color: #d84500;
  background: #f1f2f4;
}

.mega-keywords {
  padding: 28px 32px 30px;
}

.mega-heading h2 {
  position: relative;
  margin: 0 0 24px;
  color: #585858;
  font-size: 18px;
  line-height: 1.2;
}

.mega-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 32px;
  height: 2px;
  background: #e14a00;
}

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

.pins-panel {
  display: none;
}

.mega-menu:has(.pin-category:hover) .coins-panel,
.mega-menu:has(.pin-category:focus) .coins-panel,
.mega-menu.show-pins .coins-panel {
  display: none;
}

.mega-menu:has(.pin-category:hover) .pins-panel,
.mega-menu:has(.pin-category:focus) .pins-panel,
.mega-menu.show-pins .pins-panel {
  display: grid;
}

.keyword-columns div {
  display: grid;
  gap: 2px;
}

.keyword-columns a {
  display: block;
  padding: 9px 8px;
  color: #373d47;
  border: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25;
}

.keyword-columns a:hover,
.keyword-columns .keyword-featured {
  color: #d84500;
}

.hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #111215;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 0, 0, 0.32) 28%, rgba(0, 0, 0, 0.02) 58%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(430px, calc(100% - 36px));
  padding: 0 0 38px clamp(20px, 5vw, 84px);
  color: white;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 12px;
  color: #ffd96b;
  font-size: clamp(40px, 4.8vw, 76px);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 -1px 0 #fff4a3,
    0 2px 0 #b66d13,
    0 4px 0 #5b2c05,
    1px 1px 0 #7d3f07,
    -1px 1px 0 #7d3f07,
    0 10px 22px rgba(0, 0, 0, 0.58);
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.2;
}

.hero-text,
.quote-intro p,
.quote-cta p,
.section-heading {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero .hero-text {
  max-width: 360px;
  color: white;
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.38;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--teal);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: white;
}

.button.full {
  width: 100%;
}

.hero-stats {
  flex-wrap: wrap;
  gap: 12px;
}

.hero-stats div {
  min-width: 155px;
  padding: 14px 16px;
  border: 1px solid rgba(219, 226, 236, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.review-pill {
  width: max-content;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  padding: 9px 16px;
  border-radius: 7px;
  color: white;
  background: rgba(0, 0, 0, 0.72);
  font-weight: 700;
}

.review-pill img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.review-pill strong {
  color: #ff8d1a;
  letter-spacing: 0;
}

.hero-quote-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.hero-quote-mini a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 9px 14px;
  color: #111215;
  background: #f1d35f;
  font-weight: 900;
}

.hero-quote-mini a + a {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.hero-benefits {
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  justify-content: center;
  gap: clamp(34px, 9vw, 190px);
  min-height: 38px;
  padding: 6px 18px;
  color: white;
  background: #111215;
  font-weight: 800;
}

.hero-benefits div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.benefit-icon {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 24px;
  border: 2px solid white;
}

.benefit-icon.truck::after,
.benefit-icon.art::after,
.benefit-icon.factory::after {
  content: "";
  position: absolute;
}

.benefit-icon.truck {
  width: 32px;
  height: 18px;
  border-radius: 2px;
}

.benefit-icon.truck::after {
  right: -9px;
  bottom: -2px;
  width: 9px;
  height: 12px;
  border: 2px solid white;
}

.benefit-icon.art {
  border-radius: 2px;
}

.benefit-icon.art::after {
  top: 5px;
  left: 7px;
  width: 12px;
  height: 12px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
}

.benefit-icon.diamond {
  width: 28px;
  height: 28px;
  border-width: 2px;
  transform: rotate(45deg);
}

.benefit-icon.factory {
  width: 31px;
  height: 24px;
  border-top: 0;
}

.benefit-icon.factory::after {
  top: -9px;
  left: 0;
  width: 100%;
  height: 10px;
  background: linear-gradient(135deg, transparent 0 35%, white 36% 42%, transparent 43% 58%, white 59% 65%, transparent 66%);
}

.product-band,
.customize-section,
.compare-section,
.finish-section,
.production-section,
.usecase-section,
.quote-section,
.process,
.faq-section,
.quote-cta {
  padding: clamp(54px, 8vw, 94px) clamp(18px, 5vw, 72px);
}

.product-band {
  padding-top: 18px;
  background: #f1f3f6;
}

.process {
  background-color: white;
}

.customize-section {
  background: #101114;
  color: white;
}

.customize-section .section-heading,
.compare-section .section-heading,
.finish-section .section-heading,
.production-section .section-heading,
.usecase-section .section-heading,
.faq-section .section-heading {
  max-width: 900px;
}

.customize-section .section-heading,
.customize-section .section-heading p {
  color: rgba(255, 255, 255, 0.78);
}

.customize-section h2 {
  color: white;
}

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

.customize-panel {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(241, 211, 95, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at top right, rgba(241, 211, 95, 0.14), transparent 34%),
    #18191d;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.panel-kicker {
  margin-bottom: 12px;
  color: #f1d35f;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.customize-panel h3 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(24px, 3vw, 34px);
}

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

.option-groups div,
.compare-grid article,
.faq-grid details {
  border-radius: 8px;
}

.option-groups div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.option-groups h4 {
  margin: 0 0 8px;
  color: #f6d86f;
  font-size: 14px;
}

.option-groups p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.5;
}

.compare-section,
.finish-section,
.usecase-section,
.faq-section {
  background: white;
}

.landing-style-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

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

.compare-grid article {
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  display: flex;
  flex-direction: column;
}

.coin-guide-grid .compare-grid article {
  overflow: visible;
  padding: 24px;
}

.compare-image {
  display: block;
  width: 100%;
  height: clamp(190px, 18vw, 270px);
  object-fit: contain;
  padding: clamp(12px, 1.4vw, 20px);
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 214, 74, 0.16), transparent 42%),
    #f8fafc;
  border-bottom: 1px solid var(--line);
}

.compare-grid h3 {
  margin: 18px 22px 8px;
  color: var(--teal);
}

.coin-guide-grid .compare-grid h3 {
  margin: 0 0 9px;
}

.compare-grid p {
  margin: 0 22px 22px;
  color: var(--muted);
  line-height: 1.6;
}

.coin-guide-grid .compare-grid p {
  margin: 0;
}

.finish-section {
  padding-top: 0;
}

.finish-grid,
.production-grid,
.usecase-grid {
  display: grid;
  gap: 14px;
}

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

.finish-grid article,
.production-grid article,
.usecase-grid span {
  border-radius: 8px;
}

.finish-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  background: #fff;
}

.finish-swatch {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.12), 0 10px 18px rgba(23, 32, 51, 0.14);
}

.shiny-gold {
  background: radial-gradient(circle at 30% 25%, #fff7b9, #f4c84d 38%, #9b5d0d 100%);
}

.matte-gold {
  background: linear-gradient(135deg, #f0d987, #b78b35);
}

.shiny-silver {
  background: radial-gradient(circle at 30% 25%, #fff, #cfd8df 42%, #6f7d86 100%);
}

.polished-copper {
  background: radial-gradient(circle at 30% 25%, #ffe0bd, #c8753b 46%, #6b2c12 100%);
}

.antique-gold {
  background: radial-gradient(circle at 30% 25%, #e5c974, #a17627 55%, #49300d 100%);
}

.antique-silver {
  background: radial-gradient(circle at 30% 25%, #e2e5e8, #909aa1 55%, #3d454b 100%);
}

.antique-bronze {
  background: radial-gradient(circle at 30% 25%, #d4a65b, #7d5322 55%, #3c2410 100%);
}

.antique-copper {
  background: radial-gradient(circle at 30% 25%, #e29a62, #9c4e24 55%, #4c2110 100%);
}

.antique-brass {
  background: radial-gradient(circle at 30% 25%, #dfca82, #9a7431 55%, #403018 100%);
}

.black-nickel {
  background: radial-gradient(circle at 30% 25%, #7d8790, #23282e 55%, #050607 100%);
}

.dyed-black {
  background: linear-gradient(135deg, #373737, #050505);
}

.two-tone {
  background: conic-gradient(from 45deg, #f4cf5b 0 50%, #d7dee5 50% 100%);
}

.finish-grid h3,
.production-grid h3 {
  margin-bottom: 8px;
}

.finish-grid p,
.production-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.production-section {
  color: white;
  background:
    linear-gradient(135deg, rgba(16, 17, 20, 0.96), rgba(32, 54, 86, 0.94)),
    url("assets/optimized/goated-hero-desktop.webp") center / cover no-repeat;
}

.production-section .section-heading,
.production-section .section-heading p,
.production-section p {
  color: rgba(255, 255, 255, 0.78);
}

.production-section h2,
.production-section h3 {
  color: white;
}

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

.production-grid article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.trust-strip span,
.usecase-grid span {
  display: flex;
  align-items: center;
  min-height: 54px;
  font-weight: 900;
}

.trust-strip span {
  padding: 14px 16px;
  border: 1px solid rgba(241, 211, 95, 0.28);
  color: #f6d86f;
  background: rgba(0, 0, 0, 0.22);
}

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

.usecase-grid span {
  padding: 16px 18px;
  color: var(--ink);
  background: var(--soft);
  border-left: 4px solid var(--gold);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

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

.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.gallery-filter button {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: white;
  font-weight: 900;
  cursor: pointer;
}

.gallery-filter button.active,
.gallery-filter button:hover {
  border-color: #111215;
  color: #111215;
  background: #f1d35f;
}

.showcase-card.is-hidden {
  display: none;
}

.showcase-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 8px;
  color: white;
  background: #1f2022;
  box-shadow: 0 8px 18px rgba(14, 20, 30, 0.18);
  isolation: isolate;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 10, 0.02) 0%, rgba(8, 8, 10, 0.2) 45%, rgba(8, 8, 10, 0.9) 100%),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.12), transparent 36%);
  z-index: 1;
}

.showcase-card span {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: grid;
  gap: 8px;
  z-index: 2;
}

.showcase-card strong {
  font-size: 18px;
  line-height: 1.15;
}

.showcase-card small {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
}

.showcase-card:hover img {
  opacity: 0.9;
  transform: scale(1.04);
}

.showcase-card:hover strong {
  color: #f1d35f;
}

.steps p {
  color: var(--muted);
  line-height: 1.6;
}

.quote-section {
  background: var(--soft);
}

.quote-intro {
  position: relative;
  max-width: 720px;
  margin-bottom: 30px;
}

.section-mascot {
  position: absolute;
  top: -12px;
  right: -86px;
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(23, 32, 51, 0.18));
}

.quote-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 18px;
  align-items: start;
}

.quote-form,
.quote-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 36px rgba(23, 32, 51, 0.07);
}

.quote-form {
  display: block;
  padding: 24px;
}

.quote-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}

.quote-progress span {
  padding: 10px 8px;
  border-radius: 4px;
  color: var(--muted);
  background: var(--soft);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}

.quote-progress span.active {
  color: #111215;
  background: #f1d35f;
}

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

.quote-step.active {
  display: grid;
}

.quote-step h3,
.quote-step fieldset,
.quote-step .check-row {
  grid-column: 1 / -1;
}

.quote-step h3 {
  margin-bottom: 0;
  font-size: 22px;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 900;
}

.choice-grid {
  display: grid;
  gap: 12px;
}

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

.product-choice-grid {
  grid-column: 1 / -1;
  max-width: 540px;
}

.product-choice-grid .choice-card {
  min-height: 0;
  padding: 12px;
}

.product-choice-grid .choice-card img {
  height: 220px;
  aspect-ratio: auto;
  padding: 10px;
  object-fit: contain;
}

.quantity-control {
  grid-column: 1 / -1;
  max-width: 540px;
  margin-top: 2px;
}

.quantity-control input[type="range"] {
  margin-top: 4px;
}

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

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

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

.choice-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 120px;
  padding: 16px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.choice-card img {
  width: 100%;
  aspect-ratio: 1.8 / 1;
  object-fit: contain;
  border-radius: 6px;
  background: linear-gradient(180deg, #f8fafc 0%, #eef3f8 100%);
}

.choice-card.compact {
  min-height: 76px;
  padding: 13px;
}

.choice-card.visual-choice {
  min-height: 136px;
}

.choice-card.visual-choice img {
  aspect-ratio: 1.25 / 1;
  padding: 6px;
}

.choice-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.choice-card span {
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.2;
}

.choice-card small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.choice-card:has(input:checked) {
  border-color: #b9811a;
  background: #fff8dc;
  box-shadow: inset 0 0 0 1px rgba(184, 129, 26, 0.18);
}

.finish-choices .choice-card span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.finish-choices .finish-swatch {
  width: 28px;
  height: 28px;
  margin: 0;
  flex: 0 0 auto;
}

.visual-select {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

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

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

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

.visual-select button {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.visual-select button.is-active {
  border-color: #b9811a;
  background: #fff8dc;
  box-shadow: inset 0 0 0 1px rgba(184, 129, 26, 0.18);
}

.visual-select img {
  width: 100%;
  aspect-ratio: 1.55 / 1;
  object-fit: contain;
  border-radius: 6px;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
}

.visual-backed-select {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.quote-subhead {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.quote-explainer-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.quote-explainer-grid article {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.quote-explainer-grid h4 {
  margin: 0 0 8px;
  color: var(--teal);
  font-size: 15px;
}

.quote-explainer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.quote-subhead h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.quote-subhead p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.quote-nav {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.quote-nav .button {
  border: 0;
}

#quoteSubmit {
  display: none;
}

.quote-form.final-step #quoteNext {
  display: none;
}

.quote-form.final-step #quoteSubmit {
  display: inline-flex;
}

label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: white;
  font: inherit;
}

input[type="range"] {
  accent-color: var(--teal);
  padding: 0;
}

.range-value {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.check-row {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.wide-field {
  grid-column: 1 / -1;
}

.pin-field.is-hidden,
.coin-field.is-hidden {
  display: none;
}

.check-row label {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 132px;
  padding: 10px;
  border: 2px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-weight: 900;
  cursor: pointer;
}

.check-row input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  accent-color: var(--teal);
  cursor: pointer;
}

.check-row label:has(input:checked) {
  border-color: #b9811a;
  background: #fff8dc;
  box-shadow: inset 0 0 0 1px rgba(184, 129, 26, 0.18);
}

.check-row img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: contain;
  border-radius: 6px;
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
}

.quote-result {
  position: sticky;
  top: 92px;
  padding: 24px;
}

.result-label,
.quote-result span {
  color: var(--muted);
}

.quote-result strong {
  display: block;
  margin: 8px 0 4px;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1;
}

.quote-result dl {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.quote-result dl div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.quote-result dt {
  color: var(--muted);
}

.quote-result dd {
  margin: 0;
  text-align: right;
  font-weight: 800;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  padding: 24px;
  border-left: 4px solid var(--gold);
  background: var(--soft);
}

.steps span {
  display: block;
  margin-bottom: 22px;
  color: var(--teal);
  font-weight: 900;
}

.proof-section,
.seo-paths {
  padding: clamp(54px, 8vw, 94px) clamp(18px, 5vw, 72px);
  background: var(--soft);
}

.proof-flow,
.path-grid {
  display: grid;
  gap: 16px;
}

.proof-flow {
  grid-template-columns: 1.1fr 1.6fr 1.1fr;
}

.proof-flow article,
.path-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(23, 32, 51, 0.07);
}

.proof-flow article {
  padding: 18px;
}

.proof-art {
  display: grid;
  place-items: center;
  min-height: clamp(280px, 28vw, 420px);
  margin-bottom: 18px;
  overflow: hidden;
  border-radius: 8px;
  background: #111215;
}

.proof-art img {
  width: 96%;
  max-height: clamp(260px, 26vw, 390px);
  object-fit: contain;
}

.proof-wide img {
  width: 100%;
  max-height: clamp(290px, 29vw, 430px);
}

.proof-sketch-image {
  background: #f5efe6;
}

.proof-sketch-image img {
  width: 100%;
  max-height: clamp(280px, 28vw, 420px);
  object-fit: cover;
}

.proof-sketch {
  color: #111215;
  background:
    linear-gradient(#f8f1d6 0 0) padding-box,
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(32, 54, 86, 0.12) 28px 29px);
  font-size: 34px;
  font-weight: 900;
  line-height: 0.92;
  text-align: center;
}

.proof-sketch span {
  color: var(--coral);
  font-size: 13px;
}

.proof-finished {
  background: #f7f8fa;
}

.proof-finished img {
  max-height: clamp(300px, 30vw, 460px);
}

.proof-flow p,
.path-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

.path-grid a {
  display: grid;
  gap: 10px;
  padding: 26px;
}

.path-grid span {
  color: var(--ink);
  font-size: 24px;
  font-weight: 900;
}

.path-grid a:hover span {
  color: #b9811a;
}

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

.faq-grid details {
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: var(--soft);
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 900;
}

.faq-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.quote-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(22px, 5vw, 64px);
  align-items: center;
  color: white;
  background: var(--navy);
}

.quote-cta p,
.quote-cta .eyebrow {
  color: rgba(255, 255, 255, 0.76);
}

.quote-cta .button {
  justify-self: end;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 14% 0%, rgba(245, 215, 94, 0.14), transparent 32%),
    linear-gradient(135deg, #0d0f13 0%, #15171d 48%, #0d0f13 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-trust span {
  min-height: 48px;
  display: grid;
  place-items: center;
  padding: 10px 18px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-trust span:last-child {
  border-right: 0;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.1fr) repeat(4, minmax(150px, 1fr));
  gap: clamp(22px, 3vw, 42px);
  align-items: center;
  padding: clamp(30px, 4vw, 48px) clamp(18px, 5vw, 72px) clamp(28px, 3.5vw, 42px);
}

.footer-brand {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  text-align: center;
}

.footer-brand img {
  width: min(230px, 84vw);
}

.footer-brand p,
.footer-details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.footer-contact {
  display: grid;
  gap: 5px;
  justify-items: center;
}

.footer-contact a,
.footer-column a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.35;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-contact a {
  font-weight: 900;
}

.footer-contact a:hover,
.footer-contact a:focus,
.footer-column a:hover,
.footer-column a:focus {
  color: #f5d75e;
}

.footer-column {
  display: grid;
  align-content: center;
  gap: 8px;
}

.footer-column h2 {
  margin: 0 0 4px;
  color: #f5d75e;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-quote {
  justify-self: start;
  margin-top: 2px;
  padding: 11px 14px;
  color: #111215 !important;
  background: linear-gradient(180deg, #ffe27a, #d8a93c);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 20px;
  padding: 14px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom span:first-child {
  color: #ffffff;
  font-weight: 950;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.quote-response {
  display: grid;
  min-height: 100vh;
  align-content: center;
  justify-items: start;
  gap: 16px;
  padding: clamp(32px, 8vw, 90px);
  background: #f7f9fc;
}

.quote-response img {
  width: min(260px, 70vw);
}

.quote-response p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.quote-response-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.landing-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px clamp(18px, 5vw, 72px);
  background: #111215;
}

.landing-header img {
  width: 260px;
  max-height: 88px;
  object-fit: contain;
}

.landing-header nav {
  display: flex;
  gap: 26px;
  color: white;
  font-weight: 900;
  text-transform: uppercase;
}

.landing-header a:hover {
  color: #f1d35f;
}

.landing-hero {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: clamp(54px, 8vw, 94px) clamp(18px, 5vw, 72px);
  color: white;
}

.landing-hero div {
  max-width: 680px;
}

.landing-hero p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.64);
}

.coin-page {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.34)),
    url("assets/optimized/goated-hero-desktop.webp") center / cover no-repeat;
}

.pin-page {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.34)),
    url("assets/optimized/products/extra-pin-1.webp") center / cover no-repeat;
}

.landing-content,
.landing-gallery {
  padding: clamp(54px, 8vw, 94px) clamp(18px, 5vw, 72px);
}

.landing-detail {
  padding: clamp(50px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 214, 74, 0.11), transparent 36%),
    #fff;
}

.landing-copy-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 76px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.landing-copy-grid h2 {
  margin: 8px 0 0;
  max-width: 520px;
  color: var(--ink);
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 0.98;
  text-transform: uppercase;
}

.landing-copy-grid p {
  margin: 0 0 16px;
  color: #384050;
  font-size: 18px;
  line-height: 1.7;
}

.landing-keyword-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 1180px;
  margin: 28px auto 0;
}

.landing-keyword-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(23, 32, 51, 0.11);
  border-radius: 999px;
  background: #fff;
  color: #283040;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 9px 22px rgba(23, 32, 51, 0.06);
}

.landing-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: var(--soft);
}

.landing-gallery.rich-gallery {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.landing-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  background: white;
  box-shadow: 0 12px 30px rgba(23, 32, 51, 0.11);
}

.landing-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(44px, 7vw, 76px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(135deg, rgba(255, 214, 74, 0.16), rgba(255, 214, 74, 0)),
    #111215;
  color: white;
}

.landing-cta div {
  max-width: 760px;
}

.landing-cta h2 {
  margin: 6px 0 12px;
  color: #f1d35f;
  font-size: clamp(30px, 4.5vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

.landing-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.6;
}

.coin-proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  background: #111215;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.coin-proof-strip div {
  padding: 22px clamp(16px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.coin-proof-strip strong {
  display: block;
  color: #f1d35f;
  font-size: 20px;
  text-transform: uppercase;
}

.coin-proof-strip span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.coin-social-proof {
  padding: clamp(52px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 214, 74, 0.16), transparent 32%),
    #f6f7fb;
}

.coin-social-grid {
  display: grid;
  grid-template-columns: 0.8fr repeat(3, 1fr);
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
}

.coin-rating-card,
.coin-review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(23, 32, 51, 0.08);
}

.coin-rating-card {
  padding: 24px;
  color: var(--ink);
}

.coin-rating-card strong {
  display: block;
  color: #b9811a;
  font-size: 44px;
  line-height: 1;
}

.coin-rating-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 800;
}

.coin-review-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
  padding: 22px;
}

.coin-review-card img {
  width: 100%;
  height: 132px;
  object-fit: contain;
  border: 1px solid rgba(209, 219, 232, 0.9);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 214, 74, 0.16), transparent 42%),
    #f8fafc;
  margin-bottom: 16px;
  padding: 12px;
}

.coin-review-card blockquote {
  margin: 0;
  color: #283040;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.45;
}

.coin-review-card cite {
  margin-top: 18px;
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

.coin-type-section,
.coin-purpose-section {
  padding: clamp(54px, 8vw, 94px) clamp(18px, 5vw, 72px);
}

.coin-type-section {
  background: #fff;
}

.coin-purpose-section {
  background: #111215;
  color: white;
}

.coin-purpose-section .section-heading h2 {
  color: #f1d35f;
}

.coin-purpose-section .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

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

.coin-type-card,
.coin-purpose-card {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 16px 38px rgba(23, 32, 51, 0.08);
}

.coin-type-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.coin-type-card div,
.coin-purpose-card {
  padding: 22px;
}

.coin-type-card h3,
.coin-purpose-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 22px;
}

.coin-type-card p,
.coin-purpose-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.coin-purpose-card {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    #171a21;
}

.coin-purpose-card h3 {
  color: #f1d35f;
}

.coin-purpose-card p {
  color: rgba(255, 255, 255, 0.76);
}

.coin-rush-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.7fr);
  gap: 20px;
  align-items: center;
  padding: clamp(52px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 214, 74, 0.18), transparent 38%),
    #fff;
}

.coin-rush-panel h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(34px, 4.8vw, 64px);
  line-height: 0.98;
  text-transform: uppercase;
}

.coin-rush-panel p {
  margin: 0;
  max-width: 760px;
  color: #384050;
  font-size: 18px;
  line-height: 1.65;
}

.coin-rush-list {
  display: grid;
  gap: 10px;
}

.coin-rush-list span {
  display: block;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(23, 32, 51, 0.06);
}

.coin-guide-section,
.coin-process-section,
.coin-faq-section {
  padding: clamp(54px, 8vw, 94px) clamp(18px, 5vw, 72px);
}

.coin-guide-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.coin-guide-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: start;
}

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

.coin-guide-card,
.coin-checklist,
.coin-process-step,
.coin-faq-section details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.07);
}

.coin-guide-card {
  padding: 24px;
}

.coin-guide-card h3,
.coin-process-step h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 22px;
}

.coin-guide-card p,
.coin-process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.coin-checklist {
  padding: 24px;
}

.coin-checklist h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 26px;
}

.coin-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coin-checklist li {
  position: relative;
  padding-left: 25px;
  color: #384050;
  font-weight: 800;
  line-height: 1.45;
}

.coin-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #f1d35f;
  box-shadow: 0 0 0 3px rgba(241, 211, 95, 0.25);
}

.coin-process-section {
  background: var(--soft);
}

.coin-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.coin-process-step {
  padding: 20px;
}

.coin-process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #111215;
  color: #f1d35f;
  font-weight: 900;
}

.coin-faq-section {
  background: #fff;
}

.coin-faq-section .faq-grid {
  max-width: 1180px;
  margin: 0 auto;
}

.coin-faq-section details {
  padding: 18px 20px;
}

.coin-faq-section summary {
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.coin-faq-section p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 980px) {
  .utility-bar {
    display: none;
  }

  .main-nav,
  .nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .nav-menu-trigger {
    min-height: auto;
  }

  .mega-menu {
    left: 0;
    width: min(720px, calc(100vw - 32px));
    grid-template-columns: 210px 1fr;
    min-height: 0;
    transform: translate(0, 10px);
  }

  .products-nav:hover .mega-menu,
  .products-nav:focus-within .mega-menu,
  .products-nav.menu-open .mega-menu {
    transform: translate(0, 0);
  }

  .mega-keywords {
    padding: 24px;
  }

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

  .quote-shell,
  .quote-cta {
    grid-template-columns: 1fr;
  }

  .customize-panels,
  .compare-grid,
  .finish-grid,
  .production-grid,
  .trust-strip,
  .usecase-grid,
  .proof-flow,
  .landing-gallery,
  .coin-social-grid,
  .coin-type-grid,
  .coin-purpose-grid,
  .coin-guide-grid,
  .steps,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .coin-guide-grid {
    grid-template-columns: 1fr;
  }

  .coin-rush-panel {
    grid-template-columns: 1fr;
  }

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

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

  .visual-select,
  .visual-select-three,
  .budget-select,
  .check-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: 620px;
    background-position: 62% 42%;
  }

  .hero-copy {
    padding-left: 32px;
    padding-top: 0;
  }

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

  .quote-result {
    position: static;
  }

  .section-mascot {
    position: static;
    width: 68px;
    height: 68px;
    margin-bottom: 12px;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 600px;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.52) 48%, rgba(0, 0, 0, 0.22) 100%);
  }

  .hero-media img {
    object-position: 72% center;
  }

  .main-nav {
    justify-content: space-between;
    align-items: center;
    min-height: 86px;
    padding: 4px 16px;
  }

  .brand {
    font-size: 22px;
  }

  .brand-lockup {
    width: 230px;
    height: 78px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px 16px 16px;
    background: #111215;
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.34);
    max-height: calc(100vh - 86px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.nav-open .nav {
    display: flex;
  }

  .nav a {
    padding: 13px 0;
  }

  .nav-menu-trigger {
    width: 100%;
    min-height: auto;
    padding: 13px 0;
  }

  .mega-menu {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    max-height: min(62vh, 520px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    margin: 0 0 10px;
    box-shadow: 0 16px 34px rgba(5, 10, 18, 0.18);
    transform: none;
  }

  .products-nav:hover .mega-menu,
  .products-nav:focus-within .mega-menu,
  .products-nav.menu-open .mega-menu {
    display: grid;
    transform: none;
  }

  .mega-categories {
    border-right: 0;
    border-bottom: 1px solid #e4e7ed;
  }

  .nav .mega-category {
    min-height: 44px;
    padding-left: 18px;
  }

  .keyword-columns {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
  }

  h1 {
    max-width: 320px;
    font-size: 34px;
    line-height: 0.98;
  }

  .product-showcase-grid,
  .customize-panels,
  .option-groups,
  .compare-grid,
  .finish-grid,
  .production-grid,
  .trust-strip,
  .usecase-grid,
  .proof-flow,
  .path-grid,
  .landing-gallery,
  .landing-gallery.rich-gallery,
  .coin-social-grid,
  .coin-type-grid,
  .coin-purpose-grid,
  .coin-guide-grid,
  .coin-checklist ul,
  .coin-process-grid,
  .coin-proof-strip,
  .choice-grid.two,
  .choice-grid.four,
  .choice-grid.five,
  .finish-choices,
  .check-row,
  .quote-explainer-grid,
  .visual-select,
  .quote-form,
  .quote-step,
  .steps,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .landing-copy-grid {
    grid-template-columns: 1fr;
  }

  .coin-proof-strip div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .coin-guide-grid .compare-grid {
    grid-template-columns: 1fr;
  }

  .quote-progress {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .quote-progress span {
    padding: 8px 4px;
    font-size: 10px;
  }

  .product-choice-grid {
    max-width: none;
  }

  .product-choice-grid .choice-card img {
    height: 190px;
  }

  .quote-nav {
    position: sticky;
    bottom: 0;
    z-index: 3;
    padding-top: 12px;
    background: white;
  }

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

  .landing-header img {
    width: 220px;
  }

  .landing-header nav {
    flex-wrap: wrap;
    gap: 12px 18px;
  }

  .showcase-card,
  .showcase-card img {
    min-height: 220px;
  }

  .hero-copy {
    width: calc(100% - 32px);
    padding: 0 16px 40px;
  }

  .hero .hero-text {
    max-width: 330px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.88);
  }

  .review-pill {
    max-width: 330px;
    background: rgba(0, 0, 0, 0.68);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.28);
  }

  .hero-benefits {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
    justify-items: start;
    padding: 12px 16px;
  }

  .hero-stats div {
    width: 100%;
  }

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

  .footer-trust span {
    min-height: 50px;
    padding: 10px 12px;
    font-size: 12px;
  }

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

  .footer-brand img {
    width: min(230px, 72vw);
  }

  .footer-bottom {
    flex-direction: column;
  }
}
