/* ============================================================
   DeskDisplay — Premium Design System
   Board&Base | 2026
   ============================================================ */

/* ── Tokens ── */
:root {
  --bg:           #0a0c0f;
  --bg-1:         #0e1013;
  --surface:      #13161b;
  --surface-2:    #191d24;
  --accent:       #f0b35a;
  --accent-dim:   rgba(240, 179, 90, 0.12);
  --accent-glow:  rgba(240, 179, 90, 0.25);
  --cyan:         #38bdf8;
  --cyan-dim:     rgba(56, 189, 248, 0.10);
  --cyan-glow:    rgba(56, 189, 248, 0.20);
  --text:         #f0f2f7;
  --text-2:       #c8cdd8;
  --muted:        #6b7280;
  --border:       rgba(255, 255, 255, 0.07);
  --border-2:     rgba(255, 255, 255, 0.12);
  --green:        #22c55e;
  --red:          #ef4444;

  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

h1, h2, h3, h4, strong { line-height: 1.15; }

a { color: inherit; text-decoration: none; }

/* ── Typography Utilities ── */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 14px;
}

.eyebrow.accent { color: var(--accent); }
.eyebrow.cyan   { color: var(--cyan); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn.primary {
  background: var(--accent);
  color: #0e1013;
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--border-2);
  color: var(--text-2);
}

.btn.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn.ghost.cyan:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn.sm {
  padding: 10px 20px;
  font-size: 0.82rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 80px);
  height: 68px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 12, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease;
}

