:root {
  --showcase-card-height: min(540px, calc(100vh - 144px));
  --bg: #050805;
  --bg-2: #0b120d;
  --card-bg: rgba(13, 18, 16, 0.92);
  --card-bg-strong: #101713;
  --divider: rgba(0, 255, 0, 0.28);
  --text: #f3fff4;
  --muted: #a8b9aa;
  --accent: #00FF00;
  --accent-soft: rgba(0, 255, 0, 0.16);
  --accent-strong: #00FF00;
  --button-bg: linear-gradient(135deg, #00FF00, #8cff8c);
  --button-text: #061006;
  --button-hover: #bdffbd;
  --radius: 24px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.44);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(0, 255, 0, 0.18), transparent 34rem),
    radial-gradient(circle at 82% 10%, rgba(0, 255, 0, 0.12), transparent 28rem),
    linear-gradient(180deg, var(--bg), var(--bg-2) 46%, #040604);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0, 255, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 0, 0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 75%);
}

img { max-width: 100%; }

.page {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 42px 20px 84px;
}

.home-page { padding-top: 34px; }

.top-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 10px clamp(16px, 4vw, 32px);
  border-bottom: 1px solid rgba(0, 255, 0, 0.2);
  background: rgba(5, 8, 5, 0.86);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  filter: drop-shadow(0 0 16px rgba(0, 255, 0, 0.48));
}

.brand-copy { line-height: 1.1; }

.brand-name,
.brand-domain {
  display: block;
  font-weight: 800;
}

.brand-domain {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.brand-domain .brand-psycho,
.brand-domain-suffix { color: var(--muted); }

.brand-mark { white-space: nowrap; }

.brand-title {
  color: var(--accent-strong);
  font-size: clamp(1rem, 2vw, 1.32rem);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-teh,
.text-teh { color: var(--accent); }

.brand-psycho { color: var(--text); }

.support-area {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.support-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.4px;
  margin: 0;
}

.support-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.support-btn {
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 800;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.support-btn:hover { transform: translateY(-1px); }

.support-btn.paypal,
.support-btn.venmo {
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.95), rgba(140, 255, 140, 0.95));
  color: var(--button-text);
  border-color: rgba(140, 255, 140, 0.48);
  box-shadow: 0 0 18px rgba(0, 255, 0, 0.2);
}

.support-btn.paypal:hover,
.support-btn.venmo:hover {
  filter: brightness(1.08);
  box-shadow: 0 0 22px rgba(0, 255, 0, 0.36);
}

.support-toggle {
  display: none;
  padding: 8px 14px;
  border: 1px solid rgba(0, 255, 0, 0.38);
  border-radius: 999px;
  background: rgba(0, 255, 0, 0.08);
  color: var(--accent-strong);
  cursor: pointer;
  font: inherit;
  font-size: 0.8rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.support-toggle:hover {
  background: rgba(0, 255, 0, 0.14);
  box-shadow: 0 0 18px rgba(0, 255, 0, 0.22);
  transform: translateY(-1px);
}

.support-dialog {
  width: min(90vw, 360px);
  padding: 0;
  border: 1px solid rgba(0, 255, 0, 0.34);
  border-radius: 22px;
  background: rgba(9, 13, 10, 0.96);
  color: var(--text);
  box-shadow: var(--shadow), 0 0 34px rgba(0, 255, 0, 0.18);
}

.support-dialog::backdrop {
  background: rgba(4, 8, 5, 0.72);
  backdrop-filter: blur(8px);
}

.support-dialog__panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding: 28px 22px 24px;
  text-align: center;
}

.support-dialog__panel h2 {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.support-dialog__close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(0, 255, 0, 0.26);
  border-radius: 999px;
  background: rgba(0, 255, 0, 0.08);
  color: var(--accent-strong);
  cursor: pointer;
  font-size: 1.45rem;
  line-height: 1;
}

.support-dialog__buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.support-dialog__buttons .support-btn {
  text-align: center;
}

.site-header {
  text-align: center;
  margin-bottom: 34px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 5vw, 52px);
  border: 1px solid var(--divider);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(135deg, rgba(0, 255, 0, 0.14), transparent 42%),
    rgba(9, 13, 10, 0.78);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -8% -46% 56%;
  height: 340px;
  background: radial-gradient(circle, rgba(0, 255, 0, 0.18), transparent 68%);
  pointer-events: none;
}

