/* ============================================================
   OfferQuestHub — Global Stylesheet
   Premium light theme: ivory / emerald / brass
   Library-first: Bootstrap 5.3 + AOS + FontAwesome
   ============================================================ */

:root {
  --oq-ivory: #f6f3ec;
  --oq-cream: #fbf9f3;
  --oq-paper: #fffdf8;
  --oq-ink: #14201b;
  --oq-ink-soft: #47564f;
  --oq-emerald: #0e5c49;
  --oq-emerald-deep: #0a3d31;
  --oq-brass: #c9a24b;
  --oq-brass-soft: #e7d3a1;
  --oq-dark: #10221c;
  --oq-dark-2: #0b1814;
  --oq-line: rgba(20, 32, 27, 0.14);
  --oq-line-strong: rgba(20, 32, 27, 0.32);
  --oq-line-light: rgba(246, 243, 236, 0.22);
  --oq-shadow: 0 24px 60px -30px rgba(16, 34, 28, 0.35);
  --oq-radius: 18px;
  --oq-font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --oq-font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --oq-font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
}

/* ---------- Base ---------- */
html { scroll-behavior: smooth; overflow-x: hidden;}

body {
  background-color: var(--oq-ivory);
  color: var(--oq-ink);
  font-family: var(--oq-font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .h-display, .display-hero {
  font-family: var(--oq-font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--oq-ink);
}

.font-mono { font-family: var(--oq-font-mono) !important; }
.font-display { font-family: var(--oq-font-display) !important; }

.text-brass { color: var(--oq-brass) !important; }
.text-emerald { color: var(--oq-emerald) !important; }
.text-ink-soft { color: var(--oq-ink-soft) !important; }
.bg-ivory { background-color: var(--oq-ivory) !important; }
.bg-cream { background-color: var(--oq-cream) !important; }
.bg-paper { background-color: var(--oq-paper) !important; }
.bg-emerald { background-color: var(--oq-emerald) !important; }
.bg-dark-oq { background-color: var(--oq-dark) !important; }

a { color: var(--oq-emerald); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--oq-emerald-deep); }

::selection { background: var(--oq-brass); color: var(--oq-dark-2); }

.section { position: relative; padding: clamp(4rem, 9vw, 7.5rem) 0; }
.section-tight { position: relative; padding: clamp(3rem, 6vw, 5rem) 0; }
.section-dark { background-color: var(--oq-dark); color: rgba(246, 243, 236, 0.88); }
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--oq-ivory); }

.h-display { font-size: clamp(2rem, 4.2vw, 3.4rem); line-height: 1.08; }
.display-hero {
  font-size: clamp(2.6rem, 7.2vw, 6rem);
  line-height: 0.98;
  font-weight: 640;
}
.display-hero em, .h-display em {
  font-style: italic;
  font-weight: 420;
  color: var(--oq-emerald);
}
.section-dark .display-hero em, .section-dark .h-display em { color: var(--oq-brass-soft); }

.lead-ink { font-size: clamp(1.02rem, 1.4vw, 1.2rem); color: var(--oq-ink-soft); max-width: 46rem; }
.section-dark .lead-ink { color: rgba(246, 243, 236, 0.75); }

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--oq-font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oq-emerald);
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--oq-brass);
}
.section-dark .eyebrow { color: var(--oq-brass-soft); }

.index-tag {
  font-family: var(--oq-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--oq-ink-soft);
  border: 1px solid var(--oq-line-strong);
  border-radius: 999px;
  padding: 0.3rem 0.85rem;
  white-space: nowrap;
}
.section-dark .index-tag { color: rgba(246, 243, 236, 0.7); border-color: var(--oq-line-light); }

