:root {
  color-scheme: light;
  --ink: #17151d;
  --muted: #6d604f;
  --line: #e0c99a;
  --paper: #f7ead0;
  --panel: #fff8e8;
  --night: #17151d;
  --aqua: #2ec4b6;
  --mint: #aaf7e6;
  --coral: #d95838;
  --sun: #d89535;
  --violet: #405d73;
  --berry: #8f3f2e;
  --sky: #6ecbff;
  --lime: #bcff5c;
  --pink: #c96f59;
  --gold: #d89535;
  --deep: #07121f;
  --shadow: 0 24px 70px rgba(9, 14, 25, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  position: relative;
  margin: 0;
  background:
    radial-gradient(circle at 14% 8%, rgba(216, 149, 53, 0.18), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(46, 129, 147, 0.18), transparent 28%),
    linear-gradient(180deg, #0a1724 0%, #102a38 18%, #f7ead0 19%, #fff8e8 100%);
  color: var(--ink);
  font-family: Inter, "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 18%, rgba(216, 149, 53, 0.18), transparent 26%),
    radial-gradient(circle at 86% 28%, rgba(46, 196, 182, 0.14), transparent 30%),
    radial-gradient(circle at 52% 86%, rgba(143, 63, 46, 0.18), transparent 32%),
    linear-gradient(180deg, #07121f 0%, #102a38 46%, #fff8e8 100%);
  background-attachment: fixed;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 58px);
  border-bottom: 1px solid rgba(216, 149, 53, 0.28);
  background:
    linear-gradient(90deg, rgba(7, 18, 31, 0.92), rgba(15, 42, 56, 0.88));
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 12px 6px 6px;
  border: 1px solid rgba(216, 149, 53, 0.5);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(10, 24, 36, 0.92), rgba(31, 22, 45, 0.86));
  box-shadow: 0 12px 28px rgba(14, 11, 24, 0.16);
  color: #ffe5a0;
  text-decoration: none;
  font-size: 20px;
  font-weight: 950;
}

.brand img {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: contain;
  background: #06101c;
  filter: drop-shadow(0 9px 12px rgba(216, 149, 53, 0.22));
}

.site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.site-header nav a {
  color: #f2d8a6;
  text-decoration: none;
  font-size: 14px;
  font-weight: 850;
}

.nav-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  cursor: pointer;
}

.nav-cta,
.primary-button {
  background: linear-gradient(135deg, #f2d8a6, #d89535 48%, #8f3f2e);
  color: #fffaf0;
  box-shadow: 0 12px 26px rgba(143, 63, 46, 0.24);
}

.secondary-button {
  border: 2px solid rgba(216, 149, 53, 0.42);
  background: rgba(255, 248, 232, 0.86);
  color: #102a38;
  box-shadow: 0 12px 26px rgba(23, 21, 29, 0.08);
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(48px, 8vw, 92px) clamp(18px, 4vw, 58px) clamp(58px, 8vw, 92px);
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 70%, rgba(255, 207, 74, 0.22), transparent 34%),
    #17151d;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.42;
  transform: scale(1.08);
  background-attachment: fixed;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(23, 21, 29, 0.9) 0%, rgba(23, 21, 29, 0.62) 46%, rgba(23, 21, 29, 0.2) 100%),
    radial-gradient(circle at 18% 22%, rgba(255, 207, 74, 0.46), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(46, 196, 182, 0.36), transparent 30%),
    radial-gradient(circle at 62% 88%, rgba(255, 95, 126, 0.36), transparent 34%);
}

.parallax-band {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.hero-glow {
  position: absolute;
  inset: auto 5% 4% auto;
  z-index: -1;
  width: min(48vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 207, 74, 0.42), transparent 62%);
  filter: blur(4px);
}

.hero-video-card {
  position: relative;
  width: min(100%, 760px);
  margin-top: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 0.86;
  mix-blend-mode: screen;
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 86%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 12%, #000 86%, transparent 100%);
  mask-composite: intersect;
}

.hero-video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.8;
  object-fit: cover;
  filter: saturate(1.02) contrast(0.96);
}

.hero-video-card span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 229, 160, 0.86);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 2px 14px rgba(5, 8, 18, 0.8);
}

.hero-copy {
  position: relative;
  max-width: 820px;
  color: #fffaf0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  max-width: 760px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: 0.94;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 9px;
  font-size: 20px;
}

