/* ============ Ghost service page styles ============ */
:root {
  --gh-lime: #d4ff3a;
  --gh-lime-2: #e6ff66;
  --gh-lime-deep: #a8cc1f;
  --gh-lime-glow: rgba(212, 255, 58, 0.35);
  --gh-pink: #FF1A75;
  --gh-pink-2: #ff4d92;
  --gh-pink-deep: #d10b58;
  --gh-pink-glow: rgba(255, 26, 117, 0.32);
  --gh-bg: #08080a;
  --gh-panel: #0e0f14;
  --gh-panel-2: #14151c;
  --gh-paper: #f5efe2;
  --gh-paper-ink: #14110d;
  --gh-line: rgba(255, 255, 255, 0.08);
  --gh-line-2: rgba(255, 255, 255, 0.14);
  --gh-text: #ececef;
  --gh-text-dim: rgba(236, 236, 239, 0.62);
  --gh-text-mute: rgba(236, 236, 239, 0.42);
  --gh-mono: 'JetBrains Mono', ui-monospace, monospace;
  --gh-sans: 'Space Grotesk', ui-sans-serif, system-ui, sans-serif;
  --gh-serif: 'Fraunces', Georgia, serif;
}

.gh-page {
  background: var(--gh-bg);
  color: var(--gh-text);
  font-family: var(--gh-sans);
  overflow-x: hidden;
}
.gh-page * { box-sizing: border-box; }

#fluid-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.5;
}
.gh-page::before {
  content: '';
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 80% 10%, rgba(255, 26, 117, 0.10), transparent 60%),
    radial-gradient(50% 40% at 10% 90%, rgba(212, 255, 58, 0.08), transparent 60%),
    var(--gh-bg);
}

.gh-page > section,
.gh-page > header,
.gh-page > footer,
.gh-page > .gh-crumb { position: relative; z-index: 1; }
.gh-page > aside.mdrawer { z-index: 50; }

/* Crumb */
.gh-crumb {
  position: fixed; top: 80px; left: var(--gutter);
  z-index: 30;
  display: flex; gap: 10px; align-items: center;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--bone-3);
  pointer-events: auto;
}
.gh-crumb a { color: var(--bone-3); text-decoration: none; }
.gh-crumb a:hover { color: var(--lime); }
.gh-crumb .cur { color: var(--bone); }

/* ============ HERO ============ */
.gh-hero {
  position: relative; min-height: 100vh;
  padding: 24px 40px 0; overflow: hidden;
}
.gh-hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none; opacity: 0.95;
}

.gh-hero__grid {
  position: relative; z-index: 1;
  display: grid; grid-template-rows: auto 1fr auto;
  gap: 60px; padding: 80px 0 60px;
  min-height: calc(100vh - 80px);
}
.gh-hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--gh-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gh-text-mute);
}
.gh-hero__eyebrow .dot {
  width: 8px; height: 8px;
  background: var(--gh-lime);
  border-radius: 50%;
  animation: ghPulse 2s ease infinite;
}
@keyframes ghPulse {
  0%, 100% { box-shadow: 0 0 0 0 var(--gh-lime-glow); }
  50% { box-shadow: 0 0 0 8px transparent; }
}

.gh-hero__title {
  font-family: var(--gh-serif);
  font-size: clamp(72px, 12vw, 200px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  font-weight: 300;
  margin: 0;
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'WONK' 1;
}
.gh-hero__title .line { display: block; overflow: hidden; }
.gh-hero__title .line > span { display: inline-block; }
.gh-hero__title .indent { padding-left: 1.2em; }
.gh-hero__title em { font-style: italic; color: var(--gh-lime); }

.gh-hero__bottom {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px;
  align-items: end;
  border-top: 1px solid var(--gh-line);
  padding-top: 28px;
}
.gh-hero__lede {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.55; max-width: 56ch;
  color: var(--gh-text-dim);
}
.gh-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }

