:root {
  --chip-yellow: #ffd26a;
  --chip-yellow-deep: #f6b93b;
  --ink: #17130d;
  --muted: #6f675b;
  --line: rgba(32, 26, 18, 0.16);
  --paper: #fffaf0;
  --soft: #f8efe1;
  --blue: #26a7e0;
  --green: #149979;
  --coral: #ef7766;
  --shadow: 0 24px 70px rgba(73, 52, 25, 0.13);
  --glass: rgba(255, 252, 244, 0.58);
  --glass-strong: rgba(255, 252, 244, 0.82);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 210, 106, 0.3), transparent 28%),
    radial-gradient(circle at 85% 26%, rgba(38, 167, 224, 0.12), transparent 24%),
    var(--paper);
  color: var(--ink);
  font-family: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  font-weight: 500;
}

[hidden] {
  display: none !important;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 32px));
  height: 64px;
  margin: 14px auto 0;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(73, 52, 25, 0.07);
  backdrop-filter: blur(12px);
}

.brand-logo {
  display: block;
  width: clamp(86px, 10vw, 132px);
  height: auto;
  transition: transform 220ms ease, filter 220ms ease;
}

.brand:hover .brand-logo {
  transform: translateY(-2px) rotate(-1deg);
  filter: drop-shadow(0 10px 20px rgba(246, 185, 59, 0.22));
}

.main-nav {
  display: flex;
  gap: clamp(12px, 3vw, 30px);
  align-items: center;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.92);
}

.nav-link {
  position: relative;
  padding: 9px 0 10px;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: var(--chip-yellow-deep);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-link.is-active,
.nav-link:hover {
  color: var(--blue);
  transform: translateY(-1px);
}

.nav-link.is-active::after,
.nav-link:hover::after {
  transform: scaleX(1);
}

.section-panel {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 110px clamp(18px, 5vw, 56px) 72px;
}

.route-enter {
  animation: routeEnter 360ms ease both;
}

@keyframes routeEnter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-page {
  position: relative;
  z-index: 2;
  overflow: visible;
  isolation: isolate;
}

.home-page::before {
  content: "";
  position: absolute;
  inset: calc(100svh - 96px) 0 -36px;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, var(--paper) 0%, rgba(255, 250, 240, 0.1) 18%, rgba(255, 250, 240, 0.46) 72%, var(--paper) 100%),
    url("assets/chips-poster-bg.webp") center top / cover no-repeat;
  opacity: 0.2;
  filter: saturate(0.88) brightness(1.05);
}

.home-page > .section-panel {
  position: relative;
  z-index: 1;
}

.hero.section-panel {
  position: relative;
  width: 100vw;
  max-width: none;
  height: 100vh;
  height: 100svh;
  min-height: 520px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  padding: 0;
  overflow: hidden;
  background: #fff3d4;
  z-index: 2;
}

.info-content h2 {
  margin: 0;
  font-size: clamp(56px, 12vw, 132px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-video {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  object-fit: cover;
  object-position: center 58%;
}

.hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  opacity: 0.68;
  transform: translateX(-50%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.hero-scroll-cue::before {
  content: none;
}

.hero-scroll-cue span {
  width: 17px;
  height: 17px;
  border-right: 3px solid rgba(23, 19, 13, 0.62);
  border-bottom: 3px solid rgba(23, 19, 13, 0.62);
  transform: translateY(3px) rotate(45deg);
  animation: scrollCueBounce 1800ms ease-in-out infinite;
}

.hero-scroll-cue:hover {
  opacity: 0.9;
  transform: translateX(-50%) translateY(2px);
}

@keyframes scrollCueBounce {
  0%,
  100% {
    transform: translateY(1px) rotate(45deg);
  }

  50% {
    transform: translateY(7px) rotate(45deg);
  }
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 0;
  padding-bottom: 22px;
  position: relative;
}

.section-title-row::after,
.page-heading::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--chip-yellow-deep), var(--chip-yellow), rgba(255, 210, 106, 0));
}

.section-title-row h2,
.page-heading h2,
.services-placeholder h2 {
  margin: 0;
  font-size: clamp(36px, 7vw, 78px);
  line-height: 1.05;
  font-family: "Bebas Neue", "Noto Sans KR", sans-serif;
  letter-spacing: 0.02em;
}

.compact-title-row h2 {
  font-size: clamp(34px, 6vw, 64px);
}

.filter-language-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(32, 26, 18, 0.08);
  border-radius: 999px;
  background: rgba(255, 252, 244, 0.78);
  box-shadow: 0 12px 34px rgba(73, 52, 25, 0.08);
}

.filter-locale-button {
  min-width: 66px;
  min-height: 40px;
  display: grid;
  place-items: center;
  gap: 1px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.filter-locale-button strong,
.filter-locale-button span {
  display: block;
}

.filter-locale-button strong {
  font-size: 13px;
  font-weight: 900;
}

.filter-locale-button span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.filter-locale-button:hover,
.filter-locale-button.is-active {
  transform: translateY(-1px);
  background: #fff;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px rgba(246, 185, 59, 0.58), 0 10px 22px rgba(73, 52, 25, 0.08);
}

.text-link {
  color: var(--green);
  font-weight: 900;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: inset 0 0 0 1px rgba(20, 153, 121, 0.16);
  transition: transform 180ms ease, background 180ms ease;
}

.text-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
}