.hero-logo {
  width: clamp(86px, 14vw, 142px);
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(0 0 28px rgba(0, 255, 0, 0.5));
}

.eyebrow {
  margin: 18px 0 0;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.site-header h1 {
  max-width: 840px;
  margin: 12px auto 0;
  font-size: clamp(2.15rem, 5.4vw, 4.85rem);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-copy,
.detail-subtitle {
  margin: 18px auto 0;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.14rem);
}

.watch-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.watch-card {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: 20px;
  display: grid;
  gap: 14px;
  text-align: center;
  justify-items: center;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.watch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 255, 0, 0.08), transparent 46%);
}

.watch-card > * { position: relative; }

.watch-name {
  margin: 0;
  font-size: 1.38rem;
  letter-spacing: -0.02em;
}

.watch-tagline {
  min-height: 3em;
  margin: 0;
  color: var(--muted);
}

.watch-media {
  border: 1px solid rgba(0, 255, 0, 0.22);
  border-radius: 18px;
  min-height: 220px;
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  background: radial-gradient(circle at center, rgba(0, 255, 0, 0.1), rgba(0, 0, 0, 0.36));
}

.watch-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.watch-media-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.watch-media-link:focus-visible,
.watch-store-icon-link:focus-visible {
  outline: 3px solid var(--accent-strong);
  outline-offset: 4px;
}

.watch-media img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease, filter 0.25s ease;
}

.watch-card:hover .watch-media img {
  transform: scale(1.025);
  filter: saturate(1.08) contrast(1.04);
}

.artwork-placeholder {
  width: 100%;
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(0, 255, 0, 0.14), transparent 36%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.045) 0 10px, transparent 10px 20px),
    rgba(5, 8, 5, 0.78);
  color: var(--text);
  text-align: center;
}

.artwork-placeholder__content {
  display: grid;
  gap: 8px;
  place-items: center;
}

.artwork-placeholder__label {
  color: var(--accent);
  font-size: clamp(0.78rem, 1.2vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.artwork-placeholder__size {
  font-size: clamp(1.45rem, 3.6vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
}

.artwork-placeholder__viewport {
  color: var(--muted);
  font-size: clamp(0.9rem, 1.45vw, 1.24rem);
  font-weight: 700;
}

.card-actions,
.link-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-text);
  text-decoration: none;
  font-weight: 800;
  font-size: 0.92rem;
  width: fit-content;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(0, 255, 0, 0.34);
}

.cta-button--secondary {
  border-color: rgba(0, 255, 0, 0.38);
  background: rgba(0, 255, 0, 0.08);
  color: var(--accent-strong);
  box-shadow: none;
}

.cta-button--secondary:hover { background: rgba(0, 255, 0, 0.14); }

.cta-button--disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.cta-button--disabled:hover {
  transform: none;
  box-shadow: none;
}

button.cta-button { font: inherit; }

.image-fallback {
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.detail-header { margin-bottom: 24px; }

.detail-header .detail-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 20px;
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  background: rgba(9, 13, 10, 0.74);
  box-shadow: var(--shadow);
}

.detail-title-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.detail-title-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  filter: drop-shadow(0 0 18px rgba(0, 255, 0, 0.42));
}

.detail-header h1 {
  margin: 0;
  text-align: left;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.content-stack { display: grid; gap: 20px; }

.media-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.media-grid img,
.media-grid .artwork-placeholder {
  width: 100%;
  min-height: clamp(220px, 34vw, 360px);
  border-radius: 14px;
  border: 1px solid rgba(0, 255, 0, 0.22);
  background: #050805;
}

.media-grid img { cursor: zoom-in; }

.detail-header .link-row { justify-content: flex-end; }

.gallery-image { cursor: zoom-in; }

.gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(4, 8, 5, 0.92);
  backdrop-filter: blur(8px);
  z-index: 4000;
  padding: 28px;
}

.gallery-modal.open { display: flex; }
.gallery-modal__viewport { position: relative; max-width: min(92vw, 1400px); max-height: 90vh; }
.gallery-modal__image {
  max-width: 100%;
  max-height: 82vh;
  border-radius: 14px;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.55), 0 0 32px rgba(0, 255, 0, 0.18);
  transform: scale(var(--zoom, 1));
  transform-origin: center center;
  transition: transform 140ms ease;
}

