/* B6asted Solutions LLC stylesheet
   Self-contained: no external fonts, CDNs, or trackers. */

:root {
  --bg: #0c0c10;
  --bg-2: #121218;
  --card: #16161d;
  --card-hi: #1c1c25;
  --line: #26262f;
  --line-soft: #1e1e26;
  --ink: #f4f4f7;
  --body: #b0b0be;
  --muted: #7a7a8a;
  --accent: #ff5c9d;
  --accent-soft: #ffa6cb;
  --accent-wash: rgba(255, 92, 157, .12);
  --violet: #8b6cf6;
  --maxw: 1120px;
  --radius: 10px;
}

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -.02em;
  margin: 0 0 .6em;
  font-weight: 650;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.1rem); }
h3 { font-size: 1.1rem; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent-soft); text-underline-offset: 3px; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.skip { position: absolute; left: -9999px; top: 0; z-index: 100;
        background: var(--accent); color: #14000a; padding: 12px 18px; }
.skip:focus { left: 0; }

/* ---------- Header ---------- */

.site-header {
  background: rgba(12, 12, 16, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line-soft);
  position: sticky; top: 0; z-index: 50;
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 70px; gap: 24px;
}

.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.02rem; letter-spacing: -.02em;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.brand:hover { color: var(--ink); }
.brand .mark {
  width: 30px; height: 30px; border-radius: 7px;
  background: linear-gradient(135deg, var(--accent), var(--violet));
  color: #fff; display: grid; place-items: center;
  font-size: .88rem; font-weight: 700; letter-spacing: 0;
}
.brand .suffix { color: var(--muted); font-weight: 500; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: 8px; padding: 8px 12px; cursor: pointer;
  color: var(--ink); font-size: .9rem; font-family: inherit;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  color: var(--body); text-decoration: none;
  font-size: .94rem; font-weight: 500; white-space: nowrap;
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block; padding: 13px 24px;
  border-radius: 8px; border: 1px solid transparent;
  font-size: .95rem; font-weight: 600; text-decoration: none;
  cursor: pointer; font-family: inherit;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}
.btn-primary { background: var(--accent); color: #170009; }
.btn-primary:hover { background: var(--accent-soft); color: #170009; }
.btn-ghost { border-color: var(--line); color: var(--ink); }
.btn-ghost:hover { border-color: var(--muted); color: var(--ink); }
.btn-sm { padding: 9px 16px; font-size: .87rem; }

/* ---------- Sections ---------- */

.section { padding: 78px 0; }
.section-alt { background: var(--bg-2); border-block: 1px solid var(--line-soft); }
.section-head { max-width: 640px; margin-bottom: 44px; }
.section-head p { color: var(--muted); margin-bottom: 0; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .13em;
  font-size: .72rem; font-weight: 700; color: var(--accent);
  margin: 0 0 14px;
}

/* ---------- Hero ---------- */

.hero {
  padding: 96px 0 84px;
  border-bottom: 1px solid var(--line-soft);
  background:
    radial-gradient(900px 400px at 12% -10%, rgba(255, 92, 157, .16), transparent 60%),
    radial-gradient(700px 380px at 88% 0%, rgba(139, 108, 246, .14), transparent 62%),
    var(--bg);
}
.hero-inner { max-width: 720px; }
.hero .lede { font-size: 1.14rem; max-width: 600px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { margin-top: 20px; font-size: .88rem; color: var(--muted); }

/* ---------- Grid ---------- */

.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px;
}
.card h3 { margin-bottom: .45em; }
.card p { font-size: .95rem; }
.card p:last-child { margin-bottom: 0; }

.card-num {
  display: grid; place-items: center;
  width: 32px; height: 32px; margin-bottom: 18px;
  border-radius: 8px;
  background: var(--accent-wash); color: var(--accent-soft);
  font-size: .84rem; font-weight: 700;
}

/* ---------- Product cards ---------- */

.product {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color .15s ease, background-color .15s ease;
}
.product:hover { border-color: #3a3a48; background: var(--card-hi); }

.product-swatch {
  height: 128px; border-bottom: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.82);
}
.sw-1 { background: linear-gradient(135deg, #ff5c9d, #8b6cf6); }
.sw-2 { background: linear-gradient(135deg, #7c5cff, #35a0ff); }
.sw-3 { background: linear-gradient(135deg, #ff7a5c, #ff5c9d); }
.sw-4 { background: linear-gradient(135deg, #ffb15c, #ff5c8a); }
.sw-5 { background: linear-gradient(135deg, #5cd0ff, #8b6cf6); }
.sw-6 { background: linear-gradient(135deg, #ff5cc4, #ff9a5c); }

.product-shot {
  display: block; width: 100%; aspect-ratio: 3 / 2;
  object-fit: cover; border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}

.product-body { padding: 20px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.product-body h3 { font-size: 1.02rem; margin-bottom: .35em; }
.product-body p { font-size: .9rem; color: var(--muted); margin-bottom: 12px; }
.product-body .req {
  font-size: .8rem; font-weight: 600; color: var(--accent-soft);
  background: var(--accent-wash); border-radius: 5px;
  padding: 5px 9px; align-self: flex-start; margin-bottom: 18px;
}

.notice {
  margin-top: 28px; max-width: 640px;
  background: var(--accent-wash); border: 1px solid rgba(255,92,157,.3);
  border-radius: 8px; padding: 16px 18px;
  font-size: .93rem; color: var(--body);
}
.notice strong { color: var(--ink); }
.product-foot {
  margin-top: auto; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
}
.price { font-size: 1.05rem; font-weight: 700; color: var(--ink); }

/* ---------- Compact tiles (single presets) ---------- */

.tiles {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}
.tile {
  display: flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: 8px; padding: 10px 14px 10px 10px;
  text-decoration: none; color: var(--ink);
  transition: border-color .15s ease, background-color .15s ease;
}
.tile:hover { border-color: var(--accent); background: var(--card-hi); color: var(--ink); }
.tile img {
  width: 56px; height: 42px; flex: none;
  object-fit: cover; border-radius: 5px; background: var(--bg-2);
}
.tile-text { display: flex; flex-direction: column; flex: 1; min-width: 0; }
.tile-name { font-size: .92rem; font-weight: 600; }
.tile-note { font-size: .76rem; color: var(--muted); }
.tile-price { font-size: .9rem; font-weight: 700; color: var(--accent-soft); white-space: nowrap; }

.subhead {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin: 0 0 20px;
}
.subhead h2 { margin: 0; font-size: 1.35rem; }
.subhead span { color: var(--muted); font-size: .89rem; }

/* ---------- Lists ---------- */

.list-check { list-style: none; padding: 0; margin: 0; }
.list-check li {
  position: relative; padding-left: 24px; margin-bottom: 11px; font-size: .96rem;
}
.list-check li::before {
  content: ""; position: absolute; left: 0; top: .58em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}
.list-check li:last-child { margin-bottom: 0; }

/* ---------- Split ---------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: start; }

/* ---------- Detail rows ---------- */

.detail-rows { border-top: 1px solid var(--line); margin: 0; }
.detail-row {
  display: grid; grid-template-columns: 200px 1fr; gap: 20px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.detail-row dt { color: var(--muted); font-size: .89rem; font-weight: 600; }
.detail-row dd { margin: 0; color: var(--ink); }

/* ---------- CTA band ---------- */

.cta-band {
  padding: 70px 0;
  border-block: 1px solid var(--line-soft);
  background:
    radial-gradient(700px 300px at 50% 0%, rgba(255, 92, 157, .15), transparent 65%),
    var(--bg-2);
}
.cta-band h2 { color: var(--ink); }
.cta-band p { max-width: 560px; margin-bottom: 28px; }

/* ---------- Prose ---------- */

.prose { max-width: 760px; }
.prose h2 { margin-top: 2em; font-size: 1.3rem; }
.prose h2:first-of-type { margin-top: 1.2em; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: .5em; }
.updated { color: var(--muted); font-size: .9rem; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--bg-2); border-top: 1px solid var(--line-soft);
  padding: 56px 0 30px; font-size: .92rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 32px; }
.footer-grid h4 {
  font-size: .76rem; text-transform: uppercase; letter-spacing: .11em;
  color: var(--muted); margin-bottom: 14px; font-weight: 700;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; }
.footer-grid a { color: var(--body); text-decoration: none; }
.footer-grid a:hover { color: var(--ink); text-decoration: underline; }
.footer-about { color: var(--muted); max-width: 380px; font-size: .92rem; margin-top: 14px; }
.footer-contact {
  font-style: normal; margin-top: 16px;
  color: var(--body); font-size: .89rem; line-height: 1.75;
}
.footer-contact a { color: var(--accent-soft); text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; }
.footer-base {
  border-top: 1px solid var(--line); padding-top: 22px;
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
  color: var(--muted); font-size: .87rem;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .section, .hero { padding: 56px 0; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .detail-row { grid-template-columns: 1fr; gap: 2px; padding: 14px 0; }

  .nav-toggle { display: block; }
  .site-header .wrap { flex-wrap: wrap; min-height: 62px; }
  .nav { display: none; flex-direction: column; align-items: stretch; gap: 0; width: 100%; padding-bottom: 10px; }
  .nav.open { display: flex; }
  .nav a { padding: 12px 2px; border-top: 1px solid var(--line-soft); }
}

@media (prefers-reduced-motion: reduce) { * { transition: none !important; } }
