:root {
  --ink: #1d1d1f;
  --ink-soft: #424245;
  --muted: #6e6e73;
  --subtle: #86868b;
  --paper: #f5f5f7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --surface-warm: #fbfbfd;
  --line: rgba(29, 29, 31, 0.12);
  --line-strong: rgba(29, 29, 31, 0.22);
  --blue: #0071e3;
  --blue-strong: #005bb5;
  --green: #168a46;
  --red: #d63a2f;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.1);
  --shadow-strong: 0 34px 120px rgba(0, 0, 0, 0.16);
  --radius: 8px;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-text);
  letter-spacing: 0;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
}

textarea {
  resize: vertical;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  padding: 10px 12px;
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  transform: translateY(-140%);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  width: 100%;
  min-height: 72px;
  padding: 12px max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(29, 29, 31, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
  backdrop-filter: blur(24px) saturate(1.35);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.brand-mark,
.profile-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.profile-mark {
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 760;
}

.brand-copy small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.site-nav a:hover {
  color: var(--ink);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.message-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100% - 36px));
}

.message {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(22, 138, 70, 0.24);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
}

.hero-section {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
  background: #f5f5f7;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  filter: saturate(0.86) contrast(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(245, 245, 247, 0.98), rgba(245, 245, 247, 0.84) 38%, rgba(245, 245, 247, 0.1) 72%),
    linear-gradient(180deg, rgba(245, 245, 247, 0.52), rgba(245, 245, 247, 0.96));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: calc(96vh - 72px);
  padding: 86px 0 58px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  margin-bottom: 0;
  font-family: var(--font-display);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 820px;
  font-size: clamp(54px, 8vw, 112px);
}

h2 {
  font-size: clamp(40px, 5.6vw, 76px);
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 740;
  line-height: 1.08;
}

.hero-lead {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.4;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: var(--radius);
  font-weight: 760;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--blue);
}

.button.primary:hover {
  background: var(--blue-strong);
  box-shadow: 0 14px 32px rgba(0, 113, 227, 0.22);
}

.button.secondary,
.button.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

.button.secondary:hover,
.button.ghost:hover {
  border-color: var(--line-strong);
  background: #fff;
}

.button.wide {
  width: 100%;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 142px));
  gap: 10px;
  margin: 44px 0 0;
}

.hero-proof div,
.mini-ledger span,
.metric-grid article,
.receipt-card,
.profile-panel,
.crm-form,
.notes-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.hero-proof div {
  padding: 16px;
  backdrop-filter: blur(16px);
}

.hero-proof dt {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 760;
  line-height: 1;
}

.hero-proof dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.marquee-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-block: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font-size: 12px;
  font-weight: 760;
  text-align: center;
  text-transform: uppercase;
}

.marquee-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
  border-right: 1px solid var(--line);
}

.editorial-grid,
.lead-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 58px;
  padding: 104px 0;
}

.section-heading p,
.lead-copy p {
  max-width: 540px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.section-heading.compact {
  max-width: 840px;
  margin-bottom: 34px;
}

.feature-list {
  display: grid;
  gap: 14px;
}

.feature-list article,
.price-card,
.lead-form,
.kanban-column,
.lead-card,
.note-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-solid);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset;
}

.feature-list article {
  padding: 24px;
}

.feature-list span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 760;
}

.feature-list p,
.price-card p,
.price-card li,
.lead-card p,
.goal-note p,
.note-list p {
  color: var(--muted);
  line-height: 1.5;
}

.pricing-section {
  padding: 104px 0;
}

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

.price-card {
  position: relative;
  display: grid;
  gap: 26px;
  padding: 30px;
}

.price-card.featured {
  border-color: rgba(0, 113, 227, 0.32);
  box-shadow: var(--shadow);
}

.plan-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(0, 113, 227, 0.09);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.plan-label {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.price-card h3 {
  font-size: clamp(40px, 5vw, 62px);
  letter-spacing: 0;
}

.price-card h3 span {
  color: var(--muted);
  font-size: 17px;
  font-weight: 600;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 22px;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}

.lead-section {
  align-items: start;
}

.mini-ledger {
  display: grid;
  gap: 10px;
  max-width: 520px;
  margin-top: 28px;
}

.mini-ledger span {
  padding: 15px 16px;
  color: var(--ink-soft);
  font-weight: 650;
}

.lead-form,
.crm-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span,
.check-field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  font-size: 16px;
}

