:root {
  --mouse-x: 50vw;
  --mouse-y: 30vh;
  --black: #040504;
  --surface: rgba(19, 23, 20, .56);
  --surface-strong: rgba(15, 18, 16, .78);
  --surface-light: rgba(255, 255, 255, .075);
  --text: #f6f8f5;
  --muted: #aeb8b0;
  --line: rgba(255, 255, 255, .13);
  --line-bright: rgba(178, 255, 94, .34);
  --neon: #91ff12;
  --cyan-soft: rgba(88, 235, 220, .12);
  --shadow: 0 30px 95px rgba(0, 0, 0, .54);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(78, 139, 84, .22), transparent 25%),
    radial-gradient(circle at 82% 20%, rgba(66, 90, 82, .22), transparent 27%),
    radial-gradient(circle at 50% 100%, rgba(80, 114, 62, .16), transparent 35%),
    var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(
      560px circle at var(--mouse-x) var(--mouse-y),
      rgba(145, 255, 18, .12),
      rgba(92, 214, 191, .045) 36%,
      transparent 68%
    );
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .22;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black, transparent 85%);
}

body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.glass {
  position: relative;
  background:
    linear-gradient(145deg, rgba(255,255,255,.085), rgba(255,255,255,.025)),
    rgba(14, 18, 15, .54);
  border: 1px solid var(--line);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.075);
  backdrop-filter: blur(22px) saturate(125%);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

.skip-link {
  position: fixed;
  left: -999px;
  top: 10px;
  z-index: 1000;
  padding: 10px 14px;
  background: white;
  color: black;
}

.skip-link:focus { left: 10px; }

.top-note {
  padding: 8px 0;
  text-align: center;
  color: #b9c2ba;
  background: rgba(4, 5, 4, .82);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 11px;
  backdrop-filter: blur(16px);
}

.top-note strong { color: var(--neon); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 7, 5, .48);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(26px) saturate(135%);
  -webkit-backdrop-filter: blur(26px) saturate(135%);
}

.header-row {
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand-image {
  display: block;
  width: 188px;
  flex: 0 0 auto;
}

.brand-image img {
  width: 100%;
  height: 54px;
  object-fit: cover;
  object-position: center;
  border-radius: 7px;
  box-shadow: 0 12px 34px rgba(0,0,0,.32);
}

.main-nav {
  display: flex;
  gap: 27px;
  margin-left: auto;
  color: #d2d9d3;
  font-size: 13px;
  font-weight: 750;
}

.main-nav a:hover { color: var(--neon); }

.header-button {
  padding: 11px 17px;
  border: 1px solid rgba(145,255,18,.38);
  border-radius: 999px;
  color: var(--neon);
  background: rgba(145,255,18,.08);
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07);
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.hero::before {
  width: 520px;
  height: 520px;
  left: -130px;
  top: 30px;
  background: rgba(112, 192, 105, .09);
  border: 1px solid rgba(145,255,18,.13);
}

.hero::after {
  width: 420px;
  height: 420px;
  right: -90px;
  bottom: 0;
  background: rgba(71, 131, 126, .09);
  border: 1px solid rgba(88,235,220,.11);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 84px 0 112px;
  text-align: center;
}

.hero-logo-card {
  width: min(930px, 96%);
  margin: 0 auto 40px;
  padding: 15px;
  border-radius: 28px;
}

.hero-logo-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(145,255,18,.28), rgba(255,255,255,.08), rgba(88,235,220,.17));
  opacity: .7;
}

.hero-logo-card img {
  width: 100%;
  aspect-ratio: 16 / 6.15;
  object-fit: cover;
  border-radius: 19px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--neon);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 1020px;
  margin: 17px auto 22px;
  font-size: clamp(44px, 6vw, 74px);
  line-height: .98;
  letter-spacing: -4.5px;
}

.hero h1 span { color: var(--neon); }

.hero-content > p {
  max-width: 760px;
  margin: 0 auto 30px;
  color: #bac4bc;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-button,
.secondary-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 21px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.primary-button {
  color: #071006;
  background: var(--neon);
  box-shadow: 0 12px 32px rgba(145,255,18,.14);
}

.secondary-button {
  color: white;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}

.hero-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 27px;
}

.hero-points span {
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  color: #aeb8b0;
  background: rgba(255,255,255,.035);
  font-size: 10px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.search-band {
  position: relative;
  z-index: 5;
  transform: translateY(-34px);
}

.search-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 9px;
  border-radius: 19px;
}

.search-card input {
  padding: 13px 15px;
  border: 0;
  outline: 0;
  color: white;
  background: transparent;
  font-size: 14px;
}

.search-card input::placeholder { color: #7f8981; }

.search-card button {
  padding: 0 23px;
  border: 0;
  border-radius: 12px;
  color: #061005;
  background: var(--neon);
  font-weight: 900;
  cursor: pointer;
}

.discovery-hub {
  padding: 25px 0 90px;
}

.discovery-intro {
  margin-bottom: 42px;
}

.discovery-intro p {
  max-width: 920px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.discovery-family {
  margin-bottom: 54px;
}

.discovery-heading {
  align-items: end;
  margin-bottom: 24px;
}

.discovery-heading h2 {
  margin: 7px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -2.3px;
}

.discovery-heading p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
}

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

.discovery-card {
  --accent: #91ff12;
  padding: 22px;
  border-radius: 24px;
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.discovery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 18%, transparent), transparent 46%),
    radial-gradient(280px circle at var(--card-x, 88%) var(--card-y, 18%), color-mix(in srgb, var(--accent) 18%, transparent), transparent 65%);
  opacity: .9;
  pointer-events: none;
}

.discovery-card::after {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -65px;
  bottom: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%);
  pointer-events: none;
}

.discovery-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--accent) 45%, rgba(255,255,255,.18));
  box-shadow: 0 34px 90px rgba(0,0,0,.58);
}

.discovery-card > * {
  position: relative;
  z-index: 1;
}

.discovery-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.discovery-label {
  color: color-mix(in srgb, var(--accent) 85%, white);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.discovery-card-top strong {
  color: #d7ded8;
  font-size: 10px;
  font-weight: 800;
}

.discovery-card h3 {
  margin: 18px 0 10px;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -1px;
}

.discovery-card p {
  min-height: 88px;
  color: #b5bdb6;
  font-size: 13px;
}

.matched-products {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.matched-products span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  color: #e5ece6;
  background: rgba(255,255,255,.05);
  font-size: 9px;
  font-weight: 700;
}

.discovery-button {
  min-height: 42px;
  margin-top: 18px;
  padding: 0 15px;
  border: 0;
  border-radius: 12px;
  color: #071006;
  background: color-mix(in srgb, var(--accent) 94%, white);
  font-size: 11px;
  font-weight: 900;
  cursor: pointer;
}

.active-discovery {
  padding-bottom: 34px;
}

.active-story-card {
  padding: 26px 28px;
  border-radius: 24px;
}

.active-story-card h3 {
  margin: 12px 0 8px;
  font-size: clamp(28px, 3.7vw, 42px);
  line-height: 1;
  letter-spacing: -2px;
}

.active-story-card p {
  max-width: 860px;
  margin: 0;
  color: #b4beb5;
}

.active-story-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.active-count {
  color: #d7dfd8;
  font-size: 12px;
  font-weight: 800;
}

.ghost-reset {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: white;
  background: rgba(255,255,255,.045);
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.picks {
  padding: 34px 0 96px;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: rgba(1, 4, 2, .28);
}

.filter-head { align-items: center; }
.filter-head h2 {
  margin: 7px 0 0;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -2.5px;
}
.filter-meta { color: #879188; font-size: 12px; }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 27px;
}

.filters button {
  padding: 9px 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  color: #d6ded7;
  background: rgba(255,255,255,.045);
  font-size: 11px;
  font-weight: 850;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.filters button.active {
  color: #061005;
  border-color: var(--neon);
  background: var(--neon);
}

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

.product-card {
  overflow: hidden;
  border-radius: 24px;
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  background:
    radial-gradient(
      280px circle at var(--card-x, 50%) var(--card-y, 50%),
      rgba(145,255,18,.13),
      transparent 70%
    );
  transition: opacity .2s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-bright);
  box-shadow: 0 34px 90px rgba(0,0,0,.6);
}

.product-card:hover::after { opacity: 1; }

.card-media,
.card-copy {
  position: relative;
  z-index: 1;
}

.card-media {
  width: calc(100% - 20px);
  margin: 10px 10px 0;
  aspect-ratio: 1.2;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.95), rgba(230,234,230,.87) 62%, rgba(211,217,212,.78));
  cursor: pointer;
}

.card-media img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  transition: transform .3s ease;
}

.product-card:hover .card-media img { transform: scale(1.035); }

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: var(--neon);
  background: rgba(7,10,8,.78);
  font-size: 8px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.card-copy { padding: 21px; }

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.card-category,
.card-brand {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.card-category { color: var(--neon); }
.card-brand { color: #889188; }

.card-copy h3 {
  margin: 9px 0 8px;
  font-size: 20px;
  line-height: 1.2;
}

.card-copy h3 button {
  padding: 0;
  text-align: left;
  border: 0;
  background: none;
  cursor: pointer;
  font-weight: 850;
}

.card-copy > p {
  min-height: 84px;
  color: #aab4ac;
  font-size: 13px;
}

.tag-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 0;
}

.tag-mini-list span {
  padding: 5px 8px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  color: #c8d0ca;
  background: rgba(255,255,255,.04);
  font-size: 8px;
  font-weight: 700;
}

.best-for {
  padding: 13px 0;
  margin-top: 14px;
  border-top: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
}

.best-for span,
.best-for strong { display: block; }

.best-for span {
  color: #778078;
  font-size: 8px;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.best-for strong {
  margin-top: 3px;
  font-size: 12px;
}

.card-actions {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 8px;
  margin-top: 16px;
}

.details-button,
.amazon-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  text-align: center;
  font-size: 10px;
  font-weight: 900;
}

.details-button {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.05);
  cursor: pointer;
}

.amazon-button {
  color: #061005;
  background: var(--neon);
}

.paid-note {
  display: block;
  margin-top: 5px;
  text-align: right;
  color: #6d766e;
  font-size: 8px;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 34px;
  border-radius: 24px;
  text-align: center;
}

.empty-state h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.empty-state p {
  max-width: 620px;
  margin: 0 auto 18px;
  color: #acb4ad;
}

.about-section { padding: 108px 0; }

.about-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 82px;
  align-items: start;
}

.about-sticky {
  position: sticky;
  top: 120px;
}

.about-sticky h2 {
  margin: 12px 0 17px;
  font-size: clamp(41px, 5vw, 67px);
  line-height: 1;
  letter-spacing: -4px;
}

.about-lead {
  margin-bottom: 27px;
  color: #aeb8b0;
  font-size: 17px;
}

.about-content {
  display: grid;
  gap: 16px;
}

.about-content article {
  padding: 30px;
  border-radius: 23px;
}

.about-content h3 {
  margin: 0 0 14px;
  font-size: 27px;
  letter-spacing: -1.1px;
}

.about-content p {
  margin: 0 0 15px;
  color: #aeb8b0;
}

.about-content p:last-child { margin-bottom: 0; }

.about-content blockquote {
  margin: 23px 0;
  padding: 25px;
  border-left: 4px solid var(--neon);
  border-radius: 0 15px 15px 0;
  color: #eaf6e9;
  background: rgba(145,255,18,.07);
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -.8px;
}

.about-principles {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.about-principles div {
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,.09);
}

.about-principles strong { font-size: 15px; }