/* ---------- Buttons ---------- */
.btn { font-weight: 600; letter-spacing: 0.01em; }
.btn-brand {
  background: var(--oq-emerald);
  color: var(--oq-ivory);
  border: 1px solid var(--oq-emerald);
  padding: 0.62rem 1.4rem;
  transition: all 0.25s ease;
}
.btn-brand:hover, .btn-brand:focus {
  background: var(--oq-emerald-deep);
  color: var(--oq-ivory);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -14px rgba(14, 92, 73, 0.65);
}
.btn-brass {
  background: var(--oq-brass);
  color: var(--oq-dark-2);
  border: 1px solid var(--oq-brass);
  padding: 0.62rem 1.4rem;
  transition: all 0.25s ease;
}
.btn-brass:hover, .btn-brass:focus {
  background: #d9b566;
  color: var(--oq-dark-2);
  transform: translateY(-2px);
}
.btn-ghost-light {
  background: transparent;
  color: var(--oq-ivory);
  border: 1px solid var(--oq-line-light);
  padding: 0.62rem 1.4rem;
  transition: all 0.25s ease;
}
.btn-ghost-light:hover, .btn-ghost-light:focus {
  background: rgba(246, 243, 236, 0.12);
  color: var(--oq-ivory);
  border-color: rgba(246, 243, 236, 0.5);
}
.btn-ink {
  background: transparent;
  color: var(--oq-ink);
  border: 1px solid var(--oq-line-strong);
  padding: 0.62rem 1.4rem;
  transition: all 0.25s ease;
}
.btn-ink:hover, .btn-ink:focus { background: var(--oq-ink); color: var(--oq-ivory); border-color: var(--oq-ink); }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--oq-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.42rem 0.95rem;
  border: 1px solid var(--oq-line-strong);
  border-radius: 999px;
  color: var(--oq-ink-soft);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.chip:hover { border-color: var(--oq-emerald); color: var(--oq-emerald); }
.chip.active, .chip.chip-solid {
  background: var(--oq-emerald);
  border-color: var(--oq-emerald);
  color: var(--oq-ivory);
}
.chip.chip-brass { background: rgba(201, 162, 75, 0.14); border-color: rgba(201, 162, 75, 0.5); color: #8a6d2b; }
.chip.chip-glass { border-color: var(--oq-line-light); color: rgba(246, 243, 236, 0.85); }

/* ---------- Decorative elements ---------- */
.tick-corners { position: relative; }
.tick-corners::before, .tick-corners::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  pointer-events: none;
}
.tick-corners::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--oq-brass);
  border-left: 2px solid var(--oq-brass);
}
.tick-corners::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--oq-brass);
  border-right: 2px solid var(--oq-brass);
}

.ghost-word {
  font-family: var(--oq-font-display);
  font-weight: 700;
  font-size: clamp(4rem, 14vw, 12rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(20, 32, 27, 0.14);
  user-select: none;
  pointer-events: none;
}
.section-dark .ghost-word { -webkit-text-stroke: 1px rgba(246, 243, 236, 0.14); }

.stamp {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 118px;
  height: 118px;
  border: 2px dashed var(--oq-brass);
  border-radius: 50%;
  color: var(--oq-brass);
  font-family: var(--oq-font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: rotate(-8deg);
  line-height: 1.5;
  padding: 0.5rem;
}
.stamp .fa-solid, .stamp .fas { font-size: 1.15rem; margin-bottom: 0.3rem; }

.bg-grid {
  background-image:
    linear-gradient(rgba(20, 32, 27, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 32, 27, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
}
.bg-grid-dark {
  background-image:
    linear-gradient(rgba(246, 243, 236, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 243, 236, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}

.rule-brass { width: 64px; height: 3px; background: var(--oq-brass); border-radius: 2px; }

.dashed-v { border-left: 2px dashed var(--oq-line-strong); }
.dashed-h { border-top: 2px dashed var(--oq-line-strong); }
.section-dark .dashed-v { border-left-color: var(--oq-line-light); }
.section-dark .dashed-h { border-top-color: var(--oq-line-light); }

.img-frame {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--oq-radius);
  background: var(--oq-cream);
  box-shadow: var(--oq-shadow);
}
.img-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-frame-offset { position: relative; }
.img-frame-offset::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate(14px, 14px);
  border: 2px solid var(--oq-brass);
  border-radius: var(--oq-radius);
  z-index: -1;
}

/* ---------- Cards ---------- */
.card-quiet {
  background: var(--oq-paper);
  border: 1px solid var(--oq-line);
  border-radius: var(--oq-radius);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.card-quiet:hover {
  transform: translateY(-6px);
  box-shadow: var(--oq-shadow);
  border-color: rgba(201, 162, 75, 0.55);
}
.card-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(14, 92, 73, 0.1);
  color: var(--oq-emerald);
  font-size: 1.25rem;
}
.card-icon.brass { background: rgba(201, 162, 75, 0.16); color: #8a6d2b; }

.hover-link-card { display: block; color: inherit; text-decoration: none; }
.hover-link-card:hover { color: inherit; }
.hover-link-card .card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--oq-line-strong);
  color: var(--oq-ink);
  transition: all 0.25s ease;
}
.hover-link-card:hover .card-arrow {
  background: var(--oq-emerald);
  border-color: var(--oq-emerald);
  color: var(--oq-ivory);
  transform: rotate(45deg);
}

/* ---------- Topbar ---------- */
.topbar {
  background: var(--oq-dark);
  color: rgba(246, 243, 236, 0.82);
  font-size: 0.78rem;
  padding: 0.5rem 0;
}
.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem 1.4rem;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--oq-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.topbar-item i { color: var(--oq-brass); }
.topbar-item a { color: rgba(246, 243, 236, 0.92); text-decoration: none; }
.topbar-item a:hover { color: var(--oq-brass-soft); }
.topbar-brandline { color: var(--oq-brass-soft); }

.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #43d17c;
  display: inline-block;
  animation: oq-pulse 1.8s ease-in-out infinite;
}
@keyframes oq-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(67, 209, 124, 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(67, 209, 124, 0); }
}

/* ---------- Main nav ---------- */
.main-nav {
  background: rgba(246, 243, 236, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--oq-line);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.main-nav.is-scrolled { box-shadow: 0 18px 40px -28px rgba(16, 34, 28, 0.45); }
.brand-logo { border-radius: 10px; object-fit: cover; }
.brand-text {
  font-family: var(--oq-font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--oq-ink);
}
.brand-text em { font-style: italic; font-weight: 420; color: var(--oq-emerald); }
.main-nav .nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--oq-ink);
  padding: 0.45rem 0.95rem !important;
  border-radius: 999px;
  transition: all 0.2s ease;
}
.main-nav .nav-link:hover { color: var(--oq-emerald); }
.main-nav .nav-link.active {
  color: var(--oq-ivory);
  background: var(--oq-emerald);
}
.navbar-toggler {
  border: 1px solid var(--oq-line-strong);
  border-radius: 12px;
  padding: 0.45rem 0.7rem;
  color: var(--oq-ink);
}
.navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(14, 92, 73, 0.25); }

