:root {
  color-scheme: dark;
  --bg: #0f1315;
  --bg-2: #151b1f;
  --panel: rgba(22, 28, 31, 0.88);
  --panel-strong: rgba(18, 23, 26, 0.96);
  --panel-soft: rgba(244, 240, 230, 0.05);
  --line: rgba(244, 240, 230, 0.12);
  --line-strong: rgba(244, 240, 230, 0.2);
  --text: #f4f0e6;
  --muted: #b8b09e;
  --dim: #8a8373;
  --gold: #e7c15b;
  --mint: #7ad6c1;
  --blue: #8db8ff;
  --coral: #ff8a6c;
  --green: #73da88;
  --shadow: rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    linear-gradient(90deg, rgba(244, 240, 230, 0.04) 1px, transparent 1px) 0 0 / 64px 64px,
    linear-gradient(180deg, rgba(244, 240, 230, 0.035) 1px, transparent 1px) 0 0 / 64px 64px,
    radial-gradient(circle at top left, rgba(231, 193, 91, 0.08), transparent 24%),
    radial-gradient(circle at top right, rgba(122, 214, 193, 0.08), transparent 20%),
    var(--bg);
  color: var(--text);
  font-family: "Aptos", "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

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

h1,
h2,
h3 {
  font-family: "Georgia", "Times New Roman", serif;
  letter-spacing: 0;
}

.site-shell {
  width: min(1260px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 16px;
  backdrop-filter: blur(20px);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(231, 193, 91, 0.18), transparent 80%),
    rgba(255, 255, 255, 0.03);
  color: var(--gold);
  font-family: "Georgia", serif;
  font-size: 16px;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 20px;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-links a {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  padding: 8px 12px;
  font-size: 14px;
}

.nav-links a:hover {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.035);
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.03);
}

.lang-button {
  min-width: 42px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 700;
}

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

.eyebrow,
.crumb {
  font-family: "Cascadia Mono", "Consolas", monospace;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--mint);
}

.crumb {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
}

.crumb:hover,
.footer a:hover {
  color: var(--mint);
}

.store-hero,
.product-hero,
.lab-band,
.newsletter {
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    var(--panel);
  box-shadow: 0 34px 90px var(--shadow);
}

.store-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.82fr);
  gap: 22px;
  padding: 28px;
}

.hero-marquee {
  position: absolute;
  left: 34px;
  top: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  width: min(420px, 42vw);
  pointer-events: none;
  user-select: none;
}

.hero-marquee span {
  position: static;
  display: block;
  font-family: "Arial Black", "Segoe UI", sans-serif;
  line-height: 0.82;
  white-space: nowrap;
}

.hero-marquee-primary {
  left: 0;
  top: 0;
  color: rgba(244, 240, 230, 0.07);
  font-size: clamp(68px, 13vw, 176px);
}

.hero-marquee-secondary {
  color: rgba(231, 193, 91, 0.3);
  text-shadow: 0 0 28px rgba(231, 193, 91, 0.12);
  font-size: clamp(34px, 4.2vw, 60px);
  letter-spacing: 0.12em;
  margin-left: 10px;
}

.hero-copy-block,
.hero-spotlight,
.product-copy,
.product-stage,
.release-card,
.lab-points article,
.post-row {
  position: relative;
  z-index: 1;
}

.hero-copy-block,
.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 0;
  min-height: 520px;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 60%);
}

.profile-portrait-frame {
  flex: 0 0 auto;
  width: clamp(112px, 15vw, 160px);
  margin: 0;
  border: 1px solid rgba(231, 193, 91, 0.24);
  border-radius: 18px;
  padding: 10px;
  background:
    linear-gradient(180deg, rgba(231, 193, 91, 0.12), transparent 54%),
    rgba(255, 255, 255, 0.03);
  box-shadow:
    inset 0 0 0 1px rgba(244, 240, 230, 0.05),
    0 22px 42px rgba(0, 0, 0, 0.18);
}

.profile-portrait {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.12), transparent 62%),
    rgba(10, 14, 16, 0.8);
  image-rendering: pixelated;
}

.hero-copy-block h1,
.product-copy h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(58px, 8vw, 110px);
  line-height: 0.9;
}

.hero-copy-block h1 {
  max-width: 8ch;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.92;
}

