/* =========================================================
   KM BRANDS LLC — WebGL experience stylesheet
   Inspired by studio-grade sites: minimal UI, big type,
   inertia scroll, custom cursor, a living particle field.
   ========================================================= */

:root {
  --bg: #02030a;
  --cyan: #5ef2ff;
  --violet: #a06bff;
  --magenta: #ff5ea8;
  --mint: #7dffbe;

  --ink: rgba(236, 242, 255, 0.96);
  --muted: rgba(175, 192, 228, 0.6);
  --faint: rgba(150, 170, 215, 0.32);
  --line: rgba(150, 175, 255, 0.16);

  --font-display: "Space Grotesk", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.65, 0, 0.12, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  background-color: var(--bg);
  background-image: radial-gradient(
      ellipse 60% 50% at 20% 28%,
      rgba(86, 44, 168, 0.26),
      transparent 60%
    ),
    radial-gradient(
      ellipse 55% 50% at 84% 74%,
      rgba(22, 120, 150, 0.2),
      transparent 60%
    ),
    radial-gradient(
      ellipse 45% 40% at 64% 12%,
      rgba(190, 40, 120, 0.14),
      transparent 60%
    ),
    radial-gradient(circle at 50% 50%, #05071a 0%, #010207 82%);
  background-attachment: fixed;
  overflow-x: hidden;
}
body.has-cursor,
body.has-cursor * {
  cursor: none !important;
}
::selection {
  background: rgba(94, 242, 255, 0.25);
  color: #fff;
}

/* ---------- WebGL canvas ---------- */
#gl {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  display: block;
  opacity: 0.72;
}

/* ---------- Preloader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: #02030a;
  transition: opacity 1s var(--ease), visibility 1s var(--ease);
}
body.loaded .loader {
  opacity: 0;
  visibility: hidden;
}
.loader-inner {
  text-align: center;
  width: min(320px, 70vw);
}
.loader-brand {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.5em;
  font-size: 0.7rem;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: 2.5em;
}
.loader-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 12vw, 6rem);
  line-height: 1;
  background: linear-gradient(120deg, #fff, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.load-bar {
  height: 1px;
  background: var(--line);
  margin: 1.6em 0 1em;
  overflow: hidden;
}
.load-bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
}
.loader-tag {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--faint);
}

/* ---------- Fixed chrome ---------- */
.chrome {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 34px;
  opacity: 0;
  transition: opacity 0.8s var(--ease) 0.3s;
}
body.loaded .chrome {
  opacity: 1;
}
.brandmark {
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: none;
  color: var(--ink);
}
.brandmark-glyph {
  color: var(--cyan);
  font-size: 1.2rem;
  filter: drop-shadow(0 0 8px rgba(94, 242, 255, 0.6));
  transition: transform 0.6s var(--ease);
}
.brandmark:hover .brandmark-glyph {
  transform: rotate(180deg);
}
.brandmark-text {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
}
.menu-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  place-content: center;
  gap: 5px;
}
.menu-btn span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s;
}
body.menu-open .menu-btn span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}
body.menu-open .menu-btn span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* ---------- Side dots ---------- */
.dots {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0;
  transition: opacity 0.8s var(--ease) 0.4s;
}
body.loaded .dots {
  opacity: 1;
}
.dot {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  background: none;
  border: none;
}
.dot-label {
  font-family: var(--font-display);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0;
  transform: translateX(8px);
  transition: all 0.35s var(--ease);
}
.dot-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--faint);
  transition: all 0.35s var(--ease);
}
.dot:hover .dot-label {
  opacity: 1;
  transform: translateX(0);
}
.dot.is-active .dot-label {
  opacity: 1;
  transform: translateX(0);
  color: var(--cyan);
}
.dot.is-active .dot-mark {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
  transform: scale(1.15);
}

