:root {
  color-scheme: light;
  --bg: #fffbf8;
  --ink: #121016;
  --paper: #ffffff;
  --muted: #716a76;
  --soft: #8f8790;
  --line: rgba(18, 16, 22, 0.1);
  --panel: #ffffff;
  --panel-2: #fff4f8;
  --accent: #ff2d7a;
  --accent-ink: #ffffff;
  --plum: #2a1238;
  --green: #12b76a;
  --yellow: #ffb020;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, var(--bg) 0%, #ffffff 54%, var(--bg) 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body.modal-open {
  overflow: hidden;
}

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

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

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

.site {
  min-height: 100vh;
  overflow: hidden;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 251, 248, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 132px;
  height: auto;
}

.mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border-radius: 9px;
  background: var(--panel);
  color: var(--accent);
  border: 1px solid rgba(255, 45, 122, 0.18);
  font-weight: 900;
}

.links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 900;
}

.links a {
  padding: 9px 10px;
  border-radius: 8px;
  color: var(--muted);
}

.links a:hover,
.links a.active {
  background: #ffeaf3;
  color: var(--ink);
}

.links .artist-link {
  color: var(--accent);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 42px));
  display: grid;
  align-items: center;
  padding: 58px 0 68px;
  isolation: isolate;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 251, 248, 0.98) 0%, rgba(255, 251, 248, 0.86) 48%, rgba(255, 251, 248, 0.28) 100%),
    linear-gradient(180deg, rgba(255, 251, 248, 0) 72%, var(--bg) 100%);
  z-index: -1;
}

.hero-media {
  position: absolute;
  inset: 24px max(16px, calc((100vw - var(--max)) / 2)) 28px auto;
  width: min(46vw, 520px);
  display: grid;
  place-items: center;
  z-index: 0;
  opacity: 0.92;
  pointer-events: none;
}

.phone-stack {
  position: relative;
  width: min(430px, 86vw);
  aspect-ratio: 1 / 1.42;
}

.phone {
  position: absolute;
  width: 68%;
  border: 1px solid var(--line);
  border-radius: 34px;
  box-shadow: 0 28px 80px rgba(18, 16, 22, 0.18);
  overflow: hidden;
  background: var(--paper);
}

.phone.primary {
  right: 0;
  top: 2%;
  z-index: 2;
}

.phone.secondary {
  left: 0;
  top: 12%;
  z-index: 1;
  transform: rotate(-5deg);
  opacity: 0.8;
}

.hero-copy {
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(44px, 7vw, 82px);
}

h2 {
  font-size: clamp(32px, 5vw, 54px);
}

h3 {
  font-size: 21px;
}

h4 {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.25;
}

.lead {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2.4vw, 21px);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.store-button {
  min-width: 164px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 15px;
  border-radius: 12px;
  border: 1px solid rgba(18, 16, 22, 0.16);
  background: #020202;
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.store-button:hover {
  color: #ffffff;
  border-color: rgba(255, 45, 122, 0.72);
  transform: translateY(-1px);
}

.store-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
}

.store-copy {
  display: grid;
  line-height: 1.1;
}

.store-kicker {
  font-size: 10px;
  color: var(--muted);
  font-weight: 800;
}

.store-name {
  font-size: 18px;
  font-weight: 900;
}

.microcopy {
  margin-top: 14px;
  color: var(--soft);
  font-size: 14px;
}

.section {
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}

.section.tight {
  padding: 58px 0;
}

.section-head {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 28px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.band {
  background: #fff4f8;
}

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

.step,
.panel,
.case-card,
.faq-item {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 8px;
  padding: 20px;
}

.step-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 900;
}

.step p,
.panel p,
.case-card p,
.faq-item p,
.content p,
.content li {
  color: var(--muted);
}

.panel ul,
.case-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.panel li + li,
.case-card li + li {
  margin-top: 8px;
}

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

.feature-row {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: start;
}

.feature-dot {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #ffeaf3;
  color: var(--accent);
  font-weight: 900;
}

.screenshot-frame {
  max-width: 430px;
  margin: 0 auto;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: 0 28px 70px rgba(18, 16, 22, 0.12);
}