html[lang="ko"] .hero-copy-block h1 {
  max-width: 13ch;
  font-size: clamp(42px, 3.9vw, 62px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

html[lang="ko"] .product-copy h1 {
  max-width: 9.5ch;
  font-size: clamp(38px, 4.2vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.lede {
  max-width: 700px;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: clamp(20px, 2.1vw, 28px);
  line-height: 1.45;
}

html[lang="ko"] .lede {
  max-width: 27ch;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.66;
  word-break: keep-all;
}

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

.download-caption {
  margin: 16px 0 0;
  color: var(--dim);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.profile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.profile-meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--muted);
  font-size: 13px;
}

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

.contact-chip {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 16px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.contact-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(122, 214, 193, 0.34);
  background: rgba(255, 255, 255, 0.05);
}

.contact-label,
.contact-chip strong {
  display: block;
}

.contact-label {
  margin-bottom: 7px;
  color: var(--dim);
  font-family: "Cascadia Mono", "Consolas", monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.contact-chip strong {
  overflow: hidden;
  color: var(--text);
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.button,
.release-button,
.signup-form button {
  display: inline-flex;
  width: fit-content;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 16px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.release-button:hover,
.signup-form button:hover {
  transform: translateY(-2px);
}

.button {
  border: 1px solid var(--line);
}

.button.primary,
.release-button,
.signup-form button {
  border: 1px solid rgba(231, 193, 91, 0.45);
  background: var(--gold);
  color: #111311;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
}

.release-button.disabled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.hero-spotlight,
.product-stage {
  display: grid;
  align-content: space-between;
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(231, 193, 91, 0.12), transparent 48%),
    var(--panel-strong);
}

.spotlight-header,
.spotlight-footer,
.console-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px;
  color: var(--muted);
  font-family: "Cascadia Mono", "Consolas", monospace;
  font-size: 12px;
}

.spotlight-tag {
  color: var(--gold);
}

.spotlight-body {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: 16px 20px 26px;
}

.spotlight-portrait-frame {
  width: clamp(132px, 18vw, 176px);
}

.spotlight-icon,
.preview-icon,
.release-icon {
  display: block;
  width: 100%;
  height: auto;
}

.spotlight-icon,
.preview-icon {
  filter: drop-shadow(0 26px 42px rgba(0, 0, 0, 0.35));
}

.spotlight-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 0.96;
  text-align: center;
}

html[lang="ko"] .spotlight-copy h2 {
  font-size: clamp(28px, 2.5vw, 38px);
  line-height: 1.08;
  word-break: keep-all;
}

.spotlight-copy p {
  max-width: 32ch;
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.55;
  text-align: center;
}

html[lang="ko"] .spotlight-copy p {
  max-width: 27ch;
  font-size: 15px;
  line-height: 1.62;
  word-break: keep-all;
}

html[lang="ko"] #releases-title,
html[lang="ko"] #lab-title,
html[lang="ko"] #notes-title,
html[lang="ko"] #updates-title,
html[lang="ko"] #release-title {
  max-width: 15ch;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.14;
  word-break: keep-all;
}

html[lang="ko"] body[data-page="product"] #release-title,
html[lang="ko"] body[data-page="product"] #notes-title {
  max-width: 12ch;
}

body[data-page="product"] #release-title,
body[data-page="product"] #notes-title {
  max-width: 11ch;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.08;
}

.spotlight-footer span,
.console-metrics span {
  opacity: 0.9;
}

.spotlight-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.spotlight-contact-block {
  display: grid;
  gap: 18px;
  padding: 0 20px 20px;
}

.spotlight-contact-grid {
  margin: 0;
}

.spotlight-actions {
  justify-content: center;
}

.releases-band,
.notes-section {
  padding: 52px 0 0;
}

.band-heading,
.compact {
  max-width: 880px;
}

.section-heading h2,
.lab-copy h2,
.newsletter h2 {
  margin-bottom: 14px;
  font-size: clamp(38px, 4.6vw, 66px);
  line-height: 0.95;
}

.section-heading p,
.lab-copy p,
.newsletter p {
  color: var(--muted);
  line-height: 1.6;
}

.release-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.release-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  box-shadow: 0 26px 70px var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.release-card:hover {
  border-color: rgba(244, 240, 230, 0.22);
  transform: translateY(-4px);
}

.release-card.live {
  background:
    linear-gradient(135deg, rgba(231, 193, 91, 0.14), transparent 54%),
    var(--panel);
}

.release-visual {
  position: relative;
  display: grid;
  min-height: 210px;
  place-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.release-no {
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--dim);
  font-family: "Cascadia Mono", "Consolas", monospace;
  font-size: 12px;
}

