:root {
  --bg: #fff;
  --bg-soft: #f6f6f3;
  --surface: #fff;
  --surface-2: #f3f4f1;
  --text: #151515;
  --muted: #70757c;
  --line: rgb(17 17 17 / 10%);
  --line-strong: rgb(17 17 17 / 16%);
  --hero-bg: #0f1011;
  --hero-text: #fff;
  --accent: #111;
  --accent-soft: rgb(17 17 17 / 6%);
  --shadow: 0 24px 60px rgb(15 15 15 / 8%);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1140px;
}

:root[data-theme='dark'] {
  --bg: #0b0c0d;
  --bg-soft: #111315;
  --surface: #111315;
  --surface-2: #17191c;
  --text: #f5f5f5;
  --muted: #adb2b8;
  --line: rgb(255 255 255 / 9%);
  --line-strong: rgb(255 255 255 / 16%);
  --hero-bg: #060708;
  --hero-text: #fff;
  --accent: #fff;
  --accent-soft: rgb(255 255 255 / 6%);
  --shadow: 0 24px 70px rgb(0 0 0 / 32%);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.65;
  transition: background-color .25s ease, color .25s ease;
}

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

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

code,
pre {
  font-family: SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
}

.studio-shell { min-height: 100vh; }
.studio-main { padding-bottom: 72px; }

.studio-container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.studio-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
}

.studio-nav-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 84px;
  transition: min-height .2s ease, color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.studio-nav-wrap--full {
  width: 100%;
  max-width: none;
  padding-inline: 16px;
  box-sizing: border-box;
}

.studio-header--solid .studio-nav-wrap,
.studio-scrolled .studio-nav-wrap,
.studio-nav-open .studio-nav-wrap {
  min-height: 70px;
  border-bottom: 1px solid rgb(17 17 17 / 8%);
  background: rgb(255 255 255 / 76%);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgb(15 15 15 / 4%);
}

:root[data-theme='dark'] .studio-header--solid .studio-nav-wrap,
:root[data-theme='dark'] .studio-scrolled .studio-nav-wrap,
:root[data-theme='dark'] .studio-nav-open .studio-nav-wrap {
  background: rgb(11 12 13 / 72%);
  border-bottom-color: rgb(255 255 255 / 8%);
  box-shadow: 0 10px 30px rgb(0 0 0 / 18%);
}

.studio-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.studio-header--solid .studio-brand,
.studio-scrolled .studio-brand,
.studio-nav-open .studio-brand {
  color: var(--text);
}

.studio-brand-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  flex: 0 0 auto;
  object-fit: cover;
}

.studio-brand-logo {
  display: block;
  width: auto;
  height: 34px;
  max-width: min(42vw, 180px);
  flex: 0 0 auto;
}

.studio-brand-text strong {
  display: block;
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.studio-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  gap: 16px;
  font-size: .95rem;
}

.studio-nav a,
.studio-theme-toggle {
  border: 0;
  background: transparent;
  color: rgb(255 255 255 / 84%);
  font: inherit;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: color .2s ease, opacity .2s ease;
}

.studio-locale-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 16px;
  padding: 6px 10px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 999px;
  background: rgb(255 255 255 / 5%);
  color: rgb(255 255 255 / 84%);
  font-size: .82rem;
  line-height: 1;
}

.studio-locale-switch a,
.studio-locale-switch span {
  opacity: .64;
  transition: opacity .2s ease, color .2s ease;
}

:where(.studio-locale-switch) a.is-active,
:where(.studio-locale-switch) a:hover,
:where(.studio-locale-switch) span.is-active {
  opacity: 1;
}

.studio-locale-switch .is-disabled {
  cursor: not-allowed;
  opacity: .38;
}

:where(.studio-header--solid, .studio-scrolled, .studio-nav-open) .studio-nav a,
:where(.studio-header--solid, .studio-scrolled, .studio-nav-open) .studio-theme-toggle,
:where(.studio-header--solid, .studio-scrolled, .studio-nav-open) .studio-locale-switch {
  color: var(--muted);
}