.about-principles p {
  margin: 4px 0 0 !important;
  font-size: 13px;
}

.about-closing {
  border-color: rgba(145,255,18,.24) !important;
  background:
    linear-gradient(145deg, rgba(145,255,18,.09), rgba(255,255,255,.025)),
    rgba(14,18,15,.66) !important;
}

.about-closing strong {
  display: block;
  margin-top: 22px;
  color: var(--neon);
  font-size: 18px;
}

.disclosure-block { padding: 0 0 100px; }

.disclosure-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 46px;
  border-radius: 25px;
}

.disclosure-card h2 {
  margin: 9px 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.07;
  letter-spacing: -2.1px;
}

.disclosure-card p {
  max-width: 750px;
  margin: 0;
  color: #a8b2aa;
}

.disclosure-card > a {
  flex: 0 0 auto;
  padding: 13px 18px;
  border: 1px solid rgba(145,255,18,.34);
  border-radius: 999px;
  color: var(--neon);
  background: rgba(145,255,18,.07);
  font-size: 11px;
  font-weight: 900;
}

.site-footer {
  padding: 62px 0 23px;
  color: #929b94;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(2,3,2,.55);
  backdrop-filter: blur(20px);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr .7fr 1fr;
  gap: 50px;
}

.footer-logo {
  width: 275px;
  height: 115px;
  object-fit: cover;
  object-position: center;
  border-radius: 7px;
}

.footer-grid p {
  max-width: 420px;
  font-size: 12px;
}

.footer-grid h3 {
  margin: 0 0 15px;
  color: white;
  font-size: 10px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.footer-grid a {
  display: block;
  margin: 9px 0;
  font-size: 12px;
}

.footer-grid a:hover { color: var(--neon); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 10px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: none;
  place-items: center;
  padding: 20px;
  background: rgba(1, 3, 2, .73);
  backdrop-filter: blur(16px);
}

.modal.open { display: grid; }

.modal-card {
  position: relative;
  width: min(1120px, 100%);
  max-height: 92vh;
  overflow: auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.035)),
    rgba(8, 12, 9, .88);
  box-shadow: 0 40px 120px rgba(0,0,0,.68);
  backdrop-filter: blur(28px) saturate(130%);
}

.modal-close {
  position: sticky;
  float: right;
  top: 13px;
  right: 13px;
  z-index: 4;
  width: 40px;
  height: 40px;
  margin: 13px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: #071006;
  background: var(--neon);
  cursor: pointer;
}

.modal-product {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  min-height: 620px;
}

.modal-gallery {
  padding: 36px;
  border-right: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.025);
}

.modal-main-image {
  min-height: 430px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.96), rgba(220,225,220,.86));
}

.modal-main-image img {
  width: 100%;
  height: 410px;
  object-fit: contain;
  border-radius: 12px;
}

.modal-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin-top: 12px;
}

.modal-thumbnails button {
  padding: 5px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 11px;
  background: rgba(255,255,255,.055);
  cursor: pointer;
}

.modal-thumbnails button.active {
  border-color: var(--neon);
  box-shadow: 0 0 0 1px rgba(145,255,18,.2);
}

.modal-thumbnails img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 7px;
}

.modal-copy { padding: 55px 44px 44px; }

.modal-category {
  color: var(--neon);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.modal-copy h2 {
  margin: 12px 0 18px;
  font-size: 38px;
  line-height: 1.04;
  letter-spacing: -2px;
}

.modal-verdict {
  color: #adb7af;
  font-size: 15px;
}

.modal-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 16px 0 0;
}

.modal-tag-cloud span {
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;
  color: #dce4dd;
  background: rgba(255,255,255,.045);
  font-size: 9px;
  font-weight: 700;
}

.modal-best {
  margin: 20px 0;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
}

.modal-best span,
.modal-best strong { display: block; }

.modal-best span {
  color: #788279;
  font-size: 8px;
  text-transform: uppercase;
}

.modal-best strong { margin-top: 3px; }

.modal-copy h3 {
  margin-top: 25px;
  font-size: 15px;
}

.feature-list {
  padding-left: 20px;
  color: #adb7af;
  font-size: 13px;
}

.feature-list li { margin: 7px 0; }

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

.spec-grid div {
  padding: 12px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 11px;
  background: rgba(255,255,255,.035);
}

.spec-grid dt {
  color: #778078;
  font-size: 8px;
  text-transform: uppercase;
}

.spec-grid dd {
  margin: 3px 0 0;
  font-size: 12px;
  font-weight: 750;
}

.watch-box {
  margin: 20px 0;
  padding: 14px 16px;
  border-left: 4px solid var(--neon);
  border-radius: 0 12px 12px 0;
  background: rgba(145,255,18,.065);
}

