:root {
  --ink: #10213a;
  --ink-soft: #263955;
  --muted: #63738a;
  --line: #cfe0ea;
  --paper: #f3f9fd;
  --white: #ffffff;
  --sky: #d5f0ff;
  --sky-strong: #91c9e8;
  --blue: #2468ff;
  --yellow: #ffe56b;
  --yellow-deep: #f1b61d;
  --coral: #ff735d;
  --mint: #51d1ae;
  --shadow: 0 18px 50px rgba(16, 33, 58, 0.12);
  --section-pad: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-rendering: optimizeLegibility;
  word-break: keep-all;
}

button,
a {
  color: inherit;
  font: inherit;
  letter-spacing: 0;
}

button {
  border: 0;
}

a {
  text-decoration: none;
}

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

h1,
h2,
h3,
p,
ul {
  margin-top: 0;
}

h1,
h2,
h3,
strong {
  font-weight: 800;
}

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 4px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 30px;
  background: rgba(243, 249, 253, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand,
.topbar-link,
.case-link {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 8px;
  font-size: 14px;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--coral);
  font-size: 17px;
  line-height: 1;
}

.topbar-link {
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.topbar-link:hover {
  color: var(--blue);
}

.inline-arrow {
  display: inline-grid;
  flex: 0 0 auto;
  width: 1.25em;
  height: 1.25em;
  place-items: center;
  font-style: normal;
  line-height: 1;
}

.side-nav {
  position: fixed;
  top: 50%;
  right: 2px;
  z-index: 80;
  display: grid;
  width: 24px;
  justify-items: end;
  gap: 9px;
  padding: 10px 0;
  transform: translateY(-50%);
}

.side-nav a {
  display: block;
  width: 12px;
  height: 2px;
  background: #9babb7;
  transition: width 180ms ease, background-color 180ms ease;
}

.side-nav a:hover,
.side-nav a.is-active {
  width: 23px;
  background: var(--ink);
}

.section-inner {
  width: min(100% - 80px, 1700px);
  margin-inline: auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(390px, 0.86fr) minmax(560px, 1.14fr);
  align-items: center;
  gap: 48px;
  width: min(100% - 80px, 1760px);
  min-height: min(720px, calc(100svh - 58px));
  margin-inline: auto;
  padding: 42px 0 52px;
}

.eyebrow,
.panel-label,
.project-type {
  margin-bottom: 14px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-title {
  margin-bottom: 24px;
  color: var(--sky-strong);
  font-size: 112px;
  line-height: 0.92;
}

.hero-title span,
.hero-korean span,
.hero-korean strong,
.workspace-copy h2 span,
.workspace-copy h2 strong {
  display: block;
}

.hero-title span:last-child {
  position: relative;
  display: inline-block;
}

.hero-title span:last-child::after {
  content: "✦";
  position: absolute;
  top: 2px;
  right: -44px;
  color: var(--coral);
  font-size: 34px;
  line-height: 1;
  animation: twinkle 2.4s ease-in-out infinite;
}

.hero-korean {
  margin-bottom: 20px;
  font-size: 34px;
  line-height: 1.18;
  word-break: keep-all;
}

.hero-korean strong {
  color: var(--ink);
}

.hero-description {
  max-width: 590px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 52px;
  padding: 8px 9px 8px 22px;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.button-arrow {
  display: inline-grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
}

.primary-button:hover {
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-3px);
}

.primary-button:hover .button-arrow {
  background: var(--white);
}

.workspace-stage {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
  isolation: isolate;
}

.sun-disc {
  position: absolute;
  top: 18px;
  right: 7%;
  z-index: -2;
  width: 195px;
  aspect-ratio: 1;
  background: var(--yellow);
  border: 20px solid #fff9d8;
  border-radius: 50%;
}

.orbit {
  position: absolute;
  z-index: -3;
  display: block;
  border: 1px solid #b9dff4;
  border-radius: 50%;
}

.orbit-one {
  inset: -45px 0 -60px 18%;
}

.orbit-two {
  top: 35px;
  right: -15px;
  width: 315px;
  aspect-ratio: 1;
}

.workspace-window {
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  position: relative;
  z-index: 2;
  width: min(100%, 690px);
  overflow: visible;
  background: var(--white);
  border: 6px solid var(--white);
  border-radius: 8px;
  box-shadow: 14px 16px 0 var(--ink), var(--shadow);
  transform: perspective(1100px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y)) rotateZ(-1.4deg);
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.workspace-stage:hover .workspace-window {
  box-shadow: 10px 13px 0 var(--ink), var(--shadow);
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 39px;
  padding: 0 13px;
  color: #59728a;
  background: var(--white);
  font-size: 11px;
  font-weight: 800;
}

.window-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.window-dots i {
  display: block;
  width: 8px;
  height: 8px;
  background: #d2e1e9;
  border-radius: 50%;
}

.window-dots i:last-child {
  background: var(--coral);
}

.workspace-screen {
  position: relative;
  min-height: 315px;
  overflow: hidden;
  padding: 43px 34px 28px;
  background: var(--sky);
  border-radius: 3px;
}

.workspace-copy p {
  margin-bottom: 10px;
  color: #4f7892;
  font-size: 12px;
  font-weight: 800;
}

.workspace-copy h2 {
  width: 72%;
  margin-bottom: 23px;
  font-size: 28px;
  line-height: 1.18;
}

.workspace-actions {
  display: grid;
  gap: 8px;
  width: max-content;
}

.workspace-actions button {
  display: grid;
  grid-template-columns: 28px auto;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 5px 14px 5px 8px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: 5px;
  box-shadow: 0 4px 0 rgba(78, 132, 161, 0.22);
  cursor: pointer;
  text-align: left;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.workspace-actions button span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 10px;
  line-height: 1;
}

.workspace-actions button strong {
  font-size: 13px;
}

.workspace-actions button:hover {
  border-color: var(--blue);
  box-shadow: 0 7px 0 rgba(36, 104, 255, 0.16);
  transform: translate(5px, -2px);
}

.sticky-note {
  position: absolute;
  right: 44px;
  bottom: 34px;
  display: flex;
  width: 126px;
  min-height: 108px;
  flex-direction: column;
  justify-content: center;
  padding: 16px;
  background: var(--yellow);
  box-shadow: 8px 9px 0 rgba(16, 33, 58, 0.12);
  transform: rotate(4deg);
  transition: transform 180ms ease;
}

.sticky-note:hover {
  transform: rotate(-2deg) translateY(-5px);
}

.sticky-note span,
.sticky-note small {
  color: #8a6315;
  font-size: 11px;
  line-height: 1.3;
}

.sticky-note strong {
  margin: 5px 0 2px;
  font-size: 14px;
  line-height: 1.2;
}

.sticker {
  position: absolute;
  z-index: 6;
  display: grid;
  min-width: 82px;
  min-height: 44px;
  padding: 8px 12px;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--ink);
  border-radius: 5px;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
}

.sticker-ready {
  top: 27px;
  left: 0;
  transform: rotate(-7deg);
}

.sticker-start {
  right: -4px;
  bottom: 43px;
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
  transform: rotate(8deg);
}

.profile-band {
  padding: 44px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.profile-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 0;
}

.info-panel {
  padding: 34px 40px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.introduce-panel {
  border-right: 1px solid var(--line);
}

.info-panel h2 {
  margin-bottom: 19px;
  font-size: 22px;
  line-height: 1.35;
}

.info-panel p:not(.panel-label) {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 15px;
}

.info-panel p:last-child {
  margin-bottom: 0;
}

.panel-label {
  color: var(--blue);
}

.info-panel-wide {
  display: grid;
  grid-column: auto;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  padding-right: 0;
  padding-left: 40px;
}

.focus-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.focus-list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
}

.focus-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--yellow-deep);
  transform: translateY(-50%) rotate(45deg);
}