.screenshot-frame img {
  width: 100%;
}

.screenshot-frame.crop {
  aspect-ratio: 430 / 760;
}

.screenshot-frame.peek {
  aspect-ratio: 430 / 640;
}

.screenshot-frame.compact {
  max-width: 250px;
  aspect-ratio: 430 / 760;
  border-radius: 24px;
  box-shadow: 0 22px 54px rgba(18, 16, 22, 0.12);
}

.screenshot-frame.crop img,
.screenshot-frame.peek img,
.screenshot-frame.compact img {
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.device-pair {
  display: grid;
  grid-template-columns: minmax(170px, 0.82fr) minmax(190px, 1fr);
  gap: 18px;
  align-items: center;
  justify-content: center;
}

.device-pair .screenshot-frame {
  width: 100%;
}

.device-pair .screenshot-frame:first-child {
  max-width: 300px;
  transform: rotate(-3deg);
}

.device-pair .screenshot-frame:last-child {
  max-width: 330px;
  margin-top: 54px;
}

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

.screen-card {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.screen-card h3 {
  font-size: 18px;
}

.screen-card p {
  margin: 0;
  color: var(--muted);
}

.wide-frame {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel);
}

.page-artists .section {
  padding: 66px 0;
}

.page-artists .artist-hero-section {
  padding: 88px 0;
}

.page-artists .artist-hero-section .split {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
}

.page-artists .artist-hero-section h1 {
  max-width: 680px;
  font-size: clamp(46px, 5.8vw, 74px);
}

.page-artists .artist-hero-section .lead {
  max-width: 590px;
}

.artist-visual {
  position: relative;
  border: 1px solid rgba(255, 45, 122, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 45, 122, 0.28), rgba(42, 18, 56, 0.94) 48%),
    var(--plum);
  padding: 22px;
  box-shadow: 0 28px 70px rgba(18, 16, 22, 0.16);
}

.artist-visual::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  pointer-events: none;
}

.artist-visual-top,
.artist-visual-main,
.artist-pipeline {
  position: relative;
  z-index: 1;
}

.artist-visual-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--paper);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artist-visual-main {
  margin-top: 74px;
}

.artist-visual-main span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.artist-visual-main strong {
  display: block;
  margin-top: 12px;
  color: #ffffff;
  font-size: clamp(64px, 8vw, 96px);
  line-height: 0.9;
}

.artist-visual-main p {
  max-width: 420px;
  margin: 18px 0 0;
  color: var(--paper);
  font-size: 17px;
}

.artist-pipeline {
  display: grid;
  gap: 10px;
  margin-top: 42px;
}

.artist-pipeline div {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 4px 12px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.artist-pipeline span {
  grid-row: span 2;
  color: var(--accent);
  font-weight: 900;
}

.artist-pipeline strong {
  color: #ffffff;
}

.artist-pipeline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.page-artists .screenshot-frame {
  max-width: 340px;
}

.artist-cta {
  display: grid;
  gap: 22px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: #15110d;
}

.artist-cta h2,
.artist-cta p {
  color: #15110d;
}

.artist-cta p {
  margin: 0;
}

.button {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
  border: 1px solid var(--accent);
}

.button[type="button"] {
  font: inherit;
  cursor: pointer;
}

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

.button.secondary {
  background: #ffffff;
  color: var(--accent);
  border-color: rgba(255, 45, 122, 0.28);
}

.button.secondary:hover {
  color: var(--accent);
}

.button.dark {
  background: var(--plum);
  color: #ffffff;
  border-color: var(--plum);
}

.content {
  max-width: 880px;
  padding: 54px 0 82px;
}

.content-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 230px);
  gap: 30px;
  align-items: start;
  margin-bottom: 34px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.content-hero .screenshot-frame {
  margin-right: 0;
}

.content-hero h1 {
  margin-bottom: 14px;
}

.content-hero p:last-child {
  margin-bottom: 0;
}

.content h1 {
  font-size: clamp(40px, 7vw, 68px);
  margin-bottom: 16px;
}

.content h2 {
  margin: 46px 0 14px;
  font-size: clamp(28px, 4vw, 40px);
}