/* ---------- Hero ---------- */
.hero-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem 1.5rem;
  border: 1px solid var(--oq-line-light);
  border-radius: 14px;
  padding: 0.7rem 1.1rem;
  background: rgba(11, 24, 20, 0.45);
  backdrop-filter: blur(6px);
}
.hero-status .hs-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--oq-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.85);
}
.hero-status .hs-item i { color: var(--oq-brass-soft); }

.offline-strip {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.9rem;
  font-family: var(--oq-font-mono);
  font-size: clamp(0.68rem, 1.1vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oq-brass-soft);
  border: 1px solid rgba(201, 162, 75, 0.45);
  background: rgba(201, 162, 75, 0.1);
  border-radius: 999px;
  padding: 0.55rem 1.2rem;
}
.offline-strip .sep { opacity: 0.55; }

.hero-console {
  border-top: 1px solid var(--oq-line-light);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.audio-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  border: 1px solid var(--oq-line-light);
  border-radius: 999px;
  padding: 0.5rem 1.1rem 0.5rem 0.5rem;
  background: rgba(11, 24, 20, 0.5);
  color: rgba(246, 243, 236, 0.85);
  font-family: var(--oq-font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}
.audio-pill .play-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--oq-brass);
  color: var(--oq-dark-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.audio-pill .play-btn:hover { transform: scale(1.08); }
.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--oq-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.7);
}
.scroll-cue i { animation: oq-bob 1.6s ease-in-out infinite; color: var(--oq-brass-soft); }
@keyframes oq-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.hero-float-card {
  position: absolute;
  right: 4%;
  bottom: 12%;
  width: 250px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(246, 243, 236, 0.25);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8);
  background: var(--oq-dark-2);
}
.hero-float-card img { width: 100%; height: 170px; object-fit: cover; display: block; }
.hero-float-card .hfc-meta {
  padding: 0.7rem 0.9rem;
  font-family: var(--oq-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.75);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---------- Bento ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}
.bento-cell {
  border-radius: var(--oq-radius);
  border: 1px solid var(--oq-line);
  background: var(--oq-paper);
  padding: 1.6rem;
  position: relative;
  overflow: hidden;
}
.bento-a { grid-column: span 7; }
.bento-b { grid-column: span 5; }
.bento-c { grid-column: span 4; }
.bento-d { grid-column: span 4; }
.bento-e { grid-column: span 4; }
.bento-cover { padding: 0; min-height: 340px; display: flex; flex-direction: column; justify-content: flex-end; }
.bento-cover .bento-cover-body { padding: 1.6rem; position: relative; z-index: 2; }
.bento-cover .bento-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.bento-cover:hover .bento-bg { transform: scale(1.05); }