/* ---------- Scroll hint ---------- */
.scroll-hint {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.8s var(--ease) 0.6s;
}
body.loaded .scroll-hint {
  opacity: 0.6;
}
.scroll-hint span {
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-hint i {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--cyan), transparent);
  animation: hintpulse 2s ease-in-out infinite;
}
@keyframes hintpulse {
  0%,
  100% {
    transform: scaleY(0.4);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

/* ---------- Fullscreen menu ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 38;
  background: rgba(2, 3, 12, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s var(--ease), visibility 0.55s var(--ease);
}
body.menu-open .menu {
  opacity: 1;
  visibility: visible;
}
.menu-list {
  list-style: none;
  text-align: center;
}
.menu-item {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  padding: 10px 0;
  opacity: 0.55;
  transition: opacity 0.3s var(--ease), transform 0.4s var(--ease);
}
.menu-item:hover {
  opacity: 1;
  transform: translateX(6px);
}
.menu-idx {
  font-family: var(--font-display);
  font-size: 0.8rem;
  color: var(--cyan);
}
.menu-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 6vw, 3.4rem);
}

/* ---------- Scroller / chapters ---------- */
.scroller {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  will-change: transform;
}
.spacer {
  width: 1px;
}
.chapter {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8vw;
  opacity: 0;
}
.chapter.align-left {
  justify-content: flex-start;
  text-align: left;
}
.chapter.align-center {
  justify-content: center;
  text-align: center;
}
.chapter.align-right {
  justify-content: flex-end;
  text-align: right;
}
.ch-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  transform: translateY(var(--py, 0));
  will-change: transform;
}
.align-center .ch-inner {
  max-width: 880px;
}
/* Local readability scrim: dims the particle field only behind the text. */
.ch-inner::before {
  content: "";
  position: absolute;
  inset: -14% -16%;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(2, 3, 10, 0.88) 0%,
    rgba(2, 3, 10, 0.65) 44%,
    rgba(2, 3, 10, 0) 78%
  );
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--cyan);
  margin-bottom: 1.4em;
}
.ch-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 40px rgba(2, 3, 10, 0.9);
}
.ch-lead,
.ch-body,
.eyebrow {
  text-shadow: 0 1px 20px rgba(2, 3, 10, 0.85);
}
.line {
  display: block;
  overflow: hidden;
}
.line-in {
  display: block;
  transform: translateY(105%);
  transition: transform 1s var(--ease);
}
.chapter.is-current .line-in {
  transform: translateY(0);
}
.chapter.is-current .line:nth-child(2) .line-in {
  transition-delay: 0.08s;
}
.ch-suffix {
  display: block;
  font-size: clamp(0.9rem, 1.8vw, 1.3rem);
  letter-spacing: 0.6em;
  color: var(--faint);
  margin-top: 0.6em;
}
.ch-lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  margin-top: 0.8em;
  color: var(--ink);
}
.ch-body {
  color: var(--muted);
  line-height: 1.8;
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  max-width: 52ch;
  margin-top: 1.4em;
}
.align-center .ch-body {
  margin-left: auto;
  margin-right: auto;
}
/* Keep these sentences on one line (wraps only on small screens). */
.chapter[data-id="divisions"] .ch-inner,
.chapter[data-id="transmission"] .ch-inner {
  max-width: 940px;
}
.chapter[data-id="divisions"] .ch-body,
.chapter[data-id="transmission"] .ch-body {
  max-width: none;
}

/* Portfolio brand list */
.brand-list {
  list-style: none;
  margin-top: 2.6em;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  max-width: 620px;
}
.brand-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px 6px;
  border-top: 1px solid var(--line);
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}
.brand-row:last-child {
  border-bottom: 1px solid var(--line);
}
.brand-row:hover {
  padding-left: 18px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--accent) 10%, transparent),
    transparent
  );
}
.brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.1rem, 2.4vw, 1.7rem);
  text-align: left;
  text-shadow: 0 1px 18px rgba(2, 3, 10, 0.95);
}
.brand-kind {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-shadow: 0 1px 18px rgba(2, 3, 10, 0.95);
}

