/* ============ tombkn — light iOS glass theme ============ */

:root {
  --bg: #f5f5f7;
  --text: #1d1d1f;
  --text-2: rgba(29, 29, 31, 0.62);
  --text-3: rgba(29, 29, 31, 0.42);
  --glass: rgba(255, 255, 255, 0.58);
  --glass-strong: rgba(255, 255, 255, 0.78);
  --stroke: rgba(29, 29, 31, 0.08);
  --shadow: 0 12px 40px rgba(29, 29, 31, 0.08);
  --shadow-hover: 0 20px 56px rgba(29, 29, 31, 0.14);
  --accent: #0071e3;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  /* category tints (light theme) */
  --cat-camera: #2563c9;
  --cat-lighting: #c2620e;
  --cat-desk: #a37b00;
  --cat-audio: #1e7e43;
  --cat-drones: #6d3fc4;
  --cat-furniture: #8a5a3c;
  --cat-office: #55606e;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

::selection { background: rgba(0, 113, 227, 0.18); }

/* ---------- ambient background ---------- */
.bg { position: fixed; inset: 0; z-index: -1; overflow: hidden; background: var(--bg); }
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  animation: drift 26s ease-in-out infinite alternate;
}
.blob-1 { width: 52vw; height: 52vw; top: -18vw; left: -10vw; background: radial-gradient(circle, #c7dcff, transparent 70%); }
.blob-2 { width: 44vw; height: 44vw; top: 24vh; right: -14vw; background: radial-gradient(circle, #e6d4ff, transparent 70%); animation-delay: -9s; }
.blob-3 { width: 38vw; height: 38vw; bottom: -8vw; left: 24vw; background: radial-gradient(circle, #ffe3cc, transparent 70%); animation-delay: -17s; }
@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(4vw, 3vh) scale(1.07); }
}

/* pointer-follow glow (home hero) */
.glow {
  position: fixed;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 40, 0.16), transparent 65%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.4s;
}

/* ---------- glass primitive ---------- */
.glass {
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

/* ---------- header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: var(--glass-strong);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom-color: var(--stroke);
}
.header-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand {
  font-weight: 700; font-size: 17px; letter-spacing: -0.02em;
  color: var(--text); text-decoration: none;
  display: inline-flex; align-items: center; gap: 10px;
}
.brand-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.14);
}
.site-nav {
  display: flex; gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border: 1px solid var(--stroke);
}
.site-nav a {
  color: var(--text-2); text-decoration: none;
  font-size: 13.5px; font-weight: 500;
  padding: 7px 15px; border-radius: 999px;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}
.site-nav a:hover { color: var(--text); }
.site-nav a.active {
  color: var(--text);
  background: #fff;
  box-shadow: 0 2px 10px rgba(29, 29, 31, 0.1);
  font-weight: 600;
}

/* ---------- layout ---------- */
main { max-width: 1080px; margin: 0 auto; padding: 0 24px; width: 100%; flex: 1; }

.page-head { padding: 140px 0 40px; }
.page-head h1 {
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700; letter-spacing: -0.03em;
}
.page-head p { color: var(--text-2); margin-top: 10px; font-size: 17px; max-width: 52ch; }

.section { padding: 48px 0; }
.section-label {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 14px;
}
.section-row {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 22px;
}
.section-row h2 { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.text-link {
  color: var(--accent); text-decoration: none;
  font-size: 14px; font-weight: 500;
}
.text-link:hover { text-decoration: underline; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- hero (home) ---------- */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  padding: 108px 0 20px;
  position: relative;
}
.hero-hello {
  display: inline-block;
  font-size: 15px; font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.01em;
}
.hero-name {
  margin-top: 6px;
  font-size: clamp(52px, 8vw, 92px);
  font-weight: 800; letter-spacing: -0.045em;
  line-height: 1.02;
  background: linear-gradient(100deg, #1d1d1f 0%, #1d1d1f 38%, #ff7a28 50%, #6d3fc4 60%, #1d1d1f 72%, #1d1d1f 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: sheen 8s linear infinite;
}
@keyframes sheen {
  from { background-position: 130% 0; }
  to { background-position: -130% 0; }
}
.hero-tagline {
  margin-top: 14px;
  color: var(--text-2);
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 500;
  max-width: 38ch;
  line-height: 1.5;
}
.hero-actions { margin-top: 30px; display: flex; gap: 12px; flex-wrap: wrap; }

/* photo card + floating chips */
.hero-right { position: relative; justify-self: center; }
.hero-photo {
  width: min(330px, 72vw);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  padding: 10px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
  will-change: transform;
}
.hero-photo:hover { box-shadow: var(--shadow-hover); }
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-lg) - 10px);
  display: block;
}
.hero-photo-fallback {
  width: 100%; height: 100%;
  border-radius: calc(var(--radius-lg) - 10px);
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; font-weight: 700; color: #fff;
  background: linear-gradient(140deg, #ffb26e, #6d3fc4);
}
.float-chip {
  position: absolute;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13.5px; font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  pointer-events: none;
  will-change: transform;
  animation: hover-bob 5s ease-in-out infinite;
}
.float-chip:nth-of-type(2) { animation-delay: -1.6s; }
.float-chip:nth-of-type(3) { animation-delay: -3.2s; }
@keyframes hover-bob {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}

/* marquee strip */
.hero-marquee {
  border-block: 1px solid var(--stroke);
  padding: 13px 0;
  overflow: hidden;
  margin: 26px -24px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
}
.marquee-track span {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-3);
  padding-right: 8px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 15px; font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--text); color: #fff; box-shadow: 0 8px 24px rgba(29, 29, 31, 0.22); }
.btn-primary:hover { box-shadow: 0 12px 32px rgba(29, 29, 31, 0.28); }
.btn-glass { color: var(--text); }
.hero-socials { margin-top: 26px; display: flex; gap: 8px; }
.social-dot {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text);
  transition: transform 0.2s, background 0.2s;
}
.social-dot:hover { transform: translateY(-3px) scale(1.05); background: #fff; }
.social-dot svg { width: 17px; height: 17px; fill: currentColor; }


/* ---------- product cards ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
}
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none; color: var(--text);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
  transform-style: preserve-3d;
  will-change: transform;
  display: flex; flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow-hover); }
.product-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9e9ee;
}
.product-media img, .product-media svg {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.product-card:hover .product-media img,
.product-card:hover .product-media svg { transform: scale(1.04); }
.product-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.product-body h3 { font-size: 17px; font-weight: 650; letter-spacing: -0.01em; }
.product-body p { color: var(--text-2); font-size: 14px; line-height: 1.5; flex: 1; }
.product-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 12px; }
.price { font-weight: 600; font-size: 14px; color: var(--text); }
.cta { color: var(--accent); font-weight: 600; font-size: 14px; }

/* ---------- gear ---------- */
.gear-toolbar {
  display: flex; flex-direction: column; gap: 18px;
  margin-bottom: 28px;
}
.filter-block { display: flex; flex-direction: column; gap: 10px; }
.filter-label {
  font-size: 12px; font-weight: 650;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-3);
}
.gear-search {
  flex: none;
  width: min(320px, 100%);
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  font-family: inherit; font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.gear-search::placeholder { color: var(--text-3); }
.gear-search:focus { border-color: rgba(0, 113, 227, 0.5); box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.1); }

.gear-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 31, 0.14);
  background: #fff;
  color: var(--text);
  font-family: inherit; font-size: 13.5px; font-weight: 550;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(29, 29, 31, 0.06);
  transition: all 0.2s;
}
.filter-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(29, 29, 31, 0.12);
  border-color: rgba(29, 29, 31, 0.24);
}
.chip-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.filter-chip.active .chip-dot { background: #fff !important; }
.filter-chip.active {
  background: var(--text); color: #fff;
  border-color: transparent; font-weight: 600;
}
.filter-chip .count { opacity: 0.55; margin-left: 4px; font-size: 12px; }

.gear-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
}
.gear-card {
  border-radius: var(--radius-md);
  padding: 20px;
  text-decoration: none; color: var(--text);
  display: flex; flex-direction: column; gap: 10px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, background 0.25s;
  animation: rise 0.4s ease both;
}
.gear-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); background: var(--glass-strong); }
@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.gear-media {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  margin: -6px -6px 4px;
}
.gear-media img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.gear-card:hover .gear-media img { transform: scale(1.06); }
.gear-media-placeholder {
  background: color-mix(in srgb, var(--tag) 8%, #fff);
}
.gear-media-placeholder span {
  font-size: 40px; font-weight: 700;
  color: color-mix(in srgb, var(--tag) 55%, #fff);
}
.gear-tag {
  align-self: flex-start;
  font-size: 10.5px; font-weight: 650;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: color-mix(in srgb, var(--tag) 10%, #fff);
  color: var(--tag);
  border: 1px solid color-mix(in srgb, var(--tag) 22%, transparent);
}
.gear-card h3 { font-size: 15.5px; font-weight: 620; letter-spacing: -0.01em; line-height: 1.35; }
.gear-card p { color: var(--text-3); font-size: 13px; line-height: 1.5; flex: 1; }
.gear-link { color: var(--text-2); font-size: 13px; font-weight: 500; transition: color 0.2s; }
.gear-card:hover .gear-link { color: var(--accent); }
.gear-empty {
  grid-column: 1 / -1;
  text-align: center; padding: 60px 0;
  color: var(--text-3); font-size: 15px;
}

/* home gear strip */
.gear-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(230px, 1fr);
  gap: 14px;
  overflow-x: auto;
  padding: 4px 4px 18px;
  scrollbar-width: none;
}
.gear-strip::-webkit-scrollbar { display: none; }

/* ---------- about ---------- */
.about-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 28px;
  align-items: start;
}
.about-photo-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-photo-card img { width: 100%; display: block; aspect-ratio: 4 / 5; object-fit: cover; }
.about-photo-fallback {
  width: 100%; aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px; font-weight: 700; color: #fff;
  background: linear-gradient(140deg, #6aa9ff, #b48cff);
}
.about-body { display: flex; flex-direction: column; gap: 18px; }
.about-card { border-radius: var(--radius-lg); padding: 28px; }
.about-card h2 { font-size: 20px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 12px; }
.about-card p { color: var(--text-2); font-size: 15.5px; line-height: 1.65; }
.about-card p + p { margin-top: 12px; }
.about-card a { color: var(--accent); text-decoration: none; }
.about-card a:hover { text-decoration: underline; }
.social-list { display: flex; flex-direction: column; gap: 8px; }
.social-row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  text-decoration: none; color: var(--text);
  font-size: 14.5px; font-weight: 550;
  transition: transform 0.2s, background 0.2s, box-shadow 0.2s;
}
.social-row:hover { transform: translateX(4px); background: #fff; box-shadow: var(--shadow); }
.social-row svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.social-row .handle { margin-left: auto; color: var(--text-3); font-weight: 400; font-size: 13.5px; }

/* ---------- stats ticker (home) ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
}
.stat-card {
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
}
.stat-num { font-size: 30px; font-weight: 750; letter-spacing: -0.03em; }
.stat-label { color: var(--text-3); font-size: 13px; font-weight: 500; margin-top: 4px; }

/* follower cards */
.follower-card {
  text-decoration: none; color: var(--text);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s, background 0.25s;
}
.follower-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); background: var(--glass-strong); }
.follower-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
}
.follower-icon svg { width: 18px; height: 18px; fill: var(--text); }
.follower-card .stat-num {
  font-size: 34px;
  background: linear-gradient(100deg, #1d1d1f 0%, #1d1d1f 38%, #ff7a28 50%, #6d3fc4 60%, #1d1d1f 72%, #1d1d1f 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: sheen 8s linear infinite;
}

/* brand logo marquee */
.brands-section { padding-top: 8px; }
.brand-marquee {
  overflow: hidden;
  padding: 10px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.brand-track {
  display: inline-flex;
  align-items: center;
  gap: 64px;
  padding-right: 64px;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.brand-marquee:hover .brand-track { animation-play-state: paused; }
.brand-item { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-item img {
  height: 27px;
  max-width: 170px;
  object-fit: contain;
  filter: brightness(0);
  opacity: 0.6;
  transition: opacity 0.25s, transform 0.25s cubic-bezier(0.22, 1, 0.36, 1);
}
.brand-item img.brand-sq { height: 34px; }
.brand-item:hover img { opacity: 1; transform: scale(1.12); }
.brand-wordmark {
  font-size: 17px; font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--text);
  opacity: 0.6;
  white-space: nowrap;
}
@media (prefers-reduced-motion: reduce) {
  .brand-track { animation: none; flex-wrap: wrap; }
}

/* ---------- faroes LUT landing ---------- */
.faroes-hero {
  position: relative;
  margin-top: 96px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  box-shadow: var(--shadow-hover);
}
.faroes-hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.faroes-hero-content {
  position: relative;
  padding: clamp(28px, 5vw, 52px);
  width: 100%;
  background: linear-gradient(180deg, transparent, rgba(10, 16, 18, 0.62) 45%, rgba(10, 16, 18, 0.82));
  color: #fff;
}
.faroes-kicker {
  display: inline-block;
  font-size: 12px; font-weight: 650;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 16px;
}
.faroes-hero h1 {
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 800; letter-spacing: -0.035em;
  line-height: 1.05;
}
.faroes-hero p {
  margin-top: 12px;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(15px, 1.8vw, 17.5px);
  line-height: 1.55;
}
.faroes-hero .hero-actions { margin-top: 24px; }
.btn-light {
  background: #fff; color: #1d1d1f;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.btn-dark-glass {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn-dark-glass:hover { background: rgba(255, 255, 255, 0.24); }
.faroes-meta {
  margin-top: 20px;
  display: flex; flex-wrap: wrap; gap: 8px 22px;
  font-size: 13px; font-weight: 550;
  color: rgba(255, 255, 255, 0.75);
}

.look-intro { color: var(--text-2); font-size: 16px; max-width: 56ch; margin: -8px 0 22px; }
.look-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
}
.look-card {
  border-radius: var(--radius-md);
  padding: 24px;
}
.look-swatch {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
  color: var(--text-3); font-size: 14px;
}
.look-swatch i {
  width: 30px; height: 30px;
  border-radius: 10px;
  display: inline-block;
  box-shadow: inset 0 0 0 1px rgba(29, 29, 31, 0.08);
}
.look-card h3 { font-size: 16px; font-weight: 650; margin-bottom: 6px; }
.look-card p { color: var(--text-2); font-size: 13.5px; line-height: 1.55; }

.ba-slider {
  --pos: 50%;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
  padding: 0;
}
.ba-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after {
  position: absolute; inset: 0;
  clip-path: inset(0 0 0 var(--pos));
}
.ba-handle {
  position: absolute; top: 0; bottom: 0;
  left: var(--pos);
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(-1px);
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.35);
}
.ba-grip {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #1d1d1f;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s;
}
.ba-slider.dragging .ba-grip { transform: translate(-50%, -50%) scale(1.12); }
.ba-label {
  position: absolute; bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  backdrop-filter: blur(8px);
  pointer-events: none;
}
.ba-label-before { left: 14px; }
.ba-label-after { right: 14px; }
.ba-hint {
  text-align: center;
  color: var(--text-3);
  font-size: 13px; font-weight: 500;
  margin: 14px 0 26px;
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 700px) {
  .ba-grid { grid-template-columns: 1fr; }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.feature-card {
  border-radius: var(--radius-md);
  padding: 24px;
}
.feature-emoji { font-size: 26px; display: block; margin-bottom: 12px; }
.feature-card h3 { font-size: 16px; font-weight: 650; margin-bottom: 6px; }
.feature-card p { color: var(--text-2); font-size: 13.5px; line-height: 1.55; }

.buy-card {
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex; gap: 32px;
  align-items: center; justify-content: space-between;
  flex-wrap: wrap;
}
.buy-info h2 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 12px; }
.buy-action { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.buy-price { font-size: 28px; font-weight: 750; letter-spacing: -0.02em; }
.buy-big { padding: 14px 34px; font-size: 16px; }

/* ---------- newsletter ---------- */
.nl-head { max-width: 620px; }
.nl-kicker {
  display: inline-block;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--text-2);
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  margin-bottom: 14px;
}
.nl-subscribe {
  margin-top: 26px;
  display: flex; gap: 8px;
  padding: 8px;
  border-radius: 999px;
}
.nl-input {
  flex: 1;
  border: none; outline: none;
  background: transparent;
  font-family: inherit; font-size: 15px;
  color: var(--text);
  padding: 10px 16px;
  min-width: 0;
}
.nl-input::placeholder { color: var(--text-3); }
.nl-btn { flex-shrink: 0; }
.nl-note { display: inline-block; margin-top: 12px; font-size: 12.5px; color: var(--text-3); }

.issues-list {
  display: flex; flex-direction: column;
  gap: 18px;
  max-width: 720px;
}
.issue-card {
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.25s;
}
.issue-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.issue-meta {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 10px;
}
.issue-date {
  font-size: 12px; font-weight: 650;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-3);
}
.issue-card h3 { font-size: 19px; font-weight: 680; letter-spacing: -0.015em; }
.issue-bullets { margin: 14px 0 0; padding: 0; list-style: none; }
.issue-bullets li {
  position: relative;
  padding: 5px 0 5px 26px;
  color: var(--text-2);
  font-size: 14.5px; line-height: 1.55;
}
.issue-bullets li::before {
  content: "";
  position: absolute; left: 4px; top: 13px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: linear-gradient(140deg, #ff7a28, #6d3fc4);
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--stroke);
  margin-top: 64px;
}
.footer-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 28px 24px;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-3); font-size: 13px;
}
.footer-inner a { color: var(--text-2); text-decoration: none; margin-left: 18px; }
.footer-inner a:hover { color: var(--text); }