:where(.studio-header--solid, .studio-scrolled, .studio-nav-open) .studio-locale-switch {
  border-color: var(--line);
  background: transparent;
}

:where(.studio-nav) a:hover,
:where(.studio-theme-toggle):hover,
:where(.studio-locale-switch):hover {
  color: #fff;
  opacity: 1;
}

:where(.studio-header--solid .studio-nav a:hover),
:where(.studio-header--solid .studio-theme-toggle:hover),
:where(.studio-header--solid .studio-locale-switch:hover),
:where(.studio-scrolled .studio-nav a:hover),
:where(.studio-scrolled .studio-theme-toggle:hover),
:where(.studio-scrolled .studio-locale-switch:hover),
:where(.studio-nav-open .studio-nav a:hover),
:where(.studio-nav-open .studio-theme-toggle:hover),
:where(.studio-nav-open .studio-locale-switch:hover) {
  color: var(--text);
}

.studio-theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 16px;
  flex: 0 0 auto;
  opacity: .62;
}

.studio-has-cover:not(.studio-scrolled, .studio-nav-open) .studio-theme-toggle {
  opacity: 0;
  pointer-events: none;
}

.studio-has-cover:not(.studio-scrolled, .studio-nav-open) .studio-brand-logo,
.studio-has-cover:not(.studio-scrolled, .studio-nav-open) .studio-brand-icon {
  filter: brightness(0) invert(1);
}

:root[data-theme='dark'] :where(.studio-header--solid, .studio-scrolled, .studio-nav-open) .studio-brand-logo,
:root[data-theme='dark'] :where(.studio-header--solid, .studio-scrolled, .studio-nav-open) .studio-brand-icon {
  filter: brightness(0) invert(1);
}

.studio-theme-toggle__moon { opacity: .6; }
:root[data-theme='dark'] .studio-theme-toggle__moon { opacity: 1; }
:root[data-theme='dark'] .studio-theme-toggle__sun { opacity: .6; }

.studio-nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 18%);
  background: rgb(255 255 255 / 5%);
  cursor: pointer;
}

:where(.studio-header--solid, .studio-scrolled, .studio-nav-open) .studio-nav-toggle {
  border-color: var(--line);
  background: transparent;
}

.studio-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: #fff;
  border-radius: 999px;
}

:where(.studio-header--solid, .studio-scrolled, .studio-nav-open) .studio-nav-toggle span {
  background: var(--text);
}

.studio-cover {
  background: var(--hero-bg);
  color: var(--hero-text);
}

