:root {
  --ink: #eef7f7;
  --muted: #98b5ba;
  --line: rgba(94, 248, 228, 0.18);
  --paper: #071113;
  --surface: rgba(15, 31, 36, 0.78);
  --soft: rgba(94, 248, 228, 0.1);
  --teal: #1ed6c4;
  --coral: #ff8b63;
  --gold: #f0b28a;
  --glass: rgba(255, 255, 255, 0.07);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(30, 214, 196, 0.22), transparent 34vw),
    radial-gradient(circle at 84% 18%, rgba(255, 139, 99, 0.18), transparent 30vw),
    linear-gradient(180deg, #071113 0%, #0b171b 46%, #071113 100%);
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, sans-serif;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(94, 248, 228, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(94, 248, 228, 0.045) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 86%);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 45;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  height: 64px;
  padding: 0 max(20px, calc((100% - 1240px) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(7, 17, 19, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
  color: #f7ffff;
}

.brand img {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.brand span {
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-nav a {
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav a:hover {
  color: var(--teal);
  border-color: var(--line);
  background: var(--soft);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 78px;
  height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(94, 248, 228, 0.42);
  border-radius: 999px;
  color: #f7ffff;
  background:
    linear-gradient(135deg, rgba(94, 248, 228, 0.18), rgba(240, 178, 138, 0.12)),
    rgba(255, 255, 255, 0.055);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(30, 214, 196, 0.14);
}

.language-toggle:hover {
  border-color: var(--teal);
  color: #061214;
  background: linear-gradient(135deg, #5ef8e4, #f0b28a);
}

.lang-current {
  color: var(--gold);
}

.language-toggle:hover .lang-current {
  color: #061214;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface);
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: var(--teal);
}

.hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background: #071113;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7, 17, 19, 0.92), rgba(7, 17, 19, 0.52)),
    radial-gradient(circle at 72% 34%, rgba(30, 214, 196, 0.24), transparent 26%),
    url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=1800&q=80");
  background-position:
    center,
    center,
    33% center;
  background-size:
    cover,
    cover,
    cover;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0;
}

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

.hero .eyebrow {
  color: var(--gold);
}

h1 {
  max-width: 620px;
  margin-bottom: 14px;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
  text-shadow: 0 0 28px rgba(30, 214, 196, 0.18);
}

.hero-copy {
  max-width: 540px;
  margin-bottom: 24px;
  color: rgba(238, 247, 247, 0.86);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #061214;
  background: linear-gradient(135deg, #5ef8e4, #f0b28a);
  box-shadow: 0 14px 36px rgba(30, 214, 196, 0.2);
}

.button.outline {
  color: #ffffff;
  border-color: rgba(94, 248, 228, 0.5);
  background: rgba(255, 255, 255, 0.04);
}

.page-content {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
}

.summary-row,
.works-row,
.action-row {
  display: grid;
  gap: 24px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line);
}

.news-marquee {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-top: 38px;
  padding: 13px 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(94, 248, 228, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(7, 17, 19, 0.82);
  box-shadow: var(--shadow);
}

.news-marquee h2 {
  min-width: max-content;
  padding: 6px 12px;
  border-radius: 999px;
  color: #061214;
  background: linear-gradient(135deg, #5ef8e4, #f0b28a);
  font-size: 15px;
  font-weight: 900;
}

.marquee-track {
  display: flex;
  min-width: 0;
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 42px;
  min-width: max-content;
  padding-right: 42px;
  color: var(--ink);
  font-weight: 800;
  animation: marquee-scroll 24s linear infinite;
}

.marquee-content span {
  white-space: nowrap;
}

@keyframes marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.summary-row {
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.95fr);
}

.works-row {
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1.2fr);
  grid-template-areas:
    "team works"
    "social visitor";
  align-items: start;
}

.team-section {
  grid-area: team;
}

.social-section {
  grid-area: social;
}

.works-section {
  grid-area: works;
}

.visitor-section {
  grid-area: visitor;
}

.team-stack {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.works-stack {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.action-row {
  grid-template-columns: 1fr;
  border-bottom: 0;
}

.section {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    var(--surface);
  box-shadow: var(--shadow);
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading.horizontal {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.18;
  letter-spacing: 0;
  color: #f7ffff;
}

h3 {
  margin-bottom: 4px;
  font-size: 17px;
  line-height: 1.25;
  letter-spacing: 0;
  color: #f7ffff;
}

.lead {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 16px;
}

.lead.small {
  max-width: 520px;
}

.about-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 260px);
  gap: 20px;
  align-items: start;
}

.about-profile p {
  color: var(--muted);
}

.profile-photo {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--glass);
  box-shadow: var(--shadow);
}

.profile-photo::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(7, 17, 19, 0.44));
}

.profile-photo img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center top;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.quick-facts div {
  padding: 11px 12px;
  border-left: 3px solid var(--teal);
  border-radius: 12px;
  background: var(--glass);
}

.quick-facts dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.quick-facts dd {
  margin: 2px 0 0;
  font-weight: 700;
  color: #f7ffff;
}

.ability-list {
  display: grid;
  gap: 8px;
}

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

.ability-list article {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid rgba(94, 248, 228, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
}

.ability-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(94, 248, 228, 0.35);
  border-radius: 10px;
  color: #071113;
  background: linear-gradient(135deg, #5ef8e4, #f0b28a);
  font-size: 12px;
  font-weight: 900;
}

.ability-list p,
.note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.image-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 0 0 38px;
  border-bottom: 1px solid var(--line);
}

.image-band img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.highlighted {
  padding: 20px;
  border-top: 3px solid var(--teal);
  background: var(--soft);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 14px;
}

.chip-list span {
  padding: 6px 10px;
  border: 1px solid #ccdbd5;
  border-radius: 6px;
  background: var(--surface);
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}

.team-grid {
  display: grid;
  gap: 10px;
}

.team-card {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.team-card img {
  width: 118px;
  height: 92px;
  object-fit: cover;
  border-radius: 12px;
}

.team-card h3 {
  margin-bottom: 5px;
  font-size: 15px;
}

.team-card p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
}

.team-card p:last-child {
  margin-bottom: 0;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
}

.social-icons img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border: 1px solid rgba(94, 248, 228, 0.22);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.social-icons a {
  display: inline-flex;
  border-radius: 16px;
}

.social-icons a:hover img {
  border-color: var(--teal);
  box-shadow: 0 12px 28px rgba(30, 214, 196, 0.24);
}

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

.photo-card {
  display: block;
  position: relative;
  min-height: 205px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--ink);
  box-shadow: var(--shadow);
  color: #f7ffff;
  cursor: pointer;
  text-decoration: none;
}

.photo-card:focus-visible {
  outline: 3px solid rgba(94, 248, 228, 0.72);
  outline-offset: 4px;
}

.photo-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.photo-card:hover img {
  transform: scale(1.04);
}

.photo-card div {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px;
  color: var(--surface);
  background: linear-gradient(transparent, rgba(7, 17, 19, 0.94));
}

.photo-card p {
  margin: 18px 0 1px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.photo-card h3 {
  margin: 0;
  font-size: 15px;
}

.visitor-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.visitor-section {
  margin: 0;
  padding: 18px;
  border-color: rgba(94, 248, 228, 0.24);
}

.visitor-stats div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(94, 248, 228, 0.1), rgba(240, 178, 138, 0.07)),
    rgba(255, 255, 255, 0.045);
}

.visitor-stats-label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.visitor-stats strong {
  color: #f7ffff;
  font-size: 15px;
  font-weight: 900;
  text-align: right;
}

.stats-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(94, 248, 228, 0.45);
  border-radius: 999px;
  color: #061214;
  background: linear-gradient(135deg, #5ef8e4, #f0b28a);
  font-size: 14px;
  font-weight: 900;
}

.work-column {
  padding-left: 22px;
  border-left: 1px solid var(--line);
}

.work-list {
  display: grid;
  gap: 9px;
}

.work-list article,
.auction-links article {
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.work-list span,
.auction-links span {
  display: block;
  margin-bottom: 5px;
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-list p,
.auction-links p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.auction-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.recruiting-note {
  margin: 0;
  color: rgba(238, 247, 247, 0.82);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.contact-layout {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 16px;
}

.contact-details {
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  list-style: none;
}

.contact-details li {
  margin-bottom: 10px;
}

.contact-form {
  display: grid;
  gap: 8px;
}

.field-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--ink);
  font: inherit;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 22px;
  align-items: start;
  width: min(1240px, calc(100% - 40px));
  margin: 34px auto 42px;
  background:
    linear-gradient(135deg, rgba(94, 248, 228, 0.12), rgba(240, 178, 138, 0.06)),
    var(--surface);
}

.contact-section .contact-form {
  gap: 12px;
}

.contact-section .button {
  width: min(260px, 100%);
}

.contact-line {
  margin-top: 84px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.contact-line img {
  width: 100%;
  max-height: 190px;
  object-fit: contain;
  border-radius: 10px;
}

.video-popout {
  position: fixed;
  top: 50%;
  right: 18px;
  z-index: 31;
  width: min(260px, calc(100% - 32px));
  overflow: hidden;
  border: 1px solid rgba(94, 248, 228, 0.28);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(7, 17, 19, 0.93);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: translateY(-50%);
}

.video-popout.is-closed {
  display: none;
}

.video-popout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 10px 9px 14px;
  border-bottom: 1px solid var(--line);
}

.video-popout-header h2 {
  margin: 0;
  color: #f7ffff;
  font-size: 16px;
  line-height: 1.2;
}

.video-popout-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.08);
  font-size: 19px;
  line-height: 1;
  cursor: pointer;
}

.video-popout-close:hover {
  color: #071113;
  background: var(--teal);
}

.video-popout-player {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  background: #020607;
  object-fit: cover;
}

.video-sound-prompt {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  min-height: 38px;
  border: 1px solid rgba(94, 248, 228, 0.55);
  border-radius: 999px;
  color: #061214;
  background: linear-gradient(135deg, #5ef8e4, #f0b28a);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.video-popout.needs-sound .video-sound-prompt {
  display: block;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--teal);
  font-size: 13px;
  font-weight: 700;
}

.site-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  padding: 20px max(20px, calc((100% - 1240px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.footer-meta {
  min-width: 0;
}

.recruiting-note {
  justify-self: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  justify-self: end;
  color: var(--teal);
  font-weight: 700;
}

.site-footer .recruiting-note {
  justify-self: center;
  color: rgba(238, 247, 247, 0.82);
}

.subpage-main {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0;
}

.subpage-nav {
  justify-content: end;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  min-height: 280px;
  margin-bottom: 28px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(110deg, rgba(7, 17, 19, 0.94), rgba(7, 17, 19, 0.62)),
    radial-gradient(circle at 82% 22%, rgba(94, 248, 228, 0.28), transparent 28%),
    url("assets/ai-production.png") center/cover;
  box-shadow: var(--shadow);
}

.subpage-hero h1 {
  max-width: 760px;
  margin-bottom: 12px;
}

.subpage-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

.career-hero {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 390px);
  background:
    linear-gradient(110deg, rgba(7, 17, 19, 0.95), rgba(7, 17, 19, 0.62)),
    radial-gradient(circle at 82% 22%, rgba(255, 139, 99, 0.24), transparent 28%);
}

.career-hero img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.analytics-grid,
.career-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 22px;
}

.analytics-grid.wide {
  align-items: start;
}

.metric-card h2 {
  margin-bottom: 8px;
  color: #5ef8e4;
  font-size: clamp(38px, 6vw, 64px);
}

.metric-card p:last-child,
.chart-card p,
.career-card p,
.career-detail p {
  color: var(--muted);
}

.bar-chart,
.rank-list {
  display: grid;
  gap: 13px;
}

.bar-row,
.rank-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 44px;
  gap: 10px;
  align-items: center;
}

.rank-row {
  grid-template-columns: 28px 86px minmax(0, 1fr) 44px;
}

.bar-row span,
.rank-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.rank-row b {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  color: #061214;
  background: linear-gradient(135deg, #5ef8e4, #f0b28a);
  font-size: 12px;
}

.bar-track {
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.bar-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5ef8e4, #f0b28a);
}

.bar-row strong,
.rank-row strong {
  color: #f7ffff;
  text-align: right;
}

.empty-state {
  margin: 0;
  color: var(--muted);
}

.career-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.career-list li::marker {
  color: var(--teal);
  font-weight: 900;
}

.highlight-card {
  border-top: 4px solid var(--teal);
  background:
    linear-gradient(145deg, rgba(94, 248, 228, 0.14), rgba(240, 178, 138, 0.08)),
    var(--surface);
}

.career-detail {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: center;
}

.career-image-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.career-image-strip img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.career-contact-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 22px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(94, 248, 228, 0.14), rgba(240, 178, 138, 0.07)),
    var(--surface);
}