.content h3 {
  margin: 30px 0 8px;
}

.content ul {
  padding-left: 22px;
}

.notice {
  margin: 24px 0;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 45, 122, 0.42);
  background: rgba(255, 45, 122, 0.1);
  color: var(--muted);
}

.meta {
  color: var(--soft);
  font-size: 14px;
}

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

.artist-case-study {
  background: #fff4f8;
}

.case-shell {
  display: grid;
  gap: 22px;
}

.case-lede {
  max-width: 880px;
}

.case-lede h2 {
  max-width: 840px;
  font-size: clamp(42px, 5.6vw, 68px);
}

.case-lede p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.case-scoreboard {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) repeat(3, minmax(0, 0.62fr));
  gap: 10px;
  margin-top: 6px;
}

.case-score {
  min-height: 154px;
  display: grid;
  align-content: end;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 20px;
}

.case-score.primary {
  min-height: 198px;
  background: #ffeaf3;
  border-color: rgba(255, 45, 122, 0.42);
}

.case-score span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-score strong {
  color: var(--ink);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 0.9;
}

.case-score.primary strong {
  font-size: clamp(70px, 9vw, 112px);
}

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

.case-story-block {
  min-height: 270px;
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: clamp(22px, 3vw, 34px);
}

.case-story-block.muted-block {
  background: #fff4f8;
}

.case-story-block h3 {
  max-width: 500px;
  font-size: clamp(28px, 3.6vw, 44px);
}

.case-story-block p {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.case-process-row article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 20px;
}

.case-process-row span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.case-process-row h3 {
  margin-top: 18px;
}

.case-process-row p {
  margin: 12px 0 0;
  color: var(--muted);
}

.case-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.case-hero p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.case-result-card {
  border: 1px solid rgba(255, 45, 122, 0.34);
  border-radius: 8px;
  background: #ffeaf3;
  padding: 22px;
}

.case-result-card span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-result-card strong {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(52px, 8vw, 74px);
  line-height: 0.92;
}

.case-result-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.case-study-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 14px;
  align-items: start;
}

.case-story-panel,
.case-metrics-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: clamp(20px, 4vw, 34px);
}

.case-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-story-panel h3 {
  max-width: 620px;
  font-size: clamp(28px, 4vw, 42px);
}

.case-story-panel > p {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.case-timeline {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.case-timeline div {
  display: grid;
  grid-template-columns: 48px minmax(0, 170px) minmax(0, 1fr);
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.case-timeline span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.case-timeline p {
  margin: 0;
  color: var(--muted);
}

.case-metrics-panel {
  display: grid;
  grid-template-columns: 1fr;
  align-content: stretch;
  padding-top: 8px;
  padding-bottom: 8px;
}

.case-big-stat {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 104px;
  border-bottom: 1px solid var(--line);
}

.case-big-stat strong {
  color: var(--ink);
  font-size: clamp(38px, 5vw, 54px);
  line-height: 0.92;
}

.case-big-stat span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.case-big-stat.highlight strong,
.case-big-stat.highlight span {
  color: var(--accent);
}

.takeaway-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.takeaway-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
  padding: 20px;
}

.takeaway-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 18px;
}

.metric-card strong {
  display: block;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  color: var(--ink);
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

.table-wrap.spaced {
  margin-top: 14px;
}

.creator-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

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

.creator-table th {
  color: var(--soft);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.creator-table td {
  color: var(--muted);
}

.creator-table tr:last-child td {
  border-bottom: 0;
}

.source-note {
  margin-top: 14px;
  color: var(--soft);
  font-size: 13px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.stat {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.stat strong {
  display: block;
  font-size: 22px;
  color: var(--ink);
}

.stat span {
  color: var(--soft);
  font-size: 13px;
}

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

.qr-modal.open {
  display: flex;
}

.qr-card {
  width: min(420px, 100%);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: 22px;
  box-shadow: 0 30px 90px rgba(18, 16, 22, 0.22);
}

.qr-card img {
  width: 210px;
  margin: 18px auto;
  border-radius: 8px;
}

.qr-card p {
  color: var(--muted);
}

.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.footer {
  padding: 30px 0;
  color: var(--soft);
  font-size: 14px;
}

.feedback-hero {
  padding: 72px 0 38px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 45, 122, 0.2), transparent 32%),
    linear-gradient(180deg, rgba(255, 45, 122, 0.08), transparent 58%);
}

.feedback-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
}

.feedback-hero h1 {
  max-width: 780px;
  font-size: clamp(38px, 6vw, 68px);
}

.feedback-note h2 {
  font-size: 24px;
}

.feedback-section {
  padding-top: 42px;
}

.feedback-form {
  display: grid;
  gap: 18px;
}

.feedback-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--muted);
  font-weight: 800;
}