.watch-box strong {
  font-size: 10px;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.watch-box p {
  margin: 4px 0 0;
  color: #b9c4bb;
  font-size: 12px;
}

.modal-amazon { padding: 14px 20px; }

.modal-paid {
  margin-top: 8px;
  text-align: left;
}

.legal-page {
  max-width: 800px;
  min-height: 70vh;
  padding: 90px 0 120px;
}

.legal-page h1 {
  font-size: clamp(42px, 6vw, 68px);
  line-height: 1;
  letter-spacing: -3px;
}

.legal-page h2 { margin-top: 35px; }
.legal-page p { color: #aeb8b0; }

/* theme accents */
.theme-violet { --accent: #8b5cf6; }
.theme-sunset { --accent: #ff7a59; }
.theme-cyan { --accent: #35d6d0; }
.theme-amber { --accent: #f6b93b; }
.theme-rose { --accent: #ff5ea8; }
.theme-emerald { --accent: #2ecc71; }
.theme-fuchsia { --accent: #e552ff; }
.theme-indigo { --accent: #6f7cff; }
.theme-mint { --accent: #59f0b5; }
.theme-ocean { --accent: #40c4ff; }
.theme-saffron { --accent: #ffb347; }
.theme-redhero { --accent: #ff4c5a; }
.theme-gold { --accent: #ffc857; }
.theme-onyx { --accent: #9aa1aa; }
.theme-ice { --accent: #b8e4ff; }
.theme-plum { --accent: #b46cff; }
.theme-arcade { --accent: #7bff70; }
.theme-peach { --accent: #ffb7a1; }
.theme-neon { --accent: #91ff12; }
.theme-olive { --accent: #9dc183; }
.theme-silver { --accent: #d9e0ea; }
.theme-champagne { --accent: #f3d9b1; }
.theme-cafe { --accent: #c79162; }

@media (max-width: 1100px) {
  .discovery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .about-layout,
  .modal-product {
    grid-template-columns: 1fr;
  }

  .about-sticky { position: static; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }

  .modal-gallery {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.09);
  }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }

  .brand-image { width: 145px; }
  .brand-image img { height: 43px; }
  .main-nav { display: none; }
  .header-button { margin-left: auto; }

  .hero { min-height: auto; }
  .hero-content { padding: 65px 0 90px; }
  .hero-logo-card { padding: 8px; border-radius: 18px; }
  .hero-logo-card img { border-radius: 13px; }
  .hero h1 { letter-spacing: -3px; }

  .search-card { grid-template-columns: 1fr; }
  .search-card button { min-height: 44px; }

  .discovery-grid,
  .product-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .discovery-card p,
  .card-copy > p { min-height: 0; }

  .discovery-heading,
  .active-story-actions {
    display: block;
  }

  .discovery-heading p,
  .filter-meta,
  .active-story-actions .ghost-reset { margin-top: 14px; }

  .about-section { padding: 78px 0; }
  .about-content article { padding: 24px; }

  .disclosure-card {
    display: block;
    padding: 32px 24px;
  }

  .disclosure-card > a {
    display: inline-block;
    margin-top: 23px;
  }

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

  .modal-gallery { padding: 22px; }
  .modal-main-image { min-height: 300px; }
  .modal-main-image img { height: 290px; }
  .modal-copy { padding: 35px 24px; }
  .modal-copy h2 { font-size: 31px; }
  .spec-grid { grid-template-columns: 1fr; }
}


/* ===========================
   Multipage navigation system
   =========================== */

.nav-with-dropdown {
  align-items: center;
}

.nav-dropdown {
  position: static;
}

.nav-dropdown > summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  color: #d2d9d3;
  font-size: 13px;
  font-weight: 750;
}

.nav-dropdown > summary::-webkit-details-marker { display: none; }
.nav-dropdown > summary:hover,
.nav-dropdown[open] > summary { color: var(--neon); }

.mega-menu {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  width: min(calc(100vw - 42px), 1240px);
  max-height: min(76vh, 720px);
  overflow: auto;
  transform: translateX(-50%);
  z-index: 150;
  padding: 24px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.09), rgba(255,255,255,.03)),
    rgba(6, 9, 7, .92);
  box-shadow: 0 35px 110px rgba(0,0,0,.72);
}

.mega-menu-head {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  align-items: end;
  padding-bottom: 19px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.mega-menu-head strong {
  display: block;
  margin-top: 7px;
  font-size: 18px;
}

.mega-all-link {
  color: var(--neon) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
}

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

.mega-group h3 {
  margin: 0 0 11px;
  color: var(--neon);
  font-size: 10px;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.mega-links {
  display: grid;
  gap: 7px;
}

.mega-links a {
  color: #bec7c0;
  font-size: 11px;
  line-height: 1.3;
}

.mega-links a:hover { color: white; }

.text-action {
  color: var(--neon);
  font-size: 12px;
  font-weight: 900;
}

/* ===========================
   Instagram follow segment
   =========================== */

.instagram-section {
  padding: 96px 0;
}

.instagram-card {
  min-height: 370px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 55px;
  align-items: center;
  overflow: hidden;
  padding: 48px;
  border-radius: 30px;
  background:
    linear-gradient(125deg, rgba(255, 90, 178, .13), rgba(130, 78, 255, .1) 46%, rgba(255, 177, 72, .1)),
    rgba(12, 14, 13, .62);
}

.instagram-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.instagram-orb-one {
  width: 320px;
  height: 320px;
  right: -80px;
  top: -100px;
  background: rgba(255, 72, 156, .15);
}

.instagram-orb-two {
  width: 260px;
  height: 260px;
  left: 38%;
  bottom: -150px;
  background: rgba(124, 77, 255, .14);
}

.instagram-copy,
.instagram-preview {
  position: relative;
  z-index: 1;
}

.instagram-copy h2 {
  margin: 10px 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
  letter-spacing: -3px;
}

.instagram-copy p {
  max-width: 660px;
  color: #bac2bc;
}

.instagram-copy strong { color: white; }

.instagram-button {
  min-height: 47px;
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  padding: 0 19px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(90deg, #ff4f9a, #8d5cff, #ff9f43);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 16px 45px rgba(154, 74, 255, .2);
}

.instagram-preview {
  height: 265px;
}

.insta-tile {
  position: absolute;
  width: 185px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 26px;
  color: white;
  box-shadow: 0 25px 65px rgba(0,0,0,.38);
  backdrop-filter: blur(14px);
}

.insta-tile span {
  font-size: 19px;
  font-weight: 950;
  letter-spacing: 2px;
}

.tile-a {
  left: 2%;
  top: 35px;
  transform: rotate(-8deg);
  background: linear-gradient(145deg, rgba(255,75,142,.72), rgba(93,32,117,.7));
}

.tile-b {
  left: 32%;
  top: 0;
  z-index: 2;
  transform: rotate(3deg);
  background: linear-gradient(145deg, rgba(113,80,255,.72), rgba(37,54,119,.7));
}

.tile-c {
  right: 0;
  top: 47px;
  transform: rotate(9deg);
  background: linear-gradient(145deg, rgba(255,169,61,.75), rgba(148,53,75,.7));
}

/* ===========================
   Dedicated category pages
   =========================== */

.category-page {
  --page-accent: #91ff12;
  background:
    radial-gradient(circle at 14% 13%, color-mix(in srgb, var(--page-accent) 24%, transparent), transparent 26%),
    radial-gradient(circle at 88% 22%, color-mix(in srgb, var(--page-accent) 13%, transparent), transparent 28%),
    radial-gradient(circle at 50% 100%, color-mix(in srgb, var(--page-accent) 10%, transparent), transparent 36%),
    #040504;
}

.category-page body::before {
  background: radial-gradient(560px circle at var(--mouse-x) var(--mouse-y), color-mix(in srgb, var(--page-accent) 15%, transparent), transparent 68%);
}

.category-page .top-note strong,
.category-page .main-nav a:hover,
.category-page .nav-dropdown > summary:hover,
.category-page .nav-dropdown[open] > summary,
.category-page .mega-group h3,
.category-page .mega-all-link,
.category-page .eyebrow,
.category-page .card-category,
.category-page .footer-grid a:hover {
  color: var(--page-accent) !important;
}

.category-page .header-button,
.category-page .primary-button,
.category-page .amazon-button,
.category-page .modal-close {
  color: #050605;
  border-color: var(--page-accent);
  background: var(--page-accent);
}

.category-page .filters button.active,
.category-page .catalogue-search-wrap:focus-within {
  border-color: var(--page-accent);
}

.category-hero {
  position: relative;
  min-height: 610px;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 95px 0 85px;
}

.category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .16;
  background-image:
    linear-gradient(color-mix(in srgb, var(--page-accent, #91ff12) 16%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--page-accent, #91ff12) 16%, transparent) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
  pointer-events: none;
}

.category-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  background: color-mix(in srgb, var(--page-accent) 18%, transparent);
  pointer-events: none;
}

.category-glow-a {
  width: 450px;
  height: 450px;
  left: -120px;
  top: 40px;
}

.category-glow-b {
  width: 390px;
  height: 390px;
  right: -80px;
  bottom: -40px;
}

.category-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 65px;
  align-items: center;
}

.category-kicker {
  display: inline-block;
  color: var(--page-accent, var(--neon));
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.category-hero h1 {
  max-width: 760px;
  margin: 15px 0 22px;
  font-size: clamp(52px, 7.7vw, 92px);
  line-height: .91;
  letter-spacing: -5px;
}

.category-hero h1 span {
  color: var(--page-accent, var(--neon));
}

.category-story {
  max-width: 750px;
  color: #c1cac3;
  font-size: 18px;
}

.category-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 27px;
}

.category-manifesto {
  padding: 30px;
  border-radius: 26px;
  border-color: color-mix(in srgb, var(--page-accent, #91ff12) 32%, rgba(255,255,255,.12));
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--page-accent, #91ff12) 13%, transparent), rgba(255,255,255,.025)),
    rgba(10,13,11,.62);
}

.category-manifesto blockquote {
  margin: 12px 0 22px;
  color: white;
  font-size: 23px;
  line-height: 1.35;
  letter-spacing: -.7px;
  font-weight: 800;
}

.manifesto-number {
  color: var(--page-accent, var(--neon));
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.category-manifesto > strong {
  color: var(--page-accent, var(--neon));
  font-size: 12px;
}

.category-manifesto ul {
  padding-left: 19px;
  color: #b5beb7;
  font-size: 12px;
}

.category-products {
  padding: 90px 0 105px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(1,3,2,.26);
}

.category-products-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 25px;
}

.category-products-head h2 {
  margin: 7px 0 0;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.03;
  letter-spacing: -2.7px;
}

.category-products-head > span {
  color: var(--page-accent, var(--neon));
  font-size: 12px;
  font-weight: 900;
}

.catalogue-search-wrap {
  margin-bottom: 25px;
  padding: 7px;
  border-radius: 17px;
}

.catalogue-search-wrap input {
  width: 100%;
  padding: 13px 14px;
  border: 0;
  outline: 0;
  color: white;
  background: transparent;
}

.related-worlds {
  padding: 90px 0;
}

.related-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.related-link-grid a {
  --accent: var(--neon);
  padding: 10px 14px;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, rgba(255,255,255,.1));
  border-radius: 999px;
  color: color-mix(in srgb, var(--accent) 82%, white);
  background: color-mix(in srgb, var(--accent) 8%, rgba(255,255,255,.03));
  font-size: 11px;
  font-weight: 800;
}

.general-catalogue-hero {
  --page-accent: #91ff12;
}

.general-catalogue-hero .category-manifesto {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 15px;
}

.general-catalogue-hero .category-manifesto span {
  color: var(--neon);
  font-size: 11px;
  font-weight: 900;
}

.all-products-page .category-products-head > span {
  color: var(--neon);
}

@media (max-width: 1080px) {
  .mega-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .category-hero-grid,
  .instagram-card { grid-template-columns: 1fr; }
  .instagram-preview { width: min(620px, 100%); margin-inline: auto; }
}

@media (max-width: 760px) {
  .nav-with-dropdown > a { display: none; }

  .nav-dropdown > summary {
    font-size: 12px;
  }

  .mega-menu {
    top: calc(100% + 5px);
    width: calc(100vw - 20px);
    padding: 18px;
  }

  .mega-menu-head { display: block; }
  .mega-all-link { display: inline-block; margin-top: 12px; }
  .mega-grid { grid-template-columns: 1fr; }
  .mega-group { padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.07); }

  .category-hero {
    min-height: auto;
    padding: 70px 0 75px;
  }

  .category-hero h1 { letter-spacing: -3px; }
  .category-products-head { display: block; }
  .category-products-head > span { display: block; margin-top: 12px; }

  .instagram-card {
    padding: 31px 23px;
  }

  .instagram-preview {
    height: 220px;
    transform: scale(.86);
    transform-origin: center top;
  }

  .insta-tile { width: 160px; }

  .related-link-grid {
    display: grid;
  }
}


/* ==========================================================
   Corrections v2 — compact menu, clickable cards, Instagram
   ========================================================== */

/* Compact and structured mega-menu */
.mega-menu {
  width: min(calc(100vw - 34px), 1080px);
  max-height: min(78vh, 680px);
  padding: 17px;
  border-radius: 20px;
}

.mega-menu-head {
  align-items: center;
  gap: 18px;
  padding: 0 3px 14px;
  margin-bottom: 13px;
}

.mega-menu-head strong {
  margin-top: 5px;
  font-size: 15px;
}

.mega-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
  align-items: start;
}

.mega-group {
  padding: 13px;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}

.mega-group h3 {
  margin-bottom: 8px;
  font-size: 9px;
}

.mega-links {
  gap: 3px;
}

.mega-links a {
  padding: 3px 0;
  color: #c4cdc6;
  font-size: 10px;
  line-height: 1.22;
}

.mega-links a:hover {
  padding-left: 4px;
  color: white;
}

/* Whole discovery tile is the category link */
.discovery-card-linkable {
  display: block;
  color: inherit;
  cursor: pointer;
}

.discovery-card-linkable:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.discovery-card-open {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 17px;
  color: color-mix(in srgb, var(--accent) 86%, white);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .45px;
  text-transform: uppercase;
}

.discovery-card-open span {
  transition: transform .2s ease;
}

.discovery-card-linkable:hover .discovery-card-open span {
  transform: translateX(5px);
}

/* Additional homepage statement */
.hero-support-copy {
  max-width: 840px !important;
  margin-top: -14px !important;
  margin-bottom: 30px !important;
  color: #e1e8e2 !important;
  font-size: 15px !important;
  font-weight: 650;
}

/* Refined Instagram profile preview */
.instagram-card {
  min-height: 385px;
  grid-template-columns: .92fr 1.08fr;
  gap: 52px;
  padding: 47px;
}

.instagram-profile-shell {
  position: relative;
  z-index: 1;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.035)),
    rgba(8, 10, 9, .68);
  box-shadow:
    0 28px 75px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.09);
  backdrop-filter: blur(22px);
}

.instagram-profile-shell::before {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -75px;
  top: -90px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255,73,154,.3), rgba(130,78,255,.24), rgba(255,166,64,.2));
  filter: blur(18px);
  pointer-events: none;
}

.instagram-profile-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 15px;
}

.instagram-avatar {
  width: 54px;
  height: 54px;
  padding: 2px;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff4f9a, #8d5cff, #ffa63f);
}

.instagram-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 2px solid #111;
  border-radius: 50%;
}

.instagram-profile-name strong,
.instagram-profile-name span {
  display: block;
}

.instagram-profile-name strong {
  color: white;
  font-size: 13px;
}

.instagram-profile-name span {
  margin-top: 3px;
  color: #9fa8a1;
  font-size: 9px;
}

.instagram-follow-pill {
  padding: 8px 12px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(90deg, #ff4f9a, #8d5cff);
  font-size: 9px;
  font-weight: 900;
}

.instagram-feed-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.instagram-feed-item {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 15px;
  background: rgba(255,255,255,.05);
}

.instagram-feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.instagram-feed-item::after {
  content: "";
  position: absolute;
  inset: 42% 0 0;
  background: linear-gradient(to top, rgba(0,0,0,.82), transparent);
}

.instagram-feed-item figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 9px;
  z-index: 2;
  color: white;
  font-size: 9px;
  font-weight: 850;
}

.instagram-profile-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-top: 13px;
  color: #aab3ac;
  font-size: 8px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .6px;
}

/* Avoid the old card visual if cached markup remains */
.instagram-preview,
.insta-tile {
  display: none !important;
}

@media (max-width: 1080px) {
  .mega-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .instagram-card {
    grid-template-columns: 1fr;
  }

  .instagram-profile-shell {
    width: min(680px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  .mega-menu {
    padding: 12px;
  }

  .mega-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mega-group {
    padding: 11px;
  }

  .mega-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3px 12px;
  }

  .instagram-card {
    padding: 29px 21px;
  }

  .instagram-profile-head {
    grid-template-columns: 48px 1fr;
  }

  .instagram-follow-pill {
    display: none;
  }

  .instagram-feed-grid {
    gap: 6px;
  }

  .instagram-profile-bottom {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}


/* ==========================================================
   Focused corrections: category navigation, themes and nav logo
   ========================================================== */

/* Transparent logo applies only to the logo inside the sticky navigation. */
.site-header .nav-transparent-logo {
  width: 205px;
}

.site-header .nav-transparent-logo img {
  width: 100%;
  height: 56px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 7px 20px rgba(0, 0, 0, .32));
}

/* Back navigation on every individual category page. */
.back-to-categories {
  display: inline-flex;
  align-items: center;
  margin-bottom: 19px;
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .2px;
}

.back-to-categories:hover {
  color: var(--page-accent);
}

/* Make the complete category page inherit its assigned palette. */
body.category-page {
  --neon: var(--page-accent);
  --neon-soft: rgba(var(--page-accent-rgb), .14);
  --line-bright: rgba(var(--page-accent-rgb), .38);
  background:
    radial-gradient(circle at 14% 12%, rgba(var(--page-accent-rgb), .22), transparent 27%),
    radial-gradient(circle at 88% 20%, rgba(var(--page-accent-rgb), .13), transparent 29%),
    radial-gradient(circle at 50% 100%, rgba(var(--page-accent-rgb), .09), transparent 38%),
    linear-gradient(155deg, var(--page-bg-1), var(--page-bg-2));
}

body.category-page::before {
  background:
    radial-gradient(
      560px circle at var(--mouse-x) var(--mouse-y),
      rgba(var(--page-accent-rgb), .16),
      transparent 68%
    );
}

body.category-page .site-header {
  background: color-mix(in srgb, var(--page-bg-1) 72%, transparent);
  border-bottom-color: rgba(var(--page-accent-rgb), .18);
}

body.category-page .top-note {
  background: color-mix(in srgb, var(--page-bg-2) 88%, transparent);
  border-bottom-color: rgba(var(--page-accent-rgb), .12);
}

body.category-page .category-hero {
  background:
    linear-gradient(
      135deg,
      rgba(var(--page-accent-rgb), .055),
      transparent 44%
    );
}

body.category-page .category-glow {
  background: rgba(var(--page-accent-rgb), .18);
}

body.category-page .category-manifesto,
body.category-page .catalogue-search-wrap,
body.category-page .product-card,
body.category-page .instagram-card {
  border-color: rgba(var(--page-accent-rgb), .22);
}

body.category-page .category-manifesto {
  background:
    linear-gradient(
      145deg,
      rgba(var(--page-accent-rgb), .13),
      rgba(255, 255, 255, .025)
    ),
    rgba(10, 12, 11, .62);
}

body.category-page .primary-button,
body.category-page .amazon-button,
body.category-page .header-button,
body.category-page .modal-close {
  color: #060706;
  border-color: var(--page-accent);
  background: linear-gradient(
    135deg,
    var(--page-accent),
    var(--page-accent-2)
  );
}

body.category-page .secondary-button,
body.category-page .details-button {
  color: var(--page-accent-2);
  border-color: rgba(var(--page-accent-rgb), .42);
  background: rgba(var(--page-accent-rgb), .075);
}

body.category-page .site-footer {
  background:
    linear-gradient(
      180deg,
      rgba(var(--page-accent-rgb), .035),
      rgba(2, 3, 2, .7)
    );
  border-top-color: rgba(var(--page-accent-rgb), .14);
}

@media (max-width: 700px) {
  .site-header .nav-transparent-logo {
    width: 152px;
  }

  .site-header .nav-transparent-logo img {
    height: 44px;
  }
}


/* ==========================================================
   Continuous desktop mega menu
   ========================================================== */

.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 150;
  width: min(94vw, 1500px);
  max-height: none;
  overflow: visible;
  display: grid;
  grid-template-columns: minmax(210px, .82fr) minmax(0, 5.6fr);
  gap: 0;
  padding: 24px 26px;
  transform: translateX(-50%);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.052), rgba(255,255,255,.018)),
    rgba(5, 8, 6, .96);
  box-shadow: 0 34px 100px rgba(0,0,0,.68);
  backdrop-filter: blur(28px) saturate(120%);
  -webkit-backdrop-filter: blur(28px) saturate(120%);
}

.mega-intro {
  min-width: 0;
  padding: 7px 27px 7px 4px;
  border-right: 1px solid rgba(255,255,255,.10);
  text-align: left;
}

.mega-intro-label {
  display: block;
  margin-bottom: 10px;
  color: #91ff12;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.mega-intro h2 {
  margin: 0;
  color: #f5f7f5;
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -1px;
}

.mega-intro p {
  margin: 14px 0 22px;
  color: #9ea8a1;
  font-size: 13px;
  line-height: 1.55;
}

.mega-browse-button {
  min-height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 15px !important;
  border: 1px solid rgba(145,255,18,.34);
  border-radius: 999px;
  color: #071006 !important;
  background: #91ff12;
  font-size: 11px !important;
  font-weight: 900 !important;
  white-space: nowrap;
}

.mega-browse-button:hover {
  color: #071006 !important;
  background: #b0ff54;
}

.mega-browse-button span {
  transition: transform .18s ease;
}

.mega-browse-button:hover span {
  transform: translateX(3px);
}

.mega-columns {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: start;
}

.mega-column {
  min-width: 0;
  height: 100%;
  padding: 5px 16px 3px;
  text-align: left;
}

.mega-column + .mega-column {
  border-left: 1px solid rgba(255,255,255,.075);
}

.mega-group {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.mega-group + .mega-group {
  margin-top: 15px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.075);
}

.mega-group h3,
.category-page .mega-menu .mega-group h3 {
  margin: 0 0 5px;
  color: #768079 !important;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.mega-links {
  display: grid;
  gap: 0;
}

.mega-links a,
.category-page .mega-menu .mega-links a {
  min-height: 32px;
  display: flex;
  align-items: center;
  padding: 4px 0;
  color: #d6ddd7 !important;
  font-size: 15px;
  font-weight: 640;
  line-height: 1.28;
  text-align: left;
  transition:
    color .16s ease,
    transform .16s ease;
}

.mega-links a:hover,
.mega-links a:focus-visible,
.category-page .mega-menu .mega-links a:hover,
.category-page .mega-menu .mega-links a:focus-visible {
  padding-left: 0;
  color: #91ff12 !important;
  transform: translateX(3px);
}

.mega-links a:focus-visible,
.mega-browse-button:focus-visible {
  outline: 2px solid #91ff12;
  outline-offset: 3px;
}

/* Old top heading is no longer used in the continuous menu. */
.mega-menu-head,
.mega-grid,
.mega-all-link {
  display: none !important;
}

/* Medium screens: retain one continuous container, reduce to three columns. */
@media (max-width: 1180px) {
  .mega-menu {
    width: min(96vw, 1120px);
    max-height: calc(100vh - 105px);
    overflow-y: auto;
    grid-template-columns: 220px 1fr;
    padding: 20px;
  }

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

  .mega-column:nth-child(4) {
    border-left: 0;
  }

  .mega-column:nth-child(n+4) {
    border-top: 1px solid rgba(255,255,255,.075);
    padding-top: 15px;
  }
}

/* Mobile navigation remains compact and usable. */
@media (max-width: 760px) {
  .mega-menu {
    top: calc(100% + 5px);
    width: calc(100vw - 18px);
    max-height: calc(100vh - 95px);
    overflow-y: auto;
    display: block;
    padding: 18px;
  }

  .mega-intro {
    padding: 0 0 18px;
    margin-bottom: 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }

  .mega-intro h2 {
    font-size: 20px;
  }

  .mega-columns {
    grid-template-columns: 1fr;
  }

  .mega-column,
  .mega-column:nth-child(n+4) {
    padding: 12px 0;
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.075);
  }

  .mega-column:first-child {
    border-top: 0;
  }

  .mega-links a,
  .category-page .mega-menu .mega-links a {
    min-height: 34px;
    font-size: 14px;
  }
}


/* ==========================================================
   Personality category poster replacement
   ========================================================== */
.personality-poster-card {
  padding: 0 !important;
  overflow: hidden;
  background: rgba(255,255,255,0.03);
}

.personality-poster-card::before,
.personality-poster-card::after {
  display: none !important;
}

.personality-poster {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
  border-radius: inherit;
}

@media (max-width: 1180px) {
  .personality-poster {
    min-height: 500px;
  }
}

@media (max-width: 860px) {
  .personality-poster {
    min-height: 420px;
  }
}


/* ==========================================================
   Personality poster sizing and face-position correction
   ========================================================== */

/* Restore the category-message card to approximately its original size. */
.personality-poster-card {
  width: 100%;
  height: 418px;
  min-height: 418px;
  padding: 0 !important;
  overflow: hidden;
  border-radius: 26px;
  background:
    linear-gradient(
      145deg,
      rgba(var(--page-accent-rgb, 145,255,18), .09),
      rgba(255,255,255,.025)
    ),
    rgba(10, 13, 11, .62);
}

/* Fill the original message box and crop only the excess vertical area. */
.personality-poster {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

/* Individually position each poster so the model faces remain visible. */
.personality-poster[src$="/introvert.png"] {
  object-position: center 54%;
}

.personality-poster[src$="/overthinker.png"] {
  object-position: center 56%;
}

.personality-poster[src$="/extrovert.png"] {
  object-position: center 53%;
}

.personality-poster[src$="/ambivert.png"] {
  object-position: center 51%;
}

.personality-poster[src$="/main-character.png"] {
  object-position: center 43%;
}

@media (max-width: 1180px) {
  .personality-poster-card {
    height: 400px;
    min-height: 400px;
  }
}

@media (max-width: 860px) {
  .personality-poster-card {
    height: min(430px, 70vw);
    min-height: 340px;
  }
}


/* ==========================================================
   New text-free personality images
   ========================================================== */

.personality-poster[src$="/introvert.png"] {
  object-position: center 52%;
}

.personality-poster[src$="/overthinker.png"] {
  object-position: center 55%;
}

.personality-poster[src$="/extrovert.png"] {
  object-position: center 50%;
}

.personality-poster[src$="/ambivert.png"] {
  object-position: center 51%;
}

.personality-poster[src$="/main-character.png"] {
  object-position: center 49%;
}


/* ==========================================================
   Typography-style category message box
   ========================================================== */

/* Remove the old paragraph beneath the category title area. */
.category-story {
  display: none !important;
}

/* Typography card inspired by the supplied clean design reference. */
.typography-manifesto {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 418px;
  padding: 34px 38px 34px 40px !important;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(var(--page-accent-rgb), .18);
  background:
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,255,255,.78)),
    rgba(255,255,255,.82);
  box-shadow:
    0 24px 60px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.35);
  color: #11161a;
}

.typography-manifesto::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 88px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--page-accent);
  box-shadow: 0 0 0 5px rgba(var(--page-accent-rgb), .14);
}

.typography-manifesto::after {
  content: "";
  position: absolute;
  right: 32px;
  bottom: 54px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--page-accent);
  box-shadow: 0 0 0 5px rgba(var(--page-accent-rgb), .12);
}

.typography-tag {
  position: relative;
  z-index: 2;
  display: inline-block;
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--page-accent) 68%, #0e1012);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.typography-title {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #11161a;
  font-size: clamp(34px, 3.2vw, 58px);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -2px;
  max-width: 11ch;
}

.typography-highlight {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: 12px 0 18px;
  padding: 9px 16px 11px 18px;
  background: var(--page-accent);
  color: #ffffff;
  font-size: clamp(24px, 2.35vw, 42px);
  font-style: italic;
  font-weight: 850;
  line-height: .96;
  letter-spacing: -1.2px;
  box-shadow: 10px 10px 0 rgba(var(--page-accent-rgb), .12);
}

.typography-story {
  position: relative;
  z-index: 2;
  max-width: 33ch;
  margin: 0;
  color: #1f252b;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 500;
}

@media (max-width: 1180px) {
  .typography-manifesto {
    min-height: 390px;
    padding: 30px 30px 32px 32px !important;
  }

  .typography-manifesto::before {
    top: 78px;
    left: 18px;
  }

  .typography-manifesto::after {
    right: 26px;
    bottom: 42px;
  }

  .typography-story {
    font-size: 17px;
  }
}

@media (max-width: 860px) {
  .typography-manifesto {
    min-height: 340px;
    padding: 28px 24px 28px 26px !important;
  }

  .typography-tag {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .typography-title {
    font-size: clamp(28px, 9vw, 44px);
    letter-spacing: -1.6px;
  }

  .typography-highlight {
    margin: 10px 0 14px;
    padding: 8px 12px 10px 14px;
    font-size: clamp(22px, 7vw, 34px);
  }

  .typography-story {
    font-size: 16px;
    line-height: 1.5;
  }

  .typography-manifesto::before,
  .typography-manifesto::after {
    transform: scale(.82);
  }
}


/* ==========================================================
   Typography box colour correction
   ========================================================== */
.typography-manifesto {
  border: 1px solid rgba(var(--page-accent-rgb), .42) !important;
  background:
    linear-gradient(145deg, rgba(7, 16, 18, .86), rgba(9, 20, 22, .74)),
    rgba(8, 16, 17, .78) !important;
  box-shadow:
    0 24px 60px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
  color: #ffffff !important;
}

.typography-manifesto::before,
.typography-manifesto::after {
  background: var(--page-accent) !important;
  box-shadow: 0 0 0 5px rgba(var(--page-accent-rgb), .14) !important;
}

.typography-tag {
  color: var(--page-accent) !important;
}

.typography-title {
  color: #ffffff !important;
}

.typography-highlight {
  background: var(--page-accent) !important;
  color: #ffffff !important;
  box-shadow: 12px 12px 0 rgba(var(--page-accent-rgb), .18) !important;
}

.typography-story {
  color: rgba(255,255,255,.92) !important;
}


/* ==========================================================
   Final fix: category-specific highlight bar colour
   ========================================================== */
body.category-page .typography-highlight {
  background-color: var(--page-accent) !important;
  background-image: none !important;
  color: #ffffff !important;
  border: none !important;
  box-shadow: 12px 12px 0 rgba(var(--page-accent-rgb), .18) !important;
}

body.category-page .typography-tag {
  color: var(--page-accent) !important;
}

body.category-page .typography-manifesto::before,
body.category-page .typography-manifesto::after {
  background-color: var(--page-accent) !important;
}


/* ==========================================================
   Restore original category paragraph layout
   ========================================================== */

.category-story {
  display: block !important;
  max-width: 750px;
  margin: 0;
  color: #c1cac3;
  font-size: 18px;
  line-height: 1.7;
}

.simple-category-summary {
  min-height: auto;
  padding: 30px !important;
  color: #ffffff;
  border-color: rgba(var(--page-accent-rgb), .30) !important;
  background:
    linear-gradient(
      145deg,
      rgba(var(--page-accent-rgb), .11),
      rgba(255,255,255,.025)
    ),
    rgba(10, 13, 11, .62) !important;
}

.simple-category-summary::before,
.simple-category-summary::after {
  display: none !important;
}

.simple-category-summary h2 {
  margin: 12px 0 18px;
  color: #ffffff;
  font-size: clamp(27px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: -1.5px;
}

.simple-category-summary > strong {
  display: block;
  color: var(--page-accent);
  font-size: 12px;
  font-weight: 900;
}

.simple-category-summary ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  line-height: 1.7;
}

/* Disable the previous typography design completely. */
.typography-manifesto,
.typography-tag,
.typography-title,
.typography-highlight,
.typography-story {
  all: unset;
}

@media (max-width: 860px) {
  .category-story {
    font-size: 16px;
    line-height: 1.6;
  }

  .simple-category-summary {
    padding: 24px !important;
  }
}


/* ==========================================================
   Category panel: Why These Picks Fit
   ========================================================== */

.fit-category-panel {
  min-height: 420px;
  padding: 28px 30px !important;
  color: #ffffff;
  border-color: rgba(var(--page-accent-rgb), .30) !important;
  background:
    linear-gradient(
      145deg,
      rgba(var(--page-accent-rgb), .095),
      rgba(255,255,255,.022)
    ),
    rgba(9, 12, 10, .66) !important;
}

.fit-category-panel::before,
.fit-category-panel::after {
  display: none !important;
}

.fit-category-panel .manifesto-number {
  color: var(--page-accent);
}

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

.fit-point {
  min-width: 0;
  padding: 14px 13px;
  border: 1px solid rgba(var(--page-accent-rgb), .16);
  border-radius: 15px;
  background:
    linear-gradient(
      145deg,
      rgba(var(--page-accent-rgb), .075),
      rgba(255,255,255,.018)
    ),
    rgba(255,255,255,.018);
}

.fit-point strong {
  display: block;
  color: #ffffff;
  font-size: 12px;
  line-height: 1.3;
}

.fit-point p {
  margin: 7px 0 0;
  color: rgba(255,255,255,.65);
  font-size: 10px;
  line-height: 1.48;
}

.curated-section {
  margin-top: 22px;
  padding-top: 19px;
  border-top: 1px solid rgba(var(--page-accent-rgb), .18);
}

.curated-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 13px;
}

.curated-section-head span {
  color: rgba(255,255,255,.50);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.curated-section-head strong {
  color: var(--page-accent);
  font-size: 10px;
  font-weight: 900;
}

.curated-product-list {
  display: grid;
  gap: 9px;
}

.curated-product-preview {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  align-items: center;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.085);
  border-radius: 14px;
  background: rgba(255,255,255,.025);
}

.curated-product-preview img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(244,247,244,.92);
}

.curated-product-preview strong {
  display: block;
  color: #ffffff;
  font-size: 11px;
  line-height: 1.3;
}

.curated-product-preview p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.60);
  font-size: 9px;
  line-height: 1.45;
}

.curated-empty {
  padding: 16px;
  border: 1px dashed rgba(var(--page-accent-rgb), .28);
  border-radius: 14px;
  background: rgba(var(--page-accent-rgb), .045);
}

.curated-empty strong {
  color: #ffffff;
  font-size: 12px;
}

.curated-empty p {
  margin: 6px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .fit-category-panel {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .fit-category-panel {
    padding: 23px 20px !important;
  }

  .fit-points {
    grid-template-columns: 1fr;
  }

  .fit-point {
    padding: 13px;
  }

  .fit-point p {
    font-size: 11px;
  }

  .curated-product-preview {
    grid-template-columns: 54px 1fr;
  }

  .curated-product-preview img {
    width: 54px;
    height: 54px;
  }
}


/* ==========================================================
   Permanent category panel footer
   ========================================================== */

.permanent-category-cta {
  margin-top: 22px;
  padding-top: 19px;
  border-top: 1px solid rgba(var(--page-accent-rgb), .18);
}

.permanent-category-cta > span {
  display: block;
  color: rgba(255,255,255,.50);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.permanent-category-cta p {
  max-width: 42ch;
  margin: 9px 0 14px;
  color: rgba(255,255,255,.66);
  font-size: 11px;
  line-height: 1.55;
}

.permanent-category-cta a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid rgba(var(--page-accent-rgb), .38);
  border-radius: 999px;
  color: var(--page-accent);
  background: rgba(var(--page-accent-rgb), .075);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2px;
}

.permanent-category-cta a span {
  transition: transform .18s ease;
}

.permanent-category-cta a:hover {
  color: #050605;
  background: var(--page-accent);
}

.permanent-category-cta a:hover span {
  transform: translateY(3px);
}

/* The product preview previously shown inside the category panel is no longer used. */
.curated-section,
.curated-section-head,
.curated-product-list,
.curated-product-preview,
.curated-empty {
  display: none !important;
}

@media (max-width: 760px) {
  .permanent-category-cta p {
    font-size: 11px;
  }

  .permanent-category-cta a {
    width: 100%;
  }
}

/* ==========================================================
   Scrollprise brand logo integration
   Uses the supplied transparent PNG directly on the dark theme.
   ========================================================== */
.site-header .nav-transparent-logo {
  width: 220px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.site-header .nav-transparent-logo img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 7px 18px rgba(0,0,0,.34));
}
.hero-logo-card {
  width: min(760px, 94%);
  padding: 0;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}
.hero-logo-card img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
}
.footer-logo {
  width: 270px;
  height: auto;
  padding: 0;
  object-fit: contain;
  object-position: center;
  border-radius: 0;
  background: transparent;
}
.instagram-avatar {
  background: rgba(250, 246, 237, .98);
  padding: 4px;
}
.instagram-avatar img {
  object-fit: contain;
  border: 0;
  border-radius: 50%;
}
@media (max-width: 700px) {
  .site-header .nav-transparent-logo { width: 165px; padding: 4px 8px; }
  .site-header .nav-transparent-logo img { height: 40px; }
  .hero-logo-card { padding: 14px 18px; }
}

/* ==========================================================
   Scrollprise logo polish — larger navigation mark + animated hero shine
   ========================================================== */
.site-header .nav-transparent-logo {
  width: 255px;
  min-width: 255px;
  overflow: visible;
}
.site-header .nav-transparent-logo img {
  width: 100%;
  height: 68px;
  object-fit: contain;
  object-position: left center;
  border-radius: 0;
  filter:
    drop-shadow(0 8px 20px rgba(0,0,0,.38))
    drop-shadow(0 0 10px rgba(145,255,18,.10));
}

.hero-logo-card {
  position: relative;
  isolation: isolate;
  width: min(760px, 94%);
  padding: 3px;
  border: 0;
  border-radius: 30px;
  background: rgba(7, 12, 8, .78);
  box-shadow:
    0 24px 70px rgba(0,0,0,.34),
    0 0 36px rgba(145,255,18,.08);
  overflow: hidden;
}

.hero-logo-card::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: 145%;
  aspect-ratio: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0deg);
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(145,255,18,0) 0deg,
    rgba(145,255,18,.15) 40deg,
    rgba(218,255,108,.95) 76deg,
    rgba(255,255,255,1) 90deg,
    rgba(218,255,108,.90) 104deg,
    rgba(145,255,18,.12) 140deg,
    rgba(145,255,18,0) 185deg,
    rgba(88,235,220,.10) 260deg,
    rgba(145,255,18,0) 360deg
  );
  opacity: .92;
  animation: scrollprise-border-spin 5.2s linear infinite;
}