.career-contact-line p {
  color: var(--muted);
}

.career-contact-line img {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.work-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 22px;
  align-items: start;
}

.work-video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.work-video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #020607;
}

.work-video-card div {
  padding: 18px;
}

.work-video-card h2,
.work-video-card h3 {
  margin-bottom: 8px;
}

.work-video-card p,
.work-copy p,
.work-list-detail li {
  color: var(--muted);
}

.work-list-detail {
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding-left: 20px;
}

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

.video-gallery .work-video-card iframe {
  aspect-ratio: 16 / 9;
}

@media (max-width: 1180px) {
  .video-popout {
    right: 14px;
    width: min(238px, calc(100% - 28px));
  }
}

@media (max-width: 1080px) {
  .site-header {
    height: auto;
    min-height: 64px;
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .site-nav {
    width: 100%;
    order: 3;
    flex-wrap: wrap;
  }

  .language-toggle {
    order: 2;
  }

  .summary-row {
    grid-template-columns: 1fr;
  }

  .news-marquee {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .works-row {
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  }

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

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

@media (max-width: 760px) {
  .site-header {
    min-height: 60px;
    padding: 8px 16px;
  }

  .brand {
    max-width: calc(100% - 148px);
    font-size: 16px;
    line-height: 1.25;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 60px;
    right: 10px;
    left: 10px;
    display: none;
    width: auto;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(7, 17, 19, 0.95);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    flex: 1 1 calc(50% - 4px);
    min-height: 42px;
    text-align: center;
  }

  .hero {
    min-height: 390px;
  }

  .hero-media {
    background-image:
      linear-gradient(180deg, rgba(7, 17, 19, 0.44), rgba(7, 17, 19, 0.92)),
      url("https://images.unsplash.com/photo-1516035069371-29a1b244cc32?auto=format&fit=crop&w=1000&q=80");
    background-position:
      center,
      33% center;
    background-size:
      cover,
      cover;
    background-repeat: no-repeat;
  }

  .hero-content,
  .page-content {
    width: min(100% - 32px, 520px);
  }

  h1 {
    font-size: 34px;
  }

  .summary-row,
  .action-row {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 30px 0;
  }

  .works-row {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    grid-template-areas:
      "team works"
      "social visitor";
    gap: 16px;
    padding: 30px 0;
  }

  .ability-list.split-list,
  .image-band,
  .about-profile {
    grid-template-columns: 1fr;
  }

  .profile-photo img {
    height: 320px;
  }

  .image-band {
    padding: 0 0 30px;
  }

  .image-band img {
    height: 180px;
  }

  .work-column {
    padding-left: 16px;
    border-left: 0;
  }

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

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

  .photo-card,
  .photo-card img {
    min-height: 168px;
    height: 168px;
  }

  .visitor-stats {
    grid-template-columns: 1fr;
  }

  .team-card {
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .team-card img {
    width: 104px;
    height: 86px;
  }

  .contact-layout,
  .contact-section,
  .field-pair {
    grid-template-columns: 1fr;
  }

  .contact-section {
    width: min(100% - 32px, 620px);
  }

  .contact-section .contact-line {
    margin-top: 0;
    max-width: 260px;
  }

  .site-footer {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 8px;
    padding: 18px 16px;
    font-size: 12px;
  }

  .footer-meta {
    min-width: 0;
  }

  .footer-copyright {
    line-height: 1.35;
  }

  .recruiting-note {
    justify-self: center;
    font-size: 12px;
    letter-spacing: 0.06em;
  }

  .site-footer a {
    justify-self: end;
    white-space: nowrap;
  }

  .video-popout {
    top: auto;
    right: 12px;
    bottom: 12px;
    width: min(210px, calc(100% - 24px));
    transform: none;
  }

  .subpage-main {
    width: min(100% - 32px, 620px);
    padding: 28px 0;
  }

  .subpage-hero,
  .career-hero,
  .analytics-grid,
  .career-layout,
  .career-detail,
  .career-contact-line,
  .work-page-grid,
  .video-gallery {
    grid-template-columns: 1fr;
  }

  .career-contact-line img {
    max-width: 240px;
  }

  .career-hero img {
    height: 210px;
  }

  .rank-row {
    grid-template-columns: 28px 72px minmax(0, 1fr) 34px;
  }
}

@media (max-width: 560px) {
  .works-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "team"
      "works"
      "social"
      "visitor";
  }
}