.form-status:not(:empty) {
  display: block;
}

.form-status[data-tone="success"] {
  border-color: rgba(18, 183, 106, 0.34);
  background: rgba(18, 183, 106, 0.1);
  color: #027a48;
}

.form-status[data-tone="error"] {
  border-color: rgba(255, 79, 79, 0.5);
  background: rgba(255, 79, 79, 0.12);
  color: #b42318;
}

.form-block {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}

.form-block-head {
  max-width: 760px;
  margin-bottom: 20px;
}

.form-block-head h2 {
  font-size: clamp(26px, 4vw, 38px);
}

.form-block-head p:not(.eyebrow) {
  margin: 10px 0 0;
  color: var(--muted);
}

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

.question-list {
  display: grid;
  gap: 12px;
}

.check-question {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(360px, 1.1fr);
  gap: 16px;
  align-items: start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.question-copy {
  display: grid;
  gap: 6px;
}

.question-copy h3 {
  font-size: 17px;
  line-height: 1.25;
}

.question-copy p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
}

.question-fields {
  display: grid;
  grid-template-columns: 112px minmax(160px, 1fr) minmax(160px, 1fr);
  gap: 10px;
}

.question-fields select,
.question-fields input {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff4f8;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px;
  outline: none;
}

.question-fields select:focus,
.question-fields input:focus {
  border-color: rgba(255, 45, 122, 0.88);
  box-shadow: 0 0 0 3px rgba(255, 45, 122, 0.16);
}

.question-fields input[type='file'] {
  color: var(--soft);
  cursor: pointer;
}

.question-fields input[type='file']::file-selector-button {
  margin-right: 10px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 45, 122, 0.16);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  padding: 8px 10px;
  cursor: pointer;
}

.feedback-overall-grid {
  margin-top: 16px;
}

.field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.field.wide {
  grid-column: 1 / -1;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff4f8;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: 12px 14px;
  outline: none;
}

.field textarea {
  min-height: 108px;
  resize: vertical;
  line-height: 1.45;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 45, 122, 0.88);
  box-shadow: 0 0 0 3px rgba(255, 45, 122, 0.16);
}

.feedback-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 45, 122, 0.32);
  border-radius: 12px;
  background: rgba(255, 45, 122, 0.1);
}

.feedback-submit p {
  margin: 0;
  color: var(--muted);
}