.gh-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 26px; border-radius: 999px;
  font-family: var(--gh-mono);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: transform .25s ease, background .25s, color .25s;
}
.gh-btn--solid { background: var(--gh-lime); color: #0a0a0a; }
.gh-btn--solid:hover { background: var(--gh-lime-2); }
.gh-btn--ghost { background: transparent; color: var(--gh-text); border: 1px solid var(--gh-line-2); }
.gh-btn--ghost:hover { border-color: var(--gh-lime); color: var(--gh-lime); }
.gh-btn .arrow { display: inline-block; transition: transform .25s; }
.gh-btn:hover .arrow { transform: translateX(4px); }

/* ============ INTRO STATS ============ */
.gh-intro {
  padding: 140px 40px 80px;
  border-top: 1px solid var(--gh-line);
}
.gh-intro__head {
  display: grid; grid-template-columns: auto 1fr; gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.gh-intro__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  border-top: 1px solid var(--gh-line);
  padding-top: 40px;
}
.gh-stat__num {
  font-family: var(--gh-serif);
  font-style: italic; font-weight: 300;
  font-size: clamp(56px, 7vw, 110px);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--gh-lime);
}
.gh-stat__num sup {
  font-size: 0.5em; color: var(--gh-text);
  font-style: normal; vertical-align: top;
  margin-left: 4px;
}
.gh-stat__label {
  font-size: 13px; letter-spacing: 0.04em;
  color: var(--gh-text-dim); margin-top: 6px;
  font-family: var(--gh-mono);
}
.gh-stat__label[data-zero] { color: var(--gh-text-mute); }

/* ============ CAPABILITIES ============ */
.gh-cap {
  padding: 80px 40px 120px;
  border-top: 1px solid var(--gh-line);
}
.gh-cap__head {
  display: grid; grid-template-columns: auto 1.4fr; gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}
.gh-cap__lede {
  grid-column: 1 / -1;
  max-width: 70ch;
  color: var(--gh-text-dim);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.55;
  margin: 0;
}
.gh-cap__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--gh-line);
  border: 1px solid var(--gh-line);
}
.gh-cap__card {
  background: var(--gh-bg);
  padding: 28px 24px 28px;
  position: relative;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: background .3s;
}
.gh-cap__card:hover { background: var(--gh-panel); }
.gh-cap__art {
  width: 100%; aspect-ratio: 400/140;
  border-radius: 4px; overflow: hidden;
  background: #08080a;
  border: 1px solid var(--gh-line);
}
.gh-cap__art svg { width: 100%; height: 100%; display: block; }
.gh-cap__class {
  font-family: var(--gh-mono); font-size: 10px;
  color: var(--gh-pink-2);
  letter-spacing: 0.08em;
}
.gh-cap__num {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--gh-mono); font-size: 11px;
  color: var(--gh-text-mute);
}
.gh-cap__card h3 {
  font-family: var(--gh-serif);
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.1; margin: 4px 0;
  font-weight: 400;
}
.gh-cap__card h3 em { font-style: italic; color: var(--gh-lime); }
.gh-cap__card p {
  font-size: 13.5px; line-height: 1.55;
  color: var(--gh-text-dim);
  margin: 0;
}
.gh-cap__card ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
  font-size: 12px; color: var(--gh-text-dim);
}
.gh-cap__card ul span { color: var(--gh-pink-2); margin-right: 6px; }

/* ============ STUDIO (live editor + preview) ============ */
.gh-studio {
  padding: 80px 40px 120px;
  border-top: 1px solid var(--gh-line);
}
.gh-studio__head {
  margin-bottom: 50px;
  max-width: 800px;
}
.gh-studio__head h2 { margin: 14px 0; }
.gh-studio__head h2 em { font-style: italic; color: var(--gh-lime); }
.gh-studio__head .lede {
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6; color: var(--gh-text-dim);
  max-width: 70ch;
}

.gh-studio__rig {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--gh-line);
  border: 1px solid var(--gh-line);
  border-radius: 6px;
  overflow: hidden;
  min-height: 700px;
}

/* Editor side */
.gh-studio__editor {
  background: var(--gh-panel);
  display: flex; flex-direction: column;
}
.gh-studio__editor-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--gh-line);
  font-family: var(--gh-mono); font-size: 11px;
}
.gh-studio__editor-tabs { display: flex; gap: 0; }
.gh-studio__editor-tab {
  padding: 6px 14px;
  letter-spacing: 0.06em;
  color: var(--gh-text-mute);
  cursor: pointer;
  border-bottom: 1px solid transparent;
  transition: color .2s, border-color .2s;
}
.gh-studio__editor-tab:hover { color: var(--gh-text); }
.gh-studio__editor-tab.is-active {
  color: var(--gh-pink-2);
  border-bottom-color: var(--gh-pink);
}
.gh-studio__editor-meta { display: flex; gap: 12px; align-items: center; color: var(--gh-text-mute); }
.gh-studio__pill {
  padding: 3px 10px; border-radius: 999px;
  background: rgba(255, 26, 117, 0.14);
  color: var(--gh-pink-2);
  font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
}
.gh-studio__editor-save {
  font-size: 10.5px;
  letter-spacing: 0.06em;
}

