:root {
  --bg: #050505;
  --bg-elevated: #0c0c0c;
  --fg: #f2f2f2;
  --fg-muted: #9a9a9a;
  --brand-red: #b0232b;
  --brand-gold: #ecc412;
  --brand-blue: #0d5c9d;
  --brand-green: #1c7f46;
  --accent: var(--brand-gold);
  --accent-dim: rgba(236, 196, 18, 0.14);
  --accent-pink: var(--brand-red);
  --line: rgba(236, 196, 18, 0.28);
  --header-h: 4rem;
  --font-body: "DM Sans", "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  --font-display: "Barlow", "Noto Sans TC", sans-serif;
  --font-headline: "Space Grotesk", "Noto Sans TC", sans-serif;
  --font-mode: "Bebas Neue", Impact, "Noto Sans TC", sans-serif;
}

@media (min-width: 768px) {
  :root { --header-h: 4.5rem; }
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: auto;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  background: #050505;
  color-scheme: dark;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  overflow-wrap: break-word;
  color-scheme: dark;
}

img,
video,
canvas,
svg { max-width: 100%; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: #fff; }

::selection {
  background: var(--accent);
  color: #000;
}

.font-mode {
  font-family: var(--font-mode);
  letter-spacing: 0.04em;
  line-height: 1.05;
  font-weight: 700;
}

.font-headline {
  font-family: var(--font-headline);
  font-weight: 600;
}

.font-display { font-family: var(--font-display); }

/* Mobile: max-w-6xl. Desktop: full-bleed (Node md:max-w-none). */
.wrap {
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: 30px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .wrap {
    max-width: none;
    padding-inline: 30px;
  }
  /* Reading pages stay boxed like Node */
  .wrap.faq-page { max-width: 72rem; }
  .wrap.legal-page,
  .wrap.news-article { max-width: 48rem; }
}

@media (min-width: 1024px) {
  .wrap { padding-inline: 30px; }
  .wrap.faq-page,
  .wrap.legal-page,
  .wrap.news-article { padding-inline: 30px; }
}

.site-main { flex: 1; padding-top: var(--header-h); }
.site-footer { margin-top: auto; }

/* -------------------------------------------------------------------------- */
/* Header                                                                     */
/* -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  border-bottom: 1px solid rgba(236, 196, 18, 0.16);
  background: rgba(5, 5, 5, 0.8);
  backdrop-filter: blur(12px);
}

.head-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4rem;
  padding: 0.5rem 30px;
  flex-wrap: nowrap;
}

.logo {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  height: 2.75rem;
  min-width: 0;
  max-width: calc(100% - 9.75rem);
  flex-shrink: 1;
}

.logo img {
  height: 100%;
  width: auto;
  max-height: 2.75rem;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
}

.nav-main { display: none; }

.nav-link {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(242, 242, 242, 0.85);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.nav-link:hover { color: var(--fg); text-decoration: none; }
.nav-link.is-active { color: var(--accent); }
.nav-caret { font-size: 1.125rem; line-height: 1; opacity: 0.8; }

.nav-drop { position: relative; }
.nav-drop-panel {
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 50;
  width: 11rem;
  transform: translateX(-50%);
  padding-top: 0.75rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
}

.nav-drop:hover .nav-drop-panel,
.nav-drop:focus-within .nav-drop-panel {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.nav-drop-panel a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  color: var(--fg-muted);
  background: rgba(12, 12, 12, 0.95);
  border-left: 1px solid rgba(236, 196, 18, 0.24);
  border-right: 1px solid rgba(236, 196, 18, 0.24);
}

.nav-drop-panel a:first-child {
  border-top: 1px solid rgba(236, 196, 18, 0.24);
  border-radius: 0.5rem 0.5rem 0 0;
}

.nav-drop-panel a:last-child {
  border-bottom: 1px solid rgba(236, 196, 18, 0.24);
  border-radius: 0 0 0.5rem 0.5rem;
}

.nav-drop-panel a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent);
  text-decoration: none;
}

.head-actions {
  position: relative;
  z-index: 10;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.lang-switch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  width: 6.5rem;
  height: 2rem;
  padding: 0.125rem;
  border: 1px solid rgba(236, 196, 18, 0.24);
  border-radius: 999px;
  background: rgba(12, 12, 12, 0.8);
}

.lang-pill {
  position: absolute;
  top: 0.125rem;
  bottom: 0.125rem;
  left: 0.125rem;
  width: calc(50% - 0.125rem);
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(236, 196, 18, 0.35);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-pill.is-zh { transform: translateX(100%); }

.lang-switch a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  border-radius: 999px;
  transition: color 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-switch a.is-on { color: #000; }
.lang-switch a:hover { text-decoration: none; color: var(--fg); }
.lang-switch a.is-on:hover { color: #000; }

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(236, 196, 18, 0.28);
  border-radius: 0.375rem;
  background: transparent;
  color: var(--fg-muted);
  cursor: pointer;
}

.nav-toggle.is-open,
.nav-toggle:hover { border-color: var(--accent); color: var(--accent); }

.hamburger,
.hamburger::before,
.hamburger::after {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}

.hamburger { position: relative; }
.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

.nav-toggle.is-open .hamburger { background: transparent; }
.nav-toggle.is-open .hamburger::before { top: 0; transform: rotate(45deg); }
.nav-toggle.is-open .hamburger::after { top: 0; transform: rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  border: 0;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.nav-mobile {
  display: none;
  position: absolute;
  right: 1.25rem;
  top: calc(100% + 0.5rem);
  z-index: 50;
  width: 14rem;
  padding: 1rem;
  border: 1px solid rgba(236, 196, 18, 0.24);
  border-radius: 0.5rem;
  background: rgba(12, 12, 12, 0.98);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.nav-mobile nav { display: flex; flex-direction: column; gap: 0.75rem; }
.nav-mobile .nav-link { font-size: 0.875rem; color: var(--fg-muted); }
.nav-mobile .nav-link.is-active { color: var(--accent); }

.nav-mobile-sub {
  margin-left: 0.75rem;
  padding-left: 0.75rem;
  border-left: 1px solid rgba(236, 196, 18, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-mobile-sub a {
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.nav-mobile-sub a:hover { color: var(--accent); text-decoration: none; }

body.nav-open .nav-overlay,
body.nav-open .nav-mobile { display: block; }

@media (min-width: 768px) {
  .head-row {
    min-height: 4.5rem;
    padding: 0.5rem 30px;
    gap: 1rem;
  }

  .logo {
    height: 3rem;
    max-width: min(70vw, 280px);
    flex-shrink: 0;
  }

  .logo img { max-height: 3rem; }

  /* Desktop nav only when JS confirms there is room */
  html.nav-desktop .nav-main {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.75rem;
  }

  html.nav-desktop .nav-toggle,
  html.nav-desktop .nav-overlay,
  html.nav-desktop .nav-mobile { display: none !important; }

  html:not(.nav-desktop) .nav-toggle { display: flex; }
}