.release-visual-icon {
  background:
    radial-gradient(circle at center, rgba(122, 214, 193, 0.15), transparent 42%),
    rgba(255, 255, 255, 0.025);
}

.release-visual-code span:last-child {
  display: grid;
  width: 110px;
  height: 110px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--blue);
  font-family: "Georgia", serif;
  font-size: 44px;
  font-weight: 800;
  background: rgba(141, 184, 255, 0.08);
}

.release-visual-bars {
  grid-template-columns: repeat(3, 40px);
  gap: 10px;
  align-items: end;
}

.release-visual-bars span {
  display: block;
  width: 40px;
  border-radius: 12px 12px 4px 4px;
}

.release-visual-bars span:nth-child(2) {
  height: 70px;
  background: var(--green);
}

.release-visual-bars span:nth-child(3) {
  height: 106px;
  background: var(--coral);
}

.release-visual-bars span:nth-child(4) {
  height: 84px;
  background: var(--blue);
}

.release-content {
  display: flex;
  min-height: 262px;
  flex-direction: column;
  padding: 22px;
}

.card-topline {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--dim);
  font-size: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(231, 193, 91, 0.14);
  color: var(--gold);
  padding: 4px 8px;
}

.pill.muted {
  background: rgba(122, 214, 193, 0.12);
  color: var(--mint);
}

.release-content h3 {
  margin-bottom: 10px;
  font-size: 34px;
  line-height: 0.98;
}

.release-content p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.55;
}

.lab-band {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 26px;
  margin-top: 52px;
  padding: 24px;
}

.lab-copy,
.lab-points {
  min-width: 0;
}

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

.lab-points article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  padding: 18px;
}

.lab-points strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Georgia", serif;
  font-size: 24px;
  line-height: 1;
}

.lab-points p {
  color: var(--muted);
  line-height: 1.55;
}

.post-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.post-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 18px;
  align-items: center;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 18px 20px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.post-row:hover {
  transform: translateY(-2px);
  border-color: rgba(231, 193, 91, 0.35);
  background: rgba(255, 255, 255, 0.045);
}

.post-row span,
.post-row em {
  color: var(--dim);
  font-family: "Cascadia Mono", "Consolas", monospace;
  font-size: 12px;
  font-style: normal;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 24px;
  margin: 52px 0 80px;
  padding: 26px;
}

.signup-form {
  display: grid;
  gap: 12px;
}

.bot-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.signup-form label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 13px;
}

.signup-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  font: inherit;
  padding: 0 14px;
}

.signup-form input:focus {
  outline: 2px solid rgba(122, 214, 193, 0.45);
  outline-offset: 2px;
}

.signup-form button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.7fr);
  gap: 22px;
  margin-top: 12px;
  padding: 24px;
}

.product-copy {
  min-height: 560px;
}

.product-stage {
  min-height: 560px;
}

.taskbar-preview {
  display: grid;
  min-height: 460px;
  align-items: center;
  padding: 24px;
}

.preview-icon {
  max-width: 260px;
  margin: 0 auto;
}

.fake-taskbar {
  display: grid;
  grid-template-columns: repeat(4, 32px);
  gap: 10px;
  width: fit-content;
  margin: 24px auto 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  background: #19222c;
}

.fake-taskbar span {
  display: block;
  width: 32px;
  height: 24px;
  border-radius: 4px;
  background: rgba(141, 184, 255, 0.36);
}

.fake-taskbar span:nth-child(2) {
  background: rgba(231, 193, 91, 0.42);
}

.fake-taskbar span:nth-child(3) {
  background: rgba(115, 218, 136, 0.38);
}

.fake-taskbar span:nth-child(4) {
  background: rgba(255, 138, 108, 0.38);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.36fr) 1fr;
  gap: 26px;
  padding: 52px 0 0;
}

.shelf-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
}

.shelf-card h3 {
  margin: 10px 0;
  font-size: 28px;
  line-height: 1;
}

.shelf-card p,
.copy-stack p,
.check-list li {
  color: var(--muted);
  line-height: 1.55;
}

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

.download-stack {
  display: grid;
  gap: 14px;
}

.download-card {
  border: 1px solid rgba(231, 193, 91, 0.26);
  border-radius: 22px;
  padding: 22px;
  background:
    radial-gradient(circle at top right, rgba(231, 193, 91, 0.12), transparent 42%),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.26);
}