.gh-studio__toolbar {
  display: flex; gap: 4px; align-items: center;
  padding: 8px 12px;
  background: var(--gh-panel-2);
  border-bottom: 1px solid var(--gh-line);
  flex-wrap: wrap;
}
.gh-studio__tool {
  width: 30px; height: 30px;
  display: grid; place-items: center;
  background: transparent; border: 0;
  color: var(--gh-text-dim);
  cursor: pointer; border-radius: 4px;
  transition: background .2s, color .2s;
}
.gh-studio__tool:hover { background: var(--gh-line); color: var(--gh-text); }
.gh-studio__tool svg {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor; stroke-width: 1.5;
}
.gh-studio__tool svg text { fill: currentColor; stroke: none; }
.gh-studio__divider {
  width: 1px; height: 18px;
  background: var(--gh-line-2);
  margin: 0 6px;
}

.gh-studio__editor-body {
  padding: 24px;
  flex: 1;
  overflow: auto;
  display: flex; flex-direction: column; gap: 18px;
}
.gh-studio__editor-meta-row {
  display: flex; justify-content: space-between;
  font-family: var(--gh-mono); font-size: 11px;
  color: var(--gh-text-mute);
  letter-spacing: 0.04em;
}
.gh-studio__editor-author em {
  color: var(--gh-pink-2);
  font-style: italic;
  font-family: var(--gh-serif);
  font-size: 12.5px;
}
.gh-studio__editor-tag {
  font-family: var(--gh-mono);
  color: var(--gh-pink-2);
}
.gh-studio__editor-area {
  font-family: var(--gh-mono);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--gh-text);
  white-space: pre-wrap;
  outline: none;
  flex: 1;
  min-height: 360px;
  caret-color: var(--gh-pink);
}
.gh-studio__editor-area:focus {
  outline: none;
}

.gh-studio__editor-foot {
  display: flex; justify-content: space-between;
  padding: 10px 16px;
  border-top: 1px solid var(--gh-line);
  font-family: var(--gh-mono); font-size: 10.5px;
  color: var(--gh-text-mute);
  letter-spacing: 0.06em;
}
.gh-studio__editor-foot strong { color: var(--gh-text); font-weight: 500; }
.gh-studio__editor-foot-pub {
  color: var(--gh-pink-2);
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Preview side */
.gh-studio__preview {
  background: var(--gh-paper);
  color: var(--gh-paper-ink);
  display: flex; flex-direction: column;
}
.gh-studio__preview-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(20, 17, 13, 0.1);
  font-family: var(--gh-mono); font-size: 11px;
  color: rgba(20, 17, 13, 0.6);
}
.gh-studio__preview-chrome {
  display: flex; align-items: center; gap: 10px;
}
.gh-studio__preview-chrome .dots {
  display: inline-flex; gap: 5px;
}
.gh-studio__preview-chrome .dots span {
  width: 9px; height: 9px; border-radius: 50%;
  background: rgba(20, 17, 13, 0.18);
}
.gh-studio__preview-chrome .url {
  font-size: 10.5px;
  color: rgba(20, 17, 13, 0.55);
  letter-spacing: 0.04em;
}
.gh-studio__preview-meta {
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(20, 17, 13, 0.45);
}