@media (min-width: 1024px) {
  .head-row { padding-inline: 30px; }
}

/* -------------------------------------------------------------------------- */
/* Footer                                                                     */
/* -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid rgba(236, 196, 18, 0.16);
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.foot-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 30px;
}

.foot-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}

.foot-mark-link {
  display: inline-flex;
  height: 40px;
  flex-shrink: 0;
  align-items: center;
}

.foot-brands-title {
  margin: 0;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.foot-divider {
  display: none;
  width: 2px;
  height: 28px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.4);
}

.footer-logo {
  flex-shrink: 0;
  max-width: none;
  object-fit: contain;
}

.footer-logo--mark {
  height: 36px !important;
  width: auto !important;
  max-height: 40px !important;
  mix-blend-mode: screen;
}

.footer-logo--stagehero,
.footer-logo--aqualux {
  width: 96px !important;
  height: auto !important;
  max-height: none !important;
}

.footer-logo--amp {
  width: 80px !important;
  height: auto !important;
  max-height: none !important;
  mix-blend-mode: screen;
  filter: saturate(1.5) contrast(1.25);
}

.foot-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.foot-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.foot-legal a {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.foot-legal a:hover { color: var(--accent); text-decoration: none; }

.copy {
  margin: 0;
  color: var(--fg-muted);
  font-size: 0.75rem;
}

@media (min-width: 640px) {
  .foot-divider { display: block; }
  .footer-logo--stagehero,
  .footer-logo--aqualux { width: 112px !important; }
  .footer-logo--amp { width: 96px !important; }
}

@media (min-width: 768px) {
  .foot-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    gap: 1.5rem;
  }

  .foot-brands { gap: 1.5rem; }
  .footer-logo--mark { height: 40px !important; }
  .footer-logo--stagehero,
  .footer-logo--aqualux { width: 144px !important; }
  .footer-logo--amp { width: 123px !important; }

  .foot-meta {
    margin-left: auto;
    align-items: flex-end;
    max-width: min(100%, 28rem);
  }

  .foot-legal { justify-content: flex-end; }
  .copy { text-align: right; }
}

@media (min-width: 1024px) {
  .foot-row { padding-inline: 30px; }
}

/* -------------------------------------------------------------------------- */
/* Buttons / chips / forms                                                    */
/* -------------------------------------------------------------------------- */

.btn,
.search button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent);
  color: #000;
  border: 1px solid var(--accent);
  border-radius: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  cursor: pointer;
  box-shadow: 0 0 12px rgba(236, 196, 18, 0.28);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.btn:hover,
.search button:hover {
  text-decoration: none;
  color: #fff;
  border-color: var(--accent-pink);
  background: var(--accent-pink);
  box-shadow: 0 0 14px rgba(176, 35, 43, 0.55), 0 0 28px rgba(176, 35, 43, 0.35);
}

.btn.ghost,
.btn.ghost:visited {
  background: rgba(5, 5, 5, 0.4);
  color: var(--fg);
  border-color: var(--line);
  box-shadow: none;
}

.btn.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(5, 5, 5, 0.4);
  box-shadow: 0 0 24px rgba(236, 196, 18, 0.18);
}

.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.chips {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin: 1.25rem 0;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  color: var(--fg-muted);
  font-size: 0.875rem;
  background: rgba(12, 12, 12, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}

.chips--square { justify-content: center; margin: 0 0 1.5rem; }
.chips--square .chip {
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
}

.chip:hover { color: var(--accent); border-color: var(--accent); text-decoration: none; }
.chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #000;
  font-weight: 600;
}

.search {
  display: flex;
  gap: 0.5rem;
  margin: 1rem 0 1.75rem;
  max-width: 28rem;
}

.search input,
.contact-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.contact-form select,
.contact-form textarea,
.admin-form input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]),
.admin-form textarea,
.admin-form select {
  width: 100%;
  background: #111;
  color: var(--fg);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 0.65rem 0.8rem;
  font-family: inherit;
  font-size: 1rem;
}

.search button { padding: 0.65rem 1rem; letter-spacing: 0.12em; }

.contact-form,
.admin-form { display: grid; gap: 0.85rem; max-width: 40rem; }

.contact-form label,
.admin-form label { display: grid; gap: 0.35rem; color: var(--fg-muted); font-size: 0.875rem; }

.check { display: flex !important; align-items: flex-start; gap: 0.75rem; cursor: pointer; }
.check input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  margin: 0.2rem 0 0;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.hp { position: absolute; left: -9999px; height: 0; width: 0; overflow: hidden; }
.ok { color: #7dcc8a; }
.err { color: #f07178; }
.accent { color: var(--accent); font-weight: 600; }

.text-link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.text-link:hover { opacity: 0.8; text-decoration: none; color: var(--accent); }
.news-more { color: #262626; }
.news-more:hover { color: #000; }

.back-link a { color: var(--fg-muted); font-size: 0.875rem; letter-spacing: 0.08em; }
.back-link a:hover { color: var(--accent); }

/* -------------------------------------------------------------------------- */
/* Hero                                                                       */
/* -------------------------------------------------------------------------- */

.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: #000;
  overflow-x: clip;
}

.hero-dots-bg {
  pointer-events: none;
  position: absolute;
  inset: 0 auto;
  z-index: 1;
  display: none;
  width: 20%;
  max-width: 16rem;
  opacity: 0.9;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.48) 1.35px, transparent 1.6px);
  background-size: 12px 12px;
}

.hero-dots-left {
  left: 0;
  mask-image: linear-gradient(to right, black 0%, black 55%, transparent 100%);
}

.hero-dots-right {
  right: 0;
  mask-image: linear-gradient(to left, black 0%, black 55%, transparent 100%);
}

.hero-media {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  flex-shrink: 0;
}

.hero-showcase {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg-elevated);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease-out;
}

.hero-slide.is-active { opacity: 1; z-index: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
}

.hero-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--fg-muted);
  font-size: 0.875rem;
}

