@font-face {
  font-family: "Snowflake Sans";
  src: url("fonts/SnowflakeSans-Book.woff2") format("woff2"),
    url("fonts/SnowflakeSans-Book.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Snowflake Sans";
  src: url("fonts/SnowflakeSans-Medium.woff2") format("woff2"),
    url("fonts/SnowflakeSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Snowflake Sans";
  src: url("fonts/SnowflakeSans-Bold.woff2") format("woff2"),
    url("fonts/SnowflakeSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Snowflake Sans";
  src: url("fonts/SnowflakeSans-Black.woff2") format("woff2"),
    url("fonts/SnowflakeSans-Black.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Snowflake Inline";
  src: url("fonts/SnowflakeInline-Inlinex1.woff2") format("woff2"),
    url("fonts/SnowflakeInline-Inlinex1.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f2efe8;
  --surface: rgba(255, 255, 255, 0.84);
  --text: #161616;
  --muted: #5a574f;
  --accent: #ee3124;
  --accent-2: #181818;
  --accent-3: #c8ff00;
  --border: rgba(22, 22, 22, 0.08);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Snowflake Sans", Arial, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(238, 49, 36, 0.24), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(200, 255, 0, 0.3), transparent 26rem),
    linear-gradient(135deg, var(--bg), #fffaf1);
  color: var(--text);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(22, 22, 22, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 22, 22, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.stage-glow {
  position: fixed;
  z-index: -1;
  width: 34rem;
  height: 34rem;
  border-radius: 50%;
  filter: blur(20px);
  opacity: 0.45;
}

.stage-glow-one {
  top: -12rem;
  left: -8rem;
  background: var(--accent);
}

.stage-glow-two {
  right: -10rem;
  bottom: 12rem;
  background: var(--accent-3);
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 0 1rem;
  position: relative;
  z-index: 2;
}

.brand {
  font-family: "Snowflake Inline", "Snowflake Sans", Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.controls {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.control-group {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.2rem;
  background: var(--surface);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
}

.btn {
  border: 0;
  background: transparent;
  color: var(--text);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

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

.btn.is-active {
  background: var(--accent);
  color: #fff;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: stretch;
  gap: 1rem;
  margin-top: 0.5rem;
  padding: clamp(1rem, 2vw, 1.4rem);
  min-height: 520px;
  border-radius: 36px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    linear-gradient(135deg, rgba(238, 49, 36, 0.18), rgba(200, 255, 0, 0.12));
  box-shadow: var(--shadow);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -36% 45%;
  height: 68%;
  background: repeating-linear-gradient(90deg, transparent 0 16px, rgba(238, 49, 36, 0.9) 16px 28px);
  transform: rotate(-8deg);
  opacity: 0.22;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(1.2rem, 5vw, 4.5rem);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.58);
}

.hero-art {
  position: relative;
  min-height: 360px;
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, var(--accent-3), transparent 9rem),
    radial-gradient(circle at 60% 50%, var(--accent), transparent 13rem),
    #161616;
}

.eyebrow {
  margin: 0 0 0.3rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

h1 {
  margin: 0;
  max-width: 11ch;
  font-family: "Snowflake Inline", "Snowflake Sans", Arial, sans-serif;
  font-size: clamp(3rem, 8.4vw, 7.7rem);
  line-height: 0.86;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.intro {
  margin-top: 1rem;
  color: var(--muted);
  max-width: 72ch;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.award-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.award-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 2.4rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.big-year {
  position: absolute;
  right: -0.15em;
  bottom: -0.28em;
  color: #fff;
  font-family: "Snowflake Inline", "Snowflake Sans", Arial, sans-serif;
  font-size: clamp(7rem, 18vw, 15rem);
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 1;
}

.orbit {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.orbit-one {
  width: 17rem;
  height: 7rem;
  top: 18%;
  left: 10%;
}

.orbit-two {
  width: 24rem;
  height: 10rem;
  right: -20%;
  top: 28%;
}

.spark {
  position: absolute;
  width: 4.2rem;
  aspect-ratio: 1;
  background: var(--accent-3);
  clip-path: polygon(50% 0, 61% 36%, 98% 35%, 68% 57%, 79% 93%, 50% 72%, 21% 93%, 32% 57%, 2% 35%, 39% 36%);
}

.spark-one {
  top: 3rem;
  right: 2rem;
}

.spark-two {
  left: 2rem;
  bottom: 4rem;
  transform: rotate(28deg) scale(0.65);
}

.grid-two {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  padding: clamp(1.1rem, 2vw, 1.6rem);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 8rem;
  height: 8rem;
  background: var(--accent-3);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.8;
}

h2 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.photo-card img {
  width: 100%;
  border-radius: 20px;
  margin-top: 0.8rem;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.photo-missing {
  display: none;
  margin-top: 0.8rem;
  padding: 0.8rem;
  border-radius: 10px;
  background: #fff6ef;
  color: #8f3f06;
  border: 1px dashed #f4b185;
  font-size: 0.92rem;
}

.missing-photo img {
  display: none;
}

.missing-photo .photo-missing {
  display: block;
}

.cta {
  display: inline-block;
  margin-top: 0.6rem;
  font-weight: 700;
  color: var(--accent);
  text-underline-offset: 0.3em;
}

.gallery-section {
  margin-top: clamp(2rem, 5vw, 4rem);
  margin-bottom: 3.5rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.section-heading h2 {
  font-family: "Snowflake Inline", "Snowflake Sans", Arial, sans-serif;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.gallery-subtitle {
  margin: 0;
  color: var(--muted);
  max-width: 28rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 2vw, 1.2rem);
}

.tile {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border-radius: 24px;
  text-decoration: none;
  background: var(--surface);
  color: var(--text);
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tile:nth-child(8n + 1),
.tile:nth-child(8n + 6) {
  grid-column: span 2;
}

.tile:nth-child(8n + 1) .tile-thumb,
.tile:nth-child(8n + 6) .tile-thumb {
  aspect-ratio: 16 / 9;
}

.tile:hover {
  transform: translateY(-7px) rotate(-0.4deg);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.tile-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #222;
}

.tile-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.42), transparent 58%);
}

.tile-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.35s ease;
}

.tile:hover .tile-thumb img {
  transform: scale(1.08);
}

.award-badge {
  position: absolute;
  z-index: 1;
  top: 0.8rem;
  left: 0.8rem;
  max-width: calc(100% - 1.6rem);
  padding: 0.36rem 0.58rem;
  border-radius: 999px;
  background: #fff;
  color: #171717;
  font-weight: 800;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.award-grand-prix-gold {
  background: linear-gradient(135deg, #ffeb7a, #ee3124);
}

.award-gold {
  background: #ffd84a;
}

.award-silver {
  background: #e1e6ef;
}

.award-bronze {
  background: #c77a3b;
  color: #fff;
}

.award-shortlist {
  background: #171717;
  color: #fff;
}

.tile-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem;
}

.tile-kicker {
  display: block;
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
  font-weight: 700;
}

.tile strong {
  display: block;
  font-size: 1.1rem;
  line-height: 1.12;
}

.tile-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 1rem;
  color: var(--muted);
  font-weight: 700;
}

.theme-ribbon {
  --bg: #faf5ed;
  --surface: rgba(255, 255, 255, 0.9);
  --text: #201b16;
  --muted: #625a50;
  --accent: #2447ff;
  --accent-2: #ee3124;
  --accent-3: #ffd84a;
  --border: rgba(36, 71, 255, 0.08);
}

.theme-ribbon body {
  background: var(--bg);
}

.theme-ribbon .topbar {
  align-items: flex-start;
}

.theme-ribbon .hero {
  grid-template-columns: 0.82fr 1.18fr;
  min-height: 620px;
  background:
    linear-gradient(90deg, rgba(36, 71, 255, 0.14) 0 10%, transparent 10% 100%),
    #fbf4ea;
  box-shadow: none;
}

.theme-ribbon .hero::after {
  inset: 8% auto auto 43%;
  width: 10rem;
  height: 84%;
  background: var(--accent);
  opacity: 1;
  transform: rotate(12deg);
}

.theme-ribbon .hero-copy {
  justify-content: center;
  background: transparent;
  padding-right: 0;
}

.theme-ribbon h1 {
  max-width: 9ch;
  font-size: clamp(3.5rem, 10vw, 9rem);
  line-height: 0.82;
}

.theme-ribbon .hero-art {
  align-self: center;
  min-height: 520px;
  background:
    linear-gradient(135deg, transparent 0 46%, var(--accent-3) 46% 62%, transparent 62%),
    #201b16;
  border-radius: 999px 999px 28px 28px;
}

.theme-ribbon .big-year {
  right: 8%;
  bottom: 8%;
  writing-mode: vertical-rl;
  font-size: clamp(5rem, 12vw, 10rem);
}

.theme-ribbon .gallery-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
}

.theme-ribbon .tile {
  grid-column: span 4;
  border-radius: 0 32px 32px 0;
  box-shadow: none;
  transform: none;
}

.theme-ribbon .tile:nth-child(6n + 1) {
  grid-column: span 7;
}

.theme-ribbon .tile:nth-child(6n + 2),
.theme-ribbon .tile:nth-child(6n + 5) {
  grid-column: span 5;
  margin-top: 3rem;
}

.theme-ribbon .tile:nth-child(6n + 3),
.theme-ribbon .tile:nth-child(6n + 4),
.theme-ribbon .tile:nth-child(6n + 6) {
  grid-column: span 4;
}

.theme-ribbon .tile-thumb {
  aspect-ratio: 1 / 1;
}

.theme-ribbon .tile:nth-child(6n + 1) .tile-thumb {
  aspect-ratio: 21 / 9;
}

.theme-ribbon .tile-body {
  background: #fff;
}

.theme-ribbon .tile:hover {
  transform: translateX(8px);
}

.theme-poster {
  --bg: #0b0d10;
  --surface: rgba(18, 22, 31, 0.86);
  --text: #eef3ff;
  --muted: #b3bfdc;
  --accent: #41e2ba;
  --accent-2: #ee3124;
  --accent-3: #ee3124;
  --border: rgba(238, 243, 255, 0.08);
  --shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.theme-poster {
  background:
    radial-gradient(circle at 10% 10%, rgba(65, 226, 186, 0.16), transparent 24rem),
    radial-gradient(circle at 90% 15%, rgba(238, 49, 36, 0.18), transparent 26rem),
    #0b0d10;
}

.theme-poster .hero {
  grid-template-columns: 1fr;
  min-height: 720px;
  background:
    linear-gradient(135deg, rgba(18, 22, 31, 0.9), rgba(18, 22, 31, 0.62)),
    radial-gradient(circle at 80% 35%, rgba(65, 226, 186, 0.22), transparent 18rem);
}

.theme-poster .hero-copy {
  justify-content: flex-start;
  max-width: 760px;
  background: transparent;
}

.theme-poster h1 {
  max-width: 12ch;
}

.theme-poster .hero-art {
  position: absolute;
  inset: auto 1.2rem 1.2rem auto;
  width: min(48vw, 540px);
  min-height: 62%;
  border-radius: 50%;
}

.theme-poster .big-year {
  right: 8%;
  bottom: 12%;
  color: rgba(255, 255, 255, 0.9);
}

.theme-poster .tile,
.theme-poster .card,
.theme-poster .control-group {
  backdrop-filter: blur(2px);
}

.theme-poster .gallery-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0.6rem 0 1.4rem;
  scroll-snap-type: x mandatory;
}

.theme-poster .tile,
.theme-poster .tile:nth-child(8n + 1),
.theme-poster .tile:nth-child(8n + 6) {
  flex: 0 0 min(82vw, 420px);
  grid-column: auto;
  scroll-snap-align: start;
}

.theme-poster .tile-thumb,
.theme-poster .tile:nth-child(8n + 1) .tile-thumb,
.theme-poster .tile:nth-child(8n + 6) .tile-thumb {
  aspect-ratio: 3 / 4;
}

.theme-poster .tile {
  border-radius: 32px;
  background: #12161f;
}

.theme-poster .tile:hover {
  transform: translateY(-10px) scale(1.02);
}

@media (max-width: 1050px) {
  .hero,
  .grid-two {
    grid-template-columns: 1fr;
  }

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

  .theme-ribbon .hero {
    grid-template-columns: 1fr;
  }

  .theme-ribbon .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .theme-ribbon .tile,
  .theme-ribbon .tile:nth-child(6n + 1),
  .theme-ribbon .tile:nth-child(6n + 2),
  .theme-ribbon .tile:nth-child(6n + 3),
  .theme-ribbon .tile:nth-child(6n + 4),
  .theme-ribbon .tile:nth-child(6n + 5),
  .theme-ribbon .tile:nth-child(6n + 6) {
    grid-column: span 1;
    margin-top: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .gallery-grid,
  .tile:nth-child(8n + 1),
  .tile:nth-child(8n + 6) {
    grid-template-columns: 1fr;
    grid-column: span 1;
  }

  .theme-ribbon .gallery-grid {
    grid-template-columns: 1fr;
  }

  .theme-poster .hero-art {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 320px;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding: 1.2rem;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Figma-based final direction */
.figma-design {
  --figma-black: #191919;
  --figma-grey: #f5f5f5;
  --figma-muted: #9a9a9a;
  min-height: 100vh;
  overflow-x: hidden;
  background: #ffffff;
  color: #000000;
}

.figma-design::before {
  display: none;
}

.figma-design .container {
  width: min(1356px, calc(100vw - 84px));
}

.figma-design .figma-hero.container,
.figma-design .figma-photo-section.container,
.figma-design .human-footer.container {
  width: 100%;
  max-width: none;
}

.figma-design .enjoy-band.container {
  width: 100%;
  max-width: none;
}

.figma-design .topbar {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
}

.figma-design .topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(1356px, calc(100vw - 84px));
  margin: 0 auto 0;
  min-height: 0;
  padding: 42px;
}

.figma-design .brand-logo {
  width: 57px;
  height: 17px;
  object-fit: contain;
  display: block;
}

.figma-design .brand-group {
  display: inline-flex;
  gap: 9px;
}

.figma-design .brand-suffix {
  font-family: "Snowflake Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  color: #000000;
}

.figma-design .controls {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.figma-design .lang-link {
  border: 0;
  padding: 0;
  background: transparent;
  font-family: "Snowflake Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
  cursor: pointer;
}

.figma-design .lang-link.is-active {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.figma-design .lang-separator {
  font-family: "Snowflake Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #000000;
}

.figma-hero {
  width: 100%;
  padding: 0;
  background: #f5f5f5;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  width: min(1356px, calc(100vw - 84px));
  margin: 0 auto;
  padding: 35px 42px 35px;
}

.hero-title {
  display: flex;
  flex-direction: column;
  width: min(1059px, 100%);
  margin: 0;
  font-family: "Snowflake Sans", Arial, sans-serif;
  font-weight: 700;
  font-size: 108px;
  line-height: 101px;
  letter-spacing: -4.5px;
  text-transform: uppercase;
  margin-top:0px;
}

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

.hero-title span:last-child {
  padding-left: 50px;
}

.hero-mark {
  align-self: flex-end;
  display: inline-flex;
  align-items: flex-start;
  gap: 41px;
  margin-top: 25px;
}

.hero-year {
  margin: 0;
  font-family: "Snowflake Sans", Arial, sans-serif;
  font-size: 150px;
  font-weight: 700;
  line-height: 140px;
  letter-spacing: -4.5px;
  text-transform: uppercase;
  width: 359px;
  text-align: right;
  z-index: 2;
}

.hero-spark {
  width: 78px;
  height: 78px;
  margin-top: 20px;
  object-fit: contain;
  z-index: 1;
}

@media (max-width: 1280px) {
  .hero-panel {
    min-height: 520px;
    padding: 110px 42px 20px;
  }

  .hero-title {
    width: 100%;
    font-size: clamp(96px, 11.2vw, 132px);
    line-height: 0.9;
    letter-spacing: -0.03em;
  }

  .hero-mark {
    gap: clamp(10px, 1.8vw, 18px);
  }

  .hero-year {
    width: auto;
    font-size: clamp(72px, 10vw, 116px);
    line-height: 0.92;
    letter-spacing: -0.03em;
  }

  .hero-spark {
    width: clamp(42px, 4.6vw, 66px);
    height: clamp(42px, 4.6vw, 66px);
    margin-top: 0.16em;
  }
}

@media (max-width: 1024px) {
  .hero-panel {
    min-height: 470px;
    overflow: hidden;
    padding: 92px 28px 16px;
  }

  .hero-title {
    width: 100%;
    font-size: clamp(68px, 10.6vw, 102px);
    line-height: 0.92;
  }

  .hero-mark {
    max-width: 100%;
    gap: 12px;
  }

  .hero-year {
    font-size: clamp(52px, 8.4vw, 78px);
    line-height: 0.95;
    max-width: min(42vw, 320px);
  }

  .hero-spark {
    width: clamp(34px, 3.8vw, 50px);
    height: clamp(34px, 3.8vw, 50px);
  }
}

.intro-band {
  background: var(--figma-black);
  color: #ffffff;
}

.intro-inner {
  color: inherit;
  min-height: 460px;
  padding: 62px 0 70px;
  text-align: center;
}

.intro-inner h2 {
  margin: 0 auto 18px;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.05;
}

.intro-inner p {
  max-width: 558px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 20px;
}

.character-row {
  display: flex;
  justify-content: center;
  gap: clamp(6px, 1.2vw, 18px);
  flex-wrap: nowrap;
  margin-top: 68px;
}

.character-row img {
  width: clamp(64px, 8.6vw, 124px);
  height: auto;
  aspect-ratio: 124 / 114;
  object-fit: contain;
  object-position: 50% 50%;
  overflow: visible;
}

.enjoy-band {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  margin-top: 0;
  background: #363733;
  color: #ffffff;
  text-align: center;
}

.enjoy-band p {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.figma-design .gallery-section {
  margin: 0 auto;
  padding: 60px 0 92px;
}

.figma-design .section-heading {
  display: none;
}

.figma-design .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 444px));
  justify-content: center;
  gap: 48px 12px;
}

.figma-design .tile,
.figma-design .tile:nth-child(8n + 1),
.figma-design .tile:nth-child(8n + 6) {
  display: flex;
  grid-column: auto;
  min-height: auto;
  flex-direction: column;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #000000;
  transform: none;
}

.figma-design .tile:hover {
  transform: none;
  box-shadow: none;
}

.figma-design .tile-thumb,
.figma-design .tile:nth-child(8n + 1) .tile-thumb,
.figma-design .tile:nth-child(8n + 6) .tile-thumb {
  aspect-ratio: 444 / 250;
  background: #d9d9d9;
}

.figma-design .tile-thumb::after {
  display: none;
}

.figma-design .tile-thumb img {
  object-fit: cover;
  transform: none;
}

.figma-design .tile:hover .tile-thumb img {
  transform: none;
}

.figma-design .award-badges {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  gap: 8px;
  z-index: 3;
}

.figma-design .award-badge {
  position: relative;
  top: auto;
  left: auto;
  max-width: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 0;
  background: #c28340;
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  line-height: 19px;
  white-space: nowrap;
  box-shadow: none;
}

.figma-design .award-grand-prix {
  background: #70e4c4;
  color: #ffffff;
}

.figma-design .award-gold {
  background: #f8d943;
  color: #ffffff;
}

.figma-design .award-silver {
  background: #b4b4b4;
  color: #ffffff;
}

.figma-design .award-bronze {
  background: #c28340;
  color: #ffffff;
}

.figma-design .award-shortlist {
  background: #bc99f6;
  color: #ffffff;
}

.figma-design .award-icon {
  width: 17.365px;
  height: 18px;
  flex: 0 0 17.365px;
  display: inline-block;
  background-image: url("images/figma-award-icon-universal.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.figma-design .award-label {
  display: inline-flex;
  align-items: center;
  min-height: 19px;
  line-height: 19px;
  transform: translateY(1px);
}

.figma-design .tile-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  padding: 24px 0 0;
}

.figma-design .tile-kicker {
  order: 2;
  margin: 0;
  color: var(--figma-muted);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
}

.figma-design .tile strong {
  order: 1;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.figma-design .tile-link {
  order: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  margin-top: auto;
  padding: 0;
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-decoration: none;
}

.figma-design .tile-link-text {
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.figma-design .tile-arrow {
  display: inline-block;
  text-decoration-line: none;
  text-decoration: none !important;
  font-size: 20px;
}

.figma-photo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 0 12px;
  background: var(--figma-grey);
}

.accolades-copy {
  width: min(784px, calc(100vw - 48px));
  margin: 0 0 56px;
  font-size: 18px;
  line-height: 28px;
  text-align: center;
  color: #000000;
}

.intro-inner .accolades-copy {
  width: min(784px, calc(100vw - 84px));
  margin: 52px auto 0;
  color: #ffffff;
}

.figma-team-photo {
  position: relative;
  width: min(1356px, calc(100vw - 48px));
  aspect-ratio: 1356 / 972;
  padding: 0 42px;
  overflow: hidden;
}

.team-photo-frame {
  position: absolute;
  inset: 0 42px;
  width: calc(100% - 84px);
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transition: none;
}

.team-photo-frame.is-active {
  opacity: 1;
}

.funny-cta {
  margin-top: 42px;
  color: #000000;
  font-size: 36px;
  line-height: 1;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.human-footer {
  display: flex;
  min-height: 389px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000000;
  color: #ffffff;
  text-align: center;
}

.human-footer img {
  width: min(772px, calc(100vw - 48px));
  height: auto;
  display: block;
}

.human-footer a {
  margin-top: 34px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  text-decoration: underline;
}



.human-footer p {
  margin: 42px 0 0;
  font-size: 10px;
}

.modal-open {
  overflow: hidden;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
}

.video-modal.is-open {
  display: block;
}

.video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}

.video-modal__dialog {
  position: relative;
  width: min(1000px, calc(100vw - 48px));
  margin: min(8vh, 56px) auto;
  padding: 22px;
  border-radius: 20px;
  background: #111111;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
}

.video-modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.video-modal__player {
  width: 100%;
  max-height: 72vh;
  display: block;
  border-radius: 12px;
  background: #000000;
}



@media (max-width: 640px) {
  .figma-design .container {
    width: min(100% - 28px, 1368px);
  }

  .figma-design .topbar {
    margin-top: 0;
  }

  .figma-design .topbar-inner {
    width: min(100% - 28px, 1368px);
    margin-top: 14px;
    padding: 30px 2px;
    align-items: center;
  }

  .figma-design .brand-group {
    gap: 6px;
    align-items: center;
  }

  .figma-design .brand-logo {
    width: 48px;
    height: 14px;
  }

  .figma-design .brand-suffix {
    font-size: 14px;
    line-height: 16px;
  }

  .figma-design .controls {
    gap: 4px;
    white-space: normal;
    flex-wrap: nowrap;
  }

  .figma-design .lang-link,
  .figma-design .lang-separator {
    font-size: 14px;
    line-height: 16px;
  }

  .figma-hero {
    padding-bottom: 0;
  }

  .hero-panel {
    width: min(100% - 28px, 1368px);
    height: auto;
    min-height: auto;
    padding: 20px 14px 18px;
  }

  .hero-title {
    width: 100%;
    font-size: clamp(34px, 10.8vw, 56px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    margin-top: 0;
  }

  .hero-title span:last-child {
    padding-left: 18px;
  }

  .hero-mark {
    width: 100%;
    justify-content: flex-end;
    gap: 10px;
  }

  .hero-year {
    font-size: clamp(48px, 15vw, 72px);
    line-height: 1;
    letter-spacing: -0.03em;
  }

  .intro-inner {
    min-height: 440px;
    padding: 64px 0;
  }

  .character-row {
    margin-top: 48px;
    gap: clamp(4px, 1.5vw, 10px);
    flex-wrap: wrap;
    justify-content: center;
  }

  .character-row img {
    width: min(96px, calc((100% - 20px) / 3));
  }

  .figma-design .gallery-section {
    padding: 72px 0;
  }

  .figma-design .gallery-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .figma-design .tile strong {
    font-size: 22px;
  }

  .figma-photo-section {
    padding: 56px 0;
  }

  .accolades-copy {
    width: min(100%, 784px);
    margin-bottom: 38px;
    font-size: 16px;
    line-height: 24px;
  }

  .funny-cta {
    font-size: 28px;
  }

  .video-modal__dialog {
    width: calc(100vw - 24px);
    margin: 18px auto;
    padding: 14px;
  }

  .video-modal__close {
    top: 6px;
    right: 6px;
  }
}