/* Hamburger button — hidden on desktop */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
}
.hamburger-btn:hover { background: rgba(255,255,255,0.06); }
.hamburger-btn span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, width 0.25s ease;
  transform-origin: center;
}
.hamburger-btn span:nth-child(3) { width: 65%; }
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { width: 100%; transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(13, 16, 19, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: 8px 0 16px;
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
}
.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  padding: 13px clamp(20px, 5vw, 80px);
  color: var(--text-2);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu-link:hover { color: var(--text); background: rgba(255,255,255,0.04); }
.mobile-menu-link.active { color: var(--accent); background: rgba(255,255,255,0.04); }
.mobile-menu-divider {
  height: 1px;
  background: var(--border);
  margin: 8px clamp(20px, 5vw, 80px);
}
.mobile-menu-cta {
  display: block;
  margin: 8px clamp(20px, 5vw, 80px) 0;
  padding: 12px 20px;
  background: var(--accent);
  color: #0a0c0f;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  border-radius: 10px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.mobile-menu-cta:hover { opacity: 0.9; }

.nav-logo {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-logo-mark svg {
  display: block;
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-page-link {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 8px;
  transition: color 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  gap: 7px;
}

.nav-page-link:hover, .nav-page-link.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.nav-page-link svg { opacity: 0.7; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Status Link */
.status-link {
  padding: 6px 13px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  color: var(--muted);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.status-link:hover {
  border-color: var(--amber);
  color: var(--amber);
}

/* Language Toggle */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 5px 10px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  transition: border-color 0.2s ease;
  color: var(--muted);
}

.lang-toggle:hover { border-color: var(--border-2); }

.lang-option { transition: color 0.15s ease; }
.lang-option.active { color: var(--accent); }

.lang-sep {
  color: var(--border-2);
  margin: 0 2px;
}

/* Nav CTA */
.nav-cta {
  color: var(--text);
  background: transparent;
  border: 1px solid var(--border-2);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.nav-cta:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* Nav icon link */
.nav-icon-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--muted);
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-icon-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

/* ============================================================
   TICKER STRIP
   ============================================================ */
.ticker-strip {
  position: relative;
  width: 100%;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

.ticker-strip::before,
.ticker-strip::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker-strip::before {
  left: 0;
  background: linear-gradient(to right, var(--surface), transparent);
}

.ticker-strip::after {
  right: 0;
  background: linear-gradient(to left, var(--surface), transparent);
}

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  will-change: transform;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 28px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-right: 1px solid var(--border);
}

.ticker-symbol {
  color: var(--muted);
  font-weight: 500;
}

.ticker-price { color: var(--text); }

.ticker-change.positive { color: var(--green); }
.ticker-change.negative { color: var(--red); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  padding-top: 68px; /* nav height */
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Background decoration */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(240, 179, 90, 0.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

/* Ticker is child of hero, before hero-body */
.hero > .ticker-strip {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.hero-body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: clamp(48px, 7vw, 96px) max(clamp(24px, 6vw, 96px), calc((100% - 1800px) / 2));
  position: relative;
  z-index: 1;
}

/* Left column */
.hero-left { display: flex; flex-direction: column; gap: 0; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid rgba(240, 179, 90, 0.3);
  background: var(--accent-dim);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
  width: fit-content;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse-green 2s ease-in-out infinite;
}

.hero-h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  line-height: 1.05;
  color: var(--text);
}

.hero-h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent) 0%, #ffda8a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--text-2);
  line-height: 1.75;
  margin: 0 0 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-meta-item strong {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.hero-meta-item span {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.hero-meta-sep {
  width: 1px;
  height: 36px;
  background: var(--border-2);
}

/* Right column — asymmetric gallery */
.hero-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
  align-items: start;
}

.hero-gallery-main {
  grid-column: 1 / -1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-2);
  position: relative;
  aspect-ratio: 16 / 10;
}

.hero-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-gallery-main:hover img { transform: scale(1.03); }

.hero-gallery-sub {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
}

.hero-gallery-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.hero-gallery-sub:hover img { transform: scale(1.04); }

/* Image overlay badge */
.hero-gallery-main::after {
  content: 'Made in NL';
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(10, 12, 15, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-2);
}

/* Hero touch callout */
.hero-touch-callout {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 11px 18px;
  background: var(--surface);
  border: 1px solid rgba(240, 179, 90, 0.25);
  border-radius: 14px;
  width: fit-content;
}

.htc-btns {
  display: flex;
  gap: 6px;
}

.htc-btn {
  width: 30px;
  height: 30px;
  background: var(--accent-dim);
  border: 1px solid rgba(240, 179, 90, 0.35);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.htc-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.htc-text strong {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text);
}

.htc-text span {
  font-size: 0.74rem;
  color: var(--muted);
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.section-wrap {
  padding: clamp(64px, 9vw, 120px) max(clamp(24px, 6vw, 96px), calc((100% - 1800px) / 2));
}

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-label-line {
  height: 1px;
  width: 40px;
  background: var(--accent);
  border-radius: 1px;
}

.section-h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  color: var(--text);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.8;
  max-width: 560px;
  margin: 0;
}

/* ============================================================
   FEATURES EDITORIAL SECTION
   ============================================================ */
.features-section {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 80px;
}

.features-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding-top: 20px;
}

.features-header-right p {
  color: var(--text-2);
  line-height: 1.8;
  margin: 0 0 24px;
  font-size: 1.02rem;
}

/* Feature rows — alternating editorial layout */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.feature-row:last-child { border-bottom: 1px solid var(--border); }

.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.feature-visual-icon {
  width: 96px;
  height: 96px;
  background: var(--accent-dim);
  border: 1px solid rgba(240, 179, 90, 0.2);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-visual:hover .feature-visual-icon {
  transform: scale(1.08);
  box-shadow: 0 0 40px var(--accent-glow);
}

.feature-visual-icon.cyan {
  background: var(--cyan-dim);
  border-color: rgba(56, 189, 248, 0.2);
  color: var(--cyan);
}

.feature-visual:hover .feature-visual-icon.cyan {
  box-shadow: 0 0 40px var(--cyan-glow);
}

.feature-copy { display: flex; flex-direction: column; gap: 0; }

.feature-number {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.feature-h3 {
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0 0 16px;
  color: var(--text);
}

.feature-p {
  color: var(--text-2);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0 0 28px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  padding: 5px 13px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid var(--border);
  color: var(--muted);
  letter-spacing: 0.05em;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.feature-tag:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================================
   SPECS SECTION
   ============================================================ */
.specs-section {
  background: var(--bg);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 56px;
}

.spec-block {
  background: var(--surface);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s ease;
  position: relative;
}

.spec-block:hover { background: var(--surface-2); }

.spec-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}

.spec-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.spec-desc {
  color: var(--text-2);
  font-size: 0.93rem;
  line-height: 1.7;
  margin: 0;
}

.spec-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.spec-pill {
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 500;
}

/* ============================================================
   BENTO CAROUSEL
   ============================================================ */
.bento-section {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bento-carousel {
  position: relative;
  margin-top: 56px;
  overflow: hidden;
}

/* Fade edge masks */
.bento-carousel::before,
.bento-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.bento-carousel::before {
  left: 0;
  background: linear-gradient(to right, color-mix(in srgb, var(--bg-1) 60%, transparent), transparent);
}

.bento-carousel::after {
  right: 0;
  background: linear-gradient(to left, color-mix(in srgb, var(--bg-1) 60%, transparent), transparent);
}

.bento-track {
  display: flex;
  gap: 12px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.bento-slide {
  flex: 0 0 calc((100% - 24px) / 3);
  min-height: 240px;
}

.bento-cell {
  height: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.25s ease, transform 0.25s ease;
  cursor: default;
  position: relative;
}

.bento-cell:hover {
  border-color: var(--border-2);
  transform: translateY(-3px);
}

.bento-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bento-cell-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 14px;
  background: linear-gradient(to top, rgba(10, 12, 15, 0.9) 0%, transparent 100%);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.05em;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.bento-cell:hover .bento-cell-label { opacity: 1; }

/* CTA cell */
.bento-cell.bento-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--surface-2);
  padding: 24px;
  text-align: center;
  border: 1px dashed var(--border-2);
}

.bento-cell.bento-cta .eyebrow { margin: 0; font-size: 0.68rem; }

.bento-cta-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

/* Carousel navigation */
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-2);
  background: var(--surface);
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
}

.carousel-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.carousel-dot {
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: var(--border-2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-dot.active {
  background: var(--accent);
  width: 22px;
}

/* ============================================================
   INFOWIDGET SPOTLIGHT
   ============================================================ */
.spotlight-section {
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}

.spotlight-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 64px 0;
  border-top: 1px solid var(--border);
}

.spotlight-card:last-child { border-bottom: 1px solid var(--border); }

.spotlight-card.reverse { direction: rtl; }
.spotlight-card.reverse > * { direction: ltr; }

.spotlight-visual {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-2);
  background: var(--surface);
  aspect-ratio: 2 / 1;
}

.spotlight-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.spotlight-visual:hover img { transform: scale(1.04); }

/* Market carousel (inside spotlight-visual) */
.market-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.market-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: market-cycle 9s infinite;
}

.market-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.market-slide:nth-child(1) { animation-delay: 0s; }
.market-slide:nth-child(2) { animation-delay: 3s; }
.market-slide:nth-child(3) { animation-delay: 6s; }

@keyframes market-cycle {
  0%   { opacity: 1; }
  28%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}

/* Label pills at bottom of market carousel */
.market-labels {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.market-labels span {
  padding: 4px 10px;
  background: rgba(10, 12, 15, 0.75);
  backdrop-filter: blur(6px);
  border: 1px solid var(--border-2);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.06em;
}

.spotlight-num {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.spotlight-copy h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.015em;
  color: var(--text);
}

.spotlight-copy > p {
  color: var(--text-2);
  line-height: 1.8;
  font-size: 1rem;
  margin: 0 0 24px;
}

.spotlight-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spotlight-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.5;
}

.spotlight-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 6px;
}

/* Touch button indicator badge */
.touch-indicator {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.touch-btns {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.touch-btn {
  width: 26px;
  height: 26px;
  background: var(--surface-2);
  border: 1px solid var(--border-2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.touch-btn.cyan { color: var(--cyan); border-color: rgba(56, 189, 248, 0.3); }

.touch-desc {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.touch-desc strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
}

.touch-desc span {
  font-size: 0.77rem;
  color: var(--muted);
}

/* Volume bar demo (Spotify) */
.volume-bar-demo {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  margin-left: 4px;
}

.volume-bar-demo span {
  width: 4px;
  background: var(--cyan);
  border-radius: 2px;
  opacity: 0.75;
}

/* ============================================================
   ABOUT / CRAFTSMANSHIP SECTION
   ============================================================ */
.about-section { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-copy { display: flex; flex-direction: column; gap: 0; }

.about-copy p {
  color: var(--text-2);
  line-height: 1.85;
  font-size: 1.03rem;
  margin: 0 0 32px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.about-stat:hover {
  border-color: var(--border-2);
  background: var(--surface-2);
}

.about-stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.about-stat-value.accent { color: var(--accent); }
.about-stat-value.cyan   { color: var(--cyan); }

.about-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

.about-visual {
  position: relative;
}

.about-image-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-2);
}

.about-img-main img {
  width: 100%;
  height: auto;
  display: block;
}


/* ============================================================
   FOOTER CTA SECTION
   ============================================================ */
.footer {
  background: #06080a;
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.footer-cta-section {
  padding: clamp(64px, 8vw, 100px) clamp(24px, 6vw, 96px) 48px;
  position: relative;
  z-index: 2;
  text-align: center;
}

.footer-cta-section .eyebrow { margin-bottom: 20px; }

.footer-h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  color: var(--text);
}

.footer-lead {
  color: var(--text-2);
  font-size: 1.05rem;
  margin: 0 auto 36px;
  max-width: 480px;
  line-height: 1.75;
}

.footer-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 72px;
}

.footer-links-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 24px clamp(24px, 6vw, 96px);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

.footer-copy {
  font-size: 0.82rem;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  gap: 20px;
}

.footer-nav a {
  font-size: 0.82rem;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-nav a:hover { color: var(--text); }

/* ── Cubes / bar animation ── */
.cubes-container {
  position: relative;
  width: 100%;
  height: 260px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.8) 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.8) 70%, transparent 100%);
}

.footer-cubes { pointer-events: auto; }

.cubes-scene {
  --bar-size: 26px;
  --bar-gap: 4px;
  --green: #00ff88;
  --green-dim: rgba(0, 255, 136, 0.15);
  --red: #ff4444;
  --red-dim: rgba(255, 68, 68, 0.15);

  display: grid;
  grid-template-columns: repeat(var(--grid-cols), var(--bar-size));
  gap: var(--bar-gap);
  align-items: flex-end;
  perspective: 1000px;
  transform: rotateX(18deg) rotateY(-8deg);
  transform-style: preserve-3d;
  pointer-events: auto;
}

.cube.bar {
  width: var(--bar-size);
  height: 20px;
  background: linear-gradient(180deg, var(--green-dim) 0%, rgba(0, 255, 136, 0.03) 100%);
  border: 1px solid rgba(0, 255, 136, 0.25);
  border-radius: 3px 3px 0 0;
  transition: height 0.18s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              background 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease;
  transform-style: preserve-3d;
  position: relative;
}

.cube.bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(0, 255, 136, 0.45);
  border-radius: 3px 3px 0 0;
  transition: background 0.35s ease;
}

.cube.bar::after {
  content: '';
  position: absolute;
  top: 0;
  right: -5px;
  width: 5px;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 255, 136, 0.03) 100%);
  transform: skewY(-45deg);
  transform-origin: top left;
  transition: background 0.35s ease;
}