.sample-filter {
  --filter-panel-space: 0px;
  position: relative;
  z-index: 300;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 12px;
  margin: 24px 0 calc(34px + var(--filter-panel-space));
  align-items: start;
  transition: margin-bottom 180ms ease;
}

.filter-controls {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(32, 26, 18, 0.1);
  border-radius: 14px;
  background: rgba(255, 252, 244, 0.94);
  box-shadow: var(--shadow);
}

.filter-dropdown {
  position: relative;
  min-width: 0;
}

.filter-toggle,
.sample-filter > .dark-button {
  min-width: 0;
  height: 54px;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.filter-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  text-align: left;
  box-shadow: inset 0 0 0 1px rgba(32, 26, 18, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.filter-toggle-label {
  min-width: 0;
}

.filter-toggle:hover,
.filter-toggle.has-selection,
.filter-dropdown.is-open .filter-toggle {
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(246, 185, 59, 0.72), 0 12px 24px rgba(73, 52, 25, 0.08);
}

.filter-toggle strong,
.filter-toggle small {
  display: block;
}

.filter-toggle strong {
  font-size: 14px;
  font-weight: 900;
}

.filter-toggle small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.filter-toggle-meta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filter-count {
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.filter-chevron {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(246, 185, 59, 0.18);
  box-shadow: inset 0 0 0 1px rgba(246, 185, 59, 0.28);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.filter-chevron::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: -3px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
}

.filter-toggle:hover .filter-chevron,
.filter-toggle.has-selection .filter-chevron,
.filter-dropdown.is-open .filter-chevron {
  background: var(--chip-yellow);
  box-shadow: 0 8px 18px rgba(246, 185, 59, 0.24);
}

.filter-dropdown.is-open .filter-chevron {
  transform: rotate(180deg);
}

.filter-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  z-index: 400;
  width: min(760px, calc(100vw - 48px));
  box-sizing: border-box;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px) scale(0.985);
  transform-origin: top left;
  pointer-events: none;
  overflow: auto;
  padding: 18px;
  border: 1px solid rgba(32, 26, 18, 0.1);
  border-radius: 16px;
  background: rgba(255, 252, 244, 0.98);
  box-shadow: 0 24px 70px rgba(73, 52, 25, 0.18);
  transition:
    max-height 260ms ease,
    opacity 180ms ease,
    transform 220ms ease;
}

.filter-dropdown:nth-child(4n) .filter-panel,
.filter-dropdown:nth-child(4n - 1) .filter-panel {
  right: 0;
  left: auto;
}

.filter-dropdown.is-open .filter-panel {
  max-height: min(520px, 68vh);
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.filter-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(32, 26, 18, 0.1);
}

.filter-panel-head strong,
.filter-panel-head small {
  display: block;
}

.filter-panel-head strong {
  font-size: 18px;
  font-weight: 900;
}

.filter-panel-head small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.filter-actions {
  display: flex;
  gap: 8px;
}

.filter-actions button {
  border: 0;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(20, 153, 121, 0.1);
  color: var(--green);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.filter-option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.filter-check {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(32, 26, 18, 0.07);
}

.filter-check input {
  width: 16px;
  height: 16px;
  accent-color: var(--chip-yellow-deep);
}

.sample-filter > .dark-button {
  align-self: start;
  height: 68px;
  min-height: 0;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 2px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--chip-yellow), var(--chip-yellow-deep));
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(246, 185, 59, 0.26);
  transition: filter 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.sample-filter > .dark-button strong,
.sample-filter > .dark-button span {
  display: block;
}

.sample-filter > .dark-button strong {
  font-size: 15px;
}

.sample-filter > .dark-button span {
  color: rgba(23, 19, 13, 0.68);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-filter > .dark-button:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(246, 185, 59, 0.36);
}

.sample-grid,
.actor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.top-news-section {
  position: relative;
  padding-top: 28px;
}

.top-news-carousel {
  position: relative;
  isolation: isolate;
  padding: 18px;
  border: 1px solid rgba(32, 26, 18, 0.08);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 234, 0.9)),
    radial-gradient(circle at 12% 10%, rgba(246, 185, 59, 0.16), transparent 34%);
  box-shadow: 0 24px 70px rgba(73, 52, 25, 0.1);
}

.top-news-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 32px) / 3);
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px;
  background: transparent;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.top-news-rail::-webkit-scrollbar {
  display: none;
}

.top-news-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(73, 52, 25, 0.16);
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}

.top-news-arrow:hover {
  background: var(--chip-yellow);
  transform: translateY(-50%) scale(1.06);
}

.top-news-arrow[data-news-slide="prev"] {
  left: -4px;
}

.top-news-arrow[data-news-slide="next"] {
  right: -4px;
}