.hero-logo-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 3px;
  border-radius: 27px;
  background:
    radial-gradient(circle at 22% 30%, rgba(145,255,18,.08), transparent 35%),
    rgba(8, 15, 10, .97);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.05);
}

.hero-logo-card img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 27px;
}

@keyframes scrollprise-border-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-logo-card::before { animation: none; }
}

@media (max-width: 700px) {
  .site-header .nav-transparent-logo {
    width: 190px;
    min-width: 190px;
    padding: 0;
  }
  .site-header .nav-transparent-logo img { height: 50px; }
  .hero-logo-card { padding: 2px; border-radius: 22px; }
  .hero-logo-card::after { inset: 2px; border-radius: 20px; }
  .hero-logo-card img { border-radius: 20px; }
}

/* ==========================================================
   Scrollprise hero logo — compact frame
   Keep the animated shine but make the frame hug the wordmark.
   ========================================================== */
.hero-logo-card {
  width: min(760px, 94%);
  padding: 2px;
  border-radius: 20px;
  margin-bottom: 34px;
}
.hero-logo-card::after {
  inset: 2px;
  border-radius: 18px;
}
.hero-logo-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 18px;
}

@media (max-width: 700px) {
  .hero-logo-card {
    width: min(94vw, 620px);
    padding: 2px;
    border-radius: 16px;
  }
  .hero-logo-card::after { inset: 2px; border-radius: 14px; }
  .hero-logo-card img { border-radius: 14px; }
}