.cube.bar.positive {
  background: linear-gradient(180deg, rgba(0, 255, 136, 0.45) 0%, rgba(0, 255, 136, 0.08) 100%);
  border-color: rgba(0, 255, 136, 0.55);
  box-shadow: 0 0 18px rgba(0, 255, 136, 0.25);
}

.cube.bar.positive::before { background: rgba(0, 255, 136, 0.85); }
.cube.bar.positive::after  { background: linear-gradient(90deg, rgba(0, 255, 136, 0.22) 0%, rgba(0, 255, 136, 0.07) 100%); }

.cube.bar.negative {
  background: linear-gradient(180deg, rgba(255, 68, 68, 0.45) 0%, rgba(255, 68, 68, 0.08) 100%);
  border-color: rgba(255, 68, 68, 0.55);
  box-shadow: 0 0 18px rgba(255, 68, 68, 0.25);
}

.cube.bar.negative::before { background: rgba(255, 68, 68, 0.85); }
.cube.bar.negative::after  { background: linear-gradient(90deg, rgba(255, 68, 68, 0.22) 0%, rgba(255, 68, 68, 0.07) 100%); }

/* ============================================================
   INNER PAGES — SHARED HEADER
   ============================================================ */
.inner-header {
  padding: calc(68px + 56px) clamp(24px, 6vw, 96px) 64px;
  background: radial-gradient(ellipse at top left, rgba(240, 179, 90, 0.06), transparent 55%);
  border-bottom: 1px solid var(--border);
}