.gh-studio__article {
  padding: 56px 60px;
  flex: 1; overflow: auto;
  font-family: var(--gh-serif);
  color: var(--gh-paper-ink);
  line-height: 1.55;
  max-width: 720px;
  margin: 0 auto;
}
.gh-studio__article h1 {
  font-family: var(--gh-serif);
  font-weight: 300;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 0.6em;
  color: var(--gh-paper-ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 50, 'WONK' 1;
}
.gh-studio__article h2 {
  font-family: var(--gh-serif);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 1.6em 0 0.4em;
  color: var(--gh-paper-ink);
}
.gh-studio__article h2 em { font-style: italic; color: var(--gh-pink); }
.gh-studio__article h1 em { font-style: italic; color: var(--gh-pink); }
.gh-studio__article p {
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.62;
  margin: 0 0 1em;
  color: rgba(20, 17, 13, 0.85);
}
.gh-studio__article p em { font-style: italic; }
.gh-studio__article p strong { font-weight: 600; color: var(--gh-paper-ink); }
.gh-studio__article blockquote {
  margin: 1.2em 0;
  padding: 0.4em 0 0.4em 22px;
  border-left: 3px solid var(--gh-pink);
  font-family: var(--gh-serif);
  font-style: italic;
  font-size: clamp(18px, 1.4vw, 22px);
  line-height: 1.4;
  color: rgba(20, 17, 13, 0.75);
}
.gh-studio__article hr {
  border: 0;
  height: 1px;
  background: rgba(20, 17, 13, 0.12);
  margin: 2em 0;
}
.gh-studio__article a {
  color: var(--gh-pink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gh-studio__article-meta {
  display: flex; gap: 10px; align-items: center;
  font-family: var(--gh-mono); font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(20, 17, 13, 0.55);
  text-transform: uppercase;
  margin-bottom: 1.6em;
}
.gh-studio__article-meta::before {
  content: '';
  width: 24px; height: 1px;
  background: rgba(20, 17, 13, 0.45);
}

/* ============ VS ============ */
.gh-vs {
  padding: 80px 40px 100px;
  border-top: 1px solid var(--gh-line);
}
.gh-vs__head {
  margin-bottom: 40px;
  max-width: 900px;
}
.gh-vs__head h2 {
  font-family: var(--gh-serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1; font-weight: 300;
  letter-spacing: -0.03em;
  margin: 14px 0 0;
}
.gh-vs__head h2 em { font-style: italic; color: var(--gh-lime); }
.gh-vs__grid {
  border: 1px solid var(--gh-line);
  border-radius: 6px;
  overflow: hidden;
}
.gh-vs__row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.4fr;
  padding: 18px 24px;
  border-bottom: 1px solid var(--gh-line);
  font-size: 14px; align-items: center;
}
.gh-vs__row:last-child { border-bottom: 0; }
.gh-vs__row--head {
  background: var(--gh-panel);
  font-family: var(--gh-mono); font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gh-text-dim);
}
.gh-vs__row--head .lime { color: var(--gh-lime); }
.gh-vs__row .bad { color: var(--gh-text-mute); }
.gh-vs__row .good { color: var(--gh-text); }
.gh-vs__row .good::before {
  content: '→ ';
  color: var(--gh-lime);
  margin-right: 6px;
}

/* ============ PAIRS ============ */
.gh-pairs {
  padding: 80px 40px 100px;
  border-top: 1px solid var(--gh-line);
}
.gh-pairs__head {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px;
  margin-bottom: 50px; align-items: end;
}
.gh-pairs__head h2 {
  font-family: var(--gh-serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1; font-weight: 300;
  letter-spacing: -0.03em;
  margin: 14px 0 0;
}
.gh-pairs__head h2 em { font-style: italic; color: var(--gh-lime); }
.gh-pairs__head p {
  color: var(--gh-text-dim);
  font-size: 14.5px; line-height: 1.55;
  max-width: 64ch; margin: 0;
}
.gh-pairs__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--gh-line);
  border: 1px solid var(--gh-line);
  border-radius: 6px; overflow: hidden;
}
.gh-pair {
  background: var(--gh-bg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background .25s;
}
.gh-pair:hover { background: var(--gh-panel); }
.gh-pair__combo {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--gh-mono); font-size: 11px;
  color: var(--gh-text-mute); letter-spacing: 0.06em;
}
.gh-pair__combo .a { color: var(--gh-pink-2); }
.gh-pair__combo .b { color: var(--gh-lime); }
.gh-pair__combo .x { color: var(--gh-text-mute); }
.gh-pair h4 {
  font-family: var(--gh-serif);
  font-size: 22px; line-height: 1.15;
  font-weight: 400; margin: 0;
}
.gh-pair p {
  font-size: 13px; line-height: 1.55;
  color: var(--gh-text-dim); margin: 0;
}

/* ============ PROCESS ============ */
.gh-process {
  padding: 80px 40px 100px;
  border-top: 1px solid var(--gh-line);
}
.gh-process__head { margin-bottom: 50px; }
.gh-process__head h2 {
  font-family: var(--gh-serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1; font-weight: 300;
  letter-spacing: -0.03em;
  margin: 14px 0 0;
}
.gh-process__head h2 em { font-style: italic; color: var(--gh-lime); }
.gh-process__steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--gh-line);
  border: 1px solid var(--gh-line);
  border-radius: 6px; overflow: hidden;
}
.gh-process__steps li {
  background: var(--gh-bg);
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background .25s;
}
.gh-process__steps li:hover { background: var(--gh-panel); }
.gh-process__week {
  font-family: var(--gh-mono); font-size: 10.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gh-pink-2);
}
.gh-process__steps h4 {
  font-family: var(--gh-serif);
  font-size: 22px; line-height: 1.15;
  font-weight: 400; margin: 0;
}
.gh-process__steps p {
  font-size: 13px; line-height: 1.55;
  color: var(--gh-text-dim); margin: 0;
}