.studio-cover__media {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background-color: var(--hero-bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.studio-cover__media.is-placeholder {
  background-image:
    radial-gradient(circle at 18% 22%, rgb(255 255 255 / 10%), transparent 0 18%),
    radial-gradient(circle at 82% 10%, rgb(255 255 255 / 8%), transparent 0 14%),
    linear-gradient(180deg, rgb(255 255 255 / 4%), rgb(255 255 255 / 0%)),
    linear-gradient(180deg, #1a1d20, #0f1011);
}

.studio-cover__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgb(15 16 17 / 0%) 52%, rgb(15 16 17 / 92%) 84%, var(--hero-bg) 100%),
    rgb(0 0 0 / 12%);
}

.studio-cover__inner {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: stretch;
}

.studio-cover__stage {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  padding: 120px 0 96px;
}

.studio-cover__brand span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: rgb(255 255 255 / 76%);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.studio-cover__brand span::before {
  content: '';
  width: 42px;
  height: 1px;
  background: rgb(255 255 255 / 28%);
}

.studio-hero__content--centered {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  text-wrap: balance;
}

.studio-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

:where(.studio-cover .studio-eyebrow) {
  border-color: rgb(255 255 255 / 14%);
  background: rgb(255 255 255 / 6%);
  color: rgb(255 255 255 / 92%);
}

.studio-cover h1,
.studio-section__heading h2,
.studio-footer h2,
.studio-article-hero h1 {
  margin: 0;
  letter-spacing: -.05em;
  line-height: 1.02;
}

.studio-cover h1 {
  max-width: 16ch;
  margin: 14px auto 0;
  font-size: clamp(3.15rem, 6vw, 5.9rem);
}

.studio-hero__subtitle {
  max-width: 34ch;
  margin: 18px auto 0;
  font-size: clamp(1.12rem, 1.6vw, 1.4rem);
  font-weight: 500;
  color: rgb(255 255 255 / 84%);
}

[data-typewriter] {
  min-height: 1em;
}

[data-typewriter].is-typing::after {
  content: '';
  display: inline-block;
  width: 1px;
  height: .92em;
  margin-left: .08em;
  vertical-align: -.08em;
  background: currentcolor;
  animation: studio-typewriter-caret 1s steps(1) infinite;
}

@keyframes studio-typewriter-caret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

.studio-hero__description,
.studio-section__heading p,
.studio-footer__slogan,
.studio-article-hero p,
.studio-article__content,
.studio-feature-card p,
.studio-announcement-card p,
.studio-hero__summary p {
  color: var(--muted);
}

.studio-hero__description {
  max-width: 54ch;
  margin: 16px auto 0;
  color: rgb(255 255 255 / 62%);
  font-size: .98rem;
}

.studio-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  transition: transform .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

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

:where(.studio-cover .studio-button--primary) {
  background: #fff;
  border-color: #fff;
  color: #111;
}

:where(.studio-cover .studio-button--ghost) {
  border-color: rgb(255 255 255 / 18%);
  color: #fff;
}

:where(:root[data-theme='dark'] .studio-cover .studio-button--primary) {
  background: #fff;
  border-color: #fff;
  color: #111;
}

.studio-button--ghost:hover,
.studio-button--primary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.studio-cover__support-wrap {
  padding: 0 0 96px;
  background: var(--hero-bg);
}

.studio-hero__support {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.studio-hero__summary,
.studio-stat,
.studio-announcement-card,
.studio-post-card__frame,
.studio-feature-card,
.studio-empty,
.studio-article__content {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.studio-hero__summary {
  padding: 28px;
  border-radius: var(--radius-xl);
  text-align: left;
}

.studio-hero__summary h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.35rem, 3vw, 1.8rem);
  line-height: 1.12;
  color: var(--text);
}

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

.studio-stat {
  padding: 18px;
  border-radius: var(--radius-lg);
}

.studio-stat strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.studio-stat span {
  color: var(--muted);
  font-size: .9rem;
}

.studio-announcement-section {
  padding: 64px 0 8px;
}

.studio-announcement-card {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 22px 28px;
  border-radius: 24px;
  text-align: center;
  box-shadow: none;
}

.studio-announcement-card__label {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.studio-section {
  padding: 92px 0 0;
}

.studio-section--compact {
  position: relative;
  padding-top: 164px;
}

.studio-section--compact::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 260px;
  background: var(--hero-bg);
  pointer-events: none;
}

.studio-section--compact#posts::before,
.studio-section--compact#products::before {
  height: 340px;
}
.studio-section--features { padding-bottom: 104px; }

.studio-section__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  margin-bottom: 32px;
}

:where(.studio-section--compact) .studio-container {
  position: relative;
  z-index: 1;
}

:where(.studio-section--compact) .studio-section__heading {
  margin-top: 0;
  margin-bottom: 52px;
}

:where(.studio-section--compact) .studio-eyebrow {
  border-color: rgb(255 255 255 / 14%);
  background: rgb(255 255 255 / 6%);
  color: rgb(255 255 255 / 92%);
}

:where(.studio-section--compact) .studio-section__heading h2 {
  color: #fff;
}

:where(.studio-section--compact) .studio-section__heading p {
  color: rgb(255 255 255 / 72%);
}

.studio-section__heading--centered {
  justify-content: center;
  text-align: center;
}