/* ==========================================================
   Scrollprise hero logo — balanced breathing room
   Slightly roomier than the ultra-compact version, while keeping
   the animated border close to the wordmark.
   ========================================================== */
.hero-logo-card {
  width: min(790px, 94%);
  padding: 12px 16px;
  border-radius: 24px;
  margin-bottom: 34px;
}
.hero-logo-card::after {
  inset: 3px;
  border-radius: 21px;
}
.hero-logo-card img {
  border-radius: 17px;
}

@media (max-width: 700px) {
  .hero-logo-card {
    width: min(94vw, 650px);
    padding: 8px 10px;
    border-radius: 19px;
  }
  .hero-logo-card::after { inset: 3px; border-radius: 16px; }
  .hero-logo-card img { border-radius: 13px; }
}

/* ==========================================================
   Scrollprise monochrome logo refresh — Aug 2026
   New uploaded artwork: clean transparent wordmark in navigation/footer,
   full topographic artwork in hero. Existing animated hero border retained.
   ========================================================== */
.site-header .nav-transparent-logo {
  width: 245px;
  min-width: 245px;
}
.site-header .nav-transparent-logo img {
  width: 100%;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  filter:
    drop-shadow(0 8px 18px rgba(0,0,0,.38))
    drop-shadow(0 0 9px rgba(255,255,255,.08));
}