.feedback-submit .button[disabled] {
  cursor: progress;
  opacity: 0.68;
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .page-artists .section {
    padding: 54px 0;
  }

  .page-artists .artist-hero-section {
    padding: 54px 0;
  }

  .hero {
    min-height: auto;
    padding: 44px 0 34px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(255, 251, 248, 0.96) 0%, rgba(255, 251, 248, 0.84) 56%, var(--bg) 100%);
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: 100%;
    margin: 32px auto 0;
    opacity: 1;
    z-index: 0;
  }

  .phone-stack {
    width: min(360px, 88vw);
  }

  .split,
  .feedback-hero-grid,
  .case-grid,
  .case-scoreboard,
  .case-desktop-grid,
  .case-process-row,
  .case-hero,
  .case-study-showcase,
  .device-pair,
  .screen-grid,
  .page-artists .artist-hero-section .split,
  .takeaway-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .device-pair .screenshot-frame:first-child,
  .device-pair .screenshot-frame:last-child {
    max-width: 340px;
    margin: 0 auto;
    transform: none;
  }

  .content-hero {
    grid-template-columns: 1fr;
  }

  .content-hero .screenshot-frame {
    display: none;
  }

  .artist-visual-main {
    margin-top: 46px;
  }

  .case-lede h2 {
    font-size: clamp(34px, 9vw, 46px);
  }

  .case-lede p:not(.eyebrow),
  .case-story-block p {
    font-size: 17px;
  }

  .case-score,
  .case-score.primary {
    min-height: 132px;
  }

  .case-score.primary strong {
    font-size: clamp(58px, 18vw, 82px);
  }

  .case-story-block {
    min-height: auto;
  }

  .case-big-stat {
    min-height: 126px;
    padding: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-big-stat:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(100% - 24px, var(--max));
  }

  .nav-inner {
    min-height: 64px;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .links {
    justify-content: flex-start;
    gap: 4px;
  }

  .links a {
    padding: 8px 7px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .cta-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .store-button {
    width: 100%;
  }

  .steps,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .case-timeline div {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .case-timeline p {
    grid-column: 2;
  }

  .table-wrap {
    overflow: visible;
    border: 0;
    background: transparent;
  }

  .creator-table,
  .creator-table tbody,
  .creator-table tr,
  .creator-table td {
    display: block;
    min-width: 0;
    width: 100%;
  }

  .creator-table thead {
    display: none;
  }

  .creator-table tr {
    margin-bottom: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--panel);
    overflow: hidden;
  }

  .creator-table td {
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 12px;
    padding: 12px 14px;
  }

  .creator-table td::before {
    content: attr(data-label);
    color: var(--soft);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .section {
    padding: 54px 0;
  }

  .screenshot-frame.crop,
  .screenshot-frame.peek {
    max-width: 360px;
  }

  .artist-cta {
    padding: 22px;
  }

  .form-grid,
  .check-question,
  .question-fields,
  .feedback-submit {
    grid-template-columns: 1fr;
  }

  .form-grid {
    display: grid;
  }

  .feedback-submit {
    display: grid;
  }

  .form-block {
    padding: 18px;
  }
}

body.creator-flow-page {
  --cf-bg: #fffbf8;
  --cf-bg-2: #fff4f8;
  --cf-panel: rgba(255, 255, 255, 0.9);
  --cf-panel-solid: #ffffff;
  --cf-panel-2: #ffeaf3;
  --cf-blue: #ff2d7a;
  --cf-blue-bright: #ff2d7a;
  --cf-blue-deep: #e61f6c;
  --cf-text: #121016;
  --cf-muted: #716a76;
  --cf-soft: #8f8790;
  --cf-line: rgba(18, 16, 22, 0.1);
  --cf-line-strong: rgba(255, 45, 122, 0.34);
  --cf-max: 1100px;
  min-width: 320px;
  background: linear-gradient(180deg, var(--cf-bg) 0%, #ffffff 54%, var(--cf-bg) 100%);
  color: var(--cf-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.creator-flow-page a:hover {
  color: inherit;
}

.creator-flow-site {
  min-height: 100vh;
  overflow: hidden;
  background: transparent;
}

.cf-wrap {
  width: min(var(--cf-max), calc(100% - 32px));
  margin: 0 auto;
}

.cf-hero {
  padding: 24px 0 72px;
}

.cf-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.cf-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  margin-bottom: 42px;
  padding: 7px 12px;
  border: 1px solid var(--cf-line);
  border-radius: 8px;
  background: #ffffff;
  color: var(--cf-blue-bright);
}

.cf-logo-mark {
  width: 34px;
  height: 24px;
}

.cf-logo span {
  color: var(--cf-text);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.cf-headline {
  display: grid;
  gap: 6px;
  max-width: 1080px;
  margin: 0;
  color: var(--cf-text);
  font-size: 72px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

.cf-headline span {
  display: block;
}

@media (min-width: 981px) {
  .cf-headline span {
    white-space: nowrap;
  }
}

.cf-headline strong {
  color: var(--cf-blue-bright);
  font-weight: inherit;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.28);
  paint-order: stroke fill;
}

.cf-section-heading strong {
  color: var(--cf-blue-bright);
  font-weight: inherit;
}

.cf-subheadline {
  max-width: 670px;
  margin: 20px auto 0;
  color: var(--cf-muted);
  font-size: 20px;
  line-height: 1.55;
}

.cf-video-placeholder {
  position: relative;
  width: min(900px, 100%);
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid var(--cf-line-strong);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 45, 122, 0.12), transparent 31%),
    linear-gradient(315deg, rgba(255, 234, 243, 0.9), transparent 36%),
    #ffffff;
  box-shadow:
    0 0 0 1px rgba(18, 16, 22, 0.04) inset,
    0 28px 90px rgba(18, 16, 22, 0.14);
}

.cf-video-placeholder::before,
.cf-video-placeholder::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.cf-video-placeholder::before {
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 16, 22, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(18, 16, 22, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
  opacity: 0.5;
}

.cf-video-placeholder::after {
  inset: 0;
  background:
    linear-gradient(180deg, transparent 56%, rgba(255, 251, 248, 0.62) 100%);
}

.cf-video-sheen {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 45, 122, 0.16);
  border-radius: 6px;
  background: rgba(255, 234, 243, 0.58);
}

.cf-play-button {
  position: relative;
  z-index: 2;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: linear-gradient(180deg, var(--cf-blue-bright), var(--cf-blue-deep));
  color: #ffffff;
  cursor: pointer;
  box-shadow:
    0 0 0 10px rgba(255, 45, 122, 0.12),
    0 0 52px rgba(255, 45, 122, 0.52);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.cf-play-button:hover {
  transform: scale(1.04);
  box-shadow:
    0 0 0 12px rgba(255, 45, 122, 0.14),
    0 0 70px rgba(255, 45, 122, 0.62);
}

.cf-play-button svg {
  width: 44px;
  height: 44px;
  margin-left: 5px;
}

.cf-apply-button {
  min-width: 240px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
  padding: 15px 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--cf-blue-bright), var(--cf-blue-deep));
  color: #ffffff;
  font-size: 17px;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  box-shadow: 0 0 34px rgba(255, 45, 122, 0.36);
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.cf-apply-button:hover {
  color: #ffffff;
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow: 0 0 48px rgba(255, 45, 122, 0.48);
}

.cf-lock-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 0;
  color: var(--cf-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.cf-lock-line svg {
  width: 15px;
  height: 15px;
  color: var(--cf-blue-bright);
  flex: 0 0 auto;
}

.cf-section {
  padding: 64px 0;
}

.cf-card {
  border: 1px solid var(--cf-line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    var(--cf-panel);
}

.cf-section-heading {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 0 auto 34px;
  text-align: center;
}

.cf-section-heading h2,
.cf-fit-column h2,
.cf-faq-card h2 {
  margin: 0;
  color: var(--cf-text);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.04;
  text-transform: uppercase;
}

.cf-section-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--cf-muted);
  font-size: 18px;
}

.cf-why-card {
  padding: 42px 28px;
}

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

.cf-feature {
  min-width: 0;
  padding: 18px 12px;
  text-align: center;
}

.cf-feature svg {
  width: 42px;
  height: 42px;
  margin: 0 auto 18px;
  color: var(--cf-blue-bright);
}

.cf-feature h3 {
  min-height: 44px;
  margin: 0;
  color: var(--cf-text);
  font-size: 17px;
  font-weight: 900;
  line-height: 1.25;
}

.cf-feature p {
  margin: 10px 0 0;
  color: var(--cf-soft);
  font-size: 14px;
  line-height: 1.45;
}

.cf-section-cta {
  display: grid;
  justify-items: center;
  margin-top: 34px;
  text-align: center;
}

.cf-section-cta .cf-apply-button {
  margin-top: 0;
}

.cf-fit-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--cf-line);
}

.cf-fit-column {
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 45, 122, 0.05), rgba(255, 255, 255, 0.015)),
    var(--cf-panel-solid);
}

