* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #111318;
  --surface: #1a1d26;
  --surface-elevated: #222632;
  --border: rgba(255, 255, 255, 0.08);
  --text: #f2f3f7;
  --text-muted: #8b90a0;
  --text-subtle: #5c6270;
  --accent: #4f6df5;
  --accent-soft: rgba(79, 109, 245, 0.14);
  --record: #e8453c;
  --success: #3ecf8e;
  --radius: 14px;
  --radius-sm: 10px;
  --max-width: 1080px;
  --font-display: "Barlow Semi Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(79, 109, 245, 0.18), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(232, 69, 60, 0.1), transparent),
    var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  background: rgba(17, 19, 24, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.is-scrolled,
.site-header {
  border-bottom-color: var(--border);
}

.nav,
.hero,
.features,
.steps,
.pricing,
.faq,
.install {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  min-height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--text);
}

.brand:hover {
  color: #fff;
}

.brand-logo {
  border-radius: 8px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  min-width: 0;
  flex-wrap: wrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.nav-link[aria-current="page"] {
  color: var(--text);
  background: rgba(79, 109, 245, 0.12);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease, border-color 0.15s ease, filter 0.15s ease;
}

.nav-cta:hover {
  background: var(--surface-elevated);
  border-color: var(--border-strong, rgba(255, 255, 255, 0.14));
}

.nav-cta-primary {
  background: linear-gradient(180deg, #ef5a52 0%, var(--record) 100%);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 8px 22px rgba(232, 69, 60, 0.2);
}

.nav-cta-primary:hover {
  filter: brightness(1.05);
  background: linear-gradient(180deg, #ef5a52 0%, var(--record) 100%);
}

/* Legacy alias used on some pages */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 24px 0 72px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #9eb0ff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 11ch;
}

.lead {
  margin-top: 18px;
  max-width: 46ch;
  color: var(--text-muted);
  font-size: 1.05rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.1s ease, filter 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(180deg, #ef5a52 0%, var(--record) 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(232, 69, 60, 0.22);
}

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

.btn-secondary {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-secondary:hover {
  background: var(--surface-elevated);
}

.hero-card {
  padding: 12px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  justify-self: center;
  max-width: 300px;
  width: 100%;
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: min(560px, 70vh);
  object-fit: contain;
  border-radius: 10px;
  display: block;
}

.mock-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.mock-header img {
  border-radius: 8px;
}

.mock-header strong {
  display: block;
  font-size: 14px;
}

.mock-header span {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

.mock-url,
.mock-status,
.mock-section {
  margin-bottom: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
}

.mock-url {
  font-size: 12px;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mock-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.mock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--text-subtle);
}

.mock-label {
  display: block;
  margin-bottom: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.mock-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mock-btn,
.mock-select {
  display: block;
  padding: 9px 10px;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 12px;
  text-align: center;
}

.mock-btn-record {
  margin-top: 8px;
  background: linear-gradient(180deg, #ef5a52 0%, var(--record) 100%);
  border: none;
  color: #fff;
}

.mock-preview-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.mock-preview-header img {
  border-radius: 6px;
}

.mock-preview-header strong {
  display: block;
  font-size: 13px;
}

.mock-preview-header span {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
}

.mock-preview-actions {
  display: flex;
  gap: 6px;
}

.mock-chip {
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}

.mock-chip-primary {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}

.mock-annotate-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.mock-tool {
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}

.mock-tool.active {
  color: var(--text);
  border-color: rgba(79, 109, 245, 0.45);
  background: rgba(79, 109, 245, 0.12);
}

.mock-preview-canvas {
  padding: 12px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
}

.mock-page {
  position: relative;
  min-height: 180px;
  padding: 14px;
  border-radius: 8px;
  background: #f8fafc;
}

.mock-page-line {
  height: 8px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: #dbe3f0;
}

.mock-page-line.wide {
  width: 72%;
}

.mock-page-line.short {
  width: 42%;
}

.mock-highlight {
  position: absolute;
  top: 42px;
  left: 18px;
  width: 120px;
  height: 22px;
  border-radius: 4px;
  background: rgba(250, 204, 21, 0.45);
}

.mock-arrow {
  position: absolute;
  top: 88px;
  left: 150px;
  width: 72px;
  height: 3px;
  border-radius: 999px;
  background: #22c55e;
  transform: rotate(32deg);
}

.mock-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid #22c55e;
  transform: translateY(-50%);
}

.mock-label-tag {
  position: absolute;
  top: 118px;
  left: 34px;
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(17, 19, 24, 0.88);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
}

.features,
.steps,
.pricing,
.faq,
.install {
  padding-bottom: 72px;
}

.features h2,
.steps h2,
.pricing h2,
.faq h2,
.install h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

/* —— Pricing —— */
.pricing-intro {
  max-width: 56ch;
  margin-bottom: 28px;
}

.pricing-intro h2 {
  margin-bottom: 12px;
}

.pricing-lead {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 28px 24px 24px;
  border-radius: calc(var(--radius) + 2px);
  background: var(--surface);
  border: 1px solid var(--border);
}

.plan-pro {
  border-color: rgba(201, 162, 39, 0.4);
  background:
    linear-gradient(165deg, rgba(201, 162, 39, 0.12), transparent 42%),
    var(--surface);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.plan-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(201, 162, 39, 0.16);
  border: 1px solid rgba(201, 162, 39, 0.4);
  color: #f5d76e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.plan-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.plan-pro-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #f5d76e;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.35);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 10px;
}

.plan-amount {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
}

.plan-period {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.plan-tagline {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 18px;
  min-height: 2.8em;
}

.plan-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 22px;
  flex: 1;
}

.plan-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--success);
  font-weight: 700;
  font-size: 0.9rem;
}

.plan-list li strong {
  color: var(--text);
  font-weight: 600;
}

.plan-cta {
  width: 100%;
}

.btn-pro {
  background: linear-gradient(135deg, #c9a227, #e0b93a);
  color: #1a1406;
  border: none;
  box-shadow: 0 10px 28px rgba(201, 162, 39, 0.22);
}

.btn-pro:hover {
  filter: brightness(1.06);
}

.plan-footnote {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-subtle);
  line-height: 1.45;
  text-align: center;
}

.plan-footnote strong {
  color: var(--text-muted);
  font-weight: 600;
}

.compare {
  padding: 28px 0 0;
}

.compare-title {
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
  font-size: 0.94rem;
}

.compare-table th,
.compare-table td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.compare-table thead th {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-subtle);
  background: rgba(255, 255, 255, 0.02);
}

.compare-table thead th:nth-child(2),
.compare-table thead th:nth-child(3),
.compare-table tbody td {
  text-align: center;
  width: 18%;
}

.compare-table tbody th {
  font-weight: 500;
  color: var(--text-muted);
  font-family: inherit;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.compare-table .yes {
  color: var(--success);
  font-weight: 700;
  font-size: 1.05rem;
}

.compare-table .no {
  color: var(--text-subtle);
  font-weight: 600;
}

.compare-note {
  margin-top: 16px;
  color: var(--text-subtle);
  font-size: 0.88rem;
  line-height: 1.5;
  max-width: 62ch;
}

.compare-note a {
  color: #9eb0ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.compare-note a:hover {
  color: var(--text);
}

/* —— FAQ —— */
.faq-intro {
  max-width: 52ch;
  margin-bottom: 24px;
}

.faq-intro h2 {
  margin-bottom: 12px;
}

.faq-lead {
  color: var(--text-muted);
  font-size: 1.02rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
}

.faq-item {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.faq-item[open] summary::after {
  content: "−";
  color: var(--text);
  background: var(--accent-soft);
  border-color: rgba(79, 109, 245, 0.3);
}

.faq-item summary:hover {
  color: #fff;
}

.faq-answer {
  padding: 0 18px 18px;
  border-top: 1px solid transparent;
}

.faq-item[open] .faq-answer {
  border-top-color: var(--border);
  padding-top: 14px;
}

.faq-answer p,
.faq-answer li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.faq-answer p + p {
  margin-top: 10px;
}

.faq-answer ol {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-answer strong {
  color: var(--text);
  font-weight: 600;
}

.faq-answer a {
  color: #9eb0ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  color: var(--text);
}

/* —— Compare info icons —— */
.compare-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.compare-title-row .compare-title {
  margin-bottom: 0;
}

.compare-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(158, 176, 255, 0.45);
  background: rgba(79, 109, 245, 0.12);
  color: #9eb0ff;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.info-icon:hover,
.info-icon:focus-visible {
  background: rgba(79, 109, 245, 0.22);
  border-color: rgba(158, 176, 255, 0.75);
  color: #fff;
  outline: none;
}

.info-icon svg {
  width: 11px;
  height: 11px;
  display: block;
}

/* —— CaptureKit Studio page —— */
.studio-hero {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  padding: 16px 0 56px;
}

.studio-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 0;
}

.studio-hero .lead {
  margin-top: 16px;
}

.studio-hero-note {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-subtle);
}

.studio-hero-visual {
  min-width: 0;
}

.studio-mock {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  padding: 14px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  min-height: 280px;
}

.studio-mock-sidebar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--border);
}

.studio-mock-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-top: 4px;
}

