  * { box-sizing: border-box; }
  body { margin: 0; background: #07070A; color: #F4F2EF; font-family: "Nunito Sans", system-ui, sans-serif; -webkit-font-smoothing: antialiased; }
  a { color: #FF7A45; text-decoration: none; }
  a:hover { color: #FFF; }
  h1, h2, h3, h4 { font-family: "Nunito", system-ui, sans-serif; margin: 0; letter-spacing: -0.02em; font-weight: 800; }
  p { text-wrap: pretty; }
  ::selection { background: #FF6B35; color: #14100C; }
  @keyframes bob { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-12px) } }
  @keyframes drift { 0%, 100% { transform: translate3d(0,0,0) scale(1) } 50% { transform: translate3d(4%, -3%, 0) scale(1.08) } }
  @keyframes turn3d { from { transform: rotateX(9deg) rotateY(-26deg) } to { transform: rotateX(9deg) rotateY(334deg) } }
  @keyframes blink { 0%, 92%, 100% { transform: scaleY(1) } 96% { transform: scaleY(0.12) } }

/* ------------------------------------------------------------------ layout */

.db-page { position: relative; max-width: 100%; overflow-x: clip; isolation: isolate; }

/* --------------------------------------------------------------------- nav */

.db-header { position: sticky; top: 18px; z-index: 50; padding: 18px 20px 0; }

.db-nav {
  max-width: 1400px; margin: 0 auto; padding: 15px 18px 15px 30px;
  display: flex; align-items: center; gap: 34px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(26px) saturate(180%); -webkit-backdrop-filter: blur(26px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 999px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.28);
}

.db-logo {
  display: flex; align-items: baseline; color: #FFF;
  font-family: 'Rubik Spray Paint', 'Permanent Marker', cursive;
  font-size: 34px; line-height: 1; letter-spacing: 0.01em;
  text-shadow: 0 2px 18px rgba(255,107,53,0.4); flex-shrink: 0;
}
.db-logo:hover { color: #FFF; }
.db-logo span { color: #FF6B35; }

.db-navlinks {
  position: relative; display: flex; align-items: center; gap: 34px;
  margin-left: auto; font-size: 17px; font-weight: 600;
}

.db-navlink { color: #CFCBC5; padding: 6px 0; white-space: nowrap; }
.db-navlink:hover, .db-navlink.is-active { color: #FFF; }

.db-shop {
  background: rgba(255,107,53,0.92); border: 1px solid rgba(255,255,255,0.24);
  color: #14100C; padding: 13px 26px; border-radius: 999px;
  font-weight: 800; font-size: 16px; white-space: nowrap;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}
.db-shop:hover { background: #FFF; color: #14100C; }

.db-burger { display: none; }

/* ------------------------------------------------------------- mega panels */

.db-panel {
  position: absolute; top: calc(100% + 26px); right: 2px; width: min(1040px, 92vw);
  background: rgba(18,17,21,0.78);
  backdrop-filter: blur(34px) saturate(180%); -webkit-backdrop-filter: blur(34px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 30px; padding: 34px;
  box-shadow: 0 34px 90px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.22);
  font-weight: 400;
}
.db-panel[hidden] { display: none; }

.db-panel-head { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; padding: 0 6px 22px; }
.db-panel-title { font-family: 'DM Mono', monospace; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: #837D75; }
.db-panel-cta { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 15.5px; }

.db-panel-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }

.db-card { display: block; position: relative; height: 250px; border-radius: 22px; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); }
.db-card:hover { border-color: rgba(255,107,53,0.75); }
.db-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.db-card-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,7,10,0.28) 0%, rgba(7,7,10,0.06) 40%, rgba(7,7,10,0.9) 100%); }
.db-card-txt { position: relative; height: 100%; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; }
.db-card-name { font-family: 'Nunito', sans-serif; font-weight: 900; font-size: 25px; color: #FFF; letter-spacing: -0.03em; }
.db-card-meta { font-size: 14.5px; color: #C6C1BA; margin-top: 4px; }

.db-panel-quick { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 26px; padding: 22px 6px 0; border-top: 1px solid rgba(255,255,255,0.1); }
.db-panel-quick a { color: #CFCBC5; font-size: 15.5px; font-weight: 600; }
.db-panel-quick a:hover { color: #FFF; }

/* -------------------------------------------------------------- responsive */

@media (max-width: 1080px) {
  .db-navlinks { gap: 22px; font-size: 16px; }
  .db-nav { gap: 20px; padding-left: 24px; }
  .db-shop { padding: 12px 20px; font-size: 15px; }
}

@media (max-width: 900px) {
  .db-header { top: 12px; padding: 12px 14px 0; }
  .db-nav { padding: 12px 14px 12px 20px; border-radius: 26px; flex-wrap: wrap; }
  .db-logo { font-size: 28px; }

  .db-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 5px;
    margin-left: auto; width: 46px; height: 46px; padding: 0 11px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
    border-radius: 14px; cursor: pointer;
  }
  .db-burger span { display: block; height: 2px; background: #F4F2EF; border-radius: 2px; transition: transform 180ms ease, opacity 180ms ease; }
  .db-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .db-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .db-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .db-navlinks {
    display: none; width: 100%; margin-left: 0; order: 3;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 10px 4px 6px; font-size: 18px;
  }
  .db-navlinks.is-open { display: flex; }
  .db-navlink { padding: 14px 8px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .db-shop { margin-top: 14px; text-align: center; padding: 15px 20px; }

  /* Hover mega-menus don't belong on touch; the list above covers the same ground. */
  .db-panel { display: none !important; }
}

/* Reed's sections carry 40px of side padding; that's too much on a phone. */
@media (max-width: 720px) {
  .db-page section { padding-left: 20px !important; padding-right: 20px !important; }
  .db-page footer > div { padding-left: 20px !important; padding-right: 20px !important; }
}

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

/* ------------------------------------------------------------ misc polish */

.db-page img { max-width: 100%; }
:focus-visible { outline: 3px solid #FF7A45; outline-offset: 3px; border-radius: 4px; }
.db-skip {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: #FF6B35; color: #14100C; font-weight: 800; padding: 14px 22px; border-radius: 0 0 12px 0;
}
.db-skip:focus { left: 0; color: #14100C; }