.top-news-card {
  min-height: 240px;
  display: grid;
  grid-template-rows: 128px 1fr;
  overflow: hidden;
  border: 1px solid rgba(32, 26, 18, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  scroll-snap-align: start;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.top-news-card:hover,
.top-news-card:focus {
  transform: translateY(-5px);
  border-color: rgba(246, 185, 59, 0.54);
  background: rgba(255, 253, 246, 0.94);
  box-shadow: 0 24px 58px rgba(73, 52, 25, 0.15);
  outline: none;
}

.top-news-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.top-news-card > div {
  display: grid;
  align-content: space-between;
  gap: 10px;
  padding: 16px;
}

.top-news-card time {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.top-news-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.top-news-card p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.top-news-card p span {
  color: var(--chip-yellow-deep);
  transition: transform 180ms ease;
}

.top-news-card:hover p span,
.top-news-card:focus p span {
  transform: translateX(4px);
}

.news-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-view-all span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--chip-yellow);
  transition: transform 180ms ease, background 180ms ease;
}

.news-view-all:hover span {
  background: var(--chip-yellow-deep);
  transform: translateX(4px);
}

.sample-empty {
  position: relative;
  z-index: 1;
  min-height: 190px;
  display: grid;
  place-items: center;
  border: 1px dashed rgba(246, 185, 59, 0.55);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--muted);
  font-weight: 900;
  text-align: center;
  padding: 28px;
  backdrop-filter: blur(14px);
}

.sample-card,
.actor-card,
.demo-card {
  border: 1px solid rgba(32, 26, 18, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.sample-card {
  position: relative;
  min-height: 300px;
  padding: 24px 22px 20px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.sample-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 12px;
  border: 1px solid rgba(246, 185, 59, 0);
  pointer-events: none;
  transition: border-color 220ms ease, inset 220ms ease;
}

.sample-card:hover,
.sample-card:focus {
  transform: translateY(-8px);
  border-color: rgba(246, 185, 59, 0.58);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 76px rgba(73, 52, 25, 0.17);
  outline: none;
}

.sample-card:hover::after,
.sample-card:focus::after {
  inset: 8px;
  border-color: rgba(246, 185, 59, 0.52);
}

.sample-card:focus-visible {
  outline: 3px solid rgba(38, 167, 224, 0.26);
  outline-offset: 4px;
}

.avatar {
  width: 102px;
  height: 102px;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.28), 0 18px 38px rgba(45, 35, 22, 0.12);
}

.sample-card-meta {
  margin: 0 0 18px;
  color: var(--ink);
  line-height: 1.35;
  text-align: center;
}

.sample-card-meta strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
}

.sample-card-meta span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.profile-card-hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 36px;
  margin: 18px 4px 0;
  padding-top: 14px;
  border-top: 1px solid rgba(32, 26, 18, 0.09);
  color: rgba(23, 19, 13, 0.62);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.profile-card-hint span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(246, 185, 59, 0.16);
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.sample-card:hover .profile-card-hint,
.sample-card:focus .profile-card-hint {
  color: var(--green);
}

.sample-card:hover .profile-card-hint span,
.sample-card:focus .profile-card-hint span {
  transform: translateX(4px);
  background: var(--chip-yellow);
}

.sample-player {
  cursor: default;
  display: grid;
  grid-template-columns: 40px minmax(80px, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.play-button {
  position: relative;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--chip-yellow), var(--chip-yellow-deep));
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(246, 185, 59, 0.3);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.play-button:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 28px rgba(246, 185, 59, 0.4);
}

.sample-player.is-loading .play-button {
  color: transparent;
  cursor: wait;
}

.sample-player.is-loading .play-button::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 3px solid rgba(255, 255, 255, 0.45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: player-spin 800ms linear infinite;
}

.sample-player.is-error .play-button {
  background: #cf4d40;
  box-shadow: 0 10px 22px rgba(207, 77, 64, 0.24);
}

.wave {
  position: relative;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #eadfc6;
}

.sample-player.is-loading .wave::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  animation: player-loading-wave 900ms ease-in-out infinite;
}

.wave span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--chip-yellow), var(--chip-yellow-deep));
  transition: width 120ms linear;
}

.time-left {
  min-width: 42px;
  color: var(--ink);
  font-weight: 800;
  text-align: right;
}

.sample-player.is-error .time-left {
  color: #b64237;
}

@keyframes player-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes player-loading-wave {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(260%);
  }
}