.inner-hero { max-width: 640px; }

.inner-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 12px 0 16px;
}

.inner-hero p {
  color: var(--text-2);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
}

/* ============================================================
   UPDATES PAGE
   ============================================================ */
.updates-main {
  padding: 56px clamp(24px, 6vw, 96px) 80px;
}

.timeline {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.update-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 32px;
  transition: border-color 0.2s ease;
}

.update-card:hover { border-color: var(--border-2); }

.update-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.update-date {
  color: var(--muted);
  font-size: 0.83rem;
}

.update-tag {
  padding: 3px 11px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.update-tag.fix {
  background: rgba(239, 68, 68, 0.12);
  color: var(--red);
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.update-tag.feature {
  background: rgba(34, 197, 94, 0.12);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.update-tag.improvement {
  background: rgba(56, 189, 248, 0.12);
  color: var(--cyan);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.update-card h2 {
  font-size: 1.2rem;
  margin: 0 0 12px;
}

.update-card p {
  color: var(--text-2);
  margin: 0 0 18px;
  line-height: 1.75;
  font-size: 0.95rem;
}

.update-details {
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
}

.detail-label {
  color: var(--muted);
  margin-right: 6px;
  font-weight: 600;
}

/* ============================================================
   WIDGETS PAGE
   ============================================================ */
.widgets-main {
  padding: 56px clamp(24px, 6vw, 96px) 80px;
}

.widgets-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.widget-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.widget-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 179, 90, 0.25);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.widget-card img {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
  display: block;
}

.widget-info {
  padding: 22px 24px 26px;
}

.widget-info h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  font-weight: 700;
}

.widget-info p {
  color: var(--text-2);
  font-size: 0.88rem;
  margin: 0;
  line-height: 1.65;
}

/* ============================================================
   DOCS PAGE
   ============================================================ */
.docs-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  height: 56px;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 12, 15, 0.92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
  flex-shrink: 0;
}

.docs-topbar .logo {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.05em;
  flex: 1;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
}

.hamburger:hover { border-color: var(--accent); }

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
}