.studio-mock-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.studio-mock-chip {
  padding: 4px 7px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  border: 1px solid var(--border);
}

.studio-mock-chip.active {
  color: #fff;
  border-color: rgba(79, 109, 245, 0.5);
  background: rgba(79, 109, 245, 0.2);
}

.studio-mock-bars span {
  display: block;
  height: 6px;
  margin-top: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(79, 109, 245, 0.45), rgba(168, 85, 247, 0.35));
}

.studio-mock-bars span:last-child {
  width: 70%;
  opacity: 0.7;
}

.studio-mock-stage {
  display: grid;
  place-items: center;
  padding: 16px;
  border-radius: var(--radius-sm);
  background:
    radial-gradient(circle at 30% 20%, rgba(79, 109, 245, 0.35), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.3), transparent 45%),
    #0f1220;
  border: 1px solid var(--border);
}

.studio-mock-canvas {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

.studio-mock-shot {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background:
    linear-gradient(180deg, #f8fafc 0%, #e2e8f0 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.studio-mock-shot::before {
  content: "";
  position: absolute;
  left: 12%;
  top: 22%;
  width: 55%;
  height: 10px;
  border-radius: 4px;
  background: #cbd5e1;
}

.studio-mock-shot::after {
  content: "";
  position: absolute;
  left: 12%;
  top: 40%;
  width: 70%;
  height: 8px;
  border-radius: 4px;
  background: #e2e8f0;
}

.studio-mock-cam {
  position: absolute;
  right: 8%;
  bottom: 10%;
  width: 22%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, #64748b, #1e293b);
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.studio-section {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
  padding-bottom: 64px;
}

.studio-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.section-lead {
  color: var(--text-muted);
  max-width: 56ch;
  margin-bottom: 24px;
}

.studio-feature-grid {
  margin-top: 8px;
}

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

.card-panel {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.studio-detail h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.studio-detail ul {
  margin: 0;
  padding-left: 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.studio-detail li {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.studio-detail strong {
  color: var(--text);
  font-weight: 600;
}

.privacy-panel p {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.privacy-panel p + p {
  margin-top: 12px;
}

.privacy-panel a {
  color: #9eb0ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-panel a:hover {
  color: var(--text);
}

.pro-pill-lg {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f5d76e;
  background: rgba(201, 162, 39, 0.14);
  border: 1px solid rgba(201, 162, 39, 0.4);
}

.studio-cta {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto 24px;
  padding-bottom: 48px;
}

@media (max-width: 860px) {
  .studio-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .studio-detail-list {
    grid-template-columns: 1fr;
  }

  .studio-mock {
    grid-template-columns: 1fr;
  }

  .studio-mock-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

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

.feature-card {
  padding: 22px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.feature-icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.step-list {
  list-style: none;
  display: grid;
  gap: 16px;
}

.step-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
}

.step-number {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: #9eb0ff;
  font-weight: 700;
  font-size: 14px;
}

.step-list h3 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.step-list p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.step-list code {
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--bg);
  font-size: 0.85em;
}

.install-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(79, 109, 245, 0.08), rgba(26, 29, 38, 0.9));
  border: 1px solid var(--border);
}

.install-logo {
  margin: 0 auto 18px;
  border-radius: 14px;
}

.install-card p {
  max-width: 46ch;
  margin: 12px auto 24px;
  color: var(--text-muted);
}

.install-note {
  margin-top: 16px !important;
  margin-bottom: 0 !important;
  font-size: 0.85rem;
  color: var(--text-subtle) !important;
}

/* —— Site footer —— */
.site-footer {
  margin-top: 24px;
  border-top: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(26, 29, 38, 0.35), rgba(17, 19, 24, 0.92)),
    var(--bg);
}

.site-footer-inner {
  width: min(100% - 32px, var(--max-width));
  margin-inline: auto;
  padding: 48px 0 28px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--border);
}

.site-footer-brand {
  max-width: 280px;
}

.site-footer-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.01em;
  color: var(--text);
}

.site-footer-brand-row img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.site-footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.site-footer-col h3 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.site-footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer-col a {
  color: var(--text-muted);
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer-col a:hover {
  color: var(--text);
}

.site-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
}

.site-footer-copy {
  color: var(--text-subtle);
  font-size: 0.88rem;
}

.site-footer-copy a {
  color: var(--text-muted);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer-copy a:hover {
  color: var(--text);
}

.site-footer-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--text-subtle);
  font-size: 0.85rem;
}

.site-footer-meta a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer-meta a:hover {
  color: var(--text);
}

.site-footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-subtle);
  opacity: 0.7;
}