.field textarea {
  padding-block: 12px;
  line-height: 1.45;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 3px solid rgba(0, 113, 227, 0.18);
  border-color: rgba(0, 113, 227, 0.5);
}

.check-field {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-field input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
}

.errorlist {
  margin: 0;
  padding: 0;
  color: var(--red);
  font-size: 13px;
  list-style: none;
}

.has-error input,
.has-error select,
.has-error textarea {
  border-color: rgba(214, 58, 47, 0.55);
}

.thanks-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 150px 0 72px;
}

.thanks-media {
  position: absolute;
  inset: 0;
}

.thanks-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.thanks-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.55fr);
  gap: 44px;
  align-items: center;
}

.thanks-panel {
  padding-top: 18vh;
}

.thanks-panel p {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: 22px;
  line-height: 1.42;
}

.receipt-card {
  display: grid;
  gap: 0;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.receipt-card div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.receipt-card div:last-child {
  border-bottom: 0;
}

.receipt-card span {
  color: var(--muted);
}

.crm-page {
  background: #f5f5f7;
}

.crm-shell {
  width: min(1480px, calc(100% - 32px));
  margin-inline: auto;
  padding: 64px 0;
}

.crm-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 24px;
}

.crm-titlebar h1 {
  font-size: clamp(46px, 6vw, 82px);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.metric-grid article {
  padding: 18px;
  background: #fff;
}

.metric-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.metric-grid strong {
  display: block;
  margin-top: 9px;
  font-size: 30px;
}

.metric-grid .is-hot strong {
  color: var(--red);
}

.kanban-board {
  display: grid;
  grid-template-columns: repeat(7, minmax(260px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
}

.kanban-column {
  min-width: 0;
  min-height: 520px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.58);
}

.kanban-column header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 6px 14px;
}

.kanban-column h2 {
  font-size: 17px;
  line-height: 1.2;
}

.kanban-column header span {
  color: var(--muted);
  font-weight: 760;
}

.lead-stack {
  display: grid;
  gap: 10px;
}

.lead-card {
  display: grid;
  min-width: 0;
  gap: 14px;
  padding: 14px;
  background: #fff;
}

.lead-card.is-due {
  border-color: rgba(214, 58, 47, 0.42);
}

.lead-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.lead-card-top > div {
  min-width: 0;
}

.lead-card h3 {
  margin-bottom: 4px;
  font-size: 18px;
  overflow-wrap: anywhere;
}

.lead-card-top > span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.lead-meta {
  display: grid;
  gap: 9px;
  margin: 0;
}

.lead-meta div,
.profile-list div {
  display: flex;
  min-width: 0;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 9px;
}

.lead-meta dt,
.profile-list dt {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.lead-meta dd,
.profile-list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
  text-align: right;
}

.follow-up {
  margin: 0;
  padding: 10px;
  border-radius: 6px;
  background: rgba(0, 113, 227, 0.08);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.follow-up.late {
  background: rgba(214, 58, 47, 0.08);
  color: var(--red);
}

.card-link {
  display: inline-flex;
  justify-content: center;
  min-height: 40px;
  align-items: center;
  border-radius: 6px;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  font-weight: 760;
}

.empty-column {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.48fr) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.profile-panel,
.notes-panel {
  padding: 22px;
  background: #fff;
}

.profile-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.profile-head h2 {
  font-size: 28px;
}

.profile-head p {
  margin: 5px 0 0;
  color: var(--muted);
}

.profile-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.goal-note {
  margin-top: 20px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--paper);
}

.goal-note span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.goal-note p {
  margin: 8px 0 0;
}

.notes-panel {
  margin-top: 18px;
}

.notes-panel h2 {
  font-size: 38px;
}

.note-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.note-list article {
  padding: 16px;
}

.note-list span {
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(245, 245, 247, 0.98), rgba(245, 245, 247, 0.88) 52%, rgba(245, 245, 247, 0.42)),
      linear-gradient(180deg, rgba(245, 245, 247, 0.34), rgba(245, 245, 247, 0.98));
  }

  .editorial-grid,
  .lead-section,
  .thanks-layout,
  .detail-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .section-shell,
  .crm-shell {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    min-height: 68px;
    padding-inline: 12px;
  }

  .brand-copy small {
    display: none;
  }

  .header-action {
    min-height: 40px;
    padding-inline: 12px;
  }

  .hero-section,
  .hero-content {
    min-height: 780px;
  }

  .hero-content {
    padding-top: 116px;
  }

  .hero-media img {
    object-position: 58% center;
  }

  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 40px;
  }

  .hero-lead,
  .thanks-panel p {
    font-size: 17px;
  }

  .hero-actions,
  .thanks-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof,
  .marquee-strip,
  .form-grid,
  .pricing-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .editorial-grid,
  .lead-section,
  .pricing-section {
    padding-block: 64px;
  }

  .site-footer,
  .crm-titlebar {
    flex-direction: column;
    align-items: flex-start;
  }

  .kanban-board {
    grid-template-columns: repeat(7, minmax(250px, 86vw));
  }
}

