:root {
  --bg: #e8ecef;
  --card: #f4f6f7;
  --white: #ffffff;
  --ink: #121417;
  --muted: #3f4a55;
  --slate: #5c6b7a;
  --blue: #2e86c1;
  --blue-deep: #1f6ea3;
  --dark: #121212;
  --radius: 28px;
  --gap: 14px;
  --shadow: 0 10px 30px rgba(20, 28, 36, 0.07);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

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

html,
body {
  margin: 0;
  height: 100%;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
}

body {
  background:
    radial-gradient(1200px 500px at 50% -10%, #ffffff 0%, transparent 60%),
    var(--bg);
}

img {
  max-width: 100%;
  display: block;
}

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

.page {
  width: min(1640px, calc(100% - 20px));
  margin: 0 auto;
  padding: 10px 0 10px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  flex: 0 0 auto;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}

.copy {
  font-size: 12px;
  font-weight: 600;
  color: var(--slate);
}

.mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.lang {
  display: flex;
  gap: 4px;
  background: #fff;
  padding: 4px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.lang button {
  border: 0;
  background: transparent;
  color: var(--slate);
  font: 700 12px/1 var(--font-display);
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.lang button.is-active {
  background: var(--ink);
  color: #fff;
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: minmax(200px, 1.45fr) 1fr 1fr 0.9fr;
  grid-template-areas:
    "hero hero detail web"
    "media media stat web"
    "media media brand music"
    "dash dash social music";
  gap: var(--gap);
}

.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--card);
  min-width: 0;
  min-height: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(20, 28, 36, 0.14);
  }
}

.tile-visual {
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.tile-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.eyebrow.light {
  color: #9fd0f0;
}

h1,
h2 {
  font-family: var(--font-display);
  margin: 0;
  letter-spacing: -0.04em;
  line-height: 0.98;
  color: var(--ink);
}

h1 {
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 800;
}

h2 {
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  margin-bottom: 8px;
}

.lede,
.tile-body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.tile-body {
  position: relative;
  z-index: 2;
  padding: 18px 20px 20px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--blue-deep);
}

.cta::after {
  content: "↗";
  font-size: 12px;
}

.cta.solid {
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  width: fit-content;
}

.cta.solid::after {
  content: "→";
}

@media (hover: hover) and (pointer: fine) {
  .cta.solid:hover {
    background: var(--blue-deep);
  }
}

.tile-hero {
  grid-area: hero;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: minmax(0, 1fr);
  position: relative;
  background: #eef1f3;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  min-width: 0;
  min-height: 0;
  padding: 28px 24px 28px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background: #eef1f3;
  z-index: 5;
}

.hero-copy .eyebrow {
  margin-bottom: 0;
}

.hero-copy h1 {
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.05;
}

.hero-copy .lede {
  font-size: 15px;
  line-height: 1.45;
}

.more-btn {
  align-self: flex-start;
  margin-top: 4px;
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-deep);
}

.more-btn:hover {
  color: var(--ink);
}

.bio-modal {
  width: min(640px, calc(100% - 32px));
  max-height: min(80vh, 720px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(18, 24, 32, 0.2);
  color: var(--ink);
}

.bio-modal::backdrop {
  background: rgba(16, 20, 24, 0.45);
}

.bio-panel {
  display: flex;
  flex-direction: column;
  max-height: min(80vh, 720px);
}

.bio-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px 0;
}

.bio-head h2 {
  margin: 0;
  font-size: 28px;
}