.studio-section__heading--centered > div {
  max-width: 620px;
}

.studio-section__heading h2 {
  font-size: clamp(2.15rem, 4vw, 3.4rem);
}

.studio-section__heading p {
  margin: 14px 0 0;
  max-width: 56ch;
}

.studio-post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
}

.studio-post-card { position: relative; }
.studio-post-card__inner { display: block; }

.studio-post-card__frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.studio-post-card__visual {
  position: relative;
  min-height: 352px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.studio-post-card__visual.is-placeholder {
  background-image:
    linear-gradient(180deg, rgb(255 255 255 / 4%), rgb(255 255 255 / 0%)),
    linear-gradient(135deg, #1a1d20 0%, #2f3134 100%);
}

:root[data-theme='dark'] .studio-post-card__visual.is-placeholder {
  background-image:
    linear-gradient(180deg, rgb(255 255 255 / 3%), rgb(255 255 255 / 0%)),
    linear-gradient(135deg, #141618 0%, #1c1f22 100%);
}

.studio-post-card__visual-mask {
  position: absolute;
  inset: 0;
  background: rgb(17 17 17 / 18%);
  transition: background-color .3s ease;
}

.studio-post-card__body {
  padding: 20px 4px 0;
}

.studio-post-card__date {
  display: block;
  color: var(--muted);
  font-size: .84rem;
}

.studio-post-card__body h3 {
  margin: 10px 0 0;
  font-size: clamp(1.38rem, 2vw, 1.68rem);
  line-height: 1.16;
  letter-spacing: -.04em;
}

.studio-post-card:hover .studio-post-card__visual-mask {
  background: rgb(17 17 17 / 52%);
}

.studio-more-link {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.studio-more-link a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: .2em;
}

.studio-section--features .studio-container {
  padding-top: 54px;
  border-top: 1px solid var(--line);
}

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

.studio-feature-card {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.studio-feature-card__index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
}

.studio-feature-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.18;
}

.studio-empty {
  padding: 28px;
  border-radius: var(--radius-xl);
}

.studio-pagination {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
}

.studio-article-hero {
  position: relative;
  padding: 164px 0 46px;
  background: var(--hero-bg);
  color: #fff;
  text-align: center;
  overflow: hidden;
}

.studio-article-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.studio-article-hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  margin-top: 16px;
}

.studio-article-hero .studio-eyebrow {
  border-color: rgb(255 255 255 / 14%);
  background: rgb(255 255 255 / 6%);
  color: rgb(255 255 255 / 92%);
}

.studio-article-hero p {
  margin: 18px auto 0;
  max-width: 54ch;
  color: rgb(255 255 255 / 74%);
}

.studio-article-wrap {
  padding: 0 0 84px;
}

.studio-article__container {
  max-width: 860px;
}

.studio-article__meta,
.studio-tag-list,
.studio-article__footer,
.studio-footer__bottom,
.studio-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.studio-article__meta {
  justify-content: center;
  margin-top: 18px;
  color: rgb(255 255 255 / 72%);
}

.studio-article__meta span,
.studio-tag-list a {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--muted);
}

.studio-tag-list { margin-bottom: 16px; }

.studio-translation-note {
  margin-bottom: 18px;
  padding: 12px 14px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: var(--surface-2);
  color: var(--muted);
  font-size: .95rem;
}

.studio-article__content {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-xl);
}

.studio-article__content > :first-child { margin-top: 0; }
.studio-article__content > :last-child { margin-bottom: 0; }

.studio-article__content h1,
.studio-article__content h2,
.studio-article__content h3,
.studio-article__content h4,
.studio-article__content h5,
.studio-article__content h6 {
  margin: 1.7em 0 .7em;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--text);
}

.studio-article__content a {
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: .08em;
  text-underline-offset: .15em;
}

.studio-article__content .headerlink {
  margin-left: .4em;
  opacity: .35;
  text-decoration: none;
}