@media (min-width: 900px) {
  .hamburger { display: none; }
}

.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 99;
  backdrop-filter: blur(3px);
}

.sidebar-overlay.visible { display: block; }

.docs-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100vh;
  background: var(--surface);
  border-right: 1px solid var(--border);
  padding: 20px 16px 32px;
  overflow-y: auto;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.docs-sidebar.open { transform: translateX(0); }

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.sidebar-brand {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text);
  text-decoration: none;
}

.sidebar-close {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  color: var(--muted);
  padding: 0;
  font-size: 1rem;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.sidebar-close:hover { color: var(--text); border-color: rgba(255,255,255,0.2); }

@media (min-width: 900px) {
  .sidebar-close { display: none; }
}

.sidebar-section-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  padding: 0 8px;
  margin: 12px 0 4px;
  font-weight: 600;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-nav li a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s ease, background 0.15s ease;
}

.sidebar-nav li a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.sidebar-nav li a.active {
  color: var(--accent);
  background: rgba(240, 179, 90, 0.1);
}

@media (min-width: 900px) {
  body.docs-body { flex-direction: row; }

  .docs-sidebar {
    position: sticky;
    top: 0;
    transform: none;
    width: 240px;
    flex-shrink: 0;
    height: 100vh;
    background: transparent;
    border-right: 1px solid var(--border);
    padding-top: 32px;
  }

  .sidebar-overlay { display: none !important; }
  .docs-main { flex: 1; min-width: 0; }
}