.bio-close {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #f3f5f7;
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.bio-close:hover {
  background: var(--ink);
  color: #fff;
}

.bio-body {
  overflow: auto;
  padding: 16px 24px 28px;
}

.bio-body p {
  margin: 0 0 0.95em;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.bio-body p:last-child {
  margin-bottom: 0;
}

.hero-visual {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  align-self: stretch;
  min-width: 0;
  height: 100%;
  width: auto;
  aspect-ratio: 682 / 1024;
  max-width: 280px;
  overflow: hidden;
  z-index: 1;
}

.hero-photo {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: right bottom;
}

.tile-detail {
  grid-area: detail;
}

.tile-detail .tile-visual,
.tile-detail .tile-visual img {
  height: 100%;
}

.tile-detail .tile-visual img {
  object-position: 78% 40%;
}

.chip {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 2;
  max-width: calc(100% - 24px);
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 20px rgba(16, 24, 32, 0.12);
}

.chip span {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.chip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--ink);
}

.tile-web {
  grid-area: web;
  background: var(--dark);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.tile-web .tile-visual {
  flex: 1 1 auto;
  min-height: 140px;
}

.tile-web .tile-visual img {
  object-position: 50% 18%;
}

.tile-web .tile-body {
  flex: 0 0 auto;
  background: #101214;
}

.tile-web h2 {
  color: #fff;
}

.tile-web .tile-body p {
  color: rgba(255, 255, 255, 0.82);
}

.tile-web .cta {
  color: #9fd0f0;
}

.tile-media {
  grid-area: media;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  background: #eef1f3;
}

.tile-media .tile-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 22px 24px 26px;
  background: #eef1f3;
}

.tile-media .tile-visual img {
  object-position: 72% 50%;
}

.hotspots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hp {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 6px 16px rgba(16, 24, 32, 0.12);
  border-radius: 999px;
  padding: 4px 8px 4px 4px;
}

.hp1 { left: 8%; top: 16%; }
.hp2 { right: 8%; top: 38%; }
.hp3 { left: 18%; bottom: 14%; }

.hp i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(46, 134, 193, 0.22);
}

.hp b {
  font-weight: 700;
}

.tile-stat {
  grid-area: stat;
  background: var(--dark);
  color: #fff;
  display: grid;
  place-content: center;
  text-align: center;
}

.stat-num {
  margin: 0;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.06em;
}

.stat-label {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.tile-brand {
  grid-area: brand;
  background: #fff;
  display: grid;
  place-content: center;
  text-align: center;
}

.mono {
  width: 64px;
  height: 64px;
  margin: 0 auto 8px;
  border-radius: 18px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
}

.tile-brand p {
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--slate);
}

.tile-dash {
  grid-area: dash;
  background: #fff;
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  padding: 8px 22px;
  gap: 8px;
}

.gauge svg {
  width: 140px;
  height: auto;
}

.gauge .track {
  fill: none;
  stroke: #e6eaee;
  stroke-width: 10;
  stroke-linecap: round;
}

.gauge .value {
  fill: none;
  stroke: var(--blue);
  stroke-width: 10;
  stroke-linecap: round;
}

.gauge text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  fill: var(--slate);
}

.metrics {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  padding: 0;
}

.metrics li {
  border-left: 1px solid #e8ecef;
  padding-left: 12px;
}

.metrics span {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--slate);
}

.metrics strong {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
}

.tile-social {
  grid-area: social;
  display: grid;
  grid-template-rows: auto 1fr 1fr 1fr;
  gap: 6px;
  padding: 12px;
  background: #fff;
}

.tile-social .eyebrow {
  margin: 0 2px 2px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 0;
  padding: 0 12px;
  border-radius: 16px;
  background: #f3f5f7;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}

.social-link svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--blue-deep);
}

@media (hover: hover) and (pointer: fine) {
  .social-link:hover {
    background: var(--blue);
    color: #fff;
  }

  .social-link:hover svg {
    color: #fff;
  }
}

.tile-music {
  grid-area: music;
  background: #111113;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.tile-music .tile-visual {
  flex: 1 1 auto;
  min-height: 140px;
}

.tile-music .tile-visual img {
  object-position: 50% 28%;
}

.tile-music::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12, 12, 14, 0.08) 18%, rgba(12, 12, 14, 0.88) 78%);
}

.tile-music .tile-body {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  background: transparent;
  color: #fff;
}

.tile-music .eyebrow,
.tile-music h2,
.tile-music .tile-body p,
.tile-music .cta {
  color: #fff;
}

.tile-music .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