.hero-dots-mobile {
  position: absolute;
  inset: auto 0 0;
  z-index: 30;
  padding: 1.5rem 0.5rem 0.5rem;
}

.hero-dots-desktop { display: none; }

.hero-dot-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.125rem;
}

.hero-dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.hero-dot::after {
  content: "";
  display: block;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transition: width 0.3s ease, background-color 0.3s ease;
}

.hero-dot.is-active::after {
  width: 1.75rem;
  height: 0.375rem;
  background: var(--accent);
}

.hero-dot:hover { background: rgba(255, 255, 255, 0.1); }

.hero-copy {
  position: relative;
  z-index: 20;
  padding: 1rem 30px max(6.5rem, calc(5rem + env(safe-area-inset-bottom, 0px)));
}

.hero-copy-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-brand {
  margin: 0;
  font-size: 2.25rem;
  color: #fff;
  text-shadow: 0 0 32px rgba(0, 0, 0, 0.55);
  padding-inline-end: 0.08em;
}

.hero-headline {
  margin: 0.75rem 0 0;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: #fff;
  padding-block: 0.12em;
  padding-inline-end: 0.2em;
}

.hero-sub {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: max(2rem, calc(1.5rem + env(safe-area-inset-bottom, 0px)));
  z-index: 30;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--fg-muted);
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.hero-scroll:hover { color: var(--accent); text-decoration: none; }

.hero-scroll-line {
  display: block;
  width: 1px;
  height: 2.5rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.hero-scroll-line span {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--accent);
  animation: scroll-line 1.6s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

@media (min-width: 640px) {
  .hero-brand { font-size: 3rem; }
  .hero-headline { font-size: 1.25rem; }
  .hero-sub { font-size: 1rem; }
  .hero-copy-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
  }
}

@media (min-width: 768px) {
  .hero-brand { font-size: 3.75rem; }
  .hero-headline { margin-top: 1rem; font-size: 1.5rem; }
  .hero-sub { font-size: 1rem; }
}

@media (min-width: 1024px) {
  .hero-dots-bg { display: block; }
  .hero {
    overflow-x: clip;
    min-height: calc(100svh - var(--header-h, 4.5rem));
  }
  .hero-media {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
    height: auto;
    min-height: 100%;
    z-index: 2;
  }

  .hero-showcase::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.55) 0%,
        transparent 12%,
        transparent 88%,
        rgba(0, 0, 0, 0.55) 100%
      ),
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        transparent 18%,
        transparent 70%,
        rgba(0, 0, 0, 0.45) 100%
      );
  }

  .hero-dots-mobile { display: none; }
  .hero-dots-desktop {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 7rem;
    z-index: 10;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  .hero-dots-desktop .hero-dot-list {
    pointer-events: auto;
  }

  .hero-copy {
    margin-top: auto;
    background: linear-gradient(to top, #000 0%, rgba(0, 0, 0, 0.55) 55%, transparent 100%);
    padding: 9rem 30px 7rem;
    padding-inline-start: calc(30px + 100px);
  }

  .hero-copy-inner {
    position: relative;
    width: 100%;
    max-width: none;
    margin-inline: auto;
    box-sizing: border-box;
  }

  .hero-text {
    max-width: 42rem;
    transform: translateX(-100px);
  }

  .hero-brand { font-size: 6rem; }
  .hero-headline { margin-top: 1rem; font-size: 1.875rem; }
  .hero-sub { font-size: 1.125rem; }
  .hero-scroll { bottom: 3rem; font-size: 0.875rem; }
}

@media (min-width: 1280px) {
  .hero-brand { font-size: 8rem; }
  .hero-headline { font-size: 2.25rem; }
  .hero-sub { font-size: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-scroll-line span { animation: none; }
}

/* -------------------------------------------------------------------------- */
/* Brand band / teaser / news                                                 */
/* -------------------------------------------------------------------------- */

.brand-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 1px solid rgba(236, 196, 18, 0.12);
  min-height: 16rem;
}

.brand-band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  z-index: -1;
}

.brand-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.55), #000);
}

.brand-band-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: min(72rem, 100%);
  margin-inline: auto;
  padding: 4rem 30px;
  text-align: center;
}

.brand-band-copy .font-mode {
  margin: 0;
  font-size: 2.25rem;
  line-height: 1.05;
  letter-spacing: 0.04em;
  color: #fff;
}

.brand-band-detail {
  margin: 0;
  max-width: 36rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
  .brand-band { min-height: min(32rem, 70svh); display: flex; align-items: end; }
  .brand-band::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.1));
  }
  .brand-band-copy { padding: 6rem 30px; }
  .brand-band-copy .font-mode { font-size: 3rem; }
  .brand-band-detail { font-size: 1.125rem; }
}

@media (min-width: 1024px) {
  .brand-band-copy { padding-inline: 30px; }
  .brand-band-copy .font-mode { font-size: 3.75rem; }
}

.teaser {
  border-top: 1px solid rgba(236, 196, 18, 0.12);
  background: #2e2e2e;
}

.teaser-inner {
  width: min(96rem, 100%);
  margin-inline: auto;
  padding: 4rem 30px;
  box-sizing: border-box;
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2,
.section-head h1,
.page-title {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  color: var(--fg);
}

.section-lede,
.page-lede,
.muted,
.lede { color: var(--fg-muted); }

.section-lede {
  margin: 0;
  max-width: 28rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.news-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  color: #111;
}

.news-inner {
  width: min(104rem, 100%);
  margin-inline: auto;
  padding: 4rem 30px;
  box-sizing: border-box;
}

.news-section .section-head h2,
.news-section .section-head h1 { color: #000; }

.news-section .section-lede { color: #525252; max-width: none; }

.news-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .teaser {
    display: flex;
    flex-direction: column;
    min-height: calc(100svh - var(--header-h, 4.5rem));
  }
  .teaser-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 3rem 30px 4rem;
  }
  .news-inner { padding: 6rem 30px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .section-head h2 { font-size: 3rem; }
  .product-grid { gap: 1.5rem; }
}

@media (min-width: 1024px) {
  .teaser-inner { padding: 4rem 30px; }
  .news-inner { padding: 6rem 30px; }
  .news-grid { gap: 2.5rem; }
  .product-grid { gap: 2rem; }
  .section-head h2 { font-size: 3.75rem; }
}

@media (min-width: 1280px) {
  .news-grid { gap: 3rem; }
}

/* -------------------------------------------------------------------------- */
/* Product / news cards                                                       */
/* -------------------------------------------------------------------------- */

.product-grid,
.grid-3,
.grid-2 { display: grid; gap: 1.25rem; }

.product-grid { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

@media (min-width: 640px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(236, 196, 18, 0.2);
  border-radius: 0.75rem;
  background: rgba(12, 12, 12, 0.6);
  color: inherit;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  text-decoration: none;
  color: inherit;
  border-color: var(--accent);
  box-shadow:
    0 0 0 1px rgba(236, 196, 18, 0.55),
    0 0 18px rgba(236, 196, 18, 0.4),
    0 0 36px rgba(13, 92, 157, 0.22);
}

.product-card-media {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid rgba(236, 196, 18, 0.16);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.5rem;
  display: block;
}

.product-card--wide-pad .product-card-media img {
  padding: 1rem;
  transform: scale(0.88);
  transform-origin: center;
}

@media (min-width: 640px) {
  .product-card--wide-pad .product-card-media img {
    padding: 1.1rem;
    transform: scale(0.84);
  }
}
@media (min-width: 768px) {
  .product-card-media img { padding: 0.75rem; }
  .product-card--wide-pad .product-card-media img {
    padding: 1.25rem;
    transform: scale(0.8);
  }
}

.product-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 8rem;
  background: #080808;
  color: var(--fg-muted);
  letter-spacing: 0.2em;
  font-size: 0.75rem;
}

.product-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 1.25rem 1.25rem;
}

.product-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--fg);
}