.docs-main {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.docs-content {
  flex: 1;
  padding: 32px 20px 64px;
  max-width: 780px;
}

@media (min-width: 900px) {
  .docs-content { padding: 48px 40px 80px 56px; }
}

.doc-page { display: none; }
.doc-page.active { display: block; }

.doc-page h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin: 0 0 8px;
  font-weight: 700;
}

.doc-page .doc-description {
  color: var(--text-2);
  font-size: 1.05rem;
  margin: 0 0 40px;
  line-height: 1.75;
}

.doc-section { margin-bottom: 48px; }

.doc-section h2 {
  font-size: 1.3rem;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.doc-section p {
  color: var(--text-2);
  line-height: 1.8;
  margin: 0 0 14px;
  font-size: 0.95rem;
}

.doc-section p:last-child { margin-bottom: 0; }

.doc-note {
  color: var(--muted);
  font-size: 0.875rem;
  font-style: italic;
  margin-top: 12px;
}

.code-block {
  background: #06080a;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: 'Courier New', monospace;
  font-size: 0.875rem;
  color: #86efac;
  margin: 12px 0;
  overflow-x: auto;
}

.doc-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

.docs-footer {
  padding: 24px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

@media (min-width: 900px) {
  .docs-footer { padding: 24px 56px; }
}

.docs-footer p { color: var(--muted); font-size: 0.85rem; margin: 0; }
.docs-footer-links { display: flex; gap: 12px; }

/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .hero-body {
    grid-template-columns: 1fr;
    padding: 48px clamp(24px, 6vw, 64px);
    gap: 48px;
  }

  .hero-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .hero-gallery-main {
    grid-column: 1 / -1;
  }

  .features-header { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0;
  }

  .feature-row.reverse { direction: ltr; }

  .specs-grid { grid-template-columns: 1fr; }
  .spec-block { padding: 32px 28px; }

  .bento-slide {
    flex: 0 0 calc((100% - 12px) / 2);
  }

  .spotlight-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0;
  }

  .spotlight-card.reverse { direction: ltr; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }


  .nav-center { display: none; }

  .hamburger-btn { display: flex; }
  .mobile-menu { display: flex; }
  .nav-cta { display: none; }

  .hero { padding-top: 68px; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  .hero-h1 { font-size: 2.5rem; }

  .hero-gallery { grid-template-columns: 1fr; }
  .hero-gallery-sub:last-child { display: none; }

  .hero-meta { gap: 14px; }
  .hero-meta-item strong { font-size: 1.2rem; }

  .bento-slide {
    flex: 0 0 82%;
    min-height: unset;
    aspect-ratio: 2 / 1;
  }

  .bento-cell {
    aspect-ratio: 2 / 1;
  }

  .bento-cell img {
    object-fit: contain;
  }

  .bento-carousel::before,
  .bento-carousel::after { width: 28px; }

  .about-stats { grid-template-columns: 1fr 1fr; }

  .nav-right .status-link { display: none; }
  .nav-right .nav-icon-link { display: none; }

  .cubes-container { height: 180px; }

  .cubes-scene {
    --bar-size: 18px;
    --bar-gap: 2px;
    transform: rotateX(10deg) rotateY(-5deg);
  }

  .footer-links-row { flex-direction: column; gap: 12px; text-align: center; }
  .footer-nav { flex-wrap: wrap; justify-content: center; }
}