@media (min-width: 981px) {
  html,
  body {
    overflow: hidden;
    height: 100%;
  }

  .page {
    height: 100svh;
    max-height: 100svh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .bento {
    flex: 1 1 auto;
    min-height: 0;
  }

  .tile-web .tile-body,
  .tile-music .tile-body {
    padding: 14px 16px 16px;
  }

  .tile-web .tile-body p,
  .tile-music .tile-body p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}

@media (max-width: 980px) and (min-width: 681px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "hero hero"
      "media media"
      "web music"
      "social social"
      "detail stat"
      "brand dash";
  }

  .tile-web,
  .tile-music,
  .tile-media,
  .tile-detail,
  .tile-stat,
  .tile-brand,
  .tile-dash,
  .tile-social {
    min-height: 260px;
  }

  .tile-web,
  .tile-music {
    min-height: 380px;
  }

  .tile-hero {
    min-height: 220px;
    max-height: none;
  }

  .hero-copy {
    padding: 18px 16px 18px 20px;
  }

  .hero-visual {
    max-width: 220px;
  }
}

@media (max-width: 680px) {
  .page {
    width: min(100% - 24px, 1180px);
    padding: 12px 0 28px;
  }

  .topbar {
    margin-bottom: 10px;
  }

  .bento {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "hero"
      "media"
      "web"
      "music"
      "social"
      "dash"
      "stat"
      "detail"
      "brand";
    gap: 12px;
  }

  .tile-hero,
  .tile-media,
  .tile-web,
  .tile-music,
  .tile-detail,
  .tile-stat,
  .tile-brand,
  .tile-dash,
  .tile-social {
    min-height: 0;
    max-height: none;
  }

  .tile-hero {
    display: block;
    min-height: 240px;
    position: relative;
    overflow: hidden;
    background: #eef1f3;
  }

  .hero-visual {
    position: absolute;
    inset: 0 0 0 auto;
    width: 48%;
    height: 100%;
    max-width: none;
    aspect-ratio: auto;
    overflow: visible;
    pointer-events: none;
    z-index: 1;
  }

  .hero-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    transform: none;
  }

  .hero-visual::before {
    display: none;
  }

  .hero-copy {
    position: relative;
    z-index: 5;
    min-height: 240px;
    padding: 24px 50% 24px 22px;
    gap: 8px;
    justify-content: flex-start;
    background: transparent;
  }

  .hero-copy h1 {
    font-size: 30px;
    line-height: 1.08;
    margin-top: auto;
  }

  .hero-copy .lede {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }

  .tile-media {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 220px;
    position: relative;
  }

  .tile-media .tile-visual {
    position: absolute;
    inset: 0;
    height: auto;
  }

  .tile-media .tile-visual img {
    object-fit: cover;
  }

  .tile-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(238, 241, 243, 0.2) 0%, rgba(238, 241, 243, 0.92) 72%);
    z-index: 1;
    pointer-events: none;
  }

  .tile-media .tile-body {
    position: relative;
    z-index: 2;
    width: auto;
    padding: 20px;
    background: transparent;
    justify-content: space-between;
    min-height: 220px;
  }

  .tile-web,
  .tile-music {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .tile-web .tile-visual,
  .tile-music .tile-visual {
    position: absolute;
    inset: 0;
    flex: none;
    min-height: 0;
    height: auto;
  }

  .tile-web .tile-visual img,
  .tile-music .tile-visual img {
    object-fit: cover;
  }

  .tile-web::after,
  .tile-music::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }

  .tile-web::after {
    background: linear-gradient(180deg, rgba(16, 18, 20, 0.15) 0%, rgba(16, 18, 20, 0.88) 70%);
  }

  .tile-music::after {
    background: linear-gradient(180deg, rgba(12, 12, 14, 0.12) 0%, rgba(12, 12, 14, 0.9) 72%);
  }

  .tile-web .tile-body,
  .tile-music .tile-body {
    position: relative;
    z-index: 2;
    min-height: 200px;
    padding: 20px;
    background: transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .tile-web h2,
  .tile-music h2,
  .tile-media h2 {
    font-size: 24px;
  }

  .hotspots {
    display: none;
  }

  .tile-dash {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .gauge {
    display: none;
  }

  .metrics {
    width: 100%;
  }

  .metrics li {
    border-left: 0;
    padding-left: 0;
    text-align: left;
  }

  .tile-social {
    min-height: 0;
    padding: 20px;
    gap: 8px;
    grid-template-rows: auto;
  }

  .social-link {
    padding: 12px 14px;
    border-radius: 16px;
  }

  .tile-stat {
    min-height: 140px;
  }

  .tile-brand {
    min-height: 120px;
  }
}