.trusted-section {
  padding: 104px 0;
  border-block: 1px solid var(--line);
  color: var(--ink);
  background: #ffffff;
}

.trusted-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(0, 1.32fr);
  gap: 34px;
  align-items: end;
}

.trusted-copy p {
  max-width: 500px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.trusted-section .eyebrow {
  color: var(--blue);
}

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

.trusted-artist {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.trusted-artist img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.02);
}

.trusted-artist::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 46%, rgba(255, 255, 255, 0.7) 100%);
}

.trusted-artist div {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  display: grid;
  gap: 7px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(14px);
}

.trusted-artist span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.trusted-artist strong {
  max-width: 11ch;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 760;
  line-height: 1;
}

@media (max-width: 1100px) {
  .trusted-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .trusted-section {
    padding-block: 64px;
  }

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

  .trusted-artist {
    min-height: 300px;
  }
}

body.studio-page {
  --ink: #f4f7f8;
  --ink-soft: #c7d0d5;
  --muted: #8f9ba2;
  --subtle: #66727a;
  --paper: #050608;
  --surface: rgba(12, 16, 19, 0.72);
  --surface-solid: #0a0d10;
  --surface-warm: #0e1316;
  --line: rgba(207, 219, 225, 0.15);
  --line-strong: rgba(207, 219, 225, 0.32);
  --blue: #48dff4;
  --blue-strong: #9ef6ff;
  --green: #77f4c8;
  --red: #ff6b61;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.38);
  --shadow-strong: 0 40px 140px rgba(0, 0, 0, 0.54);
  --font-display: "Geist", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --font-editorial: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --font-text: "Geist", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  color: var(--ink);
  background:
    radial-gradient(ellipse at 52% 0%, rgba(72, 223, 244, 0.08), transparent 38%),
    linear-gradient(180deg, #050608 0%, #080b0e 46%, #030405 100%);
}

.studio-page::selection {
  color: #031014;
  background: var(--blue);
}

.studio-page .site-header {
  border-bottom-color: rgba(207, 219, 225, 0.12);
  background: rgba(5, 6, 8, 0.78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.studio-page .brand-mark,
.studio-page .profile-mark {
  border-color: rgba(207, 219, 225, 0.18);
  background: #000;
}

.studio-page .brand-copy strong,
.studio-page .site-nav a:hover {
  color: var(--ink);
}

.studio-page .brand-copy small,
.studio-page .site-nav {
  color: rgba(199, 208, 213, 0.72);
}

.studio-page .header-action {
  color: #021014;
  background: linear-gradient(135deg, #e7f2f5, #46ddf2);
  box-shadow: 0 0 0 1px rgba(72, 223, 244, 0.34), 0 14px 44px rgba(72, 223, 244, 0.14);
}

.studio-page .site-footer {
  color: var(--muted);
  border-top-color: var(--line);
}

.studio-page h1,
.studio-page h2 {
  color: var(--ink);
  font-weight: 800;
  line-height: 0.98;
}

.studio-page h3 {
  color: var(--ink);
}

.studio-page .eyebrow,
.studio-page .plan-label,
.studio-page .feature-list span,
.studio-page .trusted-artist span,
.studio-page .process-steps span,
.studio-page .audience-grid span {
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.landing-page .hero-section {
  min-height: calc(84vh - 72px);
  color: var(--ink);
  background: #050608;
}

.landing-page .hero-media img {
  object-position: center;
  filter: saturate(0.86) contrast(1.12) brightness(0.72);
}

.landing-page .hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.98), rgba(5, 6, 8, 0.88) 34%, rgba(5, 6, 8, 0.48) 68%, rgba(5, 6, 8, 0.8)),
    linear-gradient(180deg, rgba(5, 6, 8, 0.24), rgba(5, 6, 8, 0.96));
}

.landing-page .hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 96px),
    radial-gradient(ellipse at 78% 42%, rgba(72, 223, 244, 0.18), transparent 42%);
  opacity: 0.32;
  pointer-events: none;
}