.hero-logo-card {
  width: min(800px, 94%);
  padding: 12px 16px;
  border-radius: 24px;
}
.hero-logo-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 17px;
  object-fit: cover;
}

.footer-logo {
  width: 250px;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.28));
}

@media (max-width: 700px) {
  .site-header .nav-transparent-logo {
    width: 180px;
    min-width: 180px;
  }
  .site-header .nav-transparent-logo img { height: 44px; }
  .hero-logo-card {
    width: min(94vw, 680px);
    padding: 9px 11px;
    border-radius: 19px;
  }
  .hero-logo-card img { border-radius: 13px; }
}

/* =========================================================
   SCROLLPRISE 2.0 — editorial discovery experience
   ========================================================= */
:root {
  --black: #050806;
  --surface: rgba(13, 16, 14, .68);
  --surface-strong: rgba(10, 12, 11, .92);
  --text: #f4f1e9;
  --muted: #9da59f;
  --neon: #b6ff2a;
  --line: rgba(244, 241, 233, .12);
  --line-bright: rgba(182, 255, 42, .28);
}

body {
  background:
    radial-gradient(circle at 14% 10%, rgba(73, 92, 62, .17), transparent 28%),
    radial-gradient(circle at 86% 33%, rgba(46, 63, 54, .18), transparent 31%),
    #050806;
}

body::after {
  opacity: .10;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
}

.site-header { background: rgba(5,8,6,.76); }
.header-button { transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.header-button:hover { background: var(--neon); color: #071006; border-color: var(--neon); transform: translateY(-2px); }

.editorial-hero {
  min-height: min(860px, calc(100vh - 88px));
  isolation: isolate;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.editorial-hero::before {
  width: 760px;
  height: 760px;
  left: -330px;
  top: -170px;
  filter: blur(10px);
  background: radial-gradient(circle, rgba(182,255,42,.10), rgba(182,255,42,.018) 48%, transparent 70%);
  border: 0;
}

.editorial-hero::after {
  width: 640px;
  height: 640px;
  right: -260px;
  bottom: -260px;
  filter: blur(6px);
  background: radial-gradient(circle, rgba(255,255,255,.05), transparent 68%);
  border: 0;
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.18'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  pointer-events: none;
}
.hero-orbit-a { width: 520px; height: 520px; left: 6vw; top: 10%; animation: orbitFloat 8s ease-in-out infinite; }
.hero-orbit-b { width: 310px; height: 310px; right: 10vw; bottom: 9%; animation: orbitFloat 10s ease-in-out infinite reverse; }

.editorial-hero-content {
  padding: 118px 0 90px;
  text-align: left;
}

.hero-kicker {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
  color: #c2c9c3;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-kicker-dot { color: var(--neon); animation: sparklePulse 2.4s ease-in-out infinite; }

.editorial-hero h1 {
  max-width: 1060px;
  margin: 0;
  color: var(--text);
  font-size: clamp(64px, 10.4vw, 142px);
  line-height: .78;
  letter-spacing: -.075em;
  font-weight: 950;
  text-wrap: balance;
}
.editorial-hero h1 span {
  display: inline-block;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(244,241,233,.9);
  text-shadow: 0 0 55px rgba(182,255,42,.05);
}

.hero-lede {
  max-width: 610px !important;
  margin: 40px 0 34px !important;
  color: #aeb5af !important;
  font-size: clamp(17px, 2vw, 21px) !important;
  line-height: 1.55;
}
.editorial-hero .hero-actions { justify-content: flex-start; }
.editorial-hero .primary-button,
.editorial-hero .secondary-button { min-height: 54px; padding-inline: 25px; cursor: pointer; transition: transform .16s ease, box-shadow .2s ease, background .2s ease; }
.editorial-hero .secondary-button:hover { border-color: rgba(182,255,42,.42); color: var(--neon); }

.scroll-cue {
  position: absolute;
  right: 0;
  bottom: 30px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #747d76;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transform: rotate(90deg) translateX(100%);
  transform-origin: right bottom;
}
.scroll-cue i { display: block; width: 58px; height: 1px; background: linear-gradient(90deg, var(--neon), transparent); animation: cueLine 1.8s ease-in-out infinite; }

.scrollprise-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.07);
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: #0b0e0c;
}
.marquee-track {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 26px;
  padding: 14px 0;
  animation: marqueeMove 24s linear infinite;
  white-space: nowrap;
}
.marquee-track span { font-size: 12px; font-weight: 950; letter-spacing: 2.8px; }
.marquee-track b { color: var(--neon); font-size: 12px; }

.editorial-drop { padding: 100px 0 70px; }
.editorial-title-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 38px;
}
.editorial-title-row h2 {
  max-width: 750px;
  margin: 11px 0 0;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: .96;
  letter-spacing: -.045em;
}
.text-action[type="button"] { border: 0; background: none; cursor: pointer; }

.editorial-product-stage {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  grid-template-rows: 245px 245px;
  gap: 16px;
}
.editorial-product {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  background: #0c100d;
  box-shadow: 0 28px 90px rgba(0,0,0,.28);
}
.editorial-product-1 { grid-row: 1 / 3; }
.editorial-media { position: absolute; inset: 0; width: 100%; height: 100%; padding: 0; border: 0; background: none; cursor: pointer; overflow: hidden; }
.editorial-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(2,4,3,.2) 58%, rgba(2,4,3,.9) 100%);
}
.editorial-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.editorial-product:hover .editorial-media img { transform: scale(1.045); filter: saturate(1.08); }
.editorial-media > span { position: absolute; z-index: 2; top: 17px; right: 19px; color: rgba(255,255,255,.6); font-size: 11px; font-weight: 900; letter-spacing: 1px; }
.editorial-product-copy { position: absolute; z-index: 3; left: 24px; right: 22px; bottom: 23px; pointer-events: none; }
.editorial-product-copy small { color: var(--neon); font-size: 10px; font-weight: 900; letter-spacing: 1.3px; text-transform: uppercase; }
.editorial-product-copy h3 { max-width: 80%; margin: 7px 0 0; font-size: clamp(18px, 2.2vw, 29px); line-height: 1.02; letter-spacing: -.03em; }
.editorial-product-copy h3 button { pointer-events: auto; padding: 0; border: 0; color: inherit; background: none; text-align: left; cursor: pointer; }
.editorial-arrow { position: absolute; right: 0; bottom: 0; width: 45px; height: 45px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); cursor: pointer; pointer-events: auto; }

