:root {
  color-scheme: dark;
  --bg: #0a0a0a;
  --text: #fafafa;
  --muted: #9ca3af;
  --dim: #6b7280;
  --border: #2a2a2a;
  --accent: #10b981;
  --cyan: #06b6d4;
  --amber: #f59e0b;
  --card-hover-border: #3f3f3f;
  --product-price-box-bg: rgba(16, 185, 129, 0.06);
  --input-bg: #111;
  --token-strong: #fff;
  --btn-primary-fg: #0a0a0a;
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f5f4;
  --text: #171717;
  --muted: #57534e;
  --dim: #78716c;
  --border: #e7e5e4;
  --accent: #059669;
  --cyan: #0891b2;
  --amber: #d97706;
  --card-hover-border: #d6d3d1;
  --product-price-box-bg: rgba(5, 150, 105, 0.08);
  --input-bg: #fff;
  --token-strong: #171717;
  --btn-primary-fg: #fff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "IBM Plex Mono", ui-monospace, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 15px;
  line-height: 1.5;
}

.mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
}

.site {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.top-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 8px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
}

.brand-sub {
  font-weight: 500;
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 0.02em;
}

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

.nav-links a {
  font-size: 14px;
  color: var(--dim);
  text-decoration: none;
}

.nav-links a.active {
  color: var(--text);
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--accent);
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 0 8px;
}

