/* BLANK bento home refresh — dark + gold */

body.ab-bento {
  --bg0: #060607;
  --bg1: #0c0c10;
  --ink: #f4f4f4;
  --muted: #c9c9d0;
  --card: rgba(18, 18, 22, 0.86);
  --line: rgba(216, 180, 76, 0.18);
  --accent: #d8b44c;
  --accent-2: #f2e7c3;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --sans: "Space Grotesk", "Segoe UI", sans-serif;
  --r: 24px;
  --pad: clamp(14px, 2vw, 22px);
  --gap: clamp(16px, 2vw, 24px);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.46);
  --focus: 0 0 0 3px rgba(216, 180, 76, 0.4);

  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.45;
  background:
    radial-gradient(960px 520px at 8% 12%, rgba(216, 180, 76, 0.10), transparent 65%),
    radial-gradient(960px 520px at 88% 8%, rgba(242, 231, 195, 0.09), transparent 60%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.ab-bento::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 214, 102, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 214, 102, 0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

body.ab-bento a {
  color: inherit;
  text-decoration: none;
}

body.ab-bento img {
  max-width: 100%;
  height: auto;
  display: block;
}

body.ab-bento :focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.wrap {
  max-width: min(1480px, 100vw - 32px);
  margin: 0 auto;
  padding: clamp(16px, 3vw, 34px);
}

.ab-skip {
  position: absolute;
  left: -999px;
  top: 10px;
  z-index: 9999;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(12, 12, 16, 0.96);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}

.ab-skip:focus {
  left: 16px;
}

.nr-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
  padding: clamp(16px, 2vw, 20px);
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: rgba(12, 12, 16, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand h1 {
  margin: 0;
  font-size: clamp(24px, 2.7vw, 36px);
  font-family: var(--mono);
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
}

.brand .acid {
  color: var(--accent);
}

.brand .sub {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.nr-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  align-items: center;
}

.nr-nav-tablet,
.nr-nav-mobile {
  display: none;
}

.nav-select {
  min-height: 42px;
  min-width: 220px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(18, 18, 22, 0.92);
  color: var(--ink);
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-toggle {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(18, 18, 22, 0.92);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-toggle-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.nav-toggle-icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.nr-nav-mobile[open] .nav-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nr-nav-mobile[open] .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.nr-nav-mobile[open] .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle::-webkit-details-marker {
  display: none;
}

.nr-nav-mobile-panel {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.navlink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(18, 18, 22, 0.92);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease;
}

.navlink:hover {
  transform: translateY(-1px);
  border-color: rgba(216, 180, 76, 0.55);
  background: rgba(216, 180, 76, 0.14);
}

main {
  padding-top: 4px;
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.2vw, 30px);
  grid-auto-rows: 160px;
}

.tile {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 20, 24, 0.9), rgba(10, 10, 14, 0.92));
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tile:hover {
  transform: translateY(-2px);
  border-color: rgba(216, 180, 76, 0.4);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.38);
}

.tile:focus-within {
  border-color: rgba(216, 180, 76, 0.55);
  box-shadow: var(--focus), var(--shadow);
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(420px 180px at 0% 0%, rgba(216, 180, 76, 0.14), transparent 58%),
    radial-gradient(420px 180px at 100% 0%, rgba(242, 231, 195, 0.12), transparent 62%);
}

.tile .in {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: clamp(16px, 2.2vw, 26px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  overflow: hidden;
}

.tile .in > * {
  max-width: 100%;
  min-width: 0;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker .pip {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(216, 180, 76, 0.22);
}

.title {
  margin: 0;
  font-size: clamp(20px, 2vw, 30px);
  font-weight: 650;
  letter-spacing: 0.01em;
  color: #f7f7fb;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
  overflow-wrap: anywhere;
}

.copy {
  margin: 0;
  max-width: 60ch;
  color: #f2f2f6;
  font-size: 14px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  overflow-wrap: anywhere;
}

.btnrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(24, 24, 28, 0.92);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  border-color: rgba(216, 180, 76, 0.55);
  background: rgba(216, 180, 76, 0.82);
  color: #0a0a0d;
}

.btn.primary:hover {
  background: rgba(216, 180, 76, 0.9);
}

.badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(216, 180, 76, 0.45);
  background: rgba(216, 180, 76, 0.14);
  color: #f7f7fb;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.newsletter-input {
  flex: 1 1 220px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(16, 16, 20, 0.9);
  color: var(--ink);
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.newsletter-input::placeholder {
  color: #6d7d90;
}

.media {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(1.02);
  transform: scale(1.01);
}

.media.contain img {
  object-fit: contain;
  padding: 10px;
  background: rgba(8, 8, 12, 0.9);
}

.shade {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(6, 6, 7, 0.04), rgba(0, 0, 0, 0.62));
}

.cols-1 { grid-column: span 1; }
.cols-2 { grid-column: span 2; }
.cols-4 { grid-column: span 4; }
.rows-1 { grid-row: span 1; }
.rows-2 { grid-row: span 2; }

.bento .bento-hero { min-height: 420px; }
.bento .bento-spotlight { min-height: 420px; }
.bento .bento-hero .hero-kicker {
  font-size: 12px;
  letter-spacing: 0.12em;
}
.bento .bento-hero .hero-title {
  font-size: clamp(34px, 3.2vw, 56px);
  line-height: 0.92;
  letter-spacing: 0.03em;
  max-width: 12ch;
  text-transform: uppercase;
}
.bento .bento-hero .hero-copy {
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.5;
  max-width: 50ch;
  color: #f3f4fa;
}
.bento .bento-hero .hero-actions {
  margin-top: 6px;
}
.bento .bento-hero .media img {
  object-fit: cover;
  object-position: center;
}
.ticker .in { justify-content: center; }
.ambient {
  background:
    radial-gradient(320px 160px at 18% 14%, rgba(216, 180, 76, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(14, 14, 20, 0.9), rgba(8, 8, 12, 0.95));
}
.ambient::after {
  content: "";
  position: absolute;
  inset: -35%;
  pointer-events: none;
  opacity: 0.45;
  background:
    conic-gradient(from 0deg at 50% 50%, rgba(216, 180, 76, 0.34), rgba(242, 231, 195, 0.06), rgba(216, 180, 76, 0.24));
  animation: ambient-rotate 12s linear infinite;
}
.ambient-pulse::before {
  background:
    radial-gradient(340px 170px at 12% 10%, rgba(216, 180, 76, 0.2), transparent 62%),
    radial-gradient(240px 120px at 92% 88%, rgba(242, 231, 195, 0.16), transparent 60%);
  animation: ambient-pulse 3.4s ease-in-out infinite;
}
.ambient-wave::before {
  background:
    radial-gradient(460px 200px at 8% 10%, rgba(216, 180, 76, 0.16), transparent 58%),
    radial-gradient(460px 200px at 92% 88%, rgba(242, 231, 195, 0.12), transparent 58%);
  animation: ambient-wave 5s ease-in-out infinite;
}
.ambient-lottie-box .in {
  align-items: center;
  justify-content: center;
}
.ambient-fallback {
  position: absolute;
  width: min(300px, 100%);
  max-width: 100%;
  height: auto;
  filter: saturate(1.2) brightness(1.08) drop-shadow(0 0 14px rgba(255, 0, 153, 0.24));
  opacity: 0.82;
  pointer-events: none;
}
.ambient-lottie {
  position: relative;
  z-index: 2;
  width: min(300px, 100%);
  height: min(230px, 100%);
  filter: saturate(1.15) brightness(1.12) drop-shadow(0 0 18px rgba(255, 0, 153, 0.28));
}
.ambient-orbital .in {
  flex-direction: row;
  gap: clamp(18px, 2.2vw, 36px);
  align-items: center;
  justify-content: center;
}
.ambient-lottie-secondary,
.ambient-lottie-tertiary {
  width: min(230px, 45%);
  height: 190px;
}
.ambient-fallback-secondary,
.ambient-fallback-tertiary {
  width: min(230px, 45%);
}
.ambient-fallback-secondary {
  left: 16%;
}
.ambient-fallback-tertiary {
  right: 16%;
}
.ambient-lottie-secondary {
  animation: lottie-drift-left 6.4s ease-in-out infinite;
}
.ambient-lottie-tertiary {
  animation: lottie-drift-right 5.6s ease-in-out infinite;
}
.manifesto.text-only { background: linear-gradient(135deg, rgba(216,180,76,0.12), rgba(242,231,195,0.08)); transition: background 0.25s ease, border-color 0.25s ease; }
.manifesto.text-only:hover { background: linear-gradient(135deg, rgba(216,180,76,0.18), rgba(242,231,195,0.14)); border-color: rgba(216,180,76,0.38); }
.utility.text-only { background: rgba(255,255,255,0.04); }
.manifesto .title,
.utility .title,
.utility-strip .title { color: #f7f7fb; }
.manifesto .copy,
.utility .copy,
.utility-strip .copy { color: #ededf3; }

.fits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 10px 0;
}

.fit-thumb {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(216, 180, 76, 0.26);
  background: rgba(18, 18, 22, 0.82);
  min-height: 90px;
}

.fit-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.product-mini {
  border: 1px solid rgba(216, 180, 76, 0.26);
  border-radius: 14px;
  padding: 10px;
  background: rgba(12, 12, 16, 0.9);
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 10px;
  align-items: center;
  min-width: 0;
}

.mini-img img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
}

.mini-meta {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.mini-name {
  font-weight: 600;
  color: #f7f7fb;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.mini-price {
  font-family: var(--mono);
  color: #f2e7c3;
  font-size: 12px;
}
.newsform {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  flex: 1 1 auto;
}
.newsform input {
  flex: 1 1 220px;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(242, 242, 242, 0.14);
  background: rgba(0, 0, 0, 0.18);
  color: var(--text);
  padding: 10px 14px;
  font-family: var(--mono);
  letter-spacing: 0.04em;
}
.newsform input::placeholder {
  color: #b9b9c2;
}

.nr-alert {
  padding: 10px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}
.nr-alert.success {
  background: rgba(38, 185, 140, 0.12);
  border: 1px solid rgba(38, 185, 140, 0.35);
  color: #c8f5e6;
}
.nr-alert.error {
  background: rgba(215, 97, 97, 0.12);
  border: 1px solid rgba(215, 97, 97, 0.35);
  color: #ffdede;
}
.price {
  font-family: var(--mono);
  letter-spacing: 0.08em;
}
.ticker span {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  font-family: var(--mono);
  letter-spacing: 0.12em;
  color: #f7f7fb;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (min-width: 1921px) {
  .wrap { max-width: min(1600px, 100vw - 64px); }
  .bento { grid-auto-rows: 190px; gap: clamp(18px, 1vw, 26px); }
  .title { font-size: clamp(22px, 1.6vw, 34px); }
}

@media (max-width: 1919px) and (min-width: 1441px) {
  .wrap { max-width: min(1480px, 100vw - 48px); }
  .bento { grid-auto-rows: 180px; }
}

@media (max-width: 1440px) and (min-width: 1281px) {
  .wrap { max-width: min(1340px, 100vw - 40px); }
  .bento { grid-auto-rows: 170px; }
}

@media (max-width: 1280px) and (min-width: 1025px) {
  .bento { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 170px; }
  .cols-4 { grid-column: span 3; }
  .title { font-size: clamp(20px, 2vw, 30px); }
}

@media (max-width: 1024px) {
  .desktop-only { display: none; }
  .nr-nav-desktop {
    display: none;
  }

  .nr-nav-tablet {
    display: block;
    justify-self: end;
  }

  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .cols-2 { grid-column: span 2; }
  .cols-4 { grid-column: span 2; }
  .wrap { padding: clamp(14px, 4vw, 24px); }
  .bento .bento-hero .hero-title {
    font-size: clamp(28px, 4.6vw, 42px);
  }
}

@media (max-width: 768px) {
  .nr-header { grid-template-columns: 1fr; gap: 12px; }
  .nr-nav { justify-content: flex-start; }
  .bento { gap: clamp(14px, 4vw, 20px); grid-auto-rows: 200px; }
  .btn, .navlink { min-height: 42px; }
}

@media (max-width: 640px) {
  .desktop-only { display: none; }
  .nr-nav-tablet {
    display: none;
  }

  .nr-nav-mobile {
    display: block;
    width: 100%;
  }

  .nav-toggle {
    width: 100%;
  }

  .nr-nav-mobile-panel .navlink {
    width: 100%;
    justify-content: center;
  }

  .bento { grid-template-columns: repeat(1, 1fr); grid-auto-rows: auto; }
  .cols-1,
  .cols-2,
  .cols-4 { grid-column: span 1; }
  .rows-1,
  .rows-2 { grid-row: auto; }
  .bento .bento-hero,
  .bento .bento-spotlight { min-height: 360px; }
  .bento .bento-hero .hero-title {
    font-size: clamp(26px, 7vw, 34px);
  }
  .bento .bento-hero .hero-copy {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .wrap { padding: 14px; }
  .title { font-size: clamp(18px, 5vw, 26px); }
  .copy { font-size: 13px; }
}

@media (max-width: 414px) {
  .btnrow { gap: 8px; }
  .btn { width: 100%; justify-content: center; }
  .newsform { flex-direction: column; }
  .newsform input { width: 100%; }
}

@media (max-width: 390px) {
  .bento { gap: 12px; }
  .navlink { width: 100%; justify-content: center; }
}

@media (max-width: 380px) {
  .title { font-size: 18px; }
  .copy { font-size: 12.5px; }
}

@media (max-width: 919px) {
  .nr-header {
    grid-template-columns: 1fr;
  }

  .nr-nav {
    justify-content: flex-start;
  }
}

.sysline {
  width: 100%;
  height: 1px;
  margin-top: 8px;
  background: linear-gradient(90deg, rgba(216, 180, 76, 0.12), rgba(216, 180, 76, 0.35), rgba(242, 231, 195, 0.22), rgba(216, 180, 76, 0.12));
}

.nr-footer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 16px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.utility-strip {
  background: linear-gradient(90deg, rgba(216,180,76,0.12), rgba(242,231,195,0.10));
}

.utility-strip .btnrow {
  flex-wrap: wrap;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .tile {
    animation: tile-enter 480ms ease both;
  }

  .bento .tile:nth-child(2) { animation-delay: 60ms; }
  .bento .tile:nth-child(3) { animation-delay: 90ms; }
  .bento .tile:nth-child(4) { animation-delay: 120ms; }
  .bento .tile:nth-child(5) { animation-delay: 150ms; }
  .bento .tile:nth-child(6) { animation-delay: 180ms; }

  @keyframes tile-enter {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes ambient-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  @keyframes ambient-pulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 0.55; }
  }

  @keyframes ambient-wave {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(14px); }
  }

  @keyframes lottie-drift-left {
    0%, 100% { transform: translate(0, 0) scale(0.98); }
    50% { transform: translate(-6px, -8px) scale(1.02); }
  }

  @keyframes lottie-drift-right {
    0%, 100% { transform: translate(0, 0) scale(0.98); }
    50% { transform: translate(6px, -8px) scale(1.02); }
  }
}

@media (prefers-reduced-motion: reduce) {
  .tile,
  .btn,
  .navlink {
    transition: none !important;
    animation: none !important;
  }

  .tile:hover,
  .btn:hover,
  .navlink:hover {
    transform: none !important;
  }
}