.terminal {
  background: var(--oq-dark-2);
  color: rgba(246, 243, 236, 0.85);
  border-radius: 14px;
  font-family: var(--oq-font-mono);
  font-size: 0.74rem;
  line-height: 1.9;
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(246, 243, 236, 0.12);
}
.terminal .t-head {
  display: flex; justify-content: space-between;
  color: var(--oq-brass-soft);
  border-bottom: 1px dashed rgba(246, 243, 236, 0.2);
  padding-bottom: 0.5rem; margin-bottom: 0.6rem;
  letter-spacing: 0.12em;
}
.terminal .t-ok { color: #43d17c; }
.terminal .t-warn { color: var(--oq-brass); }

/* ---------- Filmstrip ---------- */
.filmstrip {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: none;
}
.filmstrip::-webkit-scrollbar { display: none; }
.film-frame {
  flex: 0 0 min(78vw, 460px);
  scroll-snap-align: start;
  border-radius: var(--oq-radius);
  overflow: hidden;
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--oq-line);
  transition: transform 0.3s ease;
}
.film-frame:hover { transform: translateY(-6px); }
.film-frame .ff-body { position: relative; z-index: 2; padding: 1.4rem; color: var(--oq-ivory); }
.film-frame .ff-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.6s ease; }
.film-frame:hover .ff-bg { transform: scale(1.06); }
.film-frame .ff-meta {
  font-family: var(--oq-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oq-brass-soft);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}
.strip-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--oq-line);
  padding-top: 1.3rem;
}
.strip-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--oq-line-strong);
  background: transparent;
  color: var(--oq-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.strip-btn:hover { background: var(--oq-emerald); border-color: var(--oq-emerald); color: var(--oq-ivory); }
.drag-hint {
  font-family: var(--oq-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oq-ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

/* ---------- Accordion matrix ---------- */
.matrix-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--oq-line-strong);
}
.matrix-accordion .accordion-button {
  background: transparent;
  color: var(--oq-ink);
  box-shadow: none;
  padding: 1.5rem 0.5rem;
  font-family: var(--oq-font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.7rem);
  font-weight: 600;
  gap: 1.2rem;
}
.matrix-accordion .accordion-button:not(.collapsed) {
  background: transparent;
  color: var(--oq-emerald);
}
.matrix-accordion .accordion-button::after { display: none; }
.matrix-accordion .acc-index {
  font-family: var(--oq-font-mono);
  font-size: 0.8rem;
  color: var(--oq-brass);
  letter-spacing: 0.1em;
  min-width: 42px;
}
.matrix-accordion .acc-toggle-icon {
  margin-left: auto;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--oq-line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  flex: 0 0 auto;
}
.matrix-accordion .accordion-button:not(.collapsed) .acc-toggle-icon {
  background: var(--oq-emerald);
  border-color: var(--oq-emerald);
  color: var(--oq-ivory);
  transform: rotate(45deg);
}
.matrix-accordion .accordion-body { padding: 0 0.5rem 1.8rem 3.4rem; }
.acc-preview {
  width: 180px;
  height: 130px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--oq-line);
  box-shadow: var(--oq-shadow);
}
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-list .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  background: rgba(14, 92, 73, 0.08);
  color: var(--oq-emerald);
  border: 1px solid rgba(14, 92, 73, 0.18);
}
.tag-list .tag i { font-size: 0.68rem; }