.hero-left {
  flex: 1 1 320px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-tag {
  font-size: 13px;
  color: var(--cyan);
}

.hero-title {
  font-size: clamp(26px, 5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.hero-desc {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 15px;
  border: 1px solid var(--border);
  cursor: pointer;
  text-decoration: none;
  border-radius: 4px;
  transition: border-color 0.15s, background 0.15s;
}

.btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--btn-primary-fg);
  font-weight: 600;
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.panel {
  border: 1px solid var(--border);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-radius: 4px;
}

.panel-head {
  font-size: 13px;
  color: var(--dim);
  font-weight: 600;
}

.status-panel {
  flex: 0 0 auto;
  width: 100%;
  max-width: 420px;
}

.status-panel .line-1,
.status-panel .line-2,
.status-panel .line-3 {
  font-size: 14px;
}

.status-panel .line-2 {
  color: var(--accent);
}

.status-panel .line-3 {
  color: var(--amber);
}

.status-panel .line-4 {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 10px;
}

.section-title {
  font-size: 12px;
  color: var(--dim);
  letter-spacing: 0.06em;
}

.products-intro {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.products-heading {
  margin: 0;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.products-heading-single-line {
  width: 100%;
  white-space: nowrap;
  font-size: clamp(16px, 2.2vw, 28px);
}

.products-lead-single-line {
  width: 100%;
  max-width: none;
  white-space: normal;
  font-size: clamp(12px, 1.45vw, 15px);
}

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

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

@media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .cases-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site {
    padding: 32px 16px 40px;
  }

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

.team-card {
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 18px 14px;
}

.team-avatar {
  width: min(112px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 30% 28%, rgba(125, 211, 252, 0.42), transparent 30%),
    radial-gradient(circle at 68% 72%, rgba(16, 185, 129, 0.32), transparent 34%),
    linear-gradient(160deg, #1f2937 0%, #111827 48%, #0a0a0a 100%);
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.03);
}

.team-avatar.has-image {
  background-size: cover;
  background-position: center;
}

.team-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.team-name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.team-role {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

.case-card {
  overflow: hidden;
  padding: 0;
  gap: 0;
}

.case-floating-head {
  position: absolute;
  z-index: 2;
  margin: 60px 18px -14px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.82);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
}

.case-floating-head .case-meta {
  color: #7dd3fc;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.case-floating-head .case-title {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.case-floating-head + .case-visual {
  border-top: 1px solid var(--border);
}

.case-visual {
  position: relative;
  min-height: 180px;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.18), transparent 55%),
    linear-gradient(160deg, rgba(16, 185, 129, 0.18), transparent 60%),
    linear-gradient(160deg, #111827 0%, #0f172a 48%, #0a0a0a 100%);
  background-size: cover;
  background-position: center top;
}

.case-visual::after {
  content: ".";
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(6px);
}

.case-visual.has-image::after {
  content: none;
}

.case-card:nth-child(2) .case-visual {
  background:
    linear-gradient(135deg, rgba(245, 158, 11, 0.18), transparent 55%),
    linear-gradient(160deg, rgba(6, 182, 212, 0.18), transparent 60%),
    linear-gradient(160deg, #111827 0%, #0f172a 48%, #0a0a0a 100%);
  background-size: cover;
  background-position: center top;
}

.case-card:nth-child(3) .case-visual {
  background:
    linear-gradient(135deg, rgba(16, 185, 129, 0.18), transparent 55%),
    linear-gradient(160deg, rgba(168, 85, 247, 0.16), transparent 60%),
    linear-gradient(160deg, #111827 0%, #0f172a 48%, #0a0a0a 100%);
  background-size: cover;
  background-position: center top;
}

.case-body {
  padding: 18px 60px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.case-link {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  transition: border-color 0.15s, color 0.15s, transform 0.15s, background 0.15s;
}

.case-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: color-mix(in srgb, var(--bg) 92%, var(--accent) 8%);
  transform: translateY(-1px);
}

.case-meta {
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 0.06em;
}

.case-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.case-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.case-list {
  margin: 0;
  padding-left: 1.2em;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.products-lead {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.products-hint {
  margin: 0;
  font-size: 13px;
  color: var(--dim);
}

.products-intro a,
.products-footnote a {
  color: var(--accent);
  text-decoration: none;
}

.products-intro a:hover,
.products-footnote a:hover {
  text-decoration: underline;
}

.products-footnote {
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--dim);
  line-height: 1.6;
}

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

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  border: 1px solid var(--border);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
  border-radius: 6px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.product-card:hover {
  border-color: var(--card-hover-border);
}

.product-card.is-selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.product-card:focus {
  outline: none;
}

.product-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.product-card h3 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
}

.product-tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--cyan);
}

.product-price-box {
  border: 1px solid var(--border);
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--product-price-box-bg);
  border-radius: 4px;
}

.product-price-label {
  font-size: 12px;
  color: var(--dim);
}

.product-price-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.product-price-note {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.product-desc-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
}

.product-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-detail-label {
  font-size: 12px;
  color: var(--dim);
  font-weight: 600;
}

.product-detail-body {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

.product-token-highlight {
  font-weight: 700;
  color: var(--token-strong);
}

.product-card-link {
  margin-top: auto;
  align-self: stretch;
  text-align: center;
}

.flow-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 8px;
}

.pay-flow {
  flex: 1 1 320px;
  min-width: 0;
}

.pay-flow .panel-head {
  color: var(--text);
  font-size: 22px;
  font-weight: 700;
}

.pay-flow .body {
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
  white-space: pre-line;
}

.success-box {
  flex: 0 0 auto;
  width: 100%;
  max-width: 420px;
  border-color: var(--accent);
}

.success-box .success-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.success-box .key {
  margin: 0;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: clamp(14px, 2.8vw, 18px);
  font-weight: 700;
  word-break: break-all;
}

.success-box .meta {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  white-space: pre-line;
}

.content-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 8px;
  align-items: flex-start;
}

.query-panel {
  flex: 0 0 auto;
  width: 100%;
  max-width: 420px;
}

.query-panel .desc {
  font-size: 14px;
  line-height: 1.65;
}

.query-field {
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-size: 14px;
  color: var(--text);
  background: var(--input-bg);
  width: 100%;
  border-radius: 4px;
}

.query-field::placeholder {
  color: var(--dim);
}

.query-hint {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.posts-panel {
  flex: 1 1 320px;
  min-width: 0;
}

.post-item {
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.post-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.post-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
}

.post-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  margin-top: auto;
  border-top: 1px solid var(--border);
}

.footer-left {
  font-size: 13px;
  color: var(--dim);
}

.footer-right {
  font-size: 13px;
  color: var(--accent);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-nav-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.theme-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 220;
  width: 40px;
  height: 40px;
  padding: 0;
  min-height: auto;
  border-radius: 999px;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  border-color: color-mix(in srgb, var(--border) 72%, var(--accent) 28%);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.theme-toggle:hover {
  background: color-mix(in srgb, var(--bg) 90%, var(--accent) 10%);
}

.theme-toggle-icon {
  position: relative;
  width: 15px;
  height: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle-icon::before,
.theme-toggle-icon::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.theme-toggle[data-theme-state="dark"] .theme-toggle-icon::before {
  width: 15px;
  height: 15px;
  background: var(--text);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--text) 12%, transparent);
}

.theme-toggle[data-theme-state="dark"] .theme-toggle-icon::after {
  width: 15px;
  height: 15px;
  background: var(--bg);
  transform: translate(5px, -5px) scale(0.9);
}

.theme-toggle[data-theme-state="light"] .theme-toggle-icon::before {
  width: 10px;
  height: 10px;
  background: var(--amber);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--amber) 0%, transparent),
    0 -13px 0 -6px var(--amber),
    0 13px 0 -6px var(--amber),
    13px 0 0 -6px var(--amber),
    -13px 0 0 -6px var(--amber),
    9px 9px 0 -6px var(--amber),
    -9px 9px 0 -6px var(--amber),
    9px -9px 0 -6px var(--amber),
    -9px -9px 0 -6px var(--amber);
}