.product-card-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding: 0.5rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 0.5rem;
  background: var(--accent);
  color: #000;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  box-shadow: 0 0 12px rgba(236, 196, 18, 0.28);
}

.product-card-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--accent-pink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}

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

.product-card-cta:hover,
.product-card:hover .product-card-cta {
  border-color: var(--accent-pink);
  color: #fff;
}

.product-card-cta:hover::before,
.product-card:hover .product-card-cta::before { transform: scaleX(1); }

.badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 0.65rem;
  border-radius: 0.375rem;
  background: var(--brand-red);
  color: #fff;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border: 1px solid #e5e5e5;
  border-radius: 1rem;
  background: #fafafa;
  color: inherit;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  text-decoration: none;
  color: inherit;
  border-color: #d4d4d4;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.news-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.news-card-media { aspect-ratio: 16 / 10; overflow: hidden; background: #eee; }
.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.5rem;
  flex: 1;
}

.news-card time {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #737373;
}

.news-card h3 {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #171717;
}

.news-card-body > p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #525252;
}

.news-card-cta {
  margin-top: auto;
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border: 1px solid #262626;
  border-radius: 0.5rem;
  background: #171717;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

@media (min-width: 768px) {
  .product-card h3 { font-size: 1.25rem; }
  .product-card-cta { padding: 0.65rem 1.25rem; font-size: 0.875rem; }
  .news-card-body { padding: 2.75rem 2.625rem; gap: 1rem; }
  .news-card time { font-size: 1rem; }
  .news-card h3 { font-size: 1.45rem; line-height: 1.375; }
  .news-card-body > p { font-size: 1.125rem; line-height: 1.625; }
  .news-card-cta { padding: 0.875rem 1.5rem; font-size: 1rem; }
}

@media (min-width: 1024px) {
  .news-card h3 { font-size: 1.75rem; }
  .news-card-body > p { font-size: 1.1875rem; }
}

/* -------------------------------------------------------------------------- */
/* Inner pages                                                                */
/* -------------------------------------------------------------------------- */

.page { padding-block: 2.5rem 4rem; }

h1, h2, h3 { font-weight: 600; line-height: 1.25; }
h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: 1.35rem; margin-top: 2rem; }

.page-head { margin-bottom: 2.5rem; max-width: 40rem; }
.page-lede { margin-top: 0.75rem; font-size: 1rem; line-height: 1.6; }

.card {
  display: block;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 1.25rem;
  color: inherit;
  position: relative;
}

.card h3 { margin-top: 0.6rem; }
.card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; background: #111; }

.brand-card-logo {
  width: auto !important;
  max-width: 10rem !important;
  height: 2.75rem !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  background: transparent !important;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 2rem;
}

.gallery img,
.hero-img {
  width: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  background: #111;
}

.prose p { line-height: 1.7; }
.product ul { line-height: 1.6; }
.spec-grid ul { margin: 0; padding-left: 1.2rem; color: var(--fg-muted); }
.faq-q { font-family: var(--font-headline); font-size: 1.125rem; }

.info-card,
.form-card {
  border: 1px solid rgba(236, 196, 18, 0.2);
  border-radius: 0.75rem;
  background: rgba(12, 12, 12, 0.4);
  padding: 1.5rem;
}

.company-name { font-family: var(--font-display); letter-spacing: 0.16em; font-size: 1rem; }
.company-name a { color: var(--accent); }
.company-name a:hover { color: var(--fg); }

.about-hero {
  position: relative;
  min-height: calc(100svh - var(--header-h, 4rem));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 45%;
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #080808, rgba(8, 8, 8, 0.6), rgba(0, 0, 0, 0.25));
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 72rem;
  margin-inline: auto;
  padding: 5rem 30px max(7rem, calc(5.5rem + env(safe-area-inset-bottom, 0px)));
  box-sizing: border-box;
}

.kicker {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
}

.about-hero-copy .font-mode {
  margin: 1rem 0 0;
  font-size: clamp(3rem, 10vw, 6rem);
  letter-spacing: 0.04em;
  color: #fff;
}

