:root {
  --bg: #000000;
  --bg-soft: #111111;
  --surface: #ffffff;
  --surface-soft: #f4f4f4;
  --text: #ffffff;
  --ink: #000000;
  --muted: #a7a7a7;
  --muted-dark: #5e5e5e;
  --accent: #76b900;
  --accent-light: #bff230;
  --border: #5e5e5e;
  --blue: #3860be;
  --shadow: rgba(0, 0, 0, 0.3) 0 0 5px 0;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif; background: var(--bg); color: var(--text); line-height: 1.5; }
a { color: inherit; }
.skip-link { position: absolute; left: 8px; top: -48px; background: var(--accent); color: #000; padding: 10px 14px; z-index: 20; font-weight: 800; }
.skip-link:focus { top: 8px; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(0,0,0,.94); border-bottom: 1px solid #1f1f1f; }
.nav { max-width: var(--max); margin: 0 auto; padding: 15px 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 900; }
.brand-mark { display: inline-grid; place-items: center; width: 42px; height: 32px; border: 2px solid var(--accent); color: var(--accent); font-size: 13px; letter-spacing: .08em; }
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a { text-decoration: none; text-transform: uppercase; font-size: 14px; font-weight: 800; color: #fff; }
.nav-links a:hover { color: var(--accent); }
.menu-toggle { display: none; background: transparent; color: white; border: 2px solid var(--accent); border-radius: 2px; padding: 8px 12px; font-weight: 800; }
.hero { max-width: var(--max); margin: 0 auto; padding: 82px 22px 70px; display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr); gap: 38px; align-items: center; }
.eyebrow { color: var(--accent); text-transform: uppercase; font-size: 13px; font-weight: 900; letter-spacing: .12em; margin: 0 0 12px; }
.eyebrow.dark { color: #3f8500; }
h1, h2, h3 { margin: 0; line-height: 1.12; }
h1 { font-size: clamp(36px, 6.2vw, 70px); letter-spacing: -.055em; max-width: 900px; }
h2 { font-size: clamp(28px, 4vw, 46px); letter-spacing: -.035em; }
h3 { font-size: 22px; }
.lead { color: var(--muted); font-size: clamp(17px, 2vw, 21px); max-width: 760px; line-height: 1.65; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin: 28px 0; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 46px; padding: 11px 16px; border-radius: 2px; border: 2px solid var(--accent); text-decoration: none; font-weight: 900; cursor: pointer; transition: .18s ease; }
.btn.primary { background: transparent; color: #fff; }
.btn.secondary { border-color: #fff; color: #fff; }
.btn:hover { background: #1eaedb; border-color: #1eaedb; color: white; transform: translateY(-1px); }
.btn.dark-text { color: #000; background: transparent; }
.trust-strip { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-strip span { border-left: 2px solid var(--accent); background: #111; padding: 9px 12px; color: var(--muted); font-weight: 700; }
.hero-panel { display: grid; gap: 14px; }
.spec-card { min-height: 150px; border: 1px solid var(--border); background: linear-gradient(135deg, #171717, #050505); box-shadow: var(--shadow); padding: 24px; display: grid; align-content: end; position: relative; overflow: hidden; }
.spec-card::before { content: ''; position: absolute; inset: auto -30px -44px auto; width: 190px; height: 190px; border: 2px solid var(--accent); transform: rotate(18deg); opacity: .45; }
.spec-card span { color: var(--accent); font-size: 13px; text-transform: uppercase; font-weight: 900; }
.spec-card strong { font-size: 26px; line-height: 1.18; max-width: 360px; }
.section { padding: 72px 22px; }
.section > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section.light { background: white; color: black; }
.section.dark { background: black; color: white; }
.section-heading { display: grid; gap: 12px; margin-bottom: 30px; }
.shop-heading { grid-template-columns: minmax(0, 1fr) minmax(260px, 380px); align-items: end; }
.section-heading p:not(.eyebrow) { max-width: 780px; color: #555; font-size: 17px; }
.section.dark .section-heading p:not(.eyebrow) { color: var(--muted); }
.search-box { display: grid; gap: 8px; color: #111; font-weight: 900; text-transform: uppercase; font-size: 12px; }
.search-box input { border: 2px solid #111; padding: 14px 13px; font: inherit; }
.filters { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 22px; }
.filter { border: 1px solid #111; background: white; color: #000; border-radius: 2px; padding: 10px 13px; font-weight: 900; cursor: pointer; }
.filter.active, .filter:hover { border-color: var(--accent); box-shadow: inset 0 -3px 0 var(--accent); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.store-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.product-card, .store-product { display: grid; align-content: start; gap: 14px; min-height: 300px; background: var(--surface); border: 1px solid #dedede; border-radius: 2px; box-shadow: var(--shadow); padding: 22px; }
.product-card[hidden], .store-product[hidden] { display: none; }
.product-kicker { color: #3f8500; text-transform: uppercase; font-size: 12px; font-weight: 900; letter-spacing: .1em; }
.product-card h3, .store-product h3 { border-bottom: 2px solid var(--accent); padding-bottom: 11px; }
.product-card p, .store-product p { color: #555; line-height: 1.65; margin: 0; }
.store-product dl { display: grid; gap: 7px; margin: 0; }
.store-product dl div { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid #eee; padding-bottom: 6px; }
.store-product dt { color: #555; font-weight: 800; }
.store-product dd { margin: 0; font-weight: 900; }
.store-product label, .checkout-form label { display: grid; gap: 7px; font-weight: 900; font-size: 12px; text-transform: uppercase; }
.store-product input, .checkout-form input, .checkout-form textarea { width: 100%; border: 1px solid #4b4b4b; background: #fff; color: #000; border-radius: 2px; padding: 11px 12px; font: inherit; text-transform: none; }
.product-card a { font-weight: 900; text-decoration-thickness: 2px; text-decoration-color: var(--accent); text-underline-offset: 4px; }
.product-card a:hover { color: var(--blue); }
.feature-band { display: grid; grid-template-columns: .9fr 1.1fr; gap: 30px; align-items: center; border-top: 1px solid #1f1f1f; border-bottom: 1px solid #1f1f1f; }
.ops-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.ops-grid div { border: 1px solid var(--border); padding: 20px; min-height: 140px; display: grid; align-content: space-between; background: #111; }
.ops-grid strong { color: var(--accent); font-size: 40px; }
.ops-grid span { font-weight: 800; }
.split { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 20px; align-items: start; }
.vendor-panel, .credential-card, .contact-card { border: 1px solid #d8d8d8; background: #fff; box-shadow: var(--shadow); padding: 28px; border-radius: 2px; }
.vendor-panel p { color: #4d4d4d; }
.check-list { padding-left: 0; list-style: none; display: grid; gap: 10px; }
.check-list li { padding-left: 28px; position: relative; }
.check-list li::before { content: '■'; color: var(--accent); position: absolute; left: 0; }
.credential-card { background: #111; color: #fff; border-color: #333; }
.credential-card p { color: #d8d8d8; }
.checkout-card { position: sticky; top: 84px; }
.checkout-form { display: grid; gap: 12px; }
.checkout-form input, .checkout-form textarea { background: #101010; color: #fff; }
.checkout-form .wide { grid-column: auto; }
.cart-items { display: grid; gap: 10px; margin-top: 20px; }
.cart-line { display: grid; grid-template-columns: 1fr auto auto; gap: 12px; align-items: center; border: 1px solid #ddd; padding: 12px; }
.cart-line strong, .cart-line span { color: #000; }
.cart-line button { border: 1px solid #111; background: #fff; cursor: pointer; font-weight: 900; padding: 6px 9px; }
.cart-total { display: flex; justify-content: space-between; border-top: 3px solid var(--accent); margin-top: 18px; padding-top: 12px; font-size: 20px; }
.form-status { color: var(--accent-light); font-weight: 800; margin: 0; align-self: center; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 430px); gap: 18px; align-items: center; }
.contact-grid p { color: #4c4c4c; font-size: 17px; }
.contact-card p { margin: 10px 0; color: #111; }
.footer { max-width: var(--max); margin: 0 auto; padding: 34px 22px 44px; color: var(--muted); display: flex; gap: 20px; justify-content: space-between; align-items: start; border-top: 1px solid #202020; }
.footer strong { color: #fff; display: block; }
.footer span { display: block; }
.footer p { margin: 0; max-width: 650px; }
.footer p span { display: inline; }
@media (max-width: 1080px) { .product-grid, .store-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 980px) { .hero, .feature-band, .split, .contact-grid, .shop-heading { grid-template-columns: 1fr; } .hero { padding-top: 56px; } .checkout-card { position: static; } }
@media (max-width: 760px) { .nav { align-items: flex-start; } .menu-toggle { display: inline-flex; } .nav-links { display: none; position: absolute; left: 0; right: 0; top: 64px; background: #000; border-top: 1px solid #222; padding: 18px 22px; flex-direction: column; align-items: flex-start; } .nav-links.open { display: flex; } .hero { grid-template-columns: 1fr; padding: 42px 18px 48px; } .section { padding: 48px 18px; } .product-grid, .store-grid, .ops-grid { grid-template-columns: 1fr; } .footer { flex-direction: column; } h1 { font-size: 42px; } .cart-line { grid-template-columns: 1fr; } }


/* Dedicated Stripe-backed card shop */
.shop-page { background: radial-gradient(circle at top left, rgba(118,185,0,.18), transparent 32%), #000; color: #fff; }
.shop-shell { max-width: var(--max); margin: 0 auto; padding: 54px 22px 80px; }
.shop-hero { border: 1px solid #222; background: linear-gradient(135deg, #111, #030303); box-shadow: var(--shadow); padding: clamp(28px, 6vw, 58px); margin-bottom: 22px; }
.shop-status { min-height: 24px; color: var(--muted); margin: 16px 0; }
.shop-status:not(:empty) { border-left: 3px solid var(--accent); background: #111; padding: 12px 14px; }
.shop-status[data-type="error"] { border-color: #ff5c5c; color: #ffc4c4; }
.shop-status[data-type="success"] { border-color: var(--accent); color: var(--accent-light); }
.shop-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.shop-card, .shop-empty { background: #fff; color: #000; border: 1px solid #dedede; box-shadow: var(--shadow); }
.shop-empty { padding: 26px; }
.shop-card__image { min-height: 320px; display: grid; place-items: center; background: linear-gradient(135deg, #f7f7f7, #eaeaea); padding: 18px; }
.shop-card__image img { max-width: 100%; max-height: 340px; object-fit: contain; filter: drop-shadow(0 18px 20px rgba(0,0,0,.28)); }
.shop-card__pending { color: #777; font-weight: 900; }
.shop-card__body { display: grid; gap: 12px; padding: 20px; }
.shop-card__body p { color: #555; margin: 0; }
.shop-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 14px; margin-top: 8px; }
.shop-card__footer strong { font-size: 28px; }
.shop-card__footer button { background: transparent; }
@media (max-width: 960px) { .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .shop-grid { grid-template-columns: 1fr; } .shop-card__footer { align-items: stretch; flex-direction: column; } .shop-card__footer button { width: 100%; } }