.theme-toggle[data-theme-state="light"] .theme-toggle-icon::after {
  opacity: 0;
}

.hero-doc-hint {
  margin: 0;
  font-size: 13px;
  color: var(--dim);
  line-height: 1.55;
}

.hero-doc-hint a {
  color: var(--accent);
  text-decoration: none;
}

.hero-doc-hint a:hover {
  text-decoration: underline;
}

.footer-left a {
  color: var(--accent);
  text-decoration: none;
}

.footer-left a:hover {
  text-decoration: underline;
}

.studio-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: stretch;
}

.studio-visual {
  flex: 1 1 420px;
  min-width: 0;
}

.studio-photo {
  position: relative;
  min-height: 360px;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 18%, rgba(6, 182, 212, 0.28), transparent 30%),
    radial-gradient(circle at 78% 26%, rgba(16, 185, 129, 0.24), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 40%),
    linear-gradient(160deg, #0f172a 0%, #111827 42%, #0a0a0a 100%);
  background-size: cover;
  background-position: center top;
}

.studio-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.3;
}

.studio-photo::after {
  content: "工作室照片 / 讲课现场 / 实验室场景";
  position: absolute;
  left: 24px;
  top: 24px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(10, 10, 10, 0.45);
  backdrop-filter: blur(6px);
}

.studio-photo.has-image::before {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.04), rgba(10, 10, 10, 0.42));
  opacity: 1;
}

.studio-photo.has-image::after {
  content: none;
}

.studio-photo-copy {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.studio-photo.has-image .studio-photo-eyebrow {
  color: #67e8f9;
}

.studio-photo.has-image .studio-photo-title {
  color: rgba(255, 255, 255, 0.96);
}

.studio-photo.has-image .studio-photo-desc {
  color: rgba(255, 255, 255, 0.82);
}

.studio-photo-eyebrow {
  font-size: 12px;
  color: var(--cyan);
  letter-spacing: 0.08em;
}

.studio-photo-title {
  margin: 0;
  width: 100%;
  font-size: clamp(20px, 3.2vw, 30px);
  font-weight: 700;
  line-height: 1.15;
}

.studio-photo-desc {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.studio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.studio-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  color: var(--cyan);
  background: rgba(6, 182, 212, 0.06);
}

.studio-content {
  flex: 1.15 1 480px;
  min-width: 0;
}

.studio-block {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.studio-block:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
}

.modal-overlay.is-open {
  display: flex;
}

.modal {
  width: min(100%, 560px);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 0;
}

.modal-title-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}

.modal-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.modal-close {
  width: 40px;
  height: 40px;
  padding: 0;
  flex: 0 0 auto;
  border-radius: 999px;
}

.modal-body {
  padding: 20px;
}

.modal-qr {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 12px;
  background: #fff;
}

body.modal-open {
  overflow: hidden;
}

.studio-block h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
}

.studio-block p,
.studio-block li {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.studio-block ul {
  margin: 0;
  padding-left: 1.2em;
}

.studio-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.16);
}

.studio-cta-copy {
  flex: 1 1 420px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.studio-cta-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.studio-cta-desc {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

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

@media (max-width: 900px) {
  .studio-photo {
    min-height: 280px;
  }
}

@media (max-width: 640px) {
  .studio-photo-copy {
    max-width: none;
    right: 24px;
  }

  .studio-cta {
    align-items: flex-start;
  }
}