.download-card h3 {
  margin: 12px 0 10px;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.04;
}

.download-card p {
  margin: 0;
  color: var(--muted);
  max-width: 58ch;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.download-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 26px;
  padding: 52px 0 0;
}

.copy-stack {
  min-width: 0;
}

.install-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.install-list li {
  color: var(--muted);
  line-height: 1.6;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 24px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  content: "+";
  font-weight: 900;
}

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

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

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 22px 0 42px;
  color: var(--dim);
}

@media (max-width: 1100px) {
  .store-hero,
  .product-hero,
  .lab-band,
  .newsletter,
  .section-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .release-rail,
  .lab-points,
  .release-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy-block,
  .hero-spotlight,
  .product-copy,
  .product-stage {
    min-height: auto;
  }

  .store-hero {
    padding-top: 64px;
  }
}

@media (max-width: 700px) {
  .site-shell {
    width: min(100% - 16px, 1260px);
  }

  .topbar {
    position: static;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0 12px;
  }

  .topbar-actions {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .nav-links {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .nav-links a {
    min-height: 36px;
    justify-content: center;
    padding: 8px 6px;
    text-align: center;
    font-size: 13px;
  }

  .language-toggle {
    align-self: flex-start;
  }

  .store-hero,
  .product-hero,
  .lab-band,
  .newsletter {
    padding: 18px;
    border-radius: 18px;
  }

  .hero-copy-block,
  .hero-spotlight,
  .product-copy,
  .product-stage {
    padding: 18px;
    border-radius: 16px;
  }

  .hero-marquee {
    display: none;
  }

  .profile-portrait-frame {
    width: 132px;
    padding: 8px;
    border-radius: 14px;
  }

  .hero-copy-block h1,
  .product-copy h1 {
    max-width: 9ch;
    font-size: 30px;
    line-height: 0.96;
  }

  html[lang="ko"] .hero-copy-block h1 {
    max-width: 9.4ch;
    font-size: 31px;
    line-height: 1.12;
  }

  html[lang="ko"] .product-copy h1 {
    max-width: 8.2ch;
    font-size: 29px;
    line-height: 1.12;
  }

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

  .lede {
    max-width: none;
    font-size: 15px;
    line-height: 1.62;
  }

  html[lang="ko"] .lede {
    max-width: none;
    font-size: 15px;
    line-height: 1.68;
  }

  .profile-meta {
    gap: 8px;
  }

  .profile-meta span {
    font-size: 12px;
  }

  html[lang="ko"] .spotlight-copy h2 {
    font-size: 22px;
  }

  html[lang="ko"] .spotlight-copy p {
    max-width: 23ch;
    font-size: 13.5px;
    line-height: 1.68;
  }

  html[lang="ko"] #releases-title,
  html[lang="ko"] #lab-title,
  html[lang="ko"] #notes-title,
  html[lang="ko"] #updates-title,
  html[lang="ko"] #release-title {
    max-width: 13ch;
    font-size: 26px;
    line-height: 1.18;
  }

  body[data-page="product"] #release-title,
  body[data-page="product"] #notes-title {
    max-width: 12ch;
    font-size: 22px;
    line-height: 1.2;
  }

  .spotlight-body {
    gap: 14px;
    padding: 14px 16px 18px;
  }

  .spotlight-icon,
  .preview-icon {
    max-width: 170px;
    margin: 0 auto;
  }

  .spotlight-contact-block {
    gap: 14px;
    padding: 0 16px 16px;
  }

  .spotlight-footer,
  .console-metrics {
    justify-content: flex-start;
    gap: 8px 16px;
    font-size: 11px;
  }

  .release-content,
  .service-body {
    min-height: auto;
  }

  .release-content {
    padding: 18px;
  }

  .release-content h3 {
    font-size: 28px;
  }

  .release-content p,
  .lab-points p,
  .shelf-card p,
  .copy-stack p,
  .check-list li {
    font-size: 14px;
    line-height: 1.62;
  }

  .releases-band,
  .notes-section,
  .section-grid,
  .split-section {
    padding-top: 36px;
  }

  .post-row {
    grid-template-columns: 32px 1fr;
    gap: 12px;
    padding: 16px;
  }

  .post-row em {
    grid-column: 2;
  }

  .section-heading h2,
  .lab-copy h2,
  .newsletter h2 {
    font-size: 32px;
    line-height: 1.06;
  }

  .newsletter {
    margin: 36px 0 64px;
  }
}