.volume-control {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: auto minmax(90px, 1fr);
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.volume-control input {
  width: 100%;
  accent-color: var(--chip-yellow-deep);
  cursor: pointer;
}

.sample-card > p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.info-band {
  position: relative;
  z-index: 3;
  min-height: 260px;
  margin-top: 20px;
  background:
    linear-gradient(135deg, rgba(255, 210, 106, 0.9), rgba(246, 185, 59, 0.82)),
    rgba(255, 210, 106, 0.9);
  display: grid;
  place-items: center;
  padding: 42px 16px;
}

.top-button {
  position: absolute;
  z-index: 5;
  top: -72px;
  left: 50%;
  transform: translateX(-50%);
  border: 0;
  background: transparent;
  color: var(--chip-yellow-deep);
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  transition: color 180ms ease, transform 180ms ease;
}

.top-button span {
  display: block;
  width: 34px;
  height: 34px;
  margin: 0 auto 2px;
  border-top: 5px solid var(--chip-yellow);
  border-left: 5px solid var(--chip-yellow);
  transform: rotate(45deg);
  transition: transform 220ms ease, border-color 180ms ease;
}

.top-button:hover,
.top-button:focus-visible {
  color: var(--ink);
  transform: translateX(-50%) translateY(-4px);
  outline: none;
}

.top-button:hover span,
.top-button:focus-visible span {
  border-color: var(--chip-yellow-deep);
  transform: translateY(-7px) rotate(45deg);
}

.info-content {
  width: min(680px, calc(100% - 32px));
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(28px, 6vw, 70px);
  color: #fff;
  text-shadow: 0 2px 18px rgba(87, 60, 16, 0.18);
}

.info-content h2 {
  font-size: clamp(42px, 9vw, 86px);
}

.info-content p {
  margin: 0;
  font-weight: 800;
  line-height: 2;
}

.actors-section,
.actor-detail-section,
.news-section,
.contact-section,
.services-placeholder {
  min-height: 100vh;
}

.page-heading {
  margin-bottom: 42px;
  text-align: center;
  border-bottom: 0;
  padding-bottom: 26px;
  position: relative;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 224px;
  gap: 24px;
  align-items: start;
}

.news-section .page-heading {
  margin-bottom: 34px;
  padding-bottom: 22px;
}

.news-section .page-heading h2 {
  font-size: clamp(34px, 6vw, 64px);
}

.contact-section .page-heading h2 {
  font-size: clamp(32px, 4.8vw, 52px);
}

.contact-heading-top {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.contact-heading-top .eyebrow {
  margin: 0;
}

.contact-language-switch {
  padding: 4px;
}

.contact-language-switch .filter-locale-button {
  min-width: 68px;
  min-height: 36px;
}

.contact-form-toolbar {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  height: auto;
  margin: -4px 0 2px;
}

.contact-section .page-heading h2 span {
  display: block;
  margin-top: 2px;
  color: rgba(23, 19, 13, 0.46);
  font-size: clamp(22px, 3.4vw, 36px);
}

.page-heading > p:not(.eyebrow) {
  width: min(720px, 100%);
  margin: 14px auto 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.75;
}

.page-heading-en {
  color: rgba(23, 19, 13, 0.5) !important;
  font-size: 14px;
}

.contact-section {
  padding-top: 92px;
}

.contact-section .page-heading {
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.contact-section .page-heading > p:not(.eyebrow) {
  margin-top: 10px;
}


.news-main {
  display: grid;
  gap: 18px;
}

.news-feature,
.news-item,
.news-sidebar-card {
  border: 1px solid rgba(32, 26, 18, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.news-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1fr);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.news-feature.is-compact {
  grid-template-columns: 168px minmax(0, 1fr);
  padding: 18px;
  gap: 20px;
}

.news-feature.is-compact .news-feature-visual {
  min-height: 144px;
  border-radius: 12px;
  overflow: hidden;
}

.news-feature.is-compact .news-feature-copy {
  padding: 0;
}

.news-feature.is-compact h3 {
  font-size: 18px;
}

.news-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(246, 185, 59, 0.56);
  background: rgba(255, 253, 246, 0.94);
  box-shadow: 0 28px 68px rgba(73, 52, 25, 0.16);
}

.news-feature-visual {
  min-height: 260px;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(255, 238, 190, 0.62));
}

.news-feature-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.news-feature-copy {
  display: grid;
  align-content: center;
  padding: clamp(22px, 3.5vw, 34px);
}

.news-list {
  display: grid;
  gap: 12px;
}

.news-item {
  position: relative;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 20px;
  padding: 18px;
  align-items: stretch;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.news-item:hover {
  transform: translateY(-3px);
  border-color: rgba(246, 185, 59, 0.56);
  background: rgba(255, 253, 246, 0.94);
  box-shadow: 0 22px 54px rgba(73, 52, 25, 0.14);
}

.news-feature[hidden],
.news-item[hidden] {
  display: none;
}

.news-feature time,
.news-item time {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.news-thumb {
  width: 100%;
  height: 100%;
  min-height: 144px;
  display: block;
  border-radius: 12px;
  background: rgba(246, 185, 59, 0.16);
  object-fit: cover;
  object-position: center;
}

.news-item-copy {
  display: grid;
  align-content: center;
  gap: 8px;
}

.news-feature h3,
.news-item h3 {
  margin: 10px 0;
  color: var(--ink);
  line-height: 1.25;
}

.news-feature h3 {
  font-size: clamp(21px, 2.45vw, 30px);
}

.news-item h3 {
  font-size: 18px;
}

.news-more {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease, color 180ms ease;
}

.news-more span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--chip-yellow);
  color: var(--ink);
  font-size: 15px;
  transition: transform 180ms ease;
}

.news-feature:hover .news-more,
.news-item:hover .news-more {
  opacity: 1;
  transform: translateY(0);
}

.news-feature:hover .news-more span,
.news-item:hover .news-more span {
  transform: translateX(4px);
}

.news-feature p,
.news-item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.72;
}

.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
}

