/* ── Studio ──────────────────────────────────────────────────────── */

.studio-page {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

/* Animated node network bg */
#st-bg-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.28;
  pointer-events: none;
  z-index: 0;
}

.studio-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 70% at 50% 0%, transparent 30%, rgba(19,21,30,0.97) 80%);
  pointer-events: none;
  z-index: 0;
}

.studio-scroll {
  flex: 1;
  overflow-y: auto;
  position: relative;
  z-index: 1;
}

/* Hero */
.st-hero {
  padding: 72px 56px 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 60px;
}

.st-hero-left { flex: 1; min-width: 0; }
.st-hero-left .st-title { max-width: none; }

.st-hero-right {
  flex: 0 0 42%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  max-height: calc(100vh - 200px);
}

.st-hero-gif {
  width: 100%;
  max-height: calc(100vh - 200px);
  object-fit: contain;
  filter: drop-shadow(0 0 80px rgba(16, 185, 129, 0.15));
}

.st-subhead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
  margin-bottom: 32px;
  max-width: 480px;
}

/* About two-column layout */
.st-about-wrap {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.st-about-wrap .st-bio { flex: 1; min-width: 0; }
.st-about-wrap .st-bio-p { max-width: none; }

.st-about-gif-wrap {
  flex: 0 0 300px;
  position: sticky;
  top: 80px;
}

.st-about-gif {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  filter: drop-shadow(0 0 48px rgba(0, 224, 116, 0.12));
  border: 1px solid var(--border);
}

/* Bio */
.st-bio-p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-2);
  margin-bottom: 18px;
  max-width: 680px;
}

.st-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.st-disc {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid var(--green-b);
  border-radius: 4px;
  padding: 5px 12px;
}

/* Contact grid */
.st-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.st-contact-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.st-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  text-decoration: none;
  color: var(--text);
  margin-bottom: 0;
  transition: border-color var(--t), background var(--t);
}

.st-contact-item:hover { border-color: var(--green-b); background: var(--green-dim); }

.st-contact-cta-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-2);
  margin-bottom: 28px;
}

@media (max-width: 768px) {
  /* Unlock native scroll — global.css sets overflow:hidden on html/body for desktop custom scrollers */
  html, body {
    overflow-x: hidden;
    overflow-y: auto;
    height: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
  }

  .st-hero { flex-direction: column; gap: 36px; padding: 40px 24px 48px; }
  .st-hero-right { flex: none; width: 100%; height: 40vh; max-height: 40vh; justify-content: center; }
  .st-contact-grid { grid-template-columns: 1fr; }
  .st-about-wrap { flex-direction: column-reverse; gap: 32px; }
  .st-about-gif-wrap { flex: none; width: 180px; position: static; }
  .st-section { padding: 40px 24px; }

  .studio-page { height: auto; min-height: 100vh; overflow: visible; }
  .studio-scroll { overflow-y: visible; height: auto; }
}

.st-hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,224,116,.05) 0%, transparent 70%);
  pointer-events: none;
}

.st-eyebrow {
  font-family: var(--f-mono);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 20px;
}

.st-title {
  font-family: var(--f-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 24px;
  max-width: 700px;
}

.st-title span { color: var(--green); }

.st-desc {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 36px;
}

.st-ctas { display: flex; gap: 12px; align-items: center; }

/* Stats */
.st-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}

.st-stat {
  padding: 32px 40px;
  border-right: 1px solid var(--border);
}

.st-stat:last-child { border-right: none; }

.st-stat-n {
  font-family: var(--f-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.st-stat-l {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
}

/* Section */
.st-section {
  padding: 52px 56px;
  border-bottom: 1px solid var(--border);
}

.st-section-head {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 36px;
}

.st-section-tag {
  font-family: var(--f-mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
}

.st-section-title {
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* Process */
.st-process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.st-step {
  background: var(--bg-1);
  padding: 28px 26px;
  transition: background var(--t);
  position: relative;
}

.st-step:hover { background: var(--bg-2); }

.st-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--green);
  opacity: 0;
  transition: opacity var(--t);
}

.st-step:hover::before { opacity: 0.5; }

.st-step-n {
  font-family: var(--f-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: .05em;
  margin-bottom: 14px;
}

.st-step-icon { font-size: 20px; margin-bottom: 12px; }

.st-step-title {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}

.st-step-desc {
  font-size: 12px;
  line-height: 1.7;
  color: var(--text-2);
}

/* Tags */
.st-tags { display: flex; flex-wrap: wrap; gap: 7px; }

.st-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 40px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--text-2);
  cursor: default;
  transition: var(--t);
}

.st-tag:hover { border-color: var(--green-b); color: var(--green); background: var(--green-dim); }
.st-tag-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--green); }

/* Contact */
.st-contact {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  align-items: start;
}

.st-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-2);
  margin-bottom: 10px;
  transition: var(--t);
}

.st-contact-item:hover { border-color: var(--border-h); }

.st-ci-icon { font-size: 16px; padding-top: 2px; flex-shrink: 0; }
.st-ci-label { font-family: var(--f-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); margin-bottom: 3px; }
.st-ci-val { font-size: 13px; color: var(--text); }

/* Form */
.st-form { display: flex; flex-direction: column; gap: 12px; }

.st-form-label { font-family: var(--f-mono); font-size: 9px; letter-spacing: .1em; text-transform: uppercase; color: var(--text-3); display: block; margin-bottom: 5px; }

.st-form-input {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--text);
  outline: none;
  transition: border-color var(--t);
}

.st-form-input:focus { border-color: var(--green-b); }
.st-form-input::placeholder { color: var(--text-3); }
.st-form-textarea { min-height: 100px; resize: vertical; line-height: 1.6; }