/* Divisions list */
.division-list {
  list-style: none;
  margin-top: 2.4em;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  max-width: 720px;
}
.division-row {
  background: rgba(6, 9, 22, 0.7);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: background 0.4s var(--ease);
}
.division-row:hover {
  background: rgba(14, 20, 44, 0.85);
}
.division-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
}
.division-text {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Transmission */
.comlink {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 1.6em;
  padding: 18px 40px;
  border: 1px solid rgba(94, 242, 255, 0.4);
  border-radius: 999px;
  background: rgba(4, 6, 16, 0.72);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.6vw, 1.6rem);
  color: var(--ink);
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.4s var(--ease), border-color 0.4s var(--ease),
    background 0.4s var(--ease);
  will-change: transform;
}
.comlink-email {
  display: block;
  line-height: 1.1;
}
.comlink-hint {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s var(--ease);
}
.comlink:hover {
  background: rgba(8, 12, 26, 0.82);
  box-shadow: 0 0 40px rgba(94, 242, 255, 0.3);
  border-color: var(--cyan);
}
.comlink:hover .comlink-hint {
  color: var(--cyan);
}
.comlink.copied {
  border-color: var(--cyan);
  box-shadow: 0 0 44px rgba(94, 242, 255, 0.45);
}
.comlink.copied .comlink-hint {
  color: var(--cyan);
  font-size: 0;
}
.comlink.copied .comlink-hint::before {
  content: "Copied ✓";
  font-size: 0.62rem;
  letter-spacing: 0.22em;
}
.social-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  margin: 2.6em 0 1.6em;
}
.social-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.s-label {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}
.s-handle {
  font-family: var(--font-display);
}
.signoff {
  margin-top: 1.6rem;
  color: var(--faint);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

/* ---------- WebGL fallback notice ---------- */
.webgl-note {
  position: fixed;
  left: 34px;
  bottom: 30px;
  max-width: 320px;
  z-index: 40;
  display: none;
  padding: 10px 14px;
  border-left: 2px solid var(--cyan);
  background: rgba(6, 9, 22, 0.7);
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.55;
  border-radius: 0 8px 8px 0;
}
.webgl-note strong {
  color: var(--ink);
  font-weight: 500;
}
body.no-webgl .webgl-note {
  display: block;
}

/* ---------- Brand quick-info popup ---------- */
.brandpop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 3, 10, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s var(--ease);
}
body.brandpop-open .brandpop {
  opacity: 1;
  visibility: visible;
}
.brandpop-card {
  position: relative;
  width: min(440px, 92vw);
  padding: 40px 34px 34px;
  border-radius: 20px;
  border: 1px solid color-mix(in srgb, var(--accent) 45%, transparent);
  background: linear-gradient(160deg, rgba(11, 15, 32, 0.95), rgba(4, 6, 16, 0.95));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6),
    0 0 60px color-mix(in srgb, var(--accent) 22%, transparent);
  text-align: left;
  transform: translateY(18px) scale(0.96);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