.news-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(246, 185, 59, 0.18);
  color: var(--ink);
  font-size: 11px;
  font-weight: 900;
}

.news-sidebar {
  position: sticky;
  top: 100px;
  display: grid;
  gap: 14px;
}

.news-sidebar-card {
  padding: 16px;
}

.news-sidebar-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
}

.news-filter-link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 30px;
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
  font-size: 14px;
  text-align: left;
}

.news-filter-link::after {
  content: "→";
  color: var(--chip-yellow-deep);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.news-filter-link:hover,
.news-filter-link.is-active {
  color: var(--ink);
}

.news-filter-link:hover::after,
.news-filter-link.is-active::after {
  opacity: 1;
  transform: translateX(0);
}

.news-filter-link.is-active {
  background: rgba(246, 185, 59, 0.14);
  border-radius: 10px;
  padding: 0 10px;
}

.news-empty {
  padding: 32px;
  border: 1px dashed rgba(246, 185, 59, 0.62);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.news-feature,
.news-item {
  cursor: pointer;
}

.news-feature:focus,
.news-item:focus {
  outline: 3px solid rgba(38, 167, 224, 0.24);
  outline-offset: 4px;
}

.news-article-section {
  width: min(980px, calc(100% - 32px));
}

.news-article {
  display: grid;
  gap: 28px;
}

.news-article-head {
  display: grid;
  gap: 14px;
  text-align: center;
}

.news-article-head .news-tags {
  justify-content: center;
}

.news-article-head time {
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.news-article-head h2 {
  width: min(820px, 100%);
  margin: 0 auto;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1.16;
}

.news-article-head > p:last-child {
  width: min(720px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.9;
}

.news-article-image {
  width: 100%;
  max-height: 520px;
  display: block;
  border-radius: 20px;
  object-fit: contain;
  object-position: center;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(255, 238, 190, 0.62));
  box-shadow: var(--shadow);
}

.news-article-body {
  width: min(760px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid rgba(32, 26, 18, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.news-article-body p {
  margin: 0;
  color: #3f372d;
  font-size: 16px;
  font-weight: 650;
  line-height: 2.1;
}

.news-article-body p + p {
  margin-top: 22px;
}

.news-article-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  width: min(760px, 100%);
  margin: 0 auto;
}

.news-article-nav a,
.news-article-nav span {
  min-height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--green);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(20, 153, 121, 0.14);
}

.news-article-nav span.is-disabled {
  background: rgba(32, 26, 18, 0.06);
  color: rgba(111, 103, 91, 0.5);
  box-shadow: inset 0 0 0 1px rgba(32, 26, 18, 0.08);
  cursor: not-allowed;
}

.news-article-nav a:hover {
  background: var(--chip-yellow);
  color: var(--ink);
}

.actor-card {
  min-height: 330px;
  display: grid;
  grid-template-rows: 1fr auto;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.actor-card:hover,
.actor-card:focus {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: rgba(246, 185, 59, 0.45);
  outline: none;
}

.actor-photo {
  display: grid;
  place-items: center;
  background: #fff;
}

.actor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.actor-card-info {
  border-top: 0;
  padding: 16px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 233, 0.9));
}

.actor-card-info strong {
  display: block;
  font-size: 20px;
}

.actor-card-info span {
  color: var(--muted);
  font-size: 13px;
}

.back-button {
  border: 0;
  background: transparent;
  color: var(--blue);
  font-weight: 900;
  cursor: pointer;
  margin-bottom: 32px;
  transition: transform 180ms ease;
}

.back-button:hover {
  transform: translateX(-4px);
}

.actor-profile {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  grid-template-areas:
    "heading heading"
    "portrait copy";
  gap: clamp(26px, 4vw, 56px) clamp(34px, 6vw, 78px);
  align-items: start;
  width: min(1180px, 100%);
  margin: 0 auto 56px;
  padding: clamp(4px, 1.6vw, 18px) 0 0;
}

.profile-heading-block {
  grid-area: heading;
  text-align: center;
}

.profile-heading-block .eyebrow {
  margin-bottom: 10px;
}

.profile-heading-block h2 {
  margin: 0;
  font-size: clamp(54px, 8vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
}

.profile-portrait {
  grid-area: portrait;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 24px 48px rgba(44, 34, 20, 0.13);
  overflow: hidden;
}

.profile-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.profile-copy {
  grid-area: copy;
  display: flex;
  flex-direction: column;
  justify-content: start;
  min-width: 0;
  padding-top: clamp(8px, 2vw, 28px);
}

.profile-name-en {
  margin: 0;
  color: var(--blue);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 900;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.profile-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 12px 14px;
  margin: 26px 0 28px;
}

.profile-highlights p {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid rgba(32, 26, 18, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 24px rgba(44, 34, 20, 0.09);
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
}

.profile-copy #detail-bio {
  margin: 0;
  max-width: 660px;
  line-height: 1.9;
  font-size: 17px;
  font-weight: 700;
}

.profile-capabilities {
  max-width: none;
  margin: 22px 0 0;
  padding: 16px 0 0;
  border-top: 2px solid rgba(255, 194, 71, 0.42);
  color: #5e574e;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.6;
}

.voice-demo {
  width: 100%;
  margin: 0 0 28px;
}

.profile-copy .voice-demo .profile-section-head h3 {
  font-size: clamp(22px, 2.6vw, 32px);
}

.profile-intro-demo {
  display: grid;
  grid-template-columns: minmax(120px, 150px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 28px);
  align-items: center;
  margin: 0 0 26px;
}

.profile-intro-demo #intro-demo-player {
  max-width: 540px;
}

.profile-audio-label {
  display: grid;
  place-items: center;
  min-height: 92px;
  padding: 16px 14px;
  border: 2px solid rgba(32, 26, 18, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  text-align: center;
}

.profile-audio-label span,
.profile-audio-label strong {
  display: block;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
}

.profile-audio-label span {
  color: var(--blue);
  font-size: 15px;
}

.profile-audio-label strong {
  margin-top: 6px;
  color: var(--chip-yellow);
  font-size: clamp(24px, 3vw, 32px);
}

.profile-intro-copy {
  min-width: 0;
}

.profile-section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-start;
  gap: 10px 16px;
  margin-bottom: 16px;
}

.profile-section-head span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.profile-section-head h3 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 38px);
}

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

.sample-button-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.sample-choice {
  min-height: 48px;
  padding: 10px 18px;
  border: 1px solid rgba(32, 26, 18, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 10px 22px rgba(44, 34, 20, 0.08);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.25;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.sample-choice:hover,
.sample-choice.is-active {
  border-color: rgba(36, 156, 219, 0.52);
  background: #fff;
  color: var(--blue);
  transform: translateY(-2px);
}

.demo-card {
  min-height: 82px;
  padding: 16px;
}

.demo-card strong {
  display: block;
  margin-bottom: 8px;
}

.profile-tags {
  width: min(1060px, 100%);
  margin: 36px auto 0;
  padding-top: 20px;
  border-top: 3px solid rgba(255, 210, 106, 0.8);
  color: var(--muted);
  font-weight: 800;
}

.services-placeholder {
  min-height: 420px;
}

.services-placeholder p:last-child {
  max-width: 680px;
  line-height: 1.9;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.contact-aside,
.contact-form {
  border: 1px solid rgba(32, 26, 18, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.contact-aside {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  align-content: start;
  gap: 14px;
  max-height: calc(100vh - 120px);
  padding: 20px;
  overflow: auto;
  scrollbar-width: thin;
}

.contact-aside::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255, 210, 106, 0.32), rgba(38, 167, 224, 0.12) 58%, rgba(20, 153, 121, 0.12)),
    radial-gradient(circle at 86% 12%, rgba(255, 255, 255, 0.9), transparent 28%);
  z-index: 0;
}

.contact-aside > * {
  position: relative;
  z-index: 1;
}

.contact-kicker {
  margin: 0;
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-aside h3 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.18;
}

.contact-aside h3 span {
  color: rgba(23, 19, 13, 0.48);
  font-size: 0.72em;
}

.contact-aside p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.65;
}

.contact-aside p strong {
  color: var(--ink);
}

.contact-aside-en {
  color: rgba(23, 19, 13, 0.5) !important;
  font-size: 14px;
}

.contact-guide-card {
  display: grid;
  gap: 10px;
  margin-top: 2px;
  padding: 14px;
  border: 1px solid rgba(32, 26, 18, 0.08);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.72);
}

.contact-guide-card strong {
  font-size: 13px;
  font-weight: 900;
}

.contact-guide-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.55;
}