.site-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 221, 87, 0.1);
  border: 1px solid rgba(255, 221, 87, 0.22);
  color: #ffe08a !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.site-footer-cta:hover {
  background: rgba(255, 221, 87, 0.16);
  border-color: rgba(255, 221, 87, 0.35);
  color: #fff4c2 !important;
}

.site-footer-cta svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Legacy centered footer (unused) */
.footer {
  padding: 28px 0 40px;
  text-align: center;
  color: var(--text-subtle);
  font-size: 0.9rem;
}

.footer p + p {
  margin-top: 6px;
}

.footer a {
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.legal {
  width: min(100% - 32px, 720px);
  margin-inline: auto;
  padding: 20px 0 72px;
}

.legal h1 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.legal-meta {
  color: var(--text-subtle);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.legal section {
  margin-bottom: 32px;
}

.legal h2 {
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.legal p,
.legal li {
  color: var(--text-muted);
  font-size: 0.98rem;
}

.legal p + p {
  margin-top: 12px;
}

.legal ul {
  margin-top: 12px;
  padding-left: 1.25rem;
}

.legal li + li {
  margin-top: 8px;
}

.legal strong {
  color: var(--text);
  font-weight: 600;
}

.legal code {
  padding: 2px 6px;
  border-radius: 6px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.88em;
}

.legal a {
  color: #9eb0ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.legal-back {
  margin-top: 40px;
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-card {
    max-width: 280px;
  }

  .hero h1 {
    max-width: none;
  }

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

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .mock-preview-header {
    grid-template-columns: auto 1fr;
  }

  .mock-preview-actions {
    grid-column: 1 / -1;
  }

  .site-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer-brand {
    grid-column: 1 / -1;
    max-width: none;
  }
}

@media (max-width: 900px) {
  .nav {
    flex-wrap: wrap;
    gap: 12px;
    padding: 12px 0 14px;
  }

  .nav-menu {
    order: 3;
    flex: 1 1 100%;
    justify-content: flex-start;
    gap: 2px;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 2px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .nav-menu::-webkit-scrollbar {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }
}

@media (max-width: 520px) {
  .nav-link {
    padding: 7px 10px;
    font-size: 12px;
  }

  .nav-cta {
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero-actions {
    width: 100%;
  }

  .btn {
    flex: 1;
  }

  .site-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .site-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}