/* ---------- Metrics ---------- */
.stat-num {
  font-family: var(--oq-font-mono);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--oq-ivory);
}
.stat-cell {
  border: 1px solid var(--oq-line-light);
  border-radius: var(--oq-radius);
  padding: 1.8rem 1.5rem;
  height: 100%;
  background: rgba(246, 243, 236, 0.03);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.stat-cell:hover { border-color: rgba(201, 162, 75, 0.5); background: rgba(246, 243, 236, 0.06); }
.stat-label {
  font-family: var(--oq-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.6);
}
.stat-delta { color: #43d17c; font-family: var(--oq-font-mono); font-size: 0.78rem; }

/* ---------- Process steps ---------- */
.step-deck { position: relative; }
.step-card {
  background: var(--oq-paper);
  border: 1px solid var(--oq-line);
  border-radius: var(--oq-radius);
  padding: 1.7rem 1.5rem;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.step-card:hover { transform: translateY(-6px); border-color: rgba(201, 162, 75, 0.6); }
.step-marker {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--oq-emerald);
  color: var(--oq-ivory);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}
.step-num {
  position: absolute;
  top: 1.1rem; right: 1.3rem;
  font-family: var(--oq-font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(20, 32, 27, 0.18);
  line-height: 1;
}
.step-meta {
  font-family: var(--oq-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oq-ink-soft);
}

/* ---------- Waveform testimonial ---------- */
.waveform {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 74px;
  flex: 1;
}
.wave-bar {
  width: 5px;
  border-radius: 3px;
  background: linear-gradient(180deg, var(--oq-brass-soft), var(--oq-brass));
  animation: oq-wave 1.4s ease-in-out infinite;
  animation-play-state: paused;
  transform: scaleY(0.35);
  transform-origin: center;
}
.waveform.is-playing .wave-bar { animation-play-state: running; }
@keyframes oq-wave {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}
.quote-mark { font-size: 2.6rem; color: var(--oq-brass); line-height: 1; }

/* ---------- Pricing tiers ---------- */
.billing-switch {
  display: inline-flex;
  border: 1px solid var(--oq-line-strong);
  border-radius: 999px;
  padding: 0.3rem;
  gap: 0.25rem;
  background: var(--oq-paper);
}
.billing-switch .chip { border: none; }
.tier-card {
  border: 1px solid var(--oq-line);
  border-radius: 22px;
  background: var(--oq-paper);
  padding: 2rem 1.7rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tier-card:hover { transform: translateY(-8px); box-shadow: var(--oq-shadow); }
.tier-featured {
  color: var(--oq-ivory);
  border-color: rgba(201, 162, 75, 0.6);
}
.tier-featured h3, .tier-featured .tier-price { color: var(--oq-ivory); }
.tier-featured .tier-perk { color: rgba(246, 243, 236, 0.82); }
.tier-price {
  font-family: var(--oq-font-mono);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--oq-emerald);
}
.tier-perk {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--oq-ink-soft);
}
.tier-perk i { color: var(--oq-brass); margin-top: 0.25rem; }
.tier-flag {
  position: absolute;
  top: 1.4rem; right: -2.4rem;
  transform: rotate(38deg);
  background: var(--oq-brass);
  color: var(--oq-dark-2);
  font-family: var(--oq-font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 3rem;
}

/* ---------- FAQ ---------- */
.faq-side {
  border-radius: 22px;
  padding: 2rem 1.7rem;
  color: var(--oq-ivory);
  position: relative;
  overflow: hidden;
}
.faq-side .form-control, .faq-side .form-control:focus {
  background: rgba(246, 243, 236, 0.1);
  border: 1px solid var(--oq-line-light);
  color: var(--oq-ivory);
}
.faq-side .form-control::placeholder { color: rgba(246, 243, 236, 0.5); }
.faq-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--oq-line);
}
.faq-accordion .accordion-button {
  background: transparent;
  color: var(--oq-ink);
  font-weight: 700;
  font-size: 1.02rem;
  padding: 1.3rem 0.25rem;
  box-shadow: none;
  gap: 1rem;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--oq-emerald); background: transparent; box-shadow: none; }
.faq-accordion .accordion-button::after { display: none; }
.faq-accordion .faq-plus {
  margin-left: auto;
  flex: 0 0 auto;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid var(--oq-line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  transition: all 0.3s ease;
}
.faq-accordion .accordion-button:not(.collapsed) .faq-plus {
  background: var(--oq-emerald);
  border-color: var(--oq-emerald);
  color: var(--oq-ivory);
  transform: rotate(45deg);
}
.faq-accordion .accordion-body { padding: 0 0.25rem 1.4rem 0.25rem; color: var(--oq-ink-soft); }

/* ---------- Map ---------- */
.map-frame {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--oq-line);
  box-shadow: var(--oq-shadow);
  position: relative;
}
.map-frame iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: saturate(0.85) contrast(1.02); }
.dock-card {
  background: var(--oq-paper);
  border: 1px solid var(--oq-line);
  border-radius: 16px;
  padding: 1.2rem 1.3rem;
  height: 100%;
}
.dock-card .dc-city {
  font-family: var(--oq-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--oq-brass);
}