.contact-form {
  padding: clamp(20px, 3vw, 28px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.required-note,
.full-field,
.submit-button,
.form-status {
  grid-column: 1 / -1;
}

.required-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.required-mark {
  color: var(--coral);
  font-weight: 900;
}

.optional-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 20px;
  padding: 2px 7px;
  border: 1px solid rgba(32, 26, 18, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(23, 19, 13, 0.5);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
}

.contact-form label > span,
.contact-choice legend {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 6px;
  min-height: 22px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
  white-space: nowrap;
}

.contact-form em {
  margin-left: auto;
  max-width: 52%;
  color: rgba(23, 19, 13, 0.46);
  font-size: 10px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: right;
  text-transform: uppercase;
  white-space: normal;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border: 1px solid rgba(32, 26, 18, 0.12);
  background: rgba(255, 252, 244, 0.72);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  resize: vertical;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  background-color: rgba(255, 252, 244, 0.72);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%2317130d' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 13px center;
  background-size: 18px 18px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.contact-form select:hover {
  border-color: rgba(38, 167, 224, 0.34);
  background-color: rgba(255, 252, 244, 0.92);
}

.contact-form select option {
  background: #fffaf0;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(111, 103, 91, 0.62);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 0;
  border-color: rgba(38, 167, 224, 0.72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(38, 167, 224, 0.14);
}

.contact-choice {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-choice legend {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 22px;
  font-weight: 900;
}

.contact-form .contact-choice label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(32, 26, 18, 0.12);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.72);
  font-weight: 900;
  cursor: pointer;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.privacy-group {
  display: grid;
  gap: 8px;
}

.privacy-details {
  border: 1px solid rgba(32, 26, 18, 0.1);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.72);
  overflow: hidden;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.privacy-details:hover {
  border-color: rgba(38, 167, 224, 0.24);
  background-color: rgba(255, 252, 244, 0.92);
}

.privacy-details summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.privacy-details summary::-webkit-details-marker {
  display: none;
}

.privacy-summary-label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.privacy-check-control {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1px solid rgba(32, 26, 18, 0.38);
  border-radius: 3px;
  background: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}

.privacy-native-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.privacy-details:has(.privacy-native-input:checked) .privacy-check-control {
  border-color: var(--blue);
  background: var(--blue);
}

.privacy-details:has(.privacy-native-input:checked) .privacy-check-control::after {
  content: "";
  display: block;
  width: 8px;
  height: 4px;
  margin: 4px 0 0 3px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.privacy-summary-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  align-self: center;
  justify-self: end;
  color: rgba(23, 19, 13, 0.58);
  font-size: 12px;
  white-space: nowrap;
}

.privacy-details-arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.privacy-details[open] .privacy-details-arrow {
  transform: rotate(225deg);
}

.privacy-details-content {
  padding: 0 12px 12px 40px;
  color: rgba(23, 19, 13, 0.68);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.privacy-details-content dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.privacy-details-content dl > div {
  display: grid;
  grid-template-columns: minmax(82px, 0.24fr) 1fr;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(32, 26, 18, 0.08);
}

.privacy-details-content dt {
  color: var(--ink);
  font-weight: 900;
}

.privacy-details-content dd {
  margin: 0;
}

.contact-form .contact-choice input {
  margin: 0;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  accent-color: var(--blue);
}

.contact-form .contact-choice label:hover {
  border-color: rgba(38, 167, 224, 0.24);
  background-color: rgba(255, 252, 244, 0.92);
}

.contact-choice label span {
  display: flex;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
  white-space: nowrap;
}

.contact-choice label span em {
  margin-left: 0;
  font-size: 10px;
  white-space: nowrap;
}

.contact-extra-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
}

.file-input {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  border: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.file-upload-ui {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 48px;
  padding: 10px;
  border: 1px solid rgba(32, 26, 18, 0.12);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.72);
}

.file-upload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 6px 12px;
  border: 1px solid rgba(32, 26, 18, 0.16);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.file-upload-name {
  flex: 1 1 180px;
  min-width: 0;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.file-upload-actions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.file-upload-action {
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid rgba(32, 26, 18, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.78);
  color: rgba(23, 19, 13, 0.72);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.file-upload-action:hover {
  color: var(--ink);
  border-color: rgba(246, 185, 59, 0.6);
  background: #fffaf0;
}

.file-field small {
  color: rgba(23, 19, 13, 0.5);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.5;
}

.privacy-copy {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 14px;
  line-height: 1.35;
  white-space: normal;
}

.submit-button {
  justify-self: stretch;
  min-height: 66px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--chip-yellow), var(--chip-yellow-deep));
  color: #fff;
  font-size: 22px;
  letter-spacing: 0;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(246, 185, 59, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.submit-button span {
  color: inherit;
  font-size: inherit;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(246, 185, 59, 0.36);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  text-align: center;
  font-weight: 800;
}

.contact-toast {
  position: fixed;
  right: clamp(18px, 4vw, 42px);
  bottom: clamp(18px, 4vw, 42px);
  z-index: 40;
  width: min(360px, calc(100% - 36px));
  padding: 18px 20px;
  border: 1px solid rgba(20, 153, 121, 0.18);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.96);
  box-shadow: 0 24px 70px rgba(73, 52, 25, 0.18);
}

.contact-toast strong,
.contact-toast span {
  display: block;
}

.contact-toast strong {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 16px;
  font-weight: 900;
}

.contact-toast span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.55;
}

.contact-status-bar {
  position: fixed;
  left: 50%;
  bottom: clamp(18px, 4vw, 34px);
  z-index: 45;
  width: min(560px, calc(100% - 32px));
  padding: 14px 18px;
  border: 1px solid rgba(246, 185, 59, 0.42);
  border-left: 5px solid var(--chip-yellow-deep);
  border-radius: 8px;
  background: rgba(255, 252, 244, 0.98);
  box-shadow: 0 18px 55px rgba(73, 52, 25, 0.2);
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
  transform: translateX(-50%);
}

.contact-status-bar.is-info {
  border-color: rgba(38, 167, 224, 0.28);
  border-left-color: var(--blue);
}

.contact-status-bar.is-error {
  border-color: rgba(239, 119, 102, 0.34);
  border-left-color: var(--coral);
}

@media (max-width: 860px) {
  .site-header {
    width: min(100% - 18px, 1180px);
    height: auto;
    min-height: 64px;
    gap: 12px;
    align-items: center;
    padding: 10px;
  }

  .brand {
    flex: 0 0 auto;
  }

  .brand-logo {
    width: 86px;
  }

  .main-nav {
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: clamp(5px, 1.6vw, 12px);
    font-size: clamp(9px, 2.35vw, 12px);
  }

  .nav-link {
    flex: 0 1 auto;
    white-space: nowrap;
  }

  .section-panel {
    width: min(100% - 18px, 1180px);
    padding: 100px 18px 56px;
  }

  .section-title-row {
    align-items: flex-start;
  }

  .filter-language-switch {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero.section-panel {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    min-height: 520px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 0;
  }

  .hero-scroll-cue {
    bottom: 22px;
  }

  .sample-filter {
    grid-template-columns: 1fr;
  }

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

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

  .top-news-rail {
    grid-auto-columns: calc((100% - 16px) / 2);
  }

  .news-layout,
  .news-feature {
    grid-template-columns: 1fr;
  }

  .news-feature.is-compact {
    grid-template-columns: 1fr;
  }

  .news-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .actor-profile,
  .info-content,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .actor-profile {
    grid-template-areas:
      "heading"
      "portrait"
      "copy";
    gap: 24px;
  }

  .profile-highlights {
    grid-template-columns: 1fr;
  }

  .profile-portrait {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .profile-capabilities {
    max-width: none;
  }

  .profile-intro-demo {
    grid-template-columns: 1fr;
  }

  .profile-audio-label {
    width: min(220px, 100%);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-extra-grid {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    position: static;
    min-height: 0;
    max-height: none;
  }

  .profile-portrait {
    width: min(360px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  html,
  body,
  main {
    max-width: 100%;
    overflow-x: hidden;
  }

  .site-header {
    position: fixed;
    display: grid;
    grid-template-columns: clamp(48px, 15vw, 64px) minmax(0, 1fr);
    align-items: center;
    margin-top: 0;
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
    gap: clamp(6px, 2vw, 10px);
    padding: 10px clamp(7px, 2.2vw, 12px);
    box-sizing: border-box;
  }

  .brand-logo {
    width: clamp(48px, 15vw, 64px);
  }

  .main-nav {
    justify-self: end;
    width: max-content;
    max-width: none;
    gap: 10px;
    font-size: 12px;
    justify-content: flex-end;
    letter-spacing: 0;
    overflow: visible;
    transform: scale(0.62);
    transform-origin: right center;
  }

  .nav-link {
    padding: 8px 0 9px;
    min-width: 0;
  }

  .section-title-row {
    display: block;
  }

  .text-link {
    display: inline-block;
    margin-top: 14px;
  }

  .filter-controls,
  .filter-option-grid {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    width: calc(100vw - 32px);
  }

  .filter-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .top-news-rail {
    grid-auto-columns: 86%;
  }

  .top-news-card {
    min-height: 0;
    grid-template-rows: 170px auto;
  }

  .top-news-card > div {
    min-height: 150px;
    align-content: start;
    background: rgba(255, 255, 255, 0.9);
  }

  .top-news-card h3 {
    font-size: 16px;
    line-height: 1.32;
  }

  .top-news-arrow[data-news-slide="prev"] {
    left: 4px;
  }

  .top-news-arrow[data-news-slide="next"] {
    right: 4px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: start;
  }

  .news-thumb {
    aspect-ratio: 16 / 9;
    height: auto;
    min-height: 0;
  }

  .news-feature.is-compact .news-feature-visual {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .news-sidebar {
    grid-template-columns: 1fr;
  }

  .news-article-nav {
    grid-template-columns: 1fr;
  }

  .sample-grid,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .actor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .actor-card {
    min-height: 0;
    border-radius: 10px;
  }

  .actor-photo {
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  .actor-card-info {
    padding: 8px 4px 9px;
  }

  .actor-card-info strong {
    font-size: clamp(12px, 3.4vw, 15px);
    line-height: 1.15;
  }

  .actor-card-info span {
    margin-top: 2px;
    display: block;
    font-size: 10px;
    line-height: 1.15;
  }

  .contact-section .page-heading {
    text-align: left;
    overflow-wrap: anywhere;
  }

  .contact-section,
  .contact-layout,
  .contact-aside,
  .contact-form {
    min-width: 0;
  }

  .contact-aside p {
    overflow-wrap: anywhere;
  }

  .contact-form-toolbar {
    margin: -2px 0 2px;
  }

  .contact-language-switch {
    flex-wrap: nowrap;
  }

  .contact-heading-top {
    justify-content: flex-start;
  }

  .page-heading > p:not(.eyebrow) {
    margin-left: 0;
  }

  .contact-form label > span,
  .contact-choice legend {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .contact-choice {
    grid-template-columns: 1fr;
  }

  .privacy-copy {
    white-space: normal;
  }

  .privacy-details summary {
    align-items: flex-start;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .privacy-summary-toggle {
    justify-self: start;
  }

  .privacy-details-content {
    padding-left: 12px;
  }

  .privacy-details-content dl > div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .hero.section-panel {
    width: 100vw;
    height: 100vh;
    height: 100svh;
    min-height: 480px;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding: 0;
  }

  .hero-scroll-cue {
    bottom: 18px;
    width: 34px;
    height: 34px;
  }

  .hero-scroll-cue span {
    width: 15px;
    height: 15px;
    border-width: 2px;
  }
}