.gallery-modal__close,
.gallery-modal__nav {
  position: absolute;
  border: 1px solid rgba(0, 255, 0, 0.35);
  border-radius: 999px;
  background: rgba(8, 14, 10, 0.86);
  color: var(--accent-strong);
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

.gallery-modal__close { top: -18px; right: -18px; width: 38px; height: 38px; }
.gallery-modal__nav { top: 50%; transform: translateY(-50%); width: 44px; height: 44px; }
.gallery-modal__nav.prev { left: -56px; }
.gallery-modal__nav.next { right: -56px; }

.legal-page {
  max-width: 860px;
  color: #eafbea;
}

.legal-card {
  border: 1px solid var(--divider);
  border-radius: var(--radius);
  padding: clamp(20px, 4vw, 38px);
  background: var(--card-bg-strong);
  box-shadow: var(--shadow);
}

.legal-card h1,
.legal-card h2 { line-height: 1.2; }

.legal-card a { color: var(--accent-strong); }

.legal-meta {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  margin: 1rem 0;
}

@media (max-width: 900px) {
  .gallery-modal__nav.prev { left: 8px; }
  .gallery-modal__nav.next { right: 8px; }
  .detail-header .detail-header-row { flex-direction: column; align-items: stretch; }
  .detail-header h1, .detail-header .link-row { text-align: center; justify-content: center; }
  .detail-title-group { justify-content: center; }
}

@media (max-width: 740px) {
  .page { padding: 30px 14px 60px; }
  .top-bar {
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
  }
  .brand-lockup { min-width: 0; gap: 8px; }
  .brand-logo { width: 40px; height: 40px; flex: 0 0 auto; }
  .brand-copy { min-width: 0; }
  .brand-title,
  .brand-name,
  .brand-domain { overflow-wrap: anywhere; }
  .support-area { flex: 0 0 auto; }
  .support-label,
  .support-area > .support-buttons { display: none; }
  .support-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

@media (max-width: 520px) {
  .brand-title { font-size: clamp(0.78rem, 3.8vw, 0.92rem); }
  .brand-domain { font-size: 0.7rem; }
  .support-toggle { padding: 8px 12px; }
  .card-actions .cta-button { width: fit-content; }
}

.home-page {
  width: min(100%, 1500px);
  min-height: calc(100vh - 118px);
  padding: clamp(10px, 1.6vw, 18px) clamp(14px, 3vw, 30px);
  display: flex;
  align-items: center;
}

.home-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(520px, 1.38fr);
  align-items: start;
  gap: clamp(18px, 3vw, 40px);
  width: 100%;
}

.home-showcase .site-header {
  margin-bottom: 0;
  text-align: center;
}

.home-showcase .hero-panel {
  padding: clamp(18px, 2.2vw, 30px);
  border-radius: var(--radius);
  min-height: var(--showcase-card-height);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-showcase .eyebrow {
  margin-top: 12px;
  font-size: clamp(0.72rem, 1vw, 0.84rem);
  letter-spacing: 0.12em;
}

.home-showcase .site-header h1 {
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(1.85rem, 3.2vw, 3.35rem);
  line-height: 1.02;
}

.home-showcase .hero-copy {
  margin: 12px auto 0;
  font-size: clamp(0.88rem, 1.15vw, 0.98rem);
}

.hero-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
  z-index: 1;
}

.home-showcase .cta-button {
  padding: 8px 12px;
  font-size: 0.82rem;
}

.watch-carousel {
  position: relative;
  display: grid;
}

.carousel-track {
  --carousel-edge-gutter: 6px;
  --carousel-side-gutter: clamp(44px, 7vw, 92px);
  position: relative;
  min-height: var(--showcase-card-height);
  overflow: hidden;
  border-radius: calc(var(--radius) + 10px);
}

.carousel-card {
  position: absolute;
  inset: var(--carousel-edge-gutter) calc(var(--carousel-side-gutter) + var(--carousel-edge-gutter)) var(--carousel-edge-gutter) var(--carousel-edge-gutter);
  min-height: 0;
  padding: 14px;
  gap: 10px;
  border-color: transparent;
  box-shadow:
    var(--shadow),
    inset 0 0 0 1px var(--divider),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  grid-template-rows: minmax(0, 1fr) auto;
  align-content: stretch;
  transform:
    translateX(calc(var(--carousel-offset, 0) * min(42vw, 390px)))
    scale(0.86);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.55s ease, opacity 0.55s ease, filter 0.55s ease;
}

.carousel-card[data-carousel-state="active"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  z-index: 3;
}

.carousel-card[data-carousel-state="previous"],
.carousel-card[data-carousel-state="next"] {
  opacity: 0.34;
  filter: saturate(0.72) brightness(0.75);
  z-index: 2;
}

.carousel-card[data-carousel-state="previous"] {
  transform: translateX(-42%) scale(0.78);
}

.carousel-card[data-carousel-state="next"] {
  transform: translateX(46%) scale(0.78);
}

.carousel-card .watch-name {
  font-size: clamp(1rem, 1.35vw, 1.2rem);
}

.carousel-card .watch-media {
  height: 100%;
  min-height: 0;
}

.carousel-card .watch-tagline { display: none; }

.carousel-arrow {
  border: 1px solid rgba(0, 255, 0, 0.36);
  background: rgba(0, 255, 0, 0.1);
  color: var(--accent-strong);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.carousel-arrow {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  font-size: 1.35rem;
  font-weight: 800;
  flex: 0 0 auto;
}

.carousel-card .card-actions {
  flex-wrap: nowrap;
  width: 100%;
}

.carousel-card .card-actions .cta-button {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  max-width: max-content;
  white-space: nowrap;
  padding-inline: clamp(8px, 2vw, 12px);
  font-size: clamp(0.72rem, 1.35vw, 0.82rem);
}

.card-actions .carousel-arrow {
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
}

.carousel-arrow:hover {
  background: var(--button-bg);
  color: var(--button-text);
  box-shadow: 0 0 24px rgba(0, 255, 0, 0.28);
  transform: translateY(-1px);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 14px;
  padding: 10px clamp(16px, 4vw, 34px);
  border-top: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(5, 8, 5, 0.42);
  color: rgba(200, 208, 201, 0.38);
  text-align: center;
  font-size: 0.78rem;
}

.footer-brand {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.footer-brand p { margin: 0; }

.footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footer-links a {
  color: rgba(200, 208, 201, 0.38);
  text-decoration: none;
}

.footer-links a:hover { color: rgba(200, 208, 201, 0.68); }

.footer-separator { color: rgba(200, 208, 201, 0.25); }

.contact-card a,
.privacy-list a { color: var(--accent-strong); }

.form-grid {
  display: grid;
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 7px;
  text-align: left;
  color: var(--text);
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(0, 255, 0, 0.28);
  border-radius: 14px;
  background: rgba(5, 8, 5, 0.78);
  color: var(--text);
  font: inherit;
  padding: 12px 14px;
}

.form-field textarea { resize: vertical; }

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}


.contact-body {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.contact-page {
  width: min(100%, 1180px);
  max-width: 1180px;
  padding: clamp(12px, 1.6vw, 20px) 18px clamp(14px, 1.8vw, 24px);
}

.contact-layout {
  display: block;
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(230px, 340px) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(18px, 3.2vw, 42px);
  text-align: left;
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(28px, 7vw, 72px);
  height: 100%;
  max-width: 340px;
  text-align: center;
}

.contact-direct {
  display: grid;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}

.contact-direct p {
  margin: 0;
}

.contact-direct a {
  font-weight: 800;
  white-space: nowrap;
}

.contact-page .legal-card {
  padding: clamp(15px, 1.9vw, 22px);
  border-radius: 20px;
}

.contact-page .eyebrow {
  margin: 0 0 5px;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.contact-page h1 {
  margin: 0;
  font-size: clamp(1.32rem, 2.3vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.contact-page h2 {
  margin: 0;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  letter-spacing: -0.02em;
}

.contact-page .contact-intro {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.42;
}


.contact-page .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
  margin-top: 0;
}

.contact-page .form-field {
  gap: 4px;
  font-size: 0.82rem;
}

.contact-page .form-field--full,
.contact-page .form-note,
.contact-page .form-status,
.contact-page .cta-button {
  grid-column: 1 / -1;
}

.contact-page .form-field input,
.contact-page .form-field select,
.contact-page .form-field textarea {
  min-height: 36px;
  padding: 7px 10px;
  border-radius: 10px;
  line-height: 1.28;
}

.contact-page .form-field textarea {
  min-height: 86px;
  resize: vertical;
}

.contact-page .form-note,
.contact-page .form-status {
  font-size: 0.76rem;
  line-height: 1.3;
}

.contact-page .form-status {
  min-height: 1em;
  margin: 0;
  color: var(--muted);
}

.contact-page .form-status[data-state="success"] { color: var(--accent-strong); }

.contact-page .form-status[data-state="error"] { color: #ff8a8a; }

.contact-page .form-field--honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-page .cta-button {
  justify-self: stretch;
  width: 100%;
  padding: 8px 14px;
  font-size: 0.84rem;
}

.contact-page .cta-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

@media (min-width: 741px) {
  .contact-body .top-bar {
    padding-block: 8px;
  }

  .contact-body .brand-logo {
    width: 40px;
    height: 40px;
  }

  .contact-body .brand-title {
    font-size: clamp(0.92rem, 1.7vw, 1.12rem);
  }

  .contact-body .support-label {
    font-size: 0.74rem;
  }

  .contact-body .support-area,
  .contact-body .support-buttons {
    gap: 7px;
  }

  .contact-body .support-btn {
    padding: 7px 12px;
    font-size: 0.78rem;
  }
}

@media (max-width: 740px) {
  .contact-page {
    padding: 14px 10px 24px;
  }

  .contact-page .form-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 10px;
  }

  .contact-page .legal-card {
    padding: 14px;
    border-radius: 18px;
  }

  .contact-page .eyebrow {
    font-size: 0.62rem;
    margin-bottom: 4px;
  }

  .contact-page h1 {
    font-size: clamp(1.08rem, 6vw, 1.38rem);
  }

  .contact-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-copy {
    gap: 18px;
    max-width: none;
  }

  .contact-page .contact-intro {
    margin-top: 6px;
  }

  .contact-page .contact-intro,
  .contact-direct {
    font-size: 0.8rem;
    line-height: 1.34;
  }

  .contact-page .form-field {
    gap: 3px;
    font-size: 0.76rem;
  }

  .contact-page .form-field input,
  .contact-page .form-field select,
  .contact-page .form-field textarea {
    min-height: 34px;
    padding: 6px 9px;
    border-radius: 9px;
  }

  .contact-page .form-field textarea {
    min-height: 72px;
  }

  .contact-page .form-note,
  .contact-page .form-status {
    font-size: 0.7rem;
  }

  .contact-page .cta-button {
    padding: 7px 12px;
    font-size: 0.78rem;
  }
}
.privacy-list {
  text-align: center;
}

.privacy-list ul {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding-left: 0;
  list-style-position: inside;
}

@media (max-width: 1020px) {
  .home-page { display: block; min-height: auto; }
  .home-showcase { grid-template-columns: 1fr; }
  .home-showcase .hero-panel,
  .carousel-track { min-height: 620px; }
}

@media (max-width: 740px) {
  .home-showcase .site-header { text-align: center; }
  .home-showcase .site-header h1,
  .home-showcase .hero-copy { margin-left: auto; margin-right: auto; }
  .home-showcase .hero-copy { display: none; }
  .hero-actions { justify-content: center; margin-top: 12px; }
  .home-showcase .hero-panel { min-height: auto; }
  .watch-carousel { order: -1; }
  .carousel-track {
    --carousel-side-gutter: 0px;
    min-height: clamp(360px, 96vw, 500px);
  }
  .card-actions { gap: 8px; }
  .card-actions .cta-button { flex: 0 1 auto; }
  .carousel-card[data-carousel-state="previous"],
  .carousel-card[data-carousel-state="next"] { opacity: 0; }
  .site-footer { text-align: center; }
  .footer-links { justify-content: center; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .home-page { padding-top: 12px; }
  .home-showcase { gap: 14px; }
  .home-showcase .hero-panel { padding: 16px; }
  .home-showcase .hero-copy { font-size: 0.88rem; }
  .hero-actions { gap: 7px; margin-top: 10px; }
  .home-showcase .cta-button {
    flex: 0 1 auto;
    width: fit-content;
    min-width: min(178px, 72%);
    max-width: min(72%, 22rem);
    min-height: 48px;
    padding: 8px 18px;
    font-size: 0.8rem;
    line-height: 1.15;
    white-space: normal;
  }
  .carousel-track { min-height: clamp(330px, 92vw, 420px); }
  .carousel-card { padding: 10px; }
  .carousel-card .watch-media { min-height: 0; }
  .card-actions .carousel-arrow { width: 38px; height: 38px; }
}

.watch-detail-page {
  width: min(100%, 1500px);
}

.watch-detail-showcase {
  align-items: stretch;
}

.watch-detail-showcase > * {
  min-height: 0;
}

.watch-detail-summary {
  align-self: stretch;
  gap: clamp(8px, 1vw, 14px);
  height: auto;
  min-height: 0;
  padding: clamp(30px, 3.4vw, 46px) clamp(18px, 2.2vw, 30px) clamp(34px, 3.8vw, 52px);
  justify-content: center;
}

.watch-detail-summary > .watch-store-icon,
.watch-detail-summary .watch-store-icon-link {
  margin-bottom: clamp(4px, 0.7vw, 10px);
}

.watch-store-icon-link {
  display: block;
  width: fit-content;
  margin-inline: auto;
  border-radius: 28px;
  line-height: 0;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.watch-store-icon-link:hover {
  transform: translateY(-1px);
  filter: saturate(1.08) contrast(1.04);
}

.watch-detail-summary h1 {
  font-size: clamp(1.65rem, 2.55vw, 2.65rem);
}

.watch-detail-summary .hero-copy {
  margin-top: 0;
  font-size: clamp(0.84rem, 1vw, 0.94rem);
}

.watch-icon-placeholder,
.watch-store-icon {
  width: clamp(94px, 9.6vw, 132px);
  min-height: clamp(94px, 9.6vw, 132px);
  margin: 0 auto;
  border: 1px solid rgba(0, 255, 0, 0.28);
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 0 28px rgba(0, 255, 0, 0.2);
}

.watch-store-icon {
  display: block;
  aspect-ratio: 1;
  height: auto;
  object-fit: cover;
}

.watch-detail-actions {
  flex-direction: column;
  align-items: stretch;
  width: min(100%, 292px);
  margin-inline: auto;
}

.watch-detail-actions .cta-button {
  width: 100%;
  padding-block: 7px;
  font-size: 0.78rem;
}

.detail-image-carousel {
  align-self: stretch;
}

.detail-image-carousel .carousel-track {
  height: 100%;
  min-height: clamp(472px, calc(100vh - 154px), 560px);
}

.detail-image-carousel .carousel-card {
  inset: var(--carousel-edge-gutter);
}

.detail-carousel-card {
  grid-template-rows: minmax(0, 1fr);
}

.detail-carousel-card .watch-media {
  background:
    radial-gradient(circle at center, rgba(0, 255, 0, 0.12), rgba(0, 0, 0, 0.44)),
    #050805;
}

.detail-carousel-card .watch-media img {
  object-fit: contain;
  padding: clamp(8px, 1.4vw, 18px);
}

.detail-carousel-card:hover .watch-media img {
  transform: none;
}

.detail-carousel-actions {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(16px, 2.4vw, 28px);
  pointer-events: none;
}

.detail-carousel-actions .carousel-arrow {
  pointer-events: auto;
  background: rgba(5, 8, 5, 0.74);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42), 0 0 18px rgba(0, 255, 0, 0.14);
  backdrop-filter: blur(8px);
}

@media (max-width: 1020px) {
  .detail-image-carousel .carousel-track { height: auto; min-height: 620px; }
}

@media (max-width: 740px) {
  .watch-detail-summary { height: auto; min-height: auto; }
  .watch-detail-actions {
    align-items: center;
    width: 100%;
    max-width: none;
  }
  .watch-detail-showcase .watch-carousel { order: 0; }
  .detail-image-carousel .carousel-track { height: auto; min-height: clamp(360px, 96vw, 500px); }
  .detail-carousel-actions { padding-inline: 12px; }
}

@media (max-width: 520px) {
  .detail-image-carousel .carousel-track { height: auto; min-height: clamp(330px, 92vw, 420px); }
  .watch-icon-placeholder,
  .watch-store-icon {
    width: 96px;
    min-height: 96px;
    border-radius: 24px;
  }
}

/* Mobile refinement pass for watch detail pages only; desktop rules above remain unchanged. */
@media (max-width: 740px) {
  .top-bar {
    gap: 8px;
    min-height: 54px;
    padding: 6px 10px;
  }

  .brand-lockup { gap: 7px; }
  .brand-logo { width: 34px; height: 34px; }
  .brand-title { font-size: clamp(0.76rem, 3.5vw, 0.98rem); }
  .support-toggle {
    min-height: 34px;
    padding: 6px 11px;
    font-size: 0.76rem;
  }

  .watch-detail-page {
    padding: 8px 10px 24px;
  }

  .watch-detail-showcase {
    gap: 10px;
  }

  .watch-detail-summary {
    gap: 6px;
    padding: 14px 12px 16px;
    border-radius: 22px;
  }

  .watch-detail-summary .watch-store-icon {
    margin-bottom: 2px;
  }

  .watch-icon-placeholder,
  .watch-store-icon {
    width: min(40vw, 220px);
    min-height: min(40vw, 220px);
    border-radius: clamp(28px, 6vw, 44px);
  }

  .watch-detail-summary h1 {
    max-width: 18ch;
    margin-top: 2px;
    font-size: clamp(1.58rem, 8vw, 2.18rem);
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .watch-detail-summary .hero-copy {
    display: block;
    max-width: 31rem;
    margin-top: 2px;
    font-size: clamp(0.78rem, 3.3vw, 0.88rem);
    line-height: 1.38;
  }

  .watch-detail-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 6px;
    margin-top: 6px;
    width: 100%;
    max-width: none;
  }

  .watch-detail-actions .cta-button {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: none;
    min-height: 36px;
    padding: 6px 7px;
    font-size: clamp(0.56rem, 2.45vw, 0.68rem);
    line-height: 1.05;
    white-space: normal;
    text-align: center;
  }

  .detail-image-carousel .carousel-track {
    --carousel-edge-gutter: 4px;
    height: auto;
    min-height: clamp(304px, 82vw, 380px);
    border-radius: 22px;
  }

  .detail-image-carousel .carousel-card {
    padding: 7px;
    border-radius: 20px;
  }

  .detail-carousel-card .watch-media {
    border-radius: 15px;
    min-height: 0;
  }

  .detail-carousel-card .watch-media img {
    padding: 4px;
  }

  .detail-carousel-actions {
    padding-inline: 10px;
  }

  .detail-carousel-actions .carousel-arrow,
  .card-actions .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

  .site-footer {
    padding-block: 8px;
  }
}

@media (max-width: 520px) {
  .top-bar {
    min-height: 48px;
    padding: 5px 8px;
  }

  .brand-logo { width: 30px; height: 30px; }
  .brand-title { font-size: clamp(0.68rem, 3.7vw, 0.82rem); }
  .support-toggle {
    min-height: 31px;
    padding: 5px 9px;
    font-size: 0.72rem;
  }

  .watch-detail-page {
    padding: 6px 8px 18px;
  }

  .watch-detail-showcase {
    gap: 8px;
  }

  .watch-detail-summary {
    gap: 5px;
    padding: 10px 10px 12px;
    border-radius: 20px;
  }

  .watch-detail-summary h1 {
    max-width: 16ch;
    font-size: clamp(1.42rem, 7.4vw, 1.92rem);
  }

  .watch-detail-summary .hero-copy {
    max-width: 29rem;
    font-size: clamp(0.74rem, 3.6vw, 0.82rem);
    line-height: 1.34;
  }

  .watch-detail-actions {
    gap: 4px;
    margin-top: 5px;
  }

  .watch-detail-actions .cta-button {
    min-height: 34px;
    padding: 5px 5px;
    font-size: clamp(0.5rem, 2.5vw, 0.62rem);
  }

  .watch-icon-placeholder,
  .watch-store-icon {
    width: min(56vw, 220px);
    min-height: min(56vw, 220px);
    border-radius: clamp(30px, 9vw, 46px);
  }

  .detail-image-carousel .carousel-track {
    --carousel-edge-gutter: 3px;
    min-height: clamp(286px, 80vw, 344px);
    border-radius: 20px;
  }

  .detail-image-carousel .carousel-card {
    padding: 5px;
    border-radius: 18px;
  }

  .detail-carousel-card .watch-media {
    border-radius: 13px;
  }

  .detail-carousel-card .watch-media img {
    padding: 2px;
  }

  .detail-carousel-actions {
    padding-inline: 8px;
  }

  .detail-carousel-actions .carousel-arrow,
  .card-actions .carousel-arrow {
    width: 34px;
    height: 34px;
    font-size: 0.95rem;
  }

  .site-footer {
    gap: 5px 9px;
    padding: 7px 10px;
    font-size: 0.72rem;
  }
}