.cf-fit-column h2 {
  color: var(--cf-blue-bright);
  font-size: 32px;
}

.cf-check-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.cf-check-list li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--cf-muted);
  font-size: 17px;
  line-height: 1.42;
}

.cf-check-list span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--cf-line-strong);
  border-radius: 50%;
  color: var(--cf-blue-bright);
  font-weight: 900;
  line-height: 1;
}

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

.cf-result-card {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--cf-line-strong);
  border-radius: 8px;
  background:
    linear-gradient(140deg, rgba(255, 45, 122, 0.16), transparent 28%),
    linear-gradient(320deg, rgba(255, 45, 122, 0.24), transparent 36%),
    var(--cf-panel-solid);
}

.cf-result-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px dashed rgba(255, 45, 122, 0.24);
  border-radius: 6px;
}

.cf-result-card span {
  position: relative;
  z-index: 1;
  padding: 10px;
  color: var(--cf-muted);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.cf-disclaimer {
  margin: 18px 0 0;
  color: var(--cf-soft);
  font-size: 13px;
  text-align: center;
}

.cf-faq-card {
  padding: 38px;
}

.cf-faq-card h2 {
  color: var(--cf-blue-bright);
  text-align: center;
}

.cf-faq-item {
  border-bottom: 1px solid rgba(255, 45, 122, 0.15);
}

.cf-faq-item:first-of-type {
  margin-top: 22px;
  border-top: 1px solid rgba(255, 45, 122, 0.15);
}

.cf-faq-question {
  width: 100%;
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 26px;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--cf-text);
  font: inherit;
  font-size: 18px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.cf-plus {
  position: relative;
  width: 22px;
  height: 22px;
  color: var(--cf-blue-bright);
}

.cf-plus::before,
.cf-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.cf-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: opacity 140ms ease;
}