body.brandpop-open .brandpop-card {
  transform: none;
  opacity: 1;
}
.brandpop-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.7;
}
.brandpop-eyebrow {
  display: block;
  font-family: var(--font-display);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.66rem;
  color: var(--accent);
  margin-bottom: 0.9em;
}
.brandpop-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.55em;
}
.brandpop-blurb {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.98rem;
}
.brandpop-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  display: grid;
  place-items: center;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.brandpop-close:hover {
  border-color: color-mix(in srgb, var(--accent) 60%, transparent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

/* ---------- Brand nodes on the hero globe ---------- */
.globe-markers {
  position: fixed;
  inset: 0;
  z-index: 30;
  pointer-events: none;
}
.gmarker {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  background: none;
  border: none;
  pointer-events: none;
  opacity: 0;
  transform-origin: 0 0;
  will-change: transform, opacity;
  transition: opacity 0.35s var(--ease);
}
.gmarker.clickable .gmarker-dot,
.gmarker.clickable .gmarker-tag {
  pointer-events: auto;
}
.gmarker-dot {
  position: absolute;
  left: -5px;
  top: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 4px #fff inset;
  transition: transform 0.3s var(--ease);
}
.gmarker-dot::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.6;
  animation: gpulse 2.4s ease-out infinite;
}
/* Enlarged invisible hit area so the small node is easy to hover/click. */
.gmarker-dot::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
}
@keyframes gpulse {
  0% {
    transform: scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.gmarker-tag {
  position: absolute;
  left: 16px;
  top: -11px;
  white-space: nowrap;
  text-align: left;
}
.gmarker-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.82rem;
  color: #fff;
  text-shadow: 0 1px 12px rgba(2, 3, 10, 0.95);
}
.gmarker-kind {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  text-shadow: 0 1px 12px rgba(2, 3, 10, 0.95);
}
.gmarker.is-front .gmarker-kind {
  opacity: 0.8;
  transform: translateY(0);
}
.gmarker.clickable:hover .gmarker-dot {
  transform: scale(1.6);
}
.gmarker.clickable:hover .gmarker-name {
  color: var(--accent);
}
.gmarker.clickable:hover .gmarker-kind {
  opacity: 0.85;
  transform: translateY(0);
}

/* ---------- Custom cursor ---------- */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  pointer-events: none;
  border-radius: 50%;
  margin-left: -3px;
  margin-top: -3px;
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: #fff;
}
.cursor-ring {
  width: 38px;
  height: 38px;
  margin-left: -19px;
  margin-top: -19px;
  border: 1px solid rgba(180, 220, 255, 0.7);
  mix-blend-mode: difference;
  transition: width 0.3s var(--ease), height 0.3s var(--ease),
    margin 0.3s var(--ease), border-color 0.3s var(--ease),
    background 0.3s var(--ease);
}
.cursor-ring.is-hover {
  width: 64px;
  height: 64px;
  margin-left: -32px;
  margin-top: -32px;
  background: rgba(120, 200, 255, 0.12);
  border-color: var(--cyan);
}
.cursor-ring.is-down {
  width: 26px;
  height: 26px;
  margin-left: -13px;
  margin-top: -13px;
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  /* Push the particle field into the background on phone. */
  #gl {
    opacity: 0.34;
  }

  .chapter {
    height: 100svh;
    min-height: 100svh;
    align-items: flex-start;
    padding: max(14vh, 92px) 6vw 12vh;
  }
  .chapter.align-left,
  .chapter.align-center,
  .chapter.align-right {
    justify-content: center;
    text-align: center;
  }
  .chapter[data-id="origin"] {
    padding-top: max(11vh, 84px);
  }

  .ch-inner {
    max-width: 100%;
    width: 100%;
  }
  .ch-inner::before {
    inset: -24% -10%;
    background: radial-gradient(
      ellipse at center,
      rgba(2, 3, 10, 0.94) 0%,
      rgba(2, 3, 10, 0.82) 48%,
      rgba(2, 3, 10, 0) 88%
    );
  }

  .ch-title {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }
  .ch-lead {
    font-size: clamp(1rem, 4.6vw, 1.25rem);
  }
  .ch-body {
    max-width: 36ch;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
  }
  .chapter[data-id="divisions"] .ch-inner,
  .chapter[data-id="transmission"] .ch-inner {
    max-width: 100%;
  }

  /* Brand nodes sit below copy, not over it. */
  .globe-markers {
    z-index: 3;
  }
  .gmarker-name {
    font-size: 0.74rem;
  }
  .gmarker-kind {
    opacity: 0.72;
    transform: none;
  }
  .gmarker.tag-left .gmarker-tag {
    left: auto;
    right: 16px;
    text-align: right;
  }
  .gmarker.tag-above .gmarker-tag {
    left: 50%;
    top: auto;
    bottom: 14px;
    transform: translateX(-50%);
    text-align: center;
  }

  .comlink {
    padding: 16px 28px;
    font-size: clamp(0.92rem, 4.2vw, 1.15rem);
  }

  .division-list {
    grid-template-columns: 1fr;
  }
  .dots {
    right: 14px;
  }
  .dot-label {
    display: none;
  }
  .brandmark-text {
    display: none;
  }
  .brand-row {
    grid-template-columns: auto 1fr;
  }
  .brand-kind {
    display: none;
  }
  .scroll-hint {
    bottom: 18px;
  }
  .webgl-note {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .line-in {
    transition: none;
    transform: none;
  }
  .scroll-hint i {
    animation: none;
  }
}