.tool-list {
  display: grid;
  align-content: center;
  gap: 18px;
  padding-left: 35px;
  border-left: 1px solid var(--line);
}

.tool-list p {
  display: grid;
  gap: 6px;
}

.tool-list strong {
  color: var(--ink);
  font-size: 13px;
}

.tool-list span {
  color: var(--muted);
  font-size: 15px;
}

.highlights-section {
  padding: 64px 0 var(--section-pad);
  background: var(--white);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 26px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.section-heading h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
}

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

.featured-card {
  --rotate-x: 0deg;
  --rotate-y: 0deg;
  --lift: 0px;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transform: perspective(1000px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y)) translateY(var(--lift));
  transform-style: preserve-3d;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 120ms ease;
}

a.featured-card:hover {
  --lift: -7px;
  border-color: var(--blue);
  box-shadow: var(--shadow);
}

.featured-primary {
  grid-row: auto;
}

.featured-media {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--sky);
}

.featured-card:not(.featured-primary) .featured-media {
  height: 200px;
}

.featured-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 420ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.featured-picture {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.featured-primary .featured-media {
  background: #f4f8fc;
}

.featured-primary .featured-media img {
  position: relative;
  z-index: 1;
  object-fit: cover;
  object-position: center;
}

.featured-primary .status-badge {
  z-index: 2;
}

.featured-media-orbit,
.work-thumb-orbit {
  background: #05060f;
}

.featured-media-orbit img,
.work-thumb-orbit img {
  object-position: center 48%;
}

.featured-media-jelly,
.work-thumb-jelly {
  background: #0d1b33;
}

.featured-media-jelly img,
.work-thumb-jelly img {
  object-position: center 44%;
}

.featured-card:hover .featured-media img {
  transform: scale(1.035);
}

.status-badge,
.upcoming-label,
.work-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 4px 9px;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 4px;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.status-badge {
  position: absolute;
  top: 14px;
  left: 14px;
}

.status-live {
  color: var(--white);
  background: var(--coral);
}

.featured-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 17px;
  padding: 18px;
}