.lede {
  max-width: 620px;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.45;
}

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

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: -28px clamp(18px, 4vw, 58px) 42px;
  overflow: hidden;
  border-radius: 22px;
  background: transparent;
  position: relative;
  z-index: 2;
}

.trust-strip span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216, 149, 53, 0.26);
  border-radius: 18px;
  background: rgba(255, 248, 232, 0.94);
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 14px 34px rgba(9, 14, 25, 0.12);
}

.trust-strip span:nth-child(1),
.trust-strip span:nth-child(2),
.trust-strip span:nth-child(3),
.trust-strip span:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(255, 248, 232, 0.96), rgba(242, 216, 166, 0.7));
}

.workflow-ad-card {
  position: relative;
  display: block;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(242, 216, 166, 0.28);
  border-radius: 26px;
  color: #fffaf0;
  text-decoration: none;
  box-shadow: 0 18px 46px rgba(7, 18, 31, 0.28);
}

.workflow-ad-card img {
  width: 100%;
  display: block;
  aspect-ratio: 1;
  object-fit: cover;
}

.workflow-ad-card span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  border: 1px solid rgba(255, 250, 240, 0.26);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(7, 18, 31, 0.72);
  color: #ffe5a0;
  font-size: 12px;
  font-weight: 950;
  backdrop-filter: blur(12px);
}

.workflow-ad-card:hover,
.workflow-ad-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(216, 149, 53, 0.58);
}

.section,
.split-section,
.page-shell,
.spark-section,
.showcase-section {
  padding: clamp(42px, 7vw, 88px) clamp(18px, 4vw, 58px);
}

.section,
.split-section,
.spark-section,
.showcase-section,
.brush-bonanza,
.artist-workflow-section,
.pro-section {
  position: relative;
  isolation: isolate;
}

.section::before,
.split-section::before,
.spark-section::before,
.showcase-section::before,
.brush-bonanza::before,
.pro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at var(--parallax-x, 82%) var(--parallax-y, 18%), rgba(46, 196, 182, 0.18), transparent 28%),
    radial-gradient(circle at 12% 86%, rgba(216, 149, 53, 0.16), transparent 26%);
  background-attachment: fixed;
  opacity: 0.84;
}

.spark-section {
  --parallax-x: 88%;
  --parallax-y: 12%;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: center;
  margin: 0 clamp(18px, 4vw, 58px) 28px;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 92% 14%, rgba(216, 149, 53, 0.34), transparent 30%),
    url("assets/starby-starfish.svg") right 8% center / min(34vw, 360px) no-repeat fixed,
    linear-gradient(135deg, #07121f 0%, #102a38 52%, #8f3f2e 100%);
  color: #fffaf0;
  box-shadow: var(--shadow);
}

.spark-section .eyebrow {
  color: #fff0b8;
}

.spark-section h2 {
  margin-bottom: 0;
}

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

.spark-grid span {
  min-height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 216, 166, 0.34);
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.11);
  color: #fffaf0;
  font-weight: 950;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

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