.search-band { transform: none; padding: 32px 0 12px; }
.search-card { max-width: 940px; }
.search-card input { background: transparent; color: white; font-size: 14px; }
.search-card input::placeholder { color: #717a73; }

.discovery-hub { padding-top: 100px; }
.discovery-intro h2,
.section-heading h2 { letter-spacing: -.04em; }
.discovery-intro h2 { font-size: clamp(42px, 6vw, 70px); line-height: .98; }

/* Editorialized catalogue */
.product-grid { align-items: stretch; }
.product-card {
  border-radius: 22px;
  overflow: hidden;
  transition: transform .42s cubic-bezier(.2,.7,.2,1), border-color .3s ease, box-shadow .3s ease;
}
.product-card:hover { transform: translateY(-8px) rotate(.15deg); border-color: rgba(182,255,42,.25); }
.card-media { position: relative; }
.card-number { position: absolute; z-index: 3; right: 14px; bottom: 12px; font-size: 11px; font-weight: 900; letter-spacing: 1px; color: white; text-shadow: 0 1px 12px #000; }
.card-hook { margin: 0 0 12px !important; color: var(--neon) !important; font-size: 9px !important; font-weight: 950; letter-spacing: 1.2px; line-height: 1.35; text-transform: uppercase; }
.card-copy h3 { letter-spacing: -.025em; }
.details-button { background: transparent; }
.amazon-button, .details-button { transition: transform .16s ease, background .18s ease, border-color .18s ease; }

/* Alternate visual rhythm when enough products exist */
@media (min-width: 960px) {
  .product-grid .product-card:nth-child(4n + 1) { transform-origin: left center; }
  .product-grid .product-card:nth-child(4n + 3) { transform-origin: right center; }
}

/* Surprise button */
.floating-surprise {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 88px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 17px;
  border: 1px solid rgba(182,255,42,.42);
  border-radius: 999px;
  color: #0b1108;
  background: var(--neon);
  box-shadow: 0 14px 42px rgba(0,0,0,.42), 0 0 28px rgba(182,255,42,.11);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-surprise:hover { transform: translateY(-4px) rotate(-1deg); box-shadow: 0 18px 48px rgba(0,0,0,.5), 0 0 42px rgba(182,255,42,.17); }
.floating-surprise span { animation: sparklePulse 2s ease-in-out infinite; }

/* subtle surprise flash */
body::before { transition: opacity .3s ease; }
body.surprise-flash::before { opacity: 1; background: radial-gradient(500px circle at 50% 50%, rgba(182,255,42,.18), transparent 70%); }

/* Reveal motion */
.reveal-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal-on-scroll.is-visible { opacity: 1; transform: translateY(0); }

.instagram-card, .about-content article, .disclosure-card { border-color: rgba(255,255,255,.09); }
.instagram-section { padding-top: 100px; }
.about-section { padding-top: 120px; }
.about-sticky h2 { font-size: clamp(42px, 5vw, 65px); letter-spacing: -.045em; line-height: .95; }

@keyframes marqueeMove { to { transform: translateX(-50%); } }
@keyframes sparklePulse { 0%,100% { transform: scale(.78) rotate(0); opacity: .55; } 50% { transform: scale(1.25) rotate(18deg); opacity: 1; } }
@keyframes cueLine { 0%,100% { transform: scaleX(.45); opacity: .35; transform-origin: left; } 50% { transform: scaleX(1); opacity: 1; transform-origin: left; } }
@keyframes orbitFloat { 0%,100% { transform: translate3d(0,0,0) rotate(0); } 50% { transform: translate3d(0,-18px,0) rotate(5deg); } }

@media (prefers-reduced-motion: reduce) {
  .marquee-track, .hero-orbit, .hero-kicker-dot, .floating-surprise span, .scroll-cue i { animation: none !important; }
  .reveal-on-scroll { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 960px) {
  .editorial-hero { min-height: 720px; }
  .editorial-hero-content { padding-top: 90px; }
  .editorial-product-stage { grid-template-columns: 1fr 1fr; grid-template-rows: 340px 270px; }
  .editorial-product-1 { grid-column: 1 / 3; grid-row: auto; }
  .scroll-cue { display: none; }
}

@media (max-width: 700px) {
  .editorial-hero { min-height: 640px; }
  .editorial-hero-content { padding: 72px 0 70px; }
  .editorial-hero h1 { font-size: clamp(54px, 17vw, 86px); line-height: .8; letter-spacing: -.07em; }
  .editorial-hero h1 span { -webkit-text-stroke-width: 1px; }
  .hero-lede { margin-top: 30px !important; font-size: 16px !important; }
  .editorial-hero .hero-actions { align-items: stretch; }
  .editorial-hero .primary-button, .editorial-hero .secondary-button { width: 100%; }
  .hero-kicker { font-size: 9px; }
  .editorial-drop { padding-top: 72px; }
  .editorial-title-row { align-items: flex-start; flex-direction: column; }
  .editorial-title-row h2 { font-size: 43px; }
  .editorial-product-stage { display: grid; grid-template-columns: 1fr; grid-template-rows: repeat(3, 300px); }
  .editorial-product-1 { grid-column: auto; grid-row: auto; }
  .editorial-product-copy h3 { max-width: 82%; font-size: 26px; }
  .search-band { padding-top: 20px; }
  .floating-surprise { right: 13px; bottom: 72px; min-height: 44px; font-size: 9px; }
  .marquee-track { gap: 20px; }
}


/* === Scrollprise discovery system: collections, stash, swipe mode, editorial details === */
.card-media{position:relative}.card-save{position:absolute;right:14px;bottom:14px;z-index:4;border:1px solid rgba(255,255,255,.18);background:rgba(4,8,5,.78);backdrop-filter:blur(12px);color:#fff;border-radius:999px;padding:8px 11px;font:700 10px/1 inherit;letter-spacing:.08em;cursor:pointer}.card-save.saved,.stash-button.saved{color:#b6ff2a;border-color:rgba(182,255,42,.45)}
.detail-hook{font-size:clamp(20px,2.1vw,32px);font-weight:900;line-height:1.02;letter-spacing:-.035em;color:#b6ff2a;margin:18px 0 10px}.detail-why{margin:24px 0;padding:22px 0;border-top:1px solid rgba(255,255,255,.12);border-bottom:1px solid rgba(255,255,255,.12)}.detail-why span,.detail-catch span{font-size:10px;letter-spacing:.2em;color:#b6ff2a;font-weight:900}.detail-why p,.detail-catch p{font-size:17px;line-height:1.55;margin:8px 0 0}.detail-split{display:grid;grid-template-columns:1.25fr .75fr;gap:24px;margin-top:25px}.detail-catch{padding:22px;border-radius:20px;background:rgba(182,255,42,.06);border:1px solid rgba(182,255,42,.14);align-self:start}.detail-specs{margin:24px 0;border-top:1px solid rgba(255,255,255,.12);padding-top:16px}.detail-specs summary{cursor:pointer;font-weight:800;color:#aeb6b0}.detail-actions{display:flex;gap:10px;align-items:center}.stash-button{border:1px solid rgba(255,255,255,.18);background:transparent;color:#fff;border-radius:999px;padding:14px 18px;font-weight:800;cursor:pointer}
.swipe-page,.stash-page{min-height:100vh;background:#050806;color:#f4f5f1}.swipe-header{height:82px;padding:0 clamp(20px,4vw,64px);display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid rgba(255,255,255,.08)}.swipe-header img{width:150px;display:block}.swipe-header>div{display:flex;gap:22px}.swipe-header a{color:#f4f5f1;text-decoration:none;font-size:12px;font-weight:800;letter-spacing:.08em}.swipe-shell{width:min(1180px,92vw);margin:0 auto;padding:28px 0 50px}.swipe-progress{display:flex;align-items:center;gap:12px;font:800 11px/1 inherit;letter-spacing:.15em;color:#8c958e}.swipe-progress i{height:1px;background:rgba(255,255,255,.16);flex:1}.swipe-card{min-height:620px;margin:22px 0;display:grid;grid-template-columns:1.1fr .9fr;background:#0a0e0b;border:1px solid rgba(255,255,255,.09);border-radius:32px;overflow:hidden;box-shadow:0 35px 90px rgba(0,0,0,.42);transition:transform .22s,opacity .22s}.swipe-card.fly-left{transform:translateX(-10%) rotate(-2deg);opacity:0}.swipe-card.fly-right{transform:translateX(10%) rotate(2deg);opacity:0}.swipe-image{position:relative;background:#111;min-height:620px}.swipe-image img{width:100%;height:100%;object-fit:cover;position:absolute;inset:0}.swipe-image span{position:absolute;left:24px;top:24px;background:#b6ff2a;color:#061006;border-radius:999px;padding:9px 13px;font-size:10px;font-weight:900;letter-spacing:.08em}.swipe-copy{padding:clamp(35px,6vw,80px);display:flex;flex-direction:column;justify-content:center}.swipe-hook{color:#b6ff2a;font-size:clamp(18px,2.3vw,34px);font-weight:950;line-height:1;letter-spacing:-.04em}.swipe-copy h1{font-size:clamp(35px,4vw,64px);line-height:.96;letter-spacing:-.055em;margin:18px 0}.swipe-copy>p:not(.swipe-hook){color:#aab1ac;font-size:17px;line-height:1.65}.swipe-meta{display:flex;gap:10px;margin:22px 0}.swipe-meta span{border:1px solid rgba(255,255,255,.13);border-radius:999px;padding:8px 11px;font-size:10px}.swipe-save{align-self:flex-start;background:transparent;border:0;color:#fff;padding:8px 0;font-weight:900;cursor:pointer}.swipe-save.saved{color:#b6ff2a}.swipe-controls{display:grid;grid-template-columns:1fr 1fr;gap:12px}.swipe-controls button{min-height:58px;border-radius:999px;border:1px solid rgba(255,255,255,.15);background:#0b100c;color:#fff;font-weight:950;letter-spacing:.12em;cursor:pointer}.swipe-controls .want{background:#b6ff2a;color:#071007;border-color:#b6ff2a}.swipe-hint{text-align:center;color:#68716b;font-size:11px;letter-spacing:.08em;margin-top:16px}.stash-shell{width:min(1180px,92vw);margin:0 auto;padding:80px 0}.stash-shell>h1{font-size:clamp(48px,8vw,112px);line-height:.82;letter-spacing:-.07em;margin:18px 0 24px}.stash-shell h1 em{font-style:normal;color:#b6ff2a}.stash-lede{color:#8e9791;margin-bottom:50px}.stash-grid{display:grid;gap:18px}.stash-card{display:grid;grid-template-columns:220px 1fr;background:#0a0e0b;border:1px solid rgba(255,255,255,.09);border-radius:25px;overflow:hidden}.stash-card>img{width:100%;height:100%;min-height:220px;object-fit:cover}.stash-card>div{padding:28px}.stash-card span{font-size:10px;color:#b6ff2a;text-transform:uppercase;letter-spacing:.13em}.stash-card p{font-size:12px;font-weight:900;letter-spacing:.08em;color:#89928c}.stash-card h2{font-size:28px;margin:9px 0 25px}.stash-card div div{display:flex;gap:12px}.stash-card button,.stash-card a,.empty-stash a{border:1px solid rgba(255,255,255,.14);border-radius:999px;padding:11px 15px;background:transparent;color:#fff;text-decoration:none;font-weight:800;font-size:11px;cursor:pointer}.stash-card a,.empty-stash a{background:#b6ff2a;color:#071007;border-color:#b6ff2a}.empty-stash{text-align:center;padding:100px 20px;border:1px dashed rgba(255,255,255,.15);border-radius:28px}.empty-stash>span{font-size:50px;color:#b6ff2a}.empty-stash h2{font-size:42px;margin:15px}.empty-stash p{color:#8e9791;margin-bottom:28px}
@media(max-width:760px){.detail-split{grid-template-columns:1fr}.detail-actions{align-items:stretch;flex-direction:column}.detail-actions>*{width:100%;text-align:center}.swipe-header{height:68px}.swipe-header img{width:120px}.swipe-header>div{gap:12px}.swipe-card{grid-template-columns:1fr;min-height:0;border-radius:24px}.swipe-image{min-height:48vh}.swipe-copy{padding:28px}.swipe-copy h1{font-size:38px}.swipe-controls button{min-height:52px}.stash-shell{padding:55px 0}.stash-card{grid-template-columns:1fr}.stash-card>img{height:280px}.stash-card div div{flex-wrap:wrap}}


/* === Discovery polish v3: compact swipe + universal heart stash === */
.card-save,
.stash-button,
.swipe-save {
  display:inline-grid;
  place-items:center;
  width:38px;
  height:38px;
  min-width:38px;
  padding:0;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.22);
  background:rgba(5,8,6,.72);
  color:#fff;
  font:700 22px/1 system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  letter-spacing:0;
  cursor:pointer;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
  box-shadow:0 8px 24px rgba(0,0,0,.22);
  transition:transform .18s ease,background .18s ease,color .18s ease,border-color .18s ease,box-shadow .18s ease;
}
.card-save{right:13px;top:13px;bottom:auto;z-index:5;}
.card-save:hover,.stash-button:hover,.swipe-save:hover{transform:scale(1.09);border-color:rgba(182,255,42,.5)}
.card-save.saved,.stash-button.saved,.swipe-save.saved{
  color:#b6ff2a;
  background:rgba(8,16,8,.88);
  border-color:rgba(182,255,42,.55);
  box-shadow:0 0 0 5px rgba(182,255,42,.07),0 8px 24px rgba(0,0,0,.26);
  animation:scrollprise-heart-pop .32s cubic-bezier(.2,.9,.35,1.35);
}
@keyframes scrollprise-heart-pop{0%{transform:scale(.72)}55%{transform:scale(1.22)}100%{transform:scale(1)}}
.detail-actions{display:flex;gap:12px;align-items:center}.detail-actions .stash-button{flex:0 0 42px;width:42px;height:42px}.detail-actions .amazon-button{flex:1}

/* Keep the swipe experience immersive without letting the card dominate the viewport. */
.swipe-shell{width:min(960px,90vw);padding:22px 0 38px}
.swipe-card{min-height:490px;max-height:calc(100vh - 215px);margin:16px 0 18px;grid-template-columns:1fr .92fr;border-radius:26px}
.swipe-image{min-height:490px}
.swipe-copy{padding:clamp(30px,4vw,52px)}
.swipe-copy h1{font-size:clamp(32px,3.5vw,52px);margin:14px 0}
.swipe-hook{font-size:clamp(17px,2vw,27px)}
.swipe-copy>p:not(.swipe-hook){font-size:15px;line-height:1.55}
.swipe-meta{margin:17px 0 0}
.swipe-image .swipe-save{position:absolute;right:18px;top:18px;z-index:4;width:42px;height:42px;font-size:23px}
.swipe-controls{width:min(620px,100%);margin:0 auto;gap:10px}
.swipe-controls button{min-height:50px}
.swipe-hint{margin-top:12px}

@media(max-width:760px){
  .card-save{width:36px;height:36px;min-width:36px;font-size:20px;right:10px;top:10px}
  .detail-actions{flex-direction:row;align-items:center}.detail-actions>*{width:auto}.detail-actions .amazon-button{width:auto;flex:1;text-align:center}.detail-actions .stash-button{width:42px;min-width:42px}
  .swipe-shell{width:min(94vw,560px);padding:14px 0 28px}
  .swipe-card{min-height:0;max-height:none;margin:12px 0 14px;border-radius:22px}
  .swipe-image{min-height:clamp(280px,43vh,390px)}
  .swipe-copy{padding:22px 23px 24px}
  .swipe-copy h1{font-size:32px}
  .swipe-image .swipe-save{right:13px;top:13px;width:40px;height:40px}
  .swipe-controls button{min-height:48px}
}


/* === Swipe-mode typography tagline === */
.swipe-tagline{
  display:flex;align-items:baseline;justify-content:center;flex-wrap:wrap;gap:.28em;
  margin:4px auto 18px;text-align:center;line-height:.9;
}
.swipe-tagline-nah{
  font-family:Arial,Helvetica,sans-serif;font-size:clamp(13px,1.25vw,17px);font-weight:900;
  letter-spacing:.14em;color:#7d8780;text-transform:uppercase;
}
.swipe-tagline-wait{
  font-family:Georgia,"Times New Roman",serif;font-size:clamp(27px,3.2vw,44px);font-weight:700;
  font-style:italic;letter-spacing:-.055em;color:#f4f5f1;position:relative;
}
.swipe-tagline-wait::after{content:"✦";font-family:Arial,Helvetica,sans-serif;font-size:.34em;font-style:normal;color:#b6ff2a;position:absolute;right:-1.25em;top:-.15em;animation:sparklePulse 2s ease-in-out infinite}
@media(max-width:760px){.swipe-tagline{margin:2px 22px 14px;gap:.2em}.swipe-tagline-nah{font-size:11px}.swipe-tagline-wait{font-size:clamp(24px,8vw,34px)}.swipe-tagline-wait::after{right:-.9em}}
\n/* === Scrollprise Fun Pack === */\n.swipe-tagline{display:flex;justify-content:center;align-items:baseline;gap:.45rem;flex-wrap:wrap;margin:0 auto 12px;text-align:center}.swipe-tagline span{font:600 clamp(.8rem,1.2vw,1rem)/1.2 Inter,Arial,sans-serif;letter-spacing:.06em;color:#aeb5ae}.swipe-tagline em{font:italic 700 clamp(1.25rem,2.3vw,2rem)/1 Georgia,serif;color:#f4f3ec}.swipe-tagline b{color:#b6ff2a;font-size:.8rem}.fun-zone{padding:6rem 0}.mood-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin:2rem 0 4rem}.mood-grid button{min-height:132px;text-align:left;border:1px solid rgba(255,255,255,.1);border-radius:20px;background:rgba(255,255,255,.035);color:#f6f5ef;padding:20px;font-size:1.4rem;transition:.25s}.mood-grid button:hover{transform:translateY(-4px);border-color:rgba(182,255,42,.4);background:rgba(182,255,42,.055)}.mood-grid strong,.mood-grid span{display:block}.mood-grid strong{font-size:1rem;margin:.7rem 0 .3rem}.mood-grid span{font-size:.78rem;color:#929a92}.lab-callout{border:1px solid rgba(255,255,255,.1);border-radius:28px;padding:clamp(24px,4vw,48px);background:radial-gradient(circle at 80% 20%,rgba(182,255,42,.08),transparent 30%),#080b09;margin:2rem 0}.lab-callout{display:flex;align-items:center;justify-content:space-between;gap:24px}.brand-loader{position:fixed;inset:0;z-index:99999;display:grid;place-items:center;background:#050706;transition:opacity .35s,visibility .35s}.brand-loader.gone{opacity:0;visibility:hidden}.brand-loader div{text-align:center}.brand-loader span{color:#b6ff2a;font-size:2rem;display:block;animation:loaderSpin 1s linear infinite}.brand-loader p{font-family:Georgia,serif;font-style:italic;color:#e8e8df}.reaction-strip{display:flex;gap:8px;align-items:center;flex-wrap:wrap;margin-top:18px}.reaction-strip button{border:1px solid rgba(255,255,255,.12);background:#0d110e;color:#dfe4dc;border-radius:999px;padding:8px 12px;cursor:pointer}.reaction-strip button.voted{border-color:#b6ff2a;color:#b6ff2a}.reaction-status{font-size:.72rem;color:#899188}.share-row{margin-top:12px}.share-product{border:0;background:none;color:#b6ff2a;cursor:pointer;padding:0;font:inherit}.curiosity-meter{position:fixed;right:18px;bottom:18px;z-index:60;width:190px;padding:12px 14px;border:1px solid rgba(255,255,255,.1);border-radius:14px;background:rgba(5,8,6,.9);backdrop-filter:blur(12px);font-size:.65rem;letter-spacing:.08em;text-transform:uppercase}.curiosity-meter i{display:block;height:3px;background:#1b211c;margin-top:7px;border-radius:3px;overflow:hidden}.curiosity-meter i:after{content:'';display:block;width:var(--curiosity,0%);height:100%;background:#b6ff2a;transition:.2s}@keyframes loaderSpin{to{transform:rotate(360deg)}}@media(max-width:760px){.mood-grid{grid-template-columns:1fr 1fr}.lab-callout{align-items:flex-start;flex-direction:column}.curiosity-meter{width:150px;right:10px;bottom:10px}.fun-zone{padding:3.5rem 0}}\n\n\n/* === Scrollprise 2026-08-08: contact + mobile swipe + compact catalogue === */
.mobile-swipe-link{display:none;align-items:center;gap:6px;padding:9px 13px;border:1px solid rgba(182,255,42,.35);border-radius:999px;background:rgba(182,255,42,.07);color:var(--neon);font-size:10px;font-weight:900;letter-spacing:.04em;white-space:nowrap}.mobile-swipe-link span{font-size:9px}

/* Catalogue cards: browseable, not detail-page sized */
.product-grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:14px}
.product-card{border-radius:19px}
.card-media{width:calc(100% - 16px);margin:8px 8px 0;aspect-ratio:1.28;border-radius:14px}
.card-media img{width:88%;height:88%}
.card-copy{padding:15px 15px 14px}
.card-copy h3{margin:7px 0 6px;font-size:16px;line-height:1.16}
.card-copy>p{min-height:0;margin:7px 0 0;font-size:11.5px;line-height:1.48;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.card-hook{margin:0 0 8px!important;font-size:8px!important;letter-spacing:.9px}
.card-topline{gap:8px}.card-category,.card-brand{font-size:7.5px;letter-spacing:.85px}
.best-for{padding:9px 0;margin-top:10px}.best-for span{font-size:7px}.best-for strong{font-size:10.5px;line-height:1.35}
.card-actions{gap:6px;margin-top:11px}.details-button,.amazon-button{min-height:37px;border-radius:9px;font-size:8.5px;padding:0 8px}
.card-badge{top:10px;left:10px;padding:6px 8px;font-size:7px}.card-save{right:10px!important;top:10px!important;bottom:auto!important;width:34px!important;height:34px!important}

/* Keep floating controls visually separate */
.floating-surprise{bottom:118px;right:22px}
.curiosity-meter{bottom:18px;right:18px}

/* Contact */
.contact-section{padding:110px 0 90px;border-top:1px solid rgba(255,255,255,.07)}
.contact-shell{display:grid;grid-template-columns:.9fr 1.1fr;gap:clamp(35px,7vw,90px);align-items:start}
.contact-copy h2{margin:14px 0 22px;font-size:clamp(46px,6vw,78px);line-height:.88;letter-spacing:-.055em}
.contact-copy h2 em{font-family:Georgia,serif;font-weight:400;color:var(--neon)}
.contact-copy p{max-width:460px;color:var(--muted);font-size:15px}
.contact-form{padding:clamp(22px,3vw,34px);border-radius:24px;display:grid;grid-template-columns:1fr 1fr;gap:15px}
.contact-form label{display:grid;gap:7px}.contact-form label span{font-size:8px;font-weight:900;letter-spacing:.14em;text-transform:uppercase;color:#8e9890}
.contact-form input,.contact-form textarea{width:100%;border:1px solid rgba(255,255,255,.11);border-radius:13px;background:rgba(3,6,4,.55);color:#fff;padding:13px 14px;outline:none;resize:vertical}
.contact-form input:focus,.contact-form textarea:focus{border-color:rgba(182,255,42,.48);box-shadow:0 0 0 3px rgba(182,255,42,.06)}
.contact-message,.contact-form button,.contact-form small{grid-column:1/-1}.contact-form button{border:0;cursor:pointer}.contact-form small{color:#737c75;font-size:9px;text-align:center}

@media(max-width:1279px){.product-grid{grid-template-columns:repeat(3,minmax(0,1fr))}}
@media(max-width:900px){.product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}.contact-shell{grid-template-columns:1fr}.contact-section{padding:80px 0 70px}}
@media(max-width:700px){
  .mobile-swipe-link{display:inline-flex;margin-left:auto}
  .header-button{display:none}
  .header-row{gap:10px}
  .brand-image{width:132px}.brand-image img{height:40px}
  .product-grid{grid-template-columns:1fr;gap:12px}
  .product-card{max-width:430px;width:100%;margin-inline:auto}
  .card-media{aspect-ratio:1.48}
  .card-copy{padding:14px}.card-copy h3{font-size:17px}.card-copy>p{font-size:12px}
  .floating-surprise{right:10px;bottom:96px;min-height:42px;padding:0 13px}
  .curiosity-meter{right:10px;bottom:10px;width:145px}
  .contact-section{padding:68px 0 56px}.contact-copy h2{font-size:49px}.contact-form{grid-template-columns:1fr;padding:20px}.contact-message,.contact-form button,.contact-form small{grid-column:auto}
}

/* === Scrollprise 2026-08-08: navigation + compact discovery corrections === */
.mobile-swipe-link { display: none !important; }
@media (max-width: 700px) {
  .main-nav { display: none !important; }
  .mobile-swipe-link { display: inline-flex !important; margin-left: auto; }
}

@media (max-width: 1100px) {
  .discovery-hub { padding-top: 18px; padding-bottom: 58px; }
  .discovery-intro { margin-bottom: 28px; }
  .discovery-family { margin-bottom: 34px; }
  .discovery-heading { margin-bottom: 14px; }
  .discovery-heading h2 { font-size: clamp(25px, 3.5vw, 36px); letter-spacing: -1.6px; }
  .discovery-heading p { font-size: 12px; line-height: 1.45; }
  .discovery-grid { gap: 10px; }
  .discovery-card { padding: 16px; border-radius: 18px; }
  .discovery-card h3 { margin: 12px 0 7px; font-size: 19px; letter-spacing: -.65px; }
  .discovery-card p {
    min-height: 0;
    margin: 0;
    font-size: 11.5px;
    line-height: 1.48;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .matched-products { gap: 5px; margin-top: 9px; max-height: 38px; overflow: hidden; }
  .matched-products span { padding: 5px 7px; font-size: 7.5px; }
  .discovery-card-open { margin-top: 11px; font-size: 8.5px; }
}

@media (max-width: 700px) {
  .discovery-hub { padding: 16px 0 44px; overflow: hidden; }
  .discovery-intro { margin-bottom: 24px; }
  .discovery-intro p { margin-top: 10px; font-size: 13px; line-height: 1.5; }
  .discovery-family { margin-bottom: 30px; }
  .discovery-heading { margin-bottom: 12px; }
  .discovery-heading h2 { margin-top: 5px; font-size: 25px; line-height: 1; letter-spacing: -1.25px; }
  .discovery-heading p { margin-top: 8px; font-size: 11px; max-width: 38ch; }
  .discovery-grid {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 310px);
    gap: 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    padding: 2px 2px 11px;
  }
  .discovery-grid::-webkit-scrollbar { display: none; }
  .discovery-card {
    scroll-snap-align: start;
    min-height: 0;
    padding: 15px;
    border-radius: 17px;
  }
  .discovery-card:hover { transform: none; }
  .discovery-card h3 { margin: 11px 0 6px; font-size: 18px; }
  .discovery-card p { -webkit-line-clamp: 2; font-size: 11px; }
  .matched-products { display: none; }
  .discovery-card-open { margin-top: 12px; }
}