.featured-primary .featured-content {
  padding: 18px;
}

.featured-content h3 {
  margin-bottom: 7px;
  font-size: 22px;
  line-height: 1.25;
}

.featured-primary .featured-content h3 {
  font-size: 22px;
}

.featured-content p:not(.project-type) {
  display: -webkit-box;
  max-width: 680px;
  margin-bottom: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 5px 9px;
  color: var(--ink-soft);
  background: #edf6fb;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.case-link {
  flex: 0 0 auto;
  gap: 7px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.is-upcoming {
  cursor: default;
}

.is-upcoming .featured-media img,
.work-card.is-upcoming img {
  filter: saturate(0.72);
}

.worklist-section {
  padding: var(--section-pad) 0 32px;
  background: #ecf6fb;
  border-top: 1px solid var(--line);
}

.worklist-heading {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.worklist-heading h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1;
}

.work-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.segmented-control {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.segmented-control button {
  min-height: 34px;
  padding: 6px 13px;
  color: var(--muted);
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.segmented-control button:hover,
.segmented-control button.is-active {
  color: var(--white);
  background: var(--ink);
}

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

.work-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

a.work-card:hover {
  border-color: var(--blue);
  box-shadow: 0 14px 32px rgba(16, 33, 58, 0.1);
  transform: translateY(-4px);
}

.work-thumb {
  position: relative;
  width: 100%;
  height: 150px;
  flex: 0 0 150px;
  overflow: hidden;
  background: var(--sky);
}

.work-thumb img {
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.work-thumb-anime {
  background: #f4f8fc;
}

.work-thumb-anime img {
  object-fit: cover;
  object-position: center;
  transform-origin: center;
}

a.work-card:hover .work-thumb img {
  transform: scale(1.045);
}

a.work-card:hover .work-thumb-anime img {
  transform: none;
}

.featured-primary:hover .featured-media img {
  transform: none;
}

.work-index {
  position: absolute;
  top: 10px;
  left: 10px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.work-card-copy {
  min-width: 0;
  flex: 1;
  padding: 15px 48px 46px 15px;
}

.work-card-copy p {
  margin-bottom: 6px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.work-card-copy h3 {
  margin-bottom: 7px;
  overflow-wrap: anywhere;
  font-size: 17px;
  line-height: 1.25;
}

.work-card-copy span {
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.work-arrow {
  position: absolute;
  right: 13px;
  bottom: 13px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 16px;
  line-height: 1;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

a.work-card:hover .work-arrow {
  color: var(--white);
  background: var(--blue);
  transform: rotate(45deg);
}

.work-status {
  position: absolute;
  right: 13px;
  bottom: 13px;
  margin: 0;
  color: var(--muted);
  background: #edf1f4;
}

.inline-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 36px;
  padding-top: 22px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.inline-footer a:hover {
  color: var(--blue);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* Editorial type roles */
h1,
h2,
h3,
.brand,
.hero-korean,
.hero-korean strong,
.workspace-copy h2 strong,
.sticky-note strong {
  font-family: var(--font-display);
  font-weight: 700;
}

.eyebrow,
.topbar-link,
.window-bar,
.workspace-copy > p,
.workspace-actions button > span,
.sticky-note > span,
.sticky-note > small,
.sticker,
.panel-label,
.project-type,
.status-badge,
.tag-list,
.tag-list li,
.case-link,
.work-index,
.work-card-copy > p,
.tool-list span,
.inline-footer > span {
  font-family: var(--font-mono);
  font-weight: 600;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.5;
    transform: scale(0.78) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.06) rotate(90deg);
  }
}

@media (min-width: 1600px) {
  .work-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 1280px) {
  .hero {
    grid-template-columns: minmax(340px, 0.78fr) minmax(520px, 1.22fr);
    gap: 35px;
  }

  .hero-title {
    font-size: 88px;
  }

  .hero-korean {
    font-size: 32px;
  }

  .workspace-copy h2 {
    font-size: 29px;
  }

  .section-inner {
    width: min(100% - 56px, 1700px);
  }
}

@media (max-width: 1040px) {
  :root {
    --section-pad: 72px;
  }

  .side-nav {
    display: none;
  }

  .hero {
    width: min(100% - 56px, 860px);
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 66px 0 78px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-title {
    font-size: 96px;
  }

  .hero-korean {
    font-size: 38px;
  }

  .workspace-stage {
    width: 100%;
    min-height: 450px;
  }

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

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

  .featured-media,
  .featured-card:not(.featured-primary) .featured-media {
    height: 180px;
  }

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

@media (max-width: 720px) {
  :root {
    --section-pad: 60px;
  }

  .topbar {
    min-height: 54px;
    padding: 0 18px;
  }

  .brand,
  .topbar-link {
    font-size: 12px;
  }

  .section-inner,
  .hero {
    width: min(100% - 36px, 100%);
  }

  .hero {
    gap: 42px;
    padding: 48px 0 64px;
  }

  .eyebrow {
    font-size: 11px;
  }

  .hero-title {
    margin-bottom: 22px;
    font-size: 70px;
  }

  .hero-title span:last-child::after {
    right: -30px;
    font-size: 24px;
  }

  .hero-korean {
    font-size: 29px;
  }

  .hero-description {
    font-size: 15px;
  }

  .workspace-stage {
    min-height: 400px;
  }

  .workspace-window {
    border-width: 5px;
    box-shadow: 10px 12px 0 var(--ink), var(--shadow);
    transform: perspective(1100px) rotateX(var(--rotate-x)) rotateY(var(--rotate-y)) rotateZ(-0.8deg);
  }

  .window-bar {
    min-height: 35px;
    padding: 0 10px;
  }

  .workspace-screen {
    min-height: 295px;
    padding: 32px 23px 25px;
  }

  .workspace-copy p {
    font-size: 9px;
  }

  .workspace-copy h2 {
    width: 78%;
    margin-bottom: 24px;
    font-size: 22px;
  }

  .workspace-actions {
    gap: 6px;
  }

  .workspace-actions button {
    min-height: 35px;
    grid-template-columns: 23px auto;
    padding-right: 10px;
  }

  .workspace-actions button span {
    width: 22px;
    height: 22px;
    font-size: 8px;
  }

  .workspace-actions button strong {
    font-size: 10px;
  }

  .sticky-note {
    right: 25px;
    bottom: 26px;
    width: 115px;
    min-height: 95px;
    padding: 13px;
  }

  .sticky-note strong {
    font-size: 12px;
  }

  .sticker {
    min-width: 72px;
    min-height: 40px;
    padding: 6px 8px;
    font-size: 8px;
  }

  .sticker-ready {
    top: 16px;
    left: -5px;
  }

  .sticker-start {
    right: -5px;
    bottom: 28px;
  }

  .sun-disc {
    width: 150px;
    border-width: 15px;
  }

  .profile-grid,
  .info-panel-wide {
    grid-template-columns: 1fr;
  }

  .info-panel {
    padding: 30px 0;
  }

  .introduce-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .info-panel-wide {
    gap: 28px;
    padding-right: 0;
    padding-left: 0;
  }

  .tool-list {
    padding-top: 25px;
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .highlights-section {
    padding-top: 52px;
  }

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

  .featured-primary .featured-media {
    height: auto;
    aspect-ratio: 2204 / 706;
  }

  .featured-media,
  .featured-card:not(.featured-primary) .featured-media {
    height: 190px;
  }

  .featured-primary .featured-content,
  .featured-content {
    padding: 18px;
  }

  .featured-primary .featured-content h3,
  .featured-content h3 {
    font-size: 22px;
  }

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

  .worklist-heading h2 {
    font-size: 38px;
  }

  .segmented-control {
    width: 100%;
  }

  .segmented-control button {
    flex: 1 1 auto;
  }

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

  .work-thumb {
    height: 145px;
    min-height: 0;
    flex-basis: 145px;
  }

  .work-card-copy {
    padding: 14px 44px 44px 14px;
  }

  .work-card-copy h3 {
    font-size: 17px;
  }

  .work-card-copy span {
    font-size: 11px;
  }

  .work-arrow {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 480px) {
  .segmented-control {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .segmented-control button:last-child {
    grid-column: 2;
  }

  .hero-title {
    font-size: 60px;
  }

  .hero-korean {
    font-size: 27px;
  }

  .primary-button {
    width: 100%;
    justify-content: space-between;
  }

  .workspace-stage {
    min-height: 350px;
  }

  .workspace-screen {
    min-height: 265px;
    padding: 26px 17px 20px;
  }

  .workspace-copy h2 {
    width: 86%;
    font-size: 19px;
  }

  .workspace-actions button strong {
    max-width: 122px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .sticky-note {
    right: 15px;
    width: 96px;
    min-height: 84px;
  }

  .sticky-note span,
  .sticky-note small {
    font-size: 8px;
  }

  .sticky-note strong {
    overflow-wrap: anywhere;
    font-size: 10px;
  }

  .info-panel:not(:first-child) {
    padding: 24px 0;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-thumb {
    height: 160px;
    min-height: 0;
    flex-basis: 160px;
  }

  .work-card-copy {
    padding: 14px 46px 46px 14px;
  }

  .work-card-copy p {
    font-size: 8px;
  }

  .work-card-copy h3 {
    font-size: 15px;
  }

  .work-card-copy span {
    font-size: 10px;
    line-height: 1.4;
  }

  .work-status {
    min-height: 22px;
    padding-inline: 5px;
    font-size: 8px;
  }

  .inline-footer {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