.about-hero-copy .hero-sub {
  max-width: 40rem;
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.about-hero-copy .btn,
.about-hero-copy .product-card-cta,
.about-hero-cta { margin-top: 2rem; }

.about-story {
  display: grid;
  gap: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-copy p {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(242, 242, 242, 0.88);
}

.about-pillars { list-style: none; margin: 0; padding: 0; }
.about-pillars li {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.5rem 0;
}

.about-pillars li:first-child { border-top: 0; padding-top: 0; }
.pillar-num {
  margin: 0;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(236, 196, 18, 0.8);
}

.pillar-title {
  margin: 0.5rem 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}

.about-milestones {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #080808;
  scroll-margin-top: calc(var(--header-h, 4rem) + 0.75rem);
}

.about-milestones-inner {
  padding-block: 4rem;
  padding-inline: 30px;
}
.about-milestones .kicker { margin-bottom: 2.5rem; }

.milestones-stack {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.milestone-card {
  min-width: 0;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  padding: 0.85rem 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.milestone-year {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.milestone-label {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: rgba(242, 242, 242, 0.85);
}

.milestones-desktop { display: none; }

@media (min-width: 768px) {
  .about-story { grid-template-columns: 7fr 4fr; gap: 3rem; align-items: start; }
  .about-copy p { font-size: 1.125rem; }
  .kicker { font-size: 0.875rem; }
  .milestones-stack { display: none; }
  .milestones-desktop { display: block; margin-top: 3.5rem; }
  .milestones-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 0.75rem;
  }
  .milestone-col-top { grid-row: 1; display: flex; flex-direction: column; justify-content: flex-end; }
  .milestone-col-top .milestone-card { margin-bottom: 20px; }
  .milestone-axis {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    height: 14px;
    position: relative;
    align-items: center;
  }
  .milestone-axis::before,
  .milestone-axis::after {
    content: "";
    position: absolute;
    inset: 50% 0 auto;
    height: 1px;
    transform: translateY(-50%);
  }
  .milestone-axis::before { background: rgba(255, 255, 255, 0.15); }
  .milestone-axis::after { background: rgba(236, 196, 18, 0.7); }
  .milestone-dot {
    width: 14px;
    height: 14px;
    margin-inline: auto;
    border-radius: 999px;
    border: 2px solid var(--accent);
    background: #080808;
    box-shadow: 0 0 12px rgba(236, 196, 18, 0.35);
    position: relative;
    z-index: 1;
  }
  .milestone-col-bot { grid-row: 3; display: flex; flex-direction: column; justify-content: flex-start; }
  .milestone-col-bot .milestone-card { margin-top: 20px; }
}

.news-list-page { min-height: calc(100svh - var(--header-h, 4.5rem)); }

/* -------------------------------------------------------------------------- */
/* Page fade / motion                                                         */
/* -------------------------------------------------------------------------- */

.page-nav-veil {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: #050505;
  opacity: 0;
  transition: opacity 0.3s ease;
  transform: translateZ(0);
}
.page-nav-veil.is-active { opacity: 1; }
.page-nav-veil.is-instant,
html.nav-fade-pending .page-nav-veil {
  opacity: 1;
  transition: none;
}

html.nav-fade-pending .site-header,
.page-nav-veil.is-active ~ .site-header {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: #050505;
}

html.nav-from-nav .animate-fade-up,
html.nav-from-nav .animate-fade-up-delay,
html.nav-from-nav .animate-fade-up-delay-2 {
  animation: none;
  opacity: 1;
  transform: none;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up { animation: fade-up 0.9s ease-out both; }
.animate-fade-up-delay { animation: fade-up 0.9s ease-out 0.18s both; }
.animate-fade-up-delay-2 { animation: fade-up 0.9s ease-out 0.36s both; }

@keyframes taiwan-glow {
  0%, 100% { text-shadow: 0 0 8px rgba(236, 196, 18, 0.35), 0 0 18px rgba(28, 127, 70, 0.25); }
  50% { text-shadow: 0 0 14px rgba(236, 196, 18, 0.85), 0 0 28px rgba(13, 92, 157, 0.45); }
}
.taiwan-glow { animation: taiwan-glow 3.2s ease-in-out infinite; display: inline-block; font-weight: 600; }

@media (prefers-reduced-motion: reduce) {
  .animate-fade-up,
  .animate-fade-up-delay,
  .animate-fade-up-delay-2,
  .taiwan-glow { animation: none; }
  .page-nav-veil { transition: none; }
}

/* -------------------------------------------------------------------------- */
/* Products listing                                                           */
/* -------------------------------------------------------------------------- */

.products-page {
  min-height: calc(100svh - var(--header-h, 4.5rem));
  background: #2e2e2e;
}
.products-inner { padding-block: 3rem 4rem; }
.products-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.products-lede {
  margin: 0;
  color: var(--fg-muted);
  font-size: 1rem;
}
.products-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}
.products-brand img {
  height: 2.5rem;
  width: auto;
  background: transparent;
}
.filter-bar {
  display: grid;
  gap: 0.75rem;
  margin: 0 0 2rem;
}
.filter-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.filter-field span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.filter-field input,
.filter-field select {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid rgba(236, 196, 18, 0.24);
  background: rgba(12, 12, 12, 0.6);
  color: var(--fg);
  padding: 0.5rem 0.75rem;
  font-family: inherit;
  font-size: 0.875rem;
}
.filter-field input:focus,
.filter-field select:focus { outline: none; border-color: var(--accent); }

@media (min-width: 640px) {
  .filter-bar { grid-template-columns: 1fr 1fr; }
  .filter-search { grid-column: 1 / -1; }
  .products-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .products-lede { text-align: right; max-width: 36rem; font-size: 1.125rem; }
}
@media (min-width: 768px) {
  .products-brand img { height: 3rem; }
}
@media (min-width: 1024px) {
  .filter-bar { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
  .filter-search { grid-column: auto; }
  .products-brand img { height: 3.5rem; }
}

/* -------------------------------------------------------------------------- */
/* Product detail                                                             */
/* -------------------------------------------------------------------------- */

.product-detail { padding-top: 2.5rem; }
.product-hero-grid { display: grid; gap: 2.5rem; margin-top: 2rem; }
.product-new {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--brand-red);
}
.product-summary {
  margin: 0.75rem 0 0;
  font-size: 1.125rem;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}
.product-inquire { margin-top: 1.25rem; }
.overview-card {
  margin-top: 1rem;
  display: inline-flex;
  align-items: flex-end;
  gap: 0.75rem;
  max-width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(236, 196, 18, 0.2);
  background: rgba(12, 12, 12, 0.4);
  padding: 0.75rem;
  transition: transform 0.3s ease;
}
.overview-card:hover { transform: scale(1.06); }
.overview-card-copy { min-width: 0; }
.overview-card-copy p { margin: 0.25rem 0 0; }
.overview-card-media {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(236, 196, 18, 0.16);
  background: #fff;
  overflow: hidden;
}
.overview-card-media--pair { width: 10.5rem; display: flex; }
.overview-card-media img { width: 100%; height: 100%; object-fit: contain; padding: 0.4rem; }
.overview-card-media--pair img { width: 50%; }
.product-block {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(236, 196, 18, 0.16);
}
.product-block h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.product-overview { white-space: pre-line; line-height: 1.7; color: var(--fg-muted); }
.features-row { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
.feature-list,
.spec-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-list li,
.spec-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 1rem;
}
.feature-list li { margin-bottom: 0.75rem; }
.spec-list li {
  border-bottom: 1px solid rgba(236, 196, 18, 0.12);
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
}
.spec-list li:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.spec-list--headed { margin-top: 1rem; }
.spec-dot {
  margin-top: 0.55rem;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
}
.spec-heading {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.spec-section + .spec-section { margin-top: 2rem; }
.features-image {
  width: fit-content;
  border-radius: 0.75rem;
  border: 1px solid rgba(236, 196, 18, 0.2);
  background: rgba(12, 12, 12, 0.4);
  padding: 0.5rem;
  transition: transform 0.3s ease;
}
.features-image:hover { transform: scale(1.08); }
.features-image img {
  width: 8rem;
  height: 8rem;
  object-fit: contain;
  background: #fff;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.product-gallery { min-width: 0; }
.product-gallery-main {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(236, 196, 18, 0.2);
  background: #fff;
}
.product-gallery-main img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.product-gallery-main img.is-active { opacity: 1; }
.product-gallery-empty {
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid rgba(236, 196, 18, 0.2);
  background: #080808;
  color: var(--fg-muted);
  letter-spacing: 0.25em;
  font-size: 0.75rem;
}
.product-gallery-empty span:first-child { width: 5rem; height: 1px; background: rgba(236, 196, 18, 0.5); }
.product-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(236, 196, 18, 0.45) rgba(255, 255, 255, 0.06);
}
.product-thumb {
  position: relative;
  flex-shrink: 0;
  width: 5.5rem;
  height: 4.7rem;
  border-radius: 0.375rem;
  border: 1px solid rgba(236, 196, 18, 0.16);
  background: #fff;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}
.product-thumb.is-active { border-color: var(--accent); }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 0.25rem; }

.tech-panel {
  margin-top: 3.5rem;
  border-top: 1px solid rgba(236, 196, 18, 0.35);
  padding-top: 2.5rem;
}
.tech-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(236, 196, 18, 0.35);
  padding-bottom: 1.5rem;
}
.tech-tab-btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  border: 1px solid rgba(236, 196, 18, 0.28);
  background: rgba(12, 12, 12, 0.4);
  color: var(--fg-muted);
  padding: 0.65rem 1.1rem;
  font-family: var(--font-display);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: border-color 0.35s ease, color 0.35s ease, background-color 0.35s ease, box-shadow 0.35s ease;
}
.tech-tab-btn > * { position: relative; z-index: 1; }
.tech-tab-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--accent-pink);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s ease;
}
.tech-tab-btn--active {
  border-color: var(--accent);
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 24px rgba(236, 196, 18, 0.35);
}
.tech-tab-btn:hover {
  border-color: var(--accent-pink);
  color: #fff;
}
.tech-tab-btn:hover::before { transform: scaleX(1); }
.tech-panel-body { margin-top: 2rem; animation: fade-up 0.25s ease-out; }
.spec-grid { display: grid; gap: 1.5rem; }
.spec-card {
  min-height: 10rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(236, 196, 18, 0.2);
  background: rgba(12, 12, 12, 0.4);
  padding: 1.25rem;
}
.gobo-grid,
.drawing-grid { display: grid; gap: 1rem; }
.gobo-frame,
.drawing-frame {
  border-radius: 0.75rem;
  border: 1px solid rgba(236, 196, 18, 0.2);
  background: #fff;
  overflow: hidden;
}
.gobo-frame { aspect-ratio: 4 / 3; }
.gobo-frame img,
.drawing-frame img { width: 100%; height: 100%; object-fit: contain; padding: 0.75rem; }
.drawing-frame img { height: auto; }
.download-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.75rem; }
.download-list a,
.download-missing {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(236, 196, 18, 0.2);
  background: rgba(12, 12, 12, 0.4);
  padding: 1rem 1.25rem;
  color: var(--fg);
}
.download-list a:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }
.download-missing { color: var(--fg-muted); }
.product-back-row {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(236, 196, 18, 0.16);
  display: flex;
  justify-content: center;
}