.landing-page .hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.72fr);
  gap: clamp(32px, 6vw, 74px);
  align-items: start;
  min-height: calc(84vh - 72px);
  padding: clamp(92px, 9vw, 126px) 0 36px;
}

.landing-page .hero-copy {
  max-width: 850px;
}

.landing-page h1 {
  max-width: 850px;
  font-size: clamp(52px, 7.2vw, 92px);
}

.landing-page h2 {
  font-size: clamp(38px, 4.8vw, 64px);
}

.landing-page .hero-lead {
  max-width: 650px;
  color: rgba(231, 241, 245, 0.78);
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.42;
}

.studio-page .button {
  min-height: 50px;
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.studio-page .button.primary {
  color: #020f13;
  background: linear-gradient(135deg, #e9f2f5, #4be1f5);
  box-shadow: 0 0 0 1px rgba(72, 223, 244, 0.34), 0 20px 54px rgba(72, 223, 244, 0.18);
}

.studio-page .button.primary:hover {
  background: linear-gradient(135deg, #ffffff, #8df2ff);
  box-shadow: 0 0 0 1px rgba(72, 223, 244, 0.48), 0 24px 70px rgba(72, 223, 244, 0.22);
}

.studio-page .button.secondary,
.studio-page .button.ghost {
  color: var(--ink);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
}

.studio-page .button.secondary:hover,
.studio-page .button.ghost:hover {
  border-color: rgba(72, 223, 244, 0.52);
  background: rgba(72, 223, 244, 0.08);
}

.landing-page .hero-proof {
  grid-template-columns: repeat(3, minmax(0, 156px));
}

.landing-page .hero-proof div,
.landing-page .mini-ledger span {
  border-color: var(--line);
  background: rgba(8, 11, 13, 0.68);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

.landing-page .hero-proof dt {
  color: var(--blue-strong);
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 700;
}

.landing-page .hero-proof dd {
  color: var(--muted);
  font-family: var(--font-mono);
  letter-spacing: 0;
}

.hero-presskit {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(207, 219, 225, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), transparent 34%),
    rgba(5, 7, 9, 0.7);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(20px) saturate(1.2);
}

.presskit-topbar,
.booking-card,
.presskit-modules article {
  border: 1px solid rgba(207, 219, 225, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
}

.presskit-topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  color: rgba(199, 208, 213, 0.68);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.presskit-cover {
  position: relative;
  height: min(42vw, 430px);
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(207, 219, 225, 0.16);
  border-radius: 8px;
  background: #090d10;
}

.presskit-cover img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.14) brightness(0.82);
}

.presskit-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 28%, rgba(3, 4, 5, 0.92) 88%),
    linear-gradient(90deg, rgba(72, 223, 244, 0.16), transparent 52%);
}

.cover-copy {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
}

.cover-copy span,
.cover-copy p,
.presskit-modules span,
.booking-card span {
  color: rgba(199, 208, 213, 0.7);
}