/* ---------- Monolith CTA ---------- */
.monolith-title {
  font-family: var(--oq-font-display);
  font-weight: 700;
  font-size: clamp(3rem, 10vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--oq-ivory);
}
.monolith-title em { font-style: italic; font-weight: 400; color: var(--oq-brass); }
.magnet-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: var(--oq-brass);
  color: var(--oq-dark-2);
  font-weight: 700;
  font-size: 1.05rem;
  border: none;
  border-radius: 999px;
  padding: 1.05rem 2.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 24px 60px -22px rgba(201, 162, 75, 0.7);
}
.magnet-btn:hover { transform: translateY(-3px) scale(1.02); color: var(--oq-dark-2); box-shadow: 0 30px 70px -22px rgba(201, 162, 75, 0.85); }
.direct-card {
  border: 1px solid var(--oq-line-light);
  border-radius: 18px;
  padding: 1.3rem 1.5rem;
  background: rgba(11, 24, 20, 0.5);
  backdrop-filter: blur(6px);
}

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 1rem; right: 1rem; bottom: 1rem;
  z-index: 1080;
  max-width: 640px;
  margin: 0 auto;
  background: var(--oq-dark);
  color: rgba(246, 243, 236, 0.88);
  border: 1px solid rgba(201, 162, 75, 0.4);
  border-radius: 18px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cookie-banner.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.cookie-banner a { color: var(--oq-brass-soft); }

/* ---------- Inline form toast ---------- */
.form-toast {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  border-radius: 12px;
  padding: 0.85rem 1.05rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 1rem;
  animation: oq-toast-in 0.35s ease;
}
.form-toast.tone-success { background: rgba(67, 209, 124, 0.14); border: 1px solid rgba(67, 209, 124, 0.45); color: #1d7a4c; }
.form-toast.tone-warning { background: rgba(201, 162, 75, 0.14); border: 1px solid rgba(201, 162, 75, 0.5); color: #8a6d2b; }
.section-dark .form-toast.tone-success { color: #7fe3a8; }
.section-dark .form-toast.tone-warning { color: var(--oq-brass-soft); }
@keyframes oq-toast-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Forms ---------- */
.form-control, .form-select {
  border-radius: 12px;
  border: 1px solid var(--oq-line-strong);
  padding: 0.72rem 1rem;
  background: var(--oq-paper);
  color: var(--oq-ink);
}
.form-control:focus, .form-select:focus {
  border-color: var(--oq-emerald);
  box-shadow: 0 0 0 4px rgba(14, 92, 73, 0.14);
  background: var(--oq-paper);
  color: var(--oq-ink);
}
.form-label {
  font-family: var(--oq-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oq-ink-soft);
  margin-bottom: 0.45rem;
}
.section-dark .form-control, .section-dark .form-select {
  background: rgba(246, 243, 236, 0.07);
  border-color: var(--oq-line-light);
  color: var(--oq-ivory);
}
.section-dark .form-control::placeholder { color: rgba(246, 243, 236, 0.45); }
.section-dark .form-label { color: rgba(246, 243, 236, 0.65); }

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--oq-line);
  border-bottom: 1px solid var(--oq-line);
  padding: 0.9rem 0;
}
.marquee-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: oq-marquee 26s linear infinite;
}
.marquee-track span {
  font-family: var(--oq-font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oq-ink-soft);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}
.marquee-track i { color: var(--oq-brass); font-size: 0.6rem; }
@keyframes oq-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Timeline (about / legacy) ---------- */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before {
  content: "";
  position: absolute;
  left: 8px; top: 6px; bottom: 6px;
  border-left: 2px dashed var(--oq-line-strong);
}
.timeline-item { position: relative; padding-bottom: 2.4rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: calc(-2rem + 1px);
  top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--oq-ivory);
  border: 3px solid var(--oq-brass);
}
.timeline-year {
  font-family: var(--oq-font-mono);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--oq-emerald);
  letter-spacing: -0.02em;
}