.feature-grid article,
.feature-card,
.pro-grid article,
.price-card,
.support-grid article,
.download-panel {
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(216, 149, 53, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 248, 232, 0.98), rgba(247, 234, 208, 0.72)),
    var(--panel);
  box-shadow: 0 16px 42px rgba(9, 14, 25, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card {
  display: grid;
  align-content: start;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.card-link-label {
  align-self: end;
  justify-self: start;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(16, 42, 56, 0.1);
  color: #102a38;
  font-size: 12px;
  font-weight: 950;
}

.feature-grid article:nth-child(1),
.feature-card:nth-child(1) { border-top: 7px solid #2e8193; }
.feature-grid article:nth-child(2),
.feature-card:nth-child(2) { border-top: 7px solid #d89535; }
.feature-grid article:nth-child(3),
.feature-card:nth-child(3) { border-top: 7px solid #8f3f2e; }
.feature-grid article:nth-child(4),
.feature-card:nth-child(4) { border-top: 7px solid #102a38; }
.feature-grid article:nth-child(5),
.feature-card:nth-child(5) { border-top: 7px solid #c7832e; }
.feature-grid article:nth-child(6),
.feature-card:nth-child(6) { border-top: 7px solid #405d73; }

.feature-grid article:hover,
.feature-card:hover,
.feature-card:focus-visible,
.pro-grid article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(77, 47, 111, 0.16);
}

.feature-grid article:nth-child(1),
.feature-grid article:nth-child(2),
.feature-grid article:nth-child(3),
.feature-grid article:nth-child(4),
.feature-grid article:nth-child(5),
.feature-grid article:nth-child(6),
.feature-card {
  background:
    radial-gradient(circle at 92% 10%, rgba(216, 149, 53, 0.16), transparent 26%),
    linear-gradient(160deg, #fff8e8, #f3dfbb);
}

.feature-card:focus-visible,
.brush-count-strip a:focus-visible,
.brush-inventory-grid article:focus-visible {
  outline: 3px solid rgba(46, 129, 147, 0.58);
  outline-offset: 4px;
}

.brush-bonanza {
  --parallax-x: 76%;
  --parallax-y: 8%;
  margin: 0 clamp(18px, 4vw, 58px) 36px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 8%, rgba(46, 129, 147, 0.22), transparent 34%),
    url("assets/starby-starfish.svg") right 4% bottom 12% / min(26vw, 280px) no-repeat fixed,
    radial-gradient(circle at 92% 12%, rgba(216, 149, 53, 0.26), transparent 30%),
    linear-gradient(135deg, #fff8e8, #f5e4c3 55%, #fdf8ec);
  box-shadow: var(--shadow);
}

.brush-bonanza .section-head p:last-child {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.58;
}

.brush-count-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.brush-count-strip a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(216, 149, 53, 0.3);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.68);
  color: #102a38;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(9, 14, 25, 0.08);
}

.brush-count-strip a:hover {
  border-color: rgba(46, 129, 147, 0.48);
  background: rgba(255, 255, 255, 0.94);
  transform: translateY(-1px);
}

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

.brush-inventory-grid article {
  min-height: 330px;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  padding: 20px;
  overflow: hidden;
  border: 1px solid rgba(16, 42, 56, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 232, 0.66)),
    rgba(255, 255, 255, 0.74);
  box-shadow: 0 16px 34px rgba(9, 14, 25, 0.1);
}

.brush-inventory-grid article:nth-child(1) { border-top: 7px solid #6c584c; }
.brush-inventory-grid article:nth-child(2) { border-top: 7px solid #17151d; }
.brush-inventory-grid article:nth-child(3) { border-top: 7px solid #b56576; }
.brush-inventory-grid article:nth-child(4) { border-top: 7px solid #d89535; }
.brush-inventory-grid article:nth-child(5) { border-top: 7px solid #2e8193; }
.brush-inventory-grid article:nth-child(6) { border-top: 7px solid #7057ff; }
.brush-inventory-grid article:nth-child(7) { border-top: 7px solid #f25f5c; }
.brush-inventory-grid article:nth-child(8) { border-top: 7px solid #102a38; }
.brush-inventory-grid article:nth-child(9) { border-top: 7px solid #2ec4b6; }

.brush-inventory-grid h3 {
  margin-bottom: 7px;
  font-size: 24px;
}

.brush-inventory-grid p {
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.brush-inventory-grid ul {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 7px;
  max-height: 255px;
  margin: 0;
  padding: 0 4px 2px 0;
  overflow: auto;
  list-style: none;
}

.brush-inventory-grid li {
  border: 1px solid rgba(16, 42, 56, 0.1);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(255, 255, 255, 0.66);
  color: #21303a;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.1;
}

.feature-grid p,
.pro-grid p,
.download-panel p,
.price-card p,
.support-grid p,
.legal p {
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  --parallax-x: 22%;
  --parallax-y: 18%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  gap: 24px;
  align-items: start;
  background:
    radial-gradient(circle at 16% 18%, rgba(216, 149, 53, 0.22), transparent 28%),
    radial-gradient(circle at 84% 82%, rgba(46, 129, 147, 0.18), transparent 24%),
    linear-gradient(135deg, #f7ead0, #fff8e8 62%, #f2d8a6);
}

.showcase-section {
  --parallax-x: 82%;
  --parallax-y: 12%;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.86), rgba(247, 234, 208, 0.74)),
    url("assets/stardraw-shot.png") center / cover fixed;
}

.showcase-copy {
  max-width: 620px;
}

.showcase-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.tablet-stage {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 34px);
  border-radius: 36px;
  background:
    radial-gradient(circle at 12% 18%, rgba(216, 149, 53, 0.34), transparent 24%),
    radial-gradient(circle at 86% 78%, rgba(46, 129, 147, 0.32), transparent 24%),
    linear-gradient(135deg, #07121f, #102a38 54%, #8f3f2e);
  box-shadow: var(--shadow);
}

.tablet-stage img {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  border: 12px solid #17151d;
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(23, 21, 29, 0.36);
  transform: rotate(-2deg);
}

.studio-callout {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(46, 196, 182, 0.46);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(7, 18, 31, 0.78);
  color: #fffaf0;
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(7, 18, 31, 0.24);
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.studio-callout::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: #2ec4b6;
  box-shadow: 0 0 0 4px rgba(46, 196, 182, 0.16);
}

.studio-callout:hover,
.studio-callout:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 229, 160, 0.72);
  background: rgba(7, 18, 31, 0.92);
}

.studio-callout:focus-visible {
  outline: 3px solid rgba(46, 196, 182, 0.48);
  outline-offset: 3px;
}

.callout-brushes {
  right: 10%;
  top: 24%;
}

.callout-flow {
  left: 18%;
  top: 13%;
}

.callout-color {
  right: 30%;
  top: 40%;
}

.callout-view {
  right: 12%;
  top: 13%;
}

.callout-tabs {
  right: 6%;
  bottom: 18%;
}

.pen-streak {
  position: absolute;
  right: 8%;
  bottom: 12%;
  width: min(42%, 260px);
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, #f2d8a6, #d89535, #d95838);
  box-shadow: 0 0 32px rgba(216, 149, 53, 0.48);
  transform: rotate(-18deg);
}

.why-artists-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(46, 196, 182, 0.16), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(216, 149, 53, 0.18), transparent 30%),
    #fff8e8;
}

.why-artists-section .section-head p:last-child {
  max-width: 780px;
  color: var(--muted);
  line-height: 1.58;
}

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

.artist-reason-grid a {
  min-height: 168px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(16, 42, 56, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(247, 234, 208, 0.7)),
    rgba(255, 255, 255, 0.76);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(9, 14, 25, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.artist-reason-grid a:hover,
.artist-reason-grid a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(216, 149, 53, 0.44);
  box-shadow: 0 20px 46px rgba(9, 14, 25, 0.14);
}

.artist-reason-grid a:focus-visible {
  outline: 3px solid rgba(46, 129, 147, 0.5);
  outline-offset: 4px;
}

.artist-reason-grid strong {
  font-size: 20px;
  line-height: 1.12;
}

.artist-reason-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.5;
}

.artist-workflow-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1.12fr);
  gap: 28px;
  align-items: center;
  min-height: 560px;
  padding: clamp(48px, 8vw, 96px) clamp(18px, 4vw, 58px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 18, 31, 0.9), rgba(16, 42, 56, 0.78)),
    url("assets/studio-preview-features.png") center / cover fixed;
  color: #fffaf0;
}

.artist-workflow-section::after {
  content: "";
  position: absolute;
  inset: auto 7% 10% auto;
  width: min(32vw, 360px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.34), transparent 68%);
  pointer-events: none;
}

.workflow-copy,
.workflow-map {
  position: relative;
  z-index: 1;
}

.workflow-copy {
  max-width: 720px;
}

.workflow-copy p {
  color: rgba(255, 250, 240, 0.8);
  font-size: 19px;
  line-height: 1.55;
}

.workflow-map {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
  background: rgba(7, 18, 31, 0.52);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.workflow-map a {
  min-height: 124px;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 16px;
  border: 1px solid rgba(242, 216, 166, 0.24);
  border-radius: 20px;
  background:
    radial-gradient(circle at 88% 12%, rgba(216, 149, 53, 0.18), transparent 38%),
    rgba(255, 250, 240, 0.9);
  color: var(--ink);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.workflow-map a:hover,
.workflow-map a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(216, 149, 53, 0.5);
  box-shadow: 0 16px 34px rgba(7, 18, 31, 0.2);
}

.workflow-map span {
  width: max-content;
  border-radius: 999px;
  padding: 4px 9px;
  background: linear-gradient(135deg, #102a38, #17151d);
  color: #ffe5a0;
  font-size: 11px;
  font-weight: 950;
}

.workflow-map strong {
  font-size: 22px;
  line-height: 1;
}

.workflow-map em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.35;
}

.beginner-path-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(46, 196, 182, 0.18), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(255, 207, 74, 0.22), transparent 30%),
    linear-gradient(135deg, #fff8e8, #f7fbfb);
}

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

.beginner-path-grid a {
  min-height: 184px;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(16, 42, 56, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(247, 234, 208, 0.72)),
    rgba(255, 255, 255, 0.82);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 16px 38px rgba(9, 14, 25, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.beginner-path-grid a:hover,
.beginner-path-grid a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(46, 129, 147, 0.42);
  box-shadow: 0 22px 52px rgba(9, 14, 25, 0.14);
}

.beginner-path-grid a:focus-visible {
  outline: 3px solid rgba(46, 129, 147, 0.5);
  outline-offset: 4px;
}

.beginner-path-grid span {
  width: max-content;
  border-radius: 999px;
  padding: 4px 10px;
  background: linear-gradient(135deg, #102a38, #2e8193);
  color: #ffe5a0;
  font-size: 11px;
  font-weight: 950;
}

.beginner-path-grid strong {
  font-size: 22px;
  line-height: 1.08;
}

.beginner-path-grid em {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
  line-height: 1.45;
}

.beginner-path-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.install-steps span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(23, 21, 29, 0.08);
  border-radius: 18px;
  background: rgba(255, 248, 232, 0.86);
  color: var(--ink);
  font-size: 13px;
  font-weight: 950;
  text-align: center;
  box-shadow: 0 12px 26px rgba(77, 47, 111, 0.1);
}

.pro-section {
  --parallax-x: 86%;
  --parallax-y: 18%;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 207, 74, 0.18), transparent 28%),
    radial-gradient(circle at 18% 82%, rgba(46, 196, 182, 0.18), transparent 30%),
    url("assets/starby-starfish.svg") right 6% center / min(28vw, 320px) no-repeat fixed,
    #17151d;
  color: #fffaf0;
}

.pro-section .eyebrow {
  color: var(--sun);
}

.pro-section p {
  color: rgba(255, 250, 240, 0.72);
}

.pro-section .section-head p:last-child {
  max-width: 820px;
  line-height: 1.58;
}

.pro-grid article {
  border-color: rgba(255, 250, 240, 0.16);
  background: rgba(255, 250, 240, 0.08);
  box-shadow: none;
}

.pro-grid article:nth-child(1) { border-top: 7px solid #f2d8a6; }
.pro-grid article:nth-child(2) { border-top: 7px solid #2ec4b6; }
.pro-grid article:nth-child(3) { border-top: 7px solid #7057ff; }
.pro-grid article:nth-child(4) { border-top: 7px solid #d95838; }
.pro-grid article:nth-child(5) { border-top: 7px solid #d89535; }
.pro-grid article:nth-child(6) { border-top: 7px solid #b56576; }

.pro-proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.pro-proof-strip span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 250, 240, 0.18);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 250, 240, 0.08);
  color: #ffe5a0;
  font-size: 12px;
  font-weight: 950;
}

.waitlist-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 24px;
  align-items: center;
  margin-top: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  background:
    radial-gradient(circle at 95% 10%, rgba(255, 207, 74, 0.22), transparent 30%),
    rgba(255, 250, 240, 0.12);
  box-shadow: var(--shadow);
}

.waitlist-card p {
  color: rgba(255, 250, 240, 0.78);
  line-height: 1.55;
}

.waitlist-form {
  display: grid;
  gap: 10px;
}

.waitlist-form label {
  font-size: 13px;
  font-weight: 950;
  color: inherit;
}

.waitlist-form div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.waitlist-form input {
  min-height: 46px;
  width: 100%;
  border: 2px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.waitlist-form input:focus {
  border-color: var(--sun);
  box-shadow: 0 0 0 4px rgba(255, 207, 74, 0.18);
}

.form-note {
  margin: 0;
  font-size: 13px;
}

.waitlist-form.compact {
  margin-top: 18px;
}

.waitlist-form.compact div {
  grid-template-columns: 1fr auto;
}

.price-card .waitlist-form label {
  color: var(--ink);
}

.price-card .form-note {
  color: var(--muted);
}

.page-shell {
  max-width: 1120px;
  margin: 0 auto;
}

.page-shell h1 {
  font-size: clamp(38px, 5vw, 64px);
}

.page-lede {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.support-page {
  max-width: 1240px;
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 0.65fr);
  gap: 18px;
  align-items: start;
  margin-top: 28px;
}

.support-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.support-path-grid a {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid rgba(216, 149, 53, 0.22);
  border-radius: 22px;
  padding: 18px;
  background:
    radial-gradient(circle at 92% 12%, rgba(216, 149, 53, 0.18), transparent 32%),
    rgba(255, 248, 232, 0.88);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(9, 14, 25, 0.08);
  transition: transform 180ms ease, border-color 180ms ease;
}

.support-path-grid a:hover,
.support-path-grid a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(46, 129, 147, 0.42);
}

.support-path-grid strong {
  font-size: 19px;
}

.support-path-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.support-form,
.support-checklist,
.feature-tile,
.feature-modal-panel {
  border: 1px solid rgba(216, 149, 53, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 220, 0.78));
  box-shadow: 0 18px 46px rgba(77, 47, 111, 0.12);
}

.support-form {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.support-form label {
  font-size: 13px;
  font-weight: 950;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border: 2px solid rgba(216, 149, 53, 0.2);
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.support-form textarea {
  resize: vertical;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: var(--sun);
  box-shadow: 0 0 0 4px rgba(255, 207, 74, 0.18);
}

.support-checklist {
  padding: 24px;
}

.support-checklist ul,
.feature-modal-panel ul {
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.58;
}

.feature-library {
  margin-top: 54px;
}

.feature-category {
  margin-top: 26px;
}

.feature-category h3 {
  margin-bottom: 12px;
  color: #754316;
}

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

.feature-tile {
  display: grid;
  gap: 12px;
  min-height: 244px;
  padding: 16px;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-tile:hover,
.feature-tile:focus-visible {
  border-color: rgba(216, 149, 53, 0.52);
  box-shadow: 0 24px 56px rgba(77, 47, 111, 0.16);
  transform: translateY(-3px);
  outline: 0;
}

.feature-tile strong {
  font-size: 20px;
}

.feature-tile em {
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.feature-visual {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 207, 74, 0.28), transparent 28%),
    linear-gradient(135deg, #08131f, #14384b);
}

.brush-visual span {
  position: absolute;
  left: 18px;
  right: 18px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffe6a0, #ff724f, #6d5dfc);
  transform: rotate(-12deg);
}

.brush-visual span:nth-child(1) { top: 36px; }
.brush-visual span:nth-child(2) { top: 63px; opacity: .72; transform: rotate(8deg); }
.brush-visual span:nth-child(3) { top: 91px; opacity: .52; transform: rotate(-4deg); }

.layer-visual span {
  position: absolute;
  width: 72%;
  height: 42px;
  left: 14%;
  border: 1px solid rgba(255, 229, 160, 0.54);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
}

.layer-visual span:nth-child(1) { top: 28px; }
.layer-visual span:nth-child(2) { top: 48px; left: 18%; }
.layer-visual span:nth-child(3) { top: 68px; left: 22%; }

.render-visual span,
.proof-visual span,
.stamp-visual span,
.save-visual span,
.beginner-visual span,
.install-visual span,
.pro-visual span {
  position: absolute;
  border-radius: 999px;
}

.render-visual span:nth-child(1) { inset: 22px auto auto 18px; width: 78px; height: 78px; background: #ffcf4a; }
.render-visual span:nth-child(2) { inset: 40px auto auto 72px; width: 68px; height: 68px; background: rgba(255, 95, 126, .82); }
.render-visual span:nth-child(3) { inset: 76px 22px auto auto; width: 86px; height: 18px; background: #fff0b4; }

.proof-visual span { width: 48px; height: 70px; top: 32px; background: rgba(255, 255, 255, .18); border: 1px solid rgba(255, 229, 160, .42); }
.proof-visual span:nth-child(1) { left: 26px; }
.proof-visual span:nth-child(2) { left: 82px; }
.proof-visual span:nth-child(3) { left: 138px; }

.stamp-visual span { width: 54px; height: 54px; background: #ff724f; box-shadow: 0 0 0 8px rgba(255, 207, 74, .18); }
.stamp-visual span:nth-child(1) { left: 28px; top: 36px; }
.stamp-visual span:nth-child(2) { left: 88px; top: 58px; transform: scale(.78); }
.stamp-visual span:nth-child(3) { right: 28px; top: 32px; transform: scale(.62); }

.save-visual span {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 229, 160, 0.44);
}

.save-visual span:nth-child(1) {
  width: 82px;
  height: 54px;
  left: 20px;
  top: 24px;
  background: linear-gradient(135deg, #ffe5a0, #ff9a62);
}

.save-visual span:nth-child(2) {
  width: 96px;
  height: 64px;
  right: 18px;
  top: 38px;
}

.save-visual span:nth-child(3) {
  width: 56px;
  height: 12px;
  left: 34px;
  top: 42px;
  border-radius: 999px;
  background: #102a38;
}

.save-visual span:nth-child(4) {
  width: 72px;
  height: 12px;
  right: 30px;
  top: 78px;
  border-radius: 999px;
  background: #2e8193;
}

.beginner-visual span {
  width: 52px;
  height: 52px;
  top: 40px;
  border: 2px solid rgba(255, 229, 160, 0.46);
  background: rgba(255, 255, 255, 0.16);
}

.beginner-visual span:nth-child(1) { left: 18px; background: #ffe5a0; }
.beginner-visual span:nth-child(2) { left: 72px; background: #ff724f; transform: translateY(-10px); }
.beginner-visual span:nth-child(3) { left: 126px; background: #69d8df; transform: translateY(10px); }
.beginner-visual span:nth-child(4) {
  left: 30px;
  right: 30px;
  bottom: 24px;
  top: auto;
  width: auto;
  height: 12px;
  border-radius: 999px;
  background: #2e8193;
}

.reference-visual span {
  position: absolute;
  border-radius: 16px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 229, 160, .42);
}

.reference-visual span:nth-child(1) { inset: 20px 72px 20px 18px; }
.reference-visual span:nth-child(2) { width: 48px; height: 48px; right: 22px; top: 34px; border-radius: 50%; background: #69d8df; }

.install-visual span { width: 44px; height: 70px; top: 30px; border-radius: 14px; background: rgba(255,255,255,.2); border: 2px solid rgba(255,229,160,.5); }
.install-visual span:nth-child(1) { left: 30px; }
.install-visual span:nth-child(2) { left: 86px; transform: translateY(12px); }
.install-visual span:nth-child(3) { left: 142px; transform: translateY(24px); }

.pro-visual span:nth-child(1) { width: 86px; height: 48px; left: 22px; top: 32px; border-radius: 12px; background: #f2d8a6; }
.pro-visual span:nth-child(2) { width: 72px; height: 72px; right: 24px; top: 28px; background: rgba(216, 149, 53, .78); }
.pro-visual span:nth-child(3) { width: 128px; height: 10px; left: 32px; bottom: 26px; background: #69d8df; }

.feature-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5, 8, 18, 0.72);
  backdrop-filter: blur(10px);
}

.feature-modal[hidden] {
  display: none;
}

.feature-modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(320px, 1fr);
  gap: 24px;
  width: min(920px, 100%);
  max-height: min(760px, 92vh);
  overflow: auto;
  padding: 24px;
}

.feature-modal-panel .modal-visual .feature-visual {
  min-height: 320px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  padding: 0 14px;
  background: #0b2232;
  color: #ffe5a0;
  font-weight: 950;
  cursor: pointer;
}

.modal-purpose,
.feature-modal-panel p {
  color: var(--muted);
  line-height: 1.58;
}

.updates-page {
  max-width: 1240px;
}

.request-board {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 0.55fr);
  gap: 18px;
  align-items: start;
  margin-top: 30px;
}

.board-sidebar,
.update-post {
  border: 1px solid rgba(216, 149, 53, 0.22);
  border-radius: 24px;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 207, 74, 0.18), transparent 28%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 220, 0.78));
  box-shadow: 0 18px 46px rgba(77, 47, 111, 0.12);
}

.board-sidebar {
  padding: 24px;
}

.board-sidebar ul,
.update-post ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.request-form {
  position: relative;
}

.update-feed {
  display: grid;
  gap: 16px;
  margin-top: 56px;
}

.update-feed .section-head {
  margin-bottom: 4px;
}

.update-post {
  padding: 24px;
}

.update-post h3 {
  font-size: 28px;
}

.update-post p {
  color: var(--muted);
  line-height: 1.58;
}

.post-meta {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0b2232, #17151d);
  color: #ffe5a0 !important;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.price {
  color: var(--ink) !important;
  font-size: 26px;
  font-weight: 950;
}

.price-card.featured {
  border-color: color-mix(in srgb, var(--violet) 48%, var(--line));
  background: #f6f3ff;
}

.price-card ul {
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.7;
}

.safety-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(216, 149, 53, 0.18);
  border-bottom: 1px solid rgba(46, 129, 147, 0.2);
  background:
    radial-gradient(circle at 10% 0%, rgba(46, 129, 147, 0.2), transparent 28%),
    radial-gradient(circle at 90% 10%, rgba(216, 149, 53, 0.24), transparent 30%),
    linear-gradient(135deg, #fff8ec, #f7fbfb);
}

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

.safety-grid article,
.save-safely-panel {
  border: 1px solid rgba(16, 42, 56, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 45px rgba(16, 42, 56, 0.1);
}

.safety-grid article {
  padding: 20px;
}

.safety-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #102a38, #2e8193);
  color: #ffe5a0;
  font-size: 12px;
  font-weight: 950;
}

.safety-grid h3 {
  font-size: 21px;
}

.safety-grid p,
.save-safely-panel p,
.save-safely-panel li {
  color: var(--muted);
  line-height: 1.58;
}

.safety-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.save-safely-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1fr);
  gap: 20px;
  margin: 34px 0 56px;
  padding: 26px;
}

.save-safely-panel ol {
  margin: 0;
  padding-left: 22px;
}

.legal {
  max-width: 820px;
}

.legal h2 {
  margin-top: 32px;
  font-size: 24px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 34px clamp(18px, 4vw, 58px);
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 248, 232, 0.98), rgba(247, 234, 208, 0.72)),
    #fff;
}

.site-footer p {
  margin: 6px 0 0;
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer nav a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(16, 42, 56, 0.1);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
  text-decoration: none;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split-section,
  .spark-section,
  .showcase-section,
  .artist-workflow-section,
  .support-hero,
  .support-path-grid,
  .request-board,
  .feature-grid,
  .artist-reason-grid,
  .brush-inventory-grid,
  .safety-grid,
  .save-safely-panel,
  .feature-tile-grid,
  .feature-modal-panel,
  .pro-grid,
  .pricing-grid,
  .support-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    align-items: start;
    padding-bottom: 34px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-video-card {
    width: 100%;
    margin-top: 20px;
    border-radius: 22px;
    opacity: 0.9;
  }

  .hero-video-card span {
    left: 10px;
    bottom: 10px;
    font-size: 11px;
  }

  body::before,
  .parallax-band,
  .hero-bg,
  .section::before,
  .split-section::before,
  .spark-section::before,
  .showcase-section::before,
  .brush-bonanza::before,
  .pro-section::before,
  .spark-section,
  .showcase-section,
  .artist-workflow-section,
  .brush-bonanza,
  .pro-section {
    background-attachment: scroll;
  }

  .workflow-map {
    grid-template-columns: 1fr;
  }

  .artist-workflow-section {
    min-height: auto;
    background-attachment: scroll;
  }

  .spark-section {
    margin: 0 14px 24px;
  }

  .brush-bonanza {
    margin-right: 12px;
    margin-left: 12px;
    border-radius: 24px;
  }

  .spark-grid,
  .install-steps {
    grid-template-columns: 1fr;
  }

  .tablet-stage {
    min-height: 260px;
    border-radius: 26px;
  }

  .tablet-stage img {
    border-width: 8px;
    border-radius: 20px;
    transform: none;
  }

  .studio-callout,
  .callout-brushes,
  .callout-flow,
  .callout-color,
  .callout-view,
  .callout-tabs {
    position: relative;
    inset: auto;
    justify-self: stretch;
    justify-content: center;
    margin-top: 8px;
    transform: none;
  }

  .feature-modal {
    padding: 12px;
    place-items: end center;
  }

  .feature-modal-panel {
    max-height: 88vh;
    padding: 18px;
  }

  .feature-modal-panel .modal-visual .feature-visual {
    min-height: 190px;
  }

  .waitlist-card,
  .waitlist-form div,
  .waitlist-form.compact div {
    grid-template-columns: 1fr;
  }

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

  .site-footer nav {
    justify-content: flex-start;
  }
}
