:root {
  --bg: #050607;
  --panel: #0c1114;
  --panel-2: #111820;
  --text: #f3fbff;
  --muted: #9db1ba;
  --line: rgba(111, 241, 255, 0.22);
  --line-strong: rgba(111, 241, 255, 0.5);
  --cyan: #62efff;
  --lime: #b7ff4a;
  --coral: #ff4f69;
  --amber: #ffd057;
  --shadow: rgba(0, 0, 0, 0.48);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
.config-panel {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(98, 239, 255, 0.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(98, 239, 255, 0.03) 1px, transparent 1px),
    radial-gradient(circle at 80% 8%, rgba(255, 79, 105, 0.16), transparent 30rem),
    radial-gradient(circle at 8% 42%, rgba(183, 255, 74, 0.08), transparent 30rem),
    var(--bg);
  background-size: 44px 44px, 44px 44px, auto, auto, auto;
  color: var(--text);
  font-family: "Inter", "Noto Sans SC", system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0 42%, rgba(98, 239, 255, 0.06) 43%, transparent 44% 100%);
  pointer-events: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: rgba(243, 251, 255, 0.08);
}

.scroll-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--lime), var(--coral));
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(5, 6, 7, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: block;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  background: #000;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  font-weight: 900;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--cyan);
}

.nav-cta,
.primary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  font-size: 14px;
  font-weight: 900;
}

.nav-cta,
.primary-button {
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  color: #031014;
  box-shadow: 0 14px 34px rgba(98, 239, 255, 0.18);
}

.ghost-button {
  background: rgba(243, 251, 255, 0.055);
}

.scene,
.section,
.creator-wall,
.scroll-story,
.module-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.module-section {
  padding: 112px 0;
  border-bottom: 1px solid rgba(111, 241, 255, 0.12);
}

.module-section:first-of-type {
  padding-top: 96px;
}

.module-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: 34px;
  margin-bottom: 36px;
}

.module-heading .eyebrow,
.module-heading h1,
.module-heading h2 {
  grid-column: 1;
}

.module-heading p {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.module-heading .hero-actions {
  grid-column: 1 / -1;
  margin-top: 0;
}

.module-heading h1 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(48px, 8vw, 116px);
}

.module-heading h2 {
  max-width: 900px;
}

.no-break {
  white-space: nowrap;
}

.title-line {
  display: block;
  white-space: nowrap;
}

.review-card,
.display-card,
.customer-review-card,
.player-video-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 24, 32, 0.86), rgba(5, 6, 7, 0.78));
  box-shadow: 0 24px 58px var(--shadow);
}

.review-grid,
.display-grid,
.customer-review-grid,
.player-video-grid {
  display: grid;
  gap: 16px;
}

.review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
}

.review-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.review-thumb::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(243, 251, 255, 0.56);
  background: rgba(98, 239, 255, 0.82);
  clip-path: polygon(28% 18%, 80% 50%, 28% 82%);
  filter: drop-shadow(0 12px 24px rgba(98, 239, 255, 0.25));
}

.review-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.review-card:hover .review-thumb img {
  transform: scale(1.04);
  filter: saturate(1.12) contrast(1.05);
}

.review-card > div {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px;
}

.review-card span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.review-card h3 {
  margin: 0;
  color: var(--text);
  font-size: 25px;
  line-height: 1.08;
}

.review-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.review-card a:not(.review-thumb) {
  margin-top: auto;
  color: var(--lime);
  font-weight: 900;
  text-transform: uppercase;
}

.display-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.display-card {
  overflow: hidden;
}

.display-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.display-card-wide img {
  aspect-ratio: 16 / 9;
}

.display-card-portrait img {
  aspect-ratio: 3 / 4;
}

.display-card h3 {
  margin: 0;
  padding: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.customer-review-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.customer-review-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.customer-review-card img {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
}

.customer-review-card figcaption {
  padding: 14px 18px 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.customer-review-card figcaption strong {
  color: var(--text, #fff);
  font-weight: 600;
}

.moc03-feature-heading {
  margin: 36px 0 14px;
}

.moc03-feature-heading .eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.moc03-feature-heading h3 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.2;
}

.moc03-feature-heading p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 720px;
}

.moc03-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.moc03-tile {
  margin: 0;
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 24, 32, 0.9), rgba(5, 6, 7, 0.78));
  box-shadow: 0 14px 32px var(--shadow);
  overflow: hidden;
  border-radius: 6px;
}

.moc03-tile img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

.moc03-tile figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  letter-spacing: 0.02em;
  line-height: 1.4;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.78) 100%);
}

.moc03-tile.hero {
  grid-column: span 2;
  grid-row: span 2;
}

.moc03-tile.hero figcaption {
  font-size: 13px;
  padding: 14px 18px;
}

@media (max-width: 900px) {
  .moc03-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .moc03-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .moc03-tile.hero {
    grid-column: span 2;
    grid-row: auto;
  }
  .moc03-tile figcaption {
    font-size: 11px;
    padding: 8px 10px;
  }
}

.player-video-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 16px;
}

.player-video-card {
  overflow: hidden;
}

.player-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #020405;
  object-fit: contain;
}

.player-video-card-vertical video {
  aspect-ratio: 9 / 16;
  max-height: 760px;
}

.player-video-card > div {
  padding: 20px;
}

.player-video-card h3 {
  margin: 0;
}

.tag {
  margin-bottom: 10px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 950px;
  margin-bottom: 22px;
  font-size: clamp(54px, 11vw, 132px);
  line-height: 0.88;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 5vw, 68px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 30px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .module-heading {
    grid-template-columns: 1fr;
  }

  .module-heading p,
  .module-heading .eyebrow,
  .module-heading h1,
  .module-heading h2,
  .module-heading .hero-actions {
    grid-column: auto;
    grid-row: auto;
  }

  .review-grid,
  .display-grid,
  .customer-review-grid,
  .player-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header,
  .module-section,
  .site-footer {
    width: calc(100% - 24px);
  }

  .site-header {
    top: 10px;
    margin-top: 10px;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 52px;
  }

  .module-section {
    padding: 76px 0;
  }

  .module-heading h1 {
    font-size: 42px;
    line-height: 0.98;
  }

  .review-grid,
  .display-grid,
  .customer-review-grid,
  .player-video-grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }
}