/* ---------- Team ---------- */
.team-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--oq-line);
  background: var(--oq-dark);
}
.team-card img { width: 100%; height: 380px; object-fit: cover; display: block; filter: saturate(0.9); transition: transform 0.5s ease; }
.team-card:hover img { transform: scale(1.04); }
.team-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.2rem 1.3rem;
  background: linear-gradient(transparent, rgba(11, 24, 20, 0.92));
  color: var(--oq-ivory);
}
.team-socials {
  position: absolute;
  top: 1rem; right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
}
.team-card:hover .team-socials { opacity: 1; transform: translateX(0); }
.team-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(246, 243, 236, 0.92);
  color: var(--oq-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.2s ease;
}
.team-socials a:hover { background: var(--oq-brass); color: var(--oq-dark-2); }
.team-num {
  position: absolute;
  top: 1rem; left: 1rem;
  font-family: var(--oq-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: rgba(246, 243, 236, 0.85);
  background: rgba(11, 24, 20, 0.55);
  border: 1px solid rgba(246, 243, 236, 0.25);
  border-radius: 999px;
  padding: 0.25rem 0.75rem;
}

/* ---------- Dual-tone split ---------- */
.split-duo { display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; border-radius: 24px; overflow: hidden; border: 1px solid var(--oq-line); }
.duo-pane { padding: clamp(2rem, 5vw, 4rem); position: relative; display: flex; flex-direction: column; }
.duo-dark { background-color: var(--oq-dark-2); color: rgba(246, 243, 236, 0.85); }
.duo-dark h3 { color: var(--oq-ivory); }
.duo-light { background: var(--oq-paper); }
.duo-badge {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--oq-brass);
  color: var(--oq-dark-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--oq-font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 0 0 8px var(--oq-ivory);
  z-index: 3;
}
.duo-item { display: flex; align-items: flex-start; gap: 0.7rem; padding: 0.65rem 0; }
.duo-item i { margin-top: 0.2rem; }

/* ---------- Founder letter ---------- */
.drop-cap::first-letter {
  font-family: var(--oq-font-display);
  font-size: 3.6em;
  font-weight: 700;
  float: left;
  line-height: 0.82;
  padding-right: 0.12em;
  padding-top: 0.05em;
  color: var(--oq-emerald);
}
.signature-img { height: 74px; width: auto; filter: contrast(1.05); }

/* ---------- Legal pages ---------- */
.law-index {
  position: sticky;
  top: 110px;
  border-left: 2px solid var(--oq-line);
  padding-left: 1.2rem;
}
.law-index a {
  display: block;
  font-family: var(--oq-font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--oq-ink-soft);
  text-decoration: none;
  padding: 0.32rem 0;
  transition: color 0.2s ease;
}
.law-index a:hover { color: var(--oq-emerald); }
.law-block {
  border-top: 1px solid var(--oq-line);
  padding: 2.2rem 0;
}
.law-num {
  font-family: var(--oq-font-mono);
  font-size: 0.78rem;
  color: var(--oq-brass);
  letter-spacing: 0.18em;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--oq-dark-2); color: rgba(246, 243, 236, 0.78); }
.footer-disclaimer {
  background: rgba(201, 162, 75, 0.1);
  border-top: 1px solid rgba(201, 162, 75, 0.35);
  border-bottom: 1px solid rgba(201, 162, 75, 0.35);
  padding: 1rem 0;
  font-size: 0.88rem;
  color: rgba(246, 243, 236, 0.9);
}
.disclaimer-icon { color: var(--oq-brass); font-size: 1.2rem; margin-top: 0.2rem; }
.footer-main { padding: 4rem 0 0; position: relative; overflow: hidden; }
.footer-brand { text-decoration: none; }
.footer-brand .brand-text { color: var(--oq-ivory); }
.footer-brand .brand-text em { color: var(--oq-brass-soft); }
.footer-blurb { font-size: 0.92rem; max-width: 34rem; color: rgba(246, 243, 236, 0.66); }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--oq-line-light);
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  color: rgba(246, 243, 236, 0.75);
}
.footer-badge i { color: var(--oq-brass); }
.footer-title {
  font-family: var(--oq-font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oq-brass-soft);
  margin-bottom: 1.1rem;
}
.footer-menu li { margin-bottom: 0.55rem; }
.footer-menu a {
  color: rgba(246, 243, 236, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s ease;
}
.footer-menu a:hover { color: var(--oq-brass-soft); }
.footer-contacts li { display: flex; flex-direction: column; gap: 0.1rem; margin-bottom: 0.9rem; }
.footer-contact-label {
  font-family: var(--oq-font-mono);
  font-size: 0.64rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.5);
}
.footer-contact-label i { color: var(--oq-brass); margin-right: 0.35rem; }
.footer-contact-value { color: rgba(246, 243, 236, 0.92); font-size: 0.95rem; font-weight: 600; text-decoration: none; }
a.footer-contact-value:hover { color: var(--oq-brass-soft); }
.footer-legal li { font-size: 0.88rem; color: rgba(246, 243, 236, 0.66); }
.footer-legal li span { color: rgba(246, 243, 236, 0.45); }
.giant-word {
  font-family: var(--oq-font-display);
  font-weight: 800;
  font-size: clamp(3rem, 10.5vw, 10rem);
  line-height: 0.9;
  text-align: center;
  color: transparent;
  -webkit-text-stroke: 1px rgba(246, 243, 236, 0.13);
  letter-spacing: 0.02em;
  margin-top: 3rem;
  margin-bottom: -0.12em;
  user-select: none;
  white-space: nowrap;
}
.footer-bottom {
  border-top: 1px solid var(--oq-line-light);
  padding: 1.2rem 0;
  font-size: 0.82rem;
  color: rgba(246, 243, 236, 0.55);
  position: relative;
  background: rgba(11, 24, 20, 0.6);
}
.footer-bottom .font-mono { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; }
.footer-bottom i { color: var(--oq-brass); }