/* ============ CTA ============ */
.gh-cta {
  position: relative;
  padding: 120px 40px 100px;
  text-align: center;
  border-top: 1px solid var(--gh-line);
  overflow: hidden;
}
.gh-cta__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
  opacity: 0.6;
}
.gh-cta__rotor {
  position: relative; z-index: 1;
  width: clamp(280px, 40vw, 460px);
  margin: 0 auto;
  aspect-ratio: 1 / 1;
  display: grid; place-items: center;
}
.gh-cta__rotor svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: ghRotor 24s linear infinite;
}
@keyframes ghRotor { to { transform: rotate(360deg); } }
.gh-cta__rotor .rotor-text {
  font-family: var(--gh-mono); font-size: 16px;
  letter-spacing: 0.18em; text-transform: uppercase;
  fill: var(--gh-text-dim);
}
.gh-cta__btn {
  position: relative; z-index: 2;
  display: inline-grid; place-items: center;
  width: clamp(120px, 16vw, 180px); aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: var(--gh-lime); color: #0a0a0a;
  font-family: var(--gh-mono); font-size: 13px;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none;
  transition: transform .25s, background .25s;
  box-shadow: 0 0 0 0 var(--gh-lime-glow);
}
.gh-cta__btn:hover {
  background: var(--gh-lime-2);
  box-shadow: 0 0 40px var(--gh-lime-glow);
}
.gh-cta__lines {
  position: relative; z-index: 1;
  margin-top: 24px;
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  font-family: var(--gh-mono); font-size: 11px;
  color: var(--gh-text-mute);
  letter-spacing: 0.1em; text-transform: uppercase;
}

/* ============ Reduced motion ============ */
@media (prefers-reduced-motion: reduce) {
  .gh-cta__rotor svg { animation: none; }
  .gh-hero__eyebrow .dot { animation: none; }
}

/* ============ Responsive ============ */
@media (max-width: 1100px) {
  .gh-studio__rig { grid-template-columns: 1fr; min-height: 0; }
  .gh-studio__editor, .gh-studio__preview { min-height: 540px; }
  .gh-cap__grid { grid-template-columns: repeat(2, 1fr); }
  .gh-pairs__grid { grid-template-columns: repeat(2, 1fr); }
  .gh-process__steps { grid-template-columns: repeat(2, 1fr); }
  .gh-pairs__head { grid-template-columns: 1fr; gap: 24px; }
  .gh-intro__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .gh-hero { padding: 16px 20px 0; }
  .gh-intro, .gh-cap, .gh-studio, .gh-vs, .gh-pairs, .gh-process { padding-left: 20px; padding-right: 20px; }
  .gh-cta { padding: 80px 20px 60px; }
  .gh-hero__bottom { grid-template-columns: 1fr; gap: 24px; }
  .gh-hero__actions { justify-content: flex-start; }
  .gh-cap__grid { grid-template-columns: 1fr; }
  .gh-pairs__grid { grid-template-columns: 1fr; }
  .gh-process__steps { grid-template-columns: 1fr; }
  .gh-intro__grid { grid-template-columns: 1fr 1fr; }
  .gh-vs__row { grid-template-columns: 1fr; gap: 4px; padding: 14px 16px; }
  .gh-vs__row--head { display: none; }
  .gh-studio__head h2 { font-size: clamp(36px, 9vw, 60px); }
  .gh-studio__editor, .gh-studio__preview { min-height: 480px; }
  .gh-studio__editor-body { padding: 16px; }
  .gh-studio__article { padding: 32px 24px; }
  .gh-studio__toolbar { gap: 2px; padding: 6px 8px; }
  .gh-studio__tool { width: 28px; height: 28px; }
}