.studio-article__content blockquote {
  margin-left: 0;
  padding: 16px 18px;
  border-left: 4px solid var(--text);
  background: var(--surface-2);
  border-radius: 0 16px 16px 0;
}

.studio-article__content pre,
.studio-article__content code {
  background: var(--surface-2);
  border-radius: 12px;
}

.studio-article__content code {
  padding: .18em .45em;
}

.studio-article__content pre {
  overflow: auto;
  padding: 16px;
}

.studio-article__content pre code {
  padding: 0;
  background: transparent;
}

.studio-article__content .highlight {
  margin: 0 0 1.1rem;
  padding: 16px;
  border-radius: 18px;
  overflow: auto;
  background: var(--surface-2);
}

.studio-article__content :where(.highlight) table {
  width: auto;
  margin: 0;
  border-collapse: collapse;
}

.studio-article__content :where(.highlight) td,
.studio-article__content :where(.highlight) th {
  padding: 0;
  border: 0;
}

.studio-article__content .highlight .gutter {
  padding-right: 16px;
  color: var(--muted);
  user-select: none;
}

.studio-article__content table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}

.studio-article__content th,
.studio-article__content td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
}

.studio-article__footer {
  justify-content: space-between;
  margin-top: 18px;
}

.studio-footer {
  padding: 28px 0 44px;
}

.studio-footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 32px;
  padding: 40px 0 30px;
  border-top: 1px solid var(--line);
}

.studio-footer__brandline {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.studio-footer__brand-icon {
  width: auto;
  height: 28px;
  flex: 0 0 auto;
  object-fit: contain;
}

:root[data-theme='dark'] .studio-footer__brand-icon {
  filter: brightness(0) invert(1);
}

.studio-footer__brandmark {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--text), rgb(17 17 17 / 25%));
  box-shadow: 0 0 0 8px var(--accent-soft);
  flex: 0 0 auto;
}

.studio-footer__brandline h2 { font-size: 1.35rem; }

.studio-footer__identity {
  max-width: 460px;
}

.studio-footer__author {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: .92rem;
}

.studio-footer__slogan {
  margin: 8px 0 0;
  max-width: 50ch;
}

.studio-footer__email {
  display: inline-flex;
  margin-top: 10px;
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: .18em;
}

.studio-footer__links {
  justify-content: space-between;
}

.studio-footer__links section {
  min-width: 140px;
}

.studio-footer__links h3 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.studio-footer__links a {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
}

.studio-footer__links a:hover { color: var(--text); }

.studio-footer__bottom {
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .92rem;
}

@media (width <= 980px) {
  .studio-feature-grid,
  .studio-footer__grid,
  .studio-post-grid,
  .studio-hero__support {
    grid-template-columns: 1fr;
  }

  .studio-footer__links,
  .studio-footer__bottom,
  .studio-article__footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (width <= 760px) {
  .studio-nav-wrap { min-height: 72px; }
  .studio-nav-toggle { display: inline-block; }

  .studio-nav {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgb(255 255 255 / 96%);
    box-shadow: var(--shadow);
    backdrop-filter: blur(16px);
  }

  .studio-nav a {
    width: 100%;
    justify-content: center;
    color: var(--text);
  }

  .studio-locale-switch {
    margin-left: 12px;
    color: var(--text);
  }

  .studio-theme-toggle {
    margin-left: 12px;
    color: var(--text);
  }

  .studio-nav-open .studio-nav { display: flex; }

  :root[data-theme='dark'] .studio-nav {
    background: rgb(11 12 13 / 96%);
  }

  .studio-cover__media,
  .studio-cover__inner {
    min-height: 100vh;
    min-height: 100svh;
  }

  .studio-cover__brand { display: none; }

  .studio-cover__stage {
    padding-bottom: 72px;
  }

  .studio-cover h1 {
    font-size: clamp(2.5rem, 11vw, 4rem);
  }

  .studio-announcement-card {
    flex-direction: column;
    align-items: center;
  }

  .studio-more-link {
    justify-content: flex-start;
  }
}