/* ---------- Service detail hero ---------- */
.spec-callout {
  background: var(--oq-paper);
  border: 1px solid var(--oq-line);
  border-radius: 16px;
  padding: 1.1rem 1.2rem;
  box-shadow: var(--oq-shadow);
}
.spec-callout .sc-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(201, 162, 75, 0.16);
  color: #8a6d2b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.price-bar {
  border: 1px solid var(--oq-line-light);
  background: rgba(11, 24, 20, 0.5);
  backdrop-filter: blur(6px);
  border-radius: 16px;
  padding: 1rem 1.4rem;
  color: var(--oq-ivory);
}
.price-bar .pb-price { font-family: var(--oq-font-mono); font-size: 1.7rem; font-weight: 700; color: var(--oq-brass-soft); }

/* ---------- Comparison table ---------- */
.compare-table { border-collapse: separate; border-spacing: 0; width: 100%; }
.compare-table th, .compare-table td {
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--oq-line);
  font-size: 0.92rem;
  vertical-align: middle;
}
.compare-table thead th {
  font-family: var(--oq-font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--oq-ink-soft);
  border-bottom: 2px solid var(--oq-line-strong);
}
.compare-table .col-us {
  background: rgba(14, 92, 73, 0.07);
  border-left: 1px solid rgba(14, 92, 73, 0.25);
  border-right: 1px solid rgba(14, 92, 73, 0.25);
}
.compare-table thead .col-us { color: var(--oq-emerald); border-bottom: 2px solid var(--oq-emerald); }
.compare-table td.col-us { font-weight: 700; color: var(--oq-emerald); }
.compare-table .dim { color: var(--oq-ink-soft); opacity: 0.75; }

/* ---------- Archive / gallery ---------- */
.masonry { columns: 3; column-gap: 1.25rem; }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1.25rem;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--oq-line);
  background: var(--oq-paper);
}
.masonry-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.05); }
.masonry-item .m-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 0.8rem 1rem;
  background: linear-gradient(transparent, rgba(11, 24, 20, 0.85));
  color: var(--oq-ivory);
  font-family: var(--oq-font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.masonry-item:hover .m-overlay { opacity: 1; }

/* ---------- Misc ---------- */
.avatar-ring {
  border-radius: 50%;
  border: 3px solid var(--oq-brass);
  object-fit: cover;
}
.divider-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--oq-font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oq-ink-soft);
}
.divider-label::before, .divider-label::after {
  content: "";
  height: 1px;
  flex: 1;
  background: var(--oq-line);
}
.section-dark .divider-label { color: rgba(246, 243, 236, 0.6); }
.section-dark .divider-label::before, .section-dark .divider-label::after { background: var(--oq-line-light); }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .bento-a, .bento-b, .bento-c, .bento-d, .bento-e { grid-column: span 12; }
  .hero-float-card { display: none; }
  .split-duo { grid-template-columns: 1fr; }
  .duo-badge {
    left: 50%; top: auto; bottom: -46px;
    transform: translateX(-50%);
  }
  .masonry { columns: 2; }
  .law-index { position: static; border-left: none; padding-left: 0; display: flex; flex-wrap: wrap; gap: 0.3rem 1.2rem; margin-bottom: 1rem; }
  .matrix-accordion .accordion-body { padding-left: 0.5rem; }
  .acc-preview { width: 100%; height: 180px; }
  .giant-word { white-space: normal; word-break: break-all; line-height: 1; }
}

@media (max-width: 575.98px) {
  .topbar-inner { justify-content: center; }
  .topbar-item { font-size: 0.64rem; }
  .masonry { columns: 1; }
  .film-frame { flex: 0 0 88vw; min-height: 320px; }
  .stat-num { font-size: 2.1rem; }
  .stat-cell { padding: 1.3rem 1.1rem; }
  .cookie-banner { left: 0.6rem; right: 0.6rem; bottom: 0.6rem; }
  .brand-text { font-size: 1.12rem; }
  .duo-badge { width: 78px; height: 78px; bottom: -39px; }
}