/* staggered hero entrance */
.hero-left > .reveal:nth-child(1) { transition-delay: 0.05s; }
.hero-left > .reveal:nth-child(2) { transition-delay: 0.12s; }
.hero-left > .reveal:nth-child(3) { transition-delay: 0.19s; }
.hero-left > .reveal:nth-child(4) { transition-delay: 0.26s; }
.hero-left > .reveal:nth-child(5) { transition-delay: 0.33s; }
.hero-right.reveal { transition-delay: 0.2s; }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #ff7a28, #6d3fc4);
  z-index: 200;
  pointer-events: none;
}

/* ---------- mode toggle ---------- */
.mode-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--stroke);
  background: var(--glass);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  color: var(--text);
  font-size: 17px; line-height: 1;
  cursor: pointer;
  margin-left: 10px;
  flex-shrink: 0;
  transition: transform 0.2s, background 0.2s;
}
.mode-toggle:hover { transform: rotate(180deg) scale(1.08); background: var(--glass-strong); }
.header-inner { gap: 10px; }
.site-nav { margin-left: auto; }

/* ---------- black & white mode ---------- */
html.mono {
  --bg: #0a0a0b;
  --text: rgba(255, 255, 255, 0.95);
  --text-2: rgba(255, 255, 255, 0.62);
  --text-3: rgba(255, 255, 255, 0.4);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(28, 28, 30, 0.85);
  --stroke: rgba(255, 255, 255, 0.13);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  --shadow-hover: 0 20px 56px rgba(0, 0, 0, 0.65);
  --accent: #ffffff;
  --cat-camera: #cfcfd4; --cat-lighting: #cfcfd4; --cat-desk: #cfcfd4;
  --cat-audio: #cfcfd4; --cat-drones: #cfcfd4; --cat-furniture: #cfcfd4; --cat-office: #cfcfd4;
}
html.mono .blob-1 { background: radial-gradient(circle, #2a2a2e, transparent 70%); }
html.mono .blob-2 { background: radial-gradient(circle, #232326, transparent 70%); }
html.mono .blob-3 { background: radial-gradient(circle, #303034, transparent 70%); }
html.mono .glow { background: radial-gradient(circle, rgba(255, 255, 255, 0.07), transparent 65%); }
/* photos keep their colour in b&w mode — only UI and logos go mono */
html.mono .brand-item img { filter: brightness(0) invert(1); }
html.mono .follower-icon { background: #fff; }
html.mono .follower-icon svg { fill: #0a0a0b; }
html.mono .look-swatch i,
html.mono .chip-dot { filter: grayscale(1); }
html.mono .hero-name,
html.mono .follower-card .stat-num {
  background: linear-gradient(100deg, #fff 0%, #fff 38%, #6e6e73 50%, #d6d6d9 60%, #fff 72%, #fff 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}
html.mono .brand-dot { background: #fff; box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16); }
html.mono .site-nav a.active { background: #fff; color: #0a0a0b; }
html.mono .btn-primary { background: #fff; color: #0a0a0b; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5); }
html.mono .filter-chip { background: #161618; border-color: rgba(255, 255, 255, 0.15); box-shadow: none; }
html.mono .filter-chip.active { background: #fff; color: #0a0a0b; }
html.mono .filter-chip.active .chip-dot { background: #0a0a0b !important; filter: none; }
html.mono .gear-media,
html.mono .product-media { background: #e9e9ec; }
html.mono .social-dot:hover,
html.mono .social-row:hover,
html.mono .filter-chip:hover { background: #202023; }
html.mono .gear-search:focus { border-color: rgba(255, 255, 255, 0.5); box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08); }
html.mono .issue-bullets li::before { background: #fff; }
html.mono .scroll-progress { background: #fff; }
html.mono .text-link,
html.mono .about-card a,
html.mono .about-text a { color: #fff; text-decoration: underline; }
html.mono .cta { color: #fff; }
html.mono .price { color: var(--text); }
html.mono .hero-photo-fallback,
html.mono .about-photo-fallback { background: linear-gradient(140deg, #3a3a3e, #77777d); }
html.mono ::selection { background: rgba(255, 255, 255, 0.25); }

/* ---------- responsive ---------- */
@media (max-width: 760px) {
  .about-layout { grid-template-columns: 1fr; }
  .hero { grid-template-columns: 1fr; gap: 36px; min-height: auto; padding-top: 96px; text-align: center; }
  .hero-tagline { margin-inline: auto; }
  .hero-actions, .hero-socials { justify-content: center; }
  .float-chip { display: none; }
  .hero-marquee { margin-inline: -16px; }
  .page-head { padding: 116px 0 28px; }
  .header-inner { padding: 12px 16px; }
  .site-nav a { padding: 7px 11px; font-size: 12.5px; }
  .footer-inner { flex-direction: column; gap: 10px; }
  .nl-subscribe { flex-direction: column; border-radius: var(--radius-md); }
  .nl-btn { width: 100%; justify-content: center; }
}