.cover-copy span,
.presskit-modules span,
.booking-card span {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.cover-copy strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-family: var(--font-editorial);
  font-size: clamp(48px, 5.8vw, 74px);
  font-weight: 400;
  line-height: 0.86;
}

.cover-copy p {
  max-width: 340px;
  margin: 14px 0 0;
  line-height: 1.36;
}

.presskit-modules {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.presskit-modules article {
  display: grid;
  min-width: 0;
  gap: 7px;
  min-height: 72px;
  padding: 12px;
}

.presskit-modules strong {
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  line-height: 1.18;
}

.booking-card {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 14px;
}

.booking-card strong {
  display: block;
  margin-top: 5px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.booking-card a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 5px;
  color: #031014;
  background: var(--blue);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.landing-page .marquee-strip {
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  overflow-x: auto;
  border-color: var(--line);
  color: rgba(199, 208, 213, 0.7);
  background: #050608;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0;
  scrollbar-width: none;
}

.landing-page .marquee-strip span {
  border-right-color: var(--line);
  min-height: 50px;
  transition:
    color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.landing-page .marquee-strip span:hover {
  color: var(--blue);
  background: rgba(91, 219, 240, 0.08);
  box-shadow: inset 0 -1px 0 var(--blue);
}

.landing-page .editorial-grid,
.landing-page .lead-section {
  gap: clamp(34px, 6vw, 76px);
}

.landing-page .section-heading p,
.landing-page .lead-copy p,
.landing-page .trusted-copy p {
  color: var(--muted);
}

.landing-page .feature-list article,
.landing-page .price-card,
.landing-page .lead-form,
.audience-grid article,
.process-steps article {
  border-color: var(--line);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 38%),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.05) inset;
}

.landing-page .feature-list article {
  position: relative;
  overflow: hidden;
}

.landing-page .feature-list article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(72, 223, 244, 0.72), transparent);
}

.landing-page .feature-list p,
.landing-page .price-card p,
.landing-page .price-card li,
.landing-page .note-list p {
  color: var(--muted);
}

.audience-section,
.process-section {
  padding: 104px 0;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(72, 223, 244, 0.035)),
    #06080a;
}

.audience-layout,
.process-layout {
  display: grid;
  gap: 34px;
}

.audience-grid,
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.audience-grid article,
.process-steps article {
  padding: 24px;
  border-radius: 8px;
}

.audience-grid h3,
.process-steps h3 {
  max-width: 340px;
  margin: 16px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.audience-grid p,
.process-steps p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.landing-page .trusted-section {
  border-color: var(--line);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(72, 223, 244, 0.045), transparent 42%),
    #050608;
}

.landing-page .trusted-grid {
  gap: 12px;
}

.landing-page .trusted-artist {
  min-height: 380px;
  border-color: var(--line);
  background: #070a0c;
  box-shadow: var(--shadow);
}

.landing-page .trusted-artist img {
  filter: saturate(0.72) contrast(1.14) brightness(0.82);
}

.landing-page .trusted-artist::after {
  background: linear-gradient(180deg, transparent 38%, rgba(5, 6, 8, 0.92) 100%);
}

.landing-page .trusted-artist div {
  border-color: rgba(207, 219, 225, 0.16);
  background: rgba(5, 7, 9, 0.72);
}

.landing-page .trusted-artist strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
}

.landing-page .pricing-section {
  padding: 112px 0;
}

.landing-page .price-card {
  min-height: 100%;
  border-radius: 8px;
}

.landing-page .price-card.featured {
  border-color: rgba(72, 223, 244, 0.42);
  background:
    linear-gradient(145deg, rgba(72, 223, 244, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.045);
}

.landing-page .plan-ribbon {
  border-radius: 5px;
  color: #031014;
  background: var(--blue);
  font-family: var(--font-mono);
  letter-spacing: 0;
}

.landing-page .price-card h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
}

.landing-page .price-card h3 span {
  color: var(--muted);
  font-family: var(--font-text);
}