.cf-faq-question[aria-expanded="true"] .cf-plus::after {
  opacity: 0;
}

.cf-faq-answer p {
  max-width: 760px;
  margin: 0 0 20px;
  color: var(--cf-muted);
  font-size: 16px;
}

.cf-final-cta {
  padding-top: 42px;
  padding-bottom: 86px;
  text-align: center;
}

.cf-final-cta .cf-wrap {
  display: grid;
  justify-items: center;
}

.cf-final-cta .cf-apply-button {
  margin-top: 0;
}

@media (max-width: 980px) {
  .cf-headline {
    font-size: 56px;
  }

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

  .cf-feature:last-child {
    grid-column: 1 / -1;
    max-width: 360px;
    margin: 0 auto;
  }

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

@media (max-width: 720px) {
  .cf-wrap {
    width: min(100% - 24px, var(--cf-max));
  }

  .cf-hero {
    padding: 20px 0 54px;
  }

  .cf-logo {
    margin-bottom: 34px;
  }

  .cf-headline {
    gap: 5px;
    font-size: 40px;
    line-height: 1.02;
  }

  .cf-subheadline {
    font-size: 17px;
  }

  .cf-video-placeholder {
    width: 100%;
    margin-top: 28px;
  }

  .cf-play-button {
    width: 74px;
    height: 74px;
  }

  .cf-play-button svg {
    width: 36px;
    height: 36px;
  }

  .cf-apply-button {
    width: 100%;
    min-width: 0;
  }

  .cf-section {
    padding: 48px 0;
  }

  .cf-section-heading h2,
  .cf-faq-card h2 {
    font-size: 32px;
  }

  .cf-section-heading p {
    font-size: 16px;
  }

  .cf-why-card,
  .cf-faq-card {
    padding: 28px 18px;
  }

  .cf-feature-grid,
  .cf-fit-card,
  .cf-result-grid {
    grid-template-columns: 1fr;
  }

  .cf-feature:last-child {
    grid-column: auto;
  }

  .cf-feature {
    padding: 16px 10px;
  }

  .cf-feature h3 {
    min-height: 0;
  }

  .cf-fit-column {
    padding: 26px 18px;
  }

  .cf-fit-column h2 {
    font-size: 28px;
  }

  .cf-check-list li {
    font-size: 16px;
  }

  .cf-result-card {
    min-height: 230px;
  }

  .cf-faq-question {
    font-size: 16px;
  }

  .cf-final-cta {
    padding-bottom: 64px;
  }

}

@media (max-width: 420px) {
  .cf-headline {
    font-size: 34px;
  }

  .cf-logo span {
    font-size: 12px;
  }

  .cf-lock-line {
    font-size: 11px;
  }
}