@media (min-width: 640px) {
  .features-row { flex-direction: row; align-items: flex-start; }
  .gobo-grid { grid-template-columns: 1fr 1fr; }
  .drawing-grid--2 { grid-template-columns: 1fr 1fr; }
  .download-list { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .product-gallery-main { aspect-ratio: 5 / 4; min-height: 28rem; }
  .spec-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (min-width: 1024px) {
  .product-hero-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
}

/* -------------------------------------------------------------------------- */
/* About extra                                                                */
/* -------------------------------------------------------------------------- */

.about-page { background: #080808; }
.about-hero-cta {
  margin-top: 2rem;
  color: #000;
}
.about-hero-cta:hover { color: #fff; text-decoration: none; }
.about-scroll {
  position: absolute;
  left: 50%;
  bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--fg-muted);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}
.about-scroll:hover { color: var(--accent); text-decoration: none; }
.about-story-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0c0c0c;
}
.about-story { padding-block: 5rem; }
.about-production {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #080808;
}
.about-production-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.about-production-frame img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  max-width: none;
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: center center;
}
.about-production-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to top, #080808, transparent);
}
.about-mv {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0c0c0c;
}
.about-mv-grid {
  display: grid;
  gap: 3rem;
  padding-block: 5rem;
}
.about-mv-block {
  border-left: 2px solid rgba(255, 255, 255, 0.25);
  padding-left: 1.5rem;
}
.about-mv-block--accent { border-left-color: rgba(236, 196, 18, 0.7); }
.about-mv-block p:last-child { margin: 1.25rem 0 0; line-height: 1.7; color: rgba(242, 242, 242, 0.85); }
.kicker-muted { color: rgba(242, 242, 242, 0.7); }
.about-services {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #080808;
}
.about-services-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: 5rem;
}
.about-services-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.about-services-list li {
  display: flex;
  gap: 0.5rem;
  align-items: baseline;
  color: rgba(242, 242, 242, 0.9);
}
.about-services-list li span:first-child {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.about-services-cta { margin-top: 2.5rem; color: #000; }
.about-services-cta:hover { color: #fff; text-decoration: none; }

@media (min-width: 768px) {
  .about-hero-copy {
    max-width: none;
    padding: 6rem 30px 8rem;
  }
  .about-hero-copy .font-mode { font-size: 4.5rem; }
  .about-hero-copy .hero-sub { font-size: 1.25rem; }
  .about-hero img { object-position: center; }
  .about-scroll { bottom: 2.5rem; }
  .about-production-frame {
    aspect-ratio: 21 / 9;
    max-height: 28rem;
    width: 100%;
  }
  .about-production-frame img {
    object-position: center center;
  }
  .about-mv-grid { grid-template-columns: 1fr 1fr; gap: 4rem; padding-block: 7rem; }
  .about-mv-block { padding-left: 2rem; }
  .about-services-inner { padding-block: 7rem; }
  .about-services-list { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
  .about-story { padding-block: 7rem; }
}

@media (min-width: 1024px) {
  .about-hero-copy { padding-inline: 30px; }
  .about-hero-copy .font-mode { font-size: 6rem; }
  .about-hero-copy .hero-sub { font-size: 1.5rem; }
}

/* -------------------------------------------------------------------------- */
/* Contact                                                                    */
/* -------------------------------------------------------------------------- */

.contact-page,
.other-page,
.product-detail {
  min-height: calc(100svh - var(--header-h, 4rem));
}

@media (min-width: 768px) {
  .contact-page,
  .other-page,
  .product-detail {
    min-height: calc(100svh - var(--header-h, 4.5rem));
  }
}

.contact-grid { display: grid; gap: 2rem; }
.contact-left { display: flex; flex-direction: column; gap: 2rem; }
.company-tagline { margin-top: 0.5rem; font-size: 0.875rem; }
.contact-page address { font-style: normal; margin-top: 1.25rem; }
.contact-page address p { margin: 0.15rem 0; color: var(--fg-muted); }
.contact-dl { margin: 2rem 0 0; display: grid; gap: 0.75rem; }
.contact-dl div { display: flex; flex-wrap: wrap; gap: 0.5rem 0.75rem; }
.contact-dl dt { color: var(--accent); min-width: 2.5rem; }
.contact-dl dd { margin: 0; }
.contact-dl a { color: var(--fg); }
.contact-dl a:hover { color: var(--accent); }
.contact-map {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0.75rem;
  border: 1px solid rgba(236, 196, 18, 0.2);
  background: rgba(12, 12, 12, 0.4);
  min-height: 16rem;
  flex: 1;
}
.contact-map iframe {
  width: 100%;
  height: 16rem;
  border: 0;
  filter: grayscale(30%) contrast(1.25);
  flex: 1;
}
.contact-map-bar { padding: 0.75rem 1rem; border-top: 1px solid rgba(236, 196, 18, 0.16); }
.form-card { border-color: rgba(236, 196, 18, 0.35); }
.form-card-head { border-bottom: 1px solid rgba(236, 196, 18, 0.16); padding-bottom: 1rem; margin-bottom: 0.25rem; }
.form-title { margin: 0; letter-spacing: 0.2em; }
.contact-form { max-width: none; }
.contact-fields { display: grid; gap: 1.25rem; }
.contact-form .req { color: #f07178; }
.privacy-notice {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(236, 196, 18, 0.2);
  background: rgba(5, 5, 5, 0.5);
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--fg-muted);
}
.check-box {
  border-radius: 0.5rem;
  border: 1px solid rgba(236, 196, 18, 0.24);
  background: rgba(5, 5, 5, 0.4);
  padding: 0.85rem 1rem;
  color: var(--fg);
  font-size: 0.875rem;
  line-height: 1.5;
}
.check-box span { color: var(--fg); }
.contact-submit { width: 100%; justify-content: center; margin-top: 0.25rem; }

@media (min-width: 768px) {
  .contact-fields { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
  .contact-map iframe { height: auto; min-height: 16rem; }
}

/* -------------------------------------------------------------------------- */
/* Other brands                                                               */
/* -------------------------------------------------------------------------- */

.brand-grid {
  display: grid;
  gap: 1.5rem;
}
.brand-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(16px);
  color: inherit;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
a.brand-card:hover {
  text-decoration: none;
  color: inherit;
  border-color: rgba(236, 196, 18, 0.5);
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 0 0 1px rgba(236, 196, 18, 0.18),
    0 0 36px rgba(236, 196, 18, 0.22),
    0 16px 40px rgba(0, 0, 0, 0.45);
}
.brand-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}
.brand-card-media--white { background: #fff; }
.brand-card-media--black { background: #000; }
.brand-card .brand-card-logo {
  width: auto !important;
  max-width: 80% !important;
  height: auto !important;
  max-height: 70% !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  background: transparent !important;
}
.brand-card-logo--invert { filter: invert(1); }
.brand-card-logo--cover {
  max-width: none !important;
  max-height: none !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.badge-soon {
  left: 0.75rem;
  top: 0.75rem;
  background: var(--accent);
  color: #000;
  border: 1px solid var(--accent);
}
.brand-card-body { padding: 1.5rem 1.5rem 1.75rem; display: flex; flex-direction: column; flex: 1; }
.brand-card-body p { margin: 0; white-space: pre-line; line-height: 1.6; color: rgba(242, 242, 242, 0.85); }
.brand-card-cta {
  margin-top: auto;
  padding-top: 1.5rem;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.brand-card-cta--soon { color: rgba(236, 196, 18, 0.8); }
.brand-card-name { padding: 1.5rem 1.5rem 0; font-size: 2rem; color: var(--accent); }

@media (min-width: 768px) {
  .brand-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .brand-card-media { aspect-ratio: 16 / 11; }
}

/* -------------------------------------------------------------------------- */
/* News carousel / article                                                    */
/* -------------------------------------------------------------------------- */

.news-carousel { overflow: hidden; }
.news-card > .news-carousel { border-bottom: 1px solid #e5e5e5; }
.news-carousel-stage {
  position: relative;
  overflow: hidden;
  background: #000;
}
.news-carousel-stage--card {
  aspect-ratio: 16 / 10;
}
@media (min-width: 768px) {
  .news-carousel-stage--card { aspect-ratio: 14 / 10; }
}
.news-carousel-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.news-carousel-stage img.is-active { opacity: 1; }
.news-carousel-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  cursor: pointer;
}
.news-carousel-prev { left: 0.5rem; }
.news-carousel-next { right: 0.5rem; }
.news-carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 0.75rem;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  gap: 0.35rem;
}
.news-carousel-dot {
  width: 0.375rem;
  height: 0.375rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.news-carousel-dot.is-active { width: 1.25rem; background: var(--accent); }
.news-caption { padding: 0.85rem 1.25rem; }
.news-caption dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin: 0;
}
.news-caption dt {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.15rem;
}
.news-caption dd { margin: 0; font-weight: 500; }
.news-caption--light { border-top: 1px solid #e5e5e5; background: #fafafa; color: #171717; }
.news-caption--light dt { color: #737373; }
.news-caption--dark { border-top: 1px solid rgba(255, 255, 255, 0.1); color: #eaeaea; }
.news-caption--dark dt { color: rgba(236, 196, 18, 0.9); }
.news-fixture-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.15rem; }
.news-caption--light .news-fixture-list a { color: #171717; text-decoration: underline; text-underline-offset: 2px; }
.news-caption--dark .news-fixture-list a { color: #eaeaea; text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(236, 196, 18, 0.5); }
.news-fixture-list a:hover { color: var(--accent); }
.news-article { max-width: 48rem; }
.news-article-head { margin: 2rem 0 2.5rem; }
.news-article-head time { font-size: 0.75rem; color: var(--fg-muted); }
.news-article-body { margin-top: 2.5rem; }
.news-article-body p { font-size: 1rem; line-height: 1.75; color: rgba(242, 242, 242, 0.9); }
.news-related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(236, 196, 18, 0.16); }
.news-related ul { list-style: none; margin: 1rem 0 0; padding: 0; display: grid; gap: 0.75rem; }
.news-related a { color: var(--fg); }
.news-related a:hover { color: var(--accent); }

@media (min-width: 768px) {
  .news-carousel-nav { opacity: 0; }
  .news-carousel:hover .news-carousel-nav { opacity: 1; }
  .news-article-body p { font-size: 1.125rem; }
}

/* -------------------------------------------------------------------------- */
/* FAQ                                                                        */
/* -------------------------------------------------------------------------- */

.faq-list { border-top: 1px solid rgba(236, 196, 18, 0.16); border-bottom: 1px solid rgba(236, 196, 18, 0.16); }
.faq-item { border-bottom: 1px solid rgba(236, 196, 18, 0.16); }
.faq-item:last-child { border-bottom: 0; }
.faq-item h2 { margin: 0; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  background: none;
  border: 0;
  color: var(--fg);
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  cursor: pointer;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  color: var(--accent);
  font-size: 1.125rem;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq-icon.is-open { transform: rotate(45deg); }
.faq-a { padding-bottom: 1.25rem; }
.faq-a p { margin: 0; max-width: 48rem; color: var(--fg-muted); line-height: 1.7; }
.faq-foot {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(236, 196, 18, 0.16);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .faq-q { padding: 1.5rem 0; font-size: 1rem; }
  .faq-foot { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* -------------------------------------------------------------------------- */
/* Cookie banner / footer settings                                            */
/* -------------------------------------------------------------------------- */

.cookie-settings {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
  cursor: pointer;
}
.cookie-settings:hover { color: var(--accent); }
.cookie-banner {
  position: fixed;
  right: 1rem;
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 100;
  width: min(28rem, calc(100% - 2rem));
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(18, 18, 18, 0.95);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 16px 48px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(16px);
  padding: 1.25rem;
}
.cookie-banner-title {
  margin: 0;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  color: var(--accent);
  font-size: 0.875rem;
}
.cookie-banner-body {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(242, 242, 242, 0.85);
}
.cookie-banner-actions { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.cookie-banner-actions .btn { flex: 1; justify-content: center; min-height: 2.75rem; }

.contact-message-label { position: relative; display: block; }
.char-count {
  display: block;
  margin: 0.35rem 0 0.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--fg-muted);
  text-align: right;
}
.char-count.is-limit { color: var(--accent); }

.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: max(3.5rem, calc(54px + env(safe-area-inset-bottom, 0px)));
  z-index: 40;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(236, 196, 18, 0.6);
  background: rgba(12, 12, 12, 0.9);
  color: var(--accent);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(0.5rem);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: #000;
}
@media (min-width: 768px) {
  .scroll-top {
    right: 2rem;
    bottom: max(4rem, calc(62px + env(safe-area-inset-bottom, 0px)));
  }
}

.legal-page h2 { margin-top: 2rem; }

/* News preview modal (Node HomeNewsCard parity) */
.news-preview-root {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  padding-bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  padding-top: max(1rem, env(safe-area-inset-top, 0px));
}
@media (min-width: 768px) {
  .news-preview-root { padding: 2rem; }
}
.news-preview-root[hidden] { display: none !important; }
.news-preview-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(12px);
  cursor: pointer;
}
.news-preview-dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 60rem;
  max-height: min(92svh, 65rem);
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(24px);
}
@supports (backdrop-filter: blur(1px)) {
  .news-preview-dialog { background: rgba(255, 255, 255, 0.4); }
}
.news-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-shrink: 0;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
}
@media (min-width: 768px) {
  .news-preview-head { padding: 1.5rem 2.25rem; }
}
.news-preview-head-copy { min-width: 0; }
.news-preview-head-copy .news-preview-date {
  margin: 0;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: #525252;
}
@media (min-width: 768px) {
  .news-preview-head-copy .news-preview-date { font-size: 1rem; }
}
.news-preview-head-copy .news-preview-title {
  margin: 0.375rem 0 0;
  font-family: var(--font-headline);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #171717;
  overflow-wrap: anywhere;
}
@media (min-width: 768px) {
  .news-preview-head-copy .news-preview-title { font-size: 1.875rem; }
}
.news-preview-close {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.35);
  color: #262626;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.news-preview-close:hover {
  background: rgba(255, 255, 255, 0.55);
  color: #000;
}
.news-preview-scroll {
  min-height: 0;
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
}
.news-preview-scroll::-webkit-scrollbar { display: none; }
.news-preview-media .news-carousel-stage {
  aspect-ratio: 16 / 10;
}
@media (min-width: 768px) {
  .news-preview-media .news-carousel-stage { aspect-ratio: 16 / 9; }
}
.news-preview-copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px);
}
@media (min-width: 768px) {
  .news-preview-copy { padding: 2.5rem 2.25rem; gap: 1.25rem; }
}
.news-preview-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.625;
  color: #262626;
}
@media (min-width: 768px) {
  .news-preview-copy p { font-size: 1.125rem; }
}
.news-preview-copy .news-preview-link {
  margin-top: 0.5rem;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border: 1px solid #262626;
  border-radius: 0.5rem;
  background: #171717;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-decoration: none;
}
.news-preview-copy .news-preview-link:hover {
  color: #fff;
  text-decoration: none;
  background: #000;
}
body.news-preview-open { overflow: hidden; }