.landing-page .price-card li::before {
  border-radius: 2px;
  background: var(--blue);
  box-shadow: 0 0 18px rgba(72, 223, 244, 0.44);
}

.process-steps {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-page .lead-section {
  align-items: start;
  padding-top: 112px;
}

.landing-page .lead-form {
  border-color: rgba(72, 223, 244, 0.18);
  background:
    linear-gradient(145deg, rgba(72, 223, 244, 0.1), transparent 42%),
    rgba(255, 255, 255, 0.045);
}

.landing-page .field span,
.landing-page .check-field span {
  color: rgba(199, 208, 213, 0.78);
  font-family: var(--font-mono);
  letter-spacing: 0;
}

.landing-page .field input,
.landing-page .field select,
.landing-page .field textarea {
  border-color: rgba(207, 219, 225, 0.18);
  color: var(--ink);
  background: rgba(3, 5, 7, 0.78);
}

.landing-page .field input:focus,
.landing-page .field select:focus,
.landing-page .field textarea:focus {
  outline: 3px solid rgba(72, 223, 244, 0.16);
  border-color: rgba(72, 223, 244, 0.58);
}

.landing-page .errorlist {
  color: #ff8b82;
}

.studio-page.thanks-page .thanks-hero {
  min-height: calc(100vh - 72px);
  padding: 0;
  background: #050608;
}

.studio-page.thanks-page .thanks-media img {
  opacity: 1;
  filter: saturate(0.78) contrast(1.12) brightness(0.54);
}

.thanks-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.98), rgba(5, 6, 8, 0.84) 42%, rgba(5, 6, 8, 0.62)),
    linear-gradient(180deg, rgba(5, 6, 8, 0.2), rgba(5, 6, 8, 0.95));
}

.studio-page.thanks-page .thanks-layout {
  min-height: calc(100vh - 72px);
  padding: clamp(82px, 9vw, 128px) 0 44px;
  align-items: center;
}

.studio-page.thanks-page .thanks-panel {
  padding-top: 0;
}

.studio-page.thanks-page .thanks-panel h1 {
  max-width: 780px;
  font-size: clamp(48px, 9vw, 108px);
}

.studio-page.thanks-page .thanks-panel p {
  color: rgba(231, 241, 245, 0.78);
}

.studio-page.thanks-page .whatsapp-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.studio-page.thanks-page .receipt-card {
  border-color: rgba(207, 219, 225, 0.18);
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(72, 223, 244, 0.12), transparent 42%),
    rgba(5, 7, 9, 0.74);
  box-shadow: var(--shadow-strong);
}

.studio-page.thanks-page .receipt-card div {
  border-bottom-color: var(--line);
}

.studio-page.thanks-page .receipt-card span {
  color: rgba(199, 208, 213, 0.72);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.studio-page.thanks-page .receipt-card strong {
  color: var(--ink);
}

@media (max-width: 1100px) {
  .landing-page .hero-content {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero-presskit {
    max-width: 620px;
  }

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

@media (max-width: 720px) {
  .landing-page .hero-section,
  .landing-page .hero-content {
    min-height: auto;
  }

  .landing-page .hero-content {
    padding-top: 96px;
  }

  .landing-page h1 {
    font-size: clamp(42px, 11vw, 56px);
  }

  .landing-page .hero-lead {
    font-size: 16px;
  }

  .landing-page .hero-actions {
    margin-top: 24px;
  }

  .landing-page .hero-proof,
  .hero-presskit {
    display: none;
  }

.presskit-modules,
.audience-grid,
.process-steps {
  grid-template-columns: 1fr;
}

  .booking-card,
  .presskit-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .audience-section,
  .process-section {
    padding-block: 64px;
  }

  .studio-page.thanks-page .thanks-layout {
    min-height: auto;
    padding-top: 94px;
  }

  .studio-page.thanks-page .thanks-panel h1 {
    font-size: clamp(42px, 12vw, 58px);
  }

  .studio-page.thanks-page .receipt-card div {
    display: grid;
    gap: 6px;
  }

  .studio-page.thanks-page .receipt-card strong {
    overflow-wrap: anywhere;
  }
}
