
:root {
  --ink: #090812;
  --ink-soft: #1c1a2c;
  --paper: #fff8ed;
  --cream: #ffeecd;
  --violet: #7b5cff;
  --violet-deep: #3d245c;
  --hot-pink: #e83f91;
  --magenta: #a31667;
  --cyan: #1fc7d4;
  --aqua: #89ecdf;
  --green: #44c46b;
  --acid: #a9f56f;
  --orange: #ff6a00;
  --apricot: #ffb06e;
  --red: #ff3d4d;
  --white: #ffffff;
  --muted: #706b7d;
  --line: rgba(9, 8, 18, .16);
  --line-light: rgba(255, 255, 255, .22);
  --shadow: 0 24px 80px rgba(9, 8, 18, .22);
  --shadow-tight: 0 18px 42px rgba(9, 8, 18, .2);
  --radius: 24px;
  --radius-sm: 14px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 106, 0, .16), transparent 28rem),
    radial-gradient(circle at 80% 8%, rgba(31, 199, 212, .18), transparent 28rem),
    var(--paper);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  z-index: 0;
  background-image:
    linear-gradient(rgba(9,8,18,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(9,8,18,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, transparent, black 16%, black 86%, transparent);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

::selection {
  background: var(--orange);
  color: var(--ink);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 10000;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--ink);
  transform: translateY(-140%);
  transition: transform .2s var(--ease);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9998;
  background: transparent;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--orange), var(--hot-pink));
}

.cursor-shell {
  position: fixed;
  left: 0;
  top: 0;
  width: 54px;
  height: 54px;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  will-change: transform;
}

.cursor-ring,
.cursor-dot {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transform-origin: 50% 50%;
}

.cursor-ring {
  border: 1px dotted rgba(255, 255, 255, .32);
  background:
    radial-gradient(circle, rgba(255,255,255,.08), transparent 56%),
    rgba(9, 8, 18, .08);
  transition: transform .26s var(--ease), border-color .26s var(--ease), background .26s var(--ease), opacity .26s var(--ease);
}

.cursor-dot {
  width: 5px;
  height: 5px;
  inset: calc(50% - 2.5px);
  background: rgba(255, 255, 255, .7);
}

body.is-hovering .cursor-ring {
  border-color: rgba(31, 199, 212, .92);
  background:
    radial-gradient(circle, rgba(31,199,212,.22), transparent 58%),
    rgba(31,199,212,.08);
  transform: scale(1.28) rotate(18deg);
  animation: cursorSpin 1.2s linear infinite;
}

@keyframes cursorSpin {
  to { transform: scale(1.28) rotate(378deg); }
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px clamp(18px, 2.8vw, 34px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(9, 8, 18, .78), rgba(9, 8, 18, .58));
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  border-radius: 0 0 26px 26px;
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 60px rgba(9,8,18,.26);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  letter-spacing: -.03em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: conic-gradient(from 20deg, var(--orange), var(--hot-pink), var(--cyan), var(--green), var(--orange));
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .04em;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.28);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
  color: rgba(255,255,255,.82);
  transition: background .22s var(--ease), color .22s var(--ease), transform .22s var(--ease);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255,255,255,.1);
  color: var(--white);
}

.site-nav .nav-cta {
  background: var(--white);
  color: var(--ink);
  margin-left: 6px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 2px;
}

main {
  position: relative;
}

.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  max-height: 100svh;
  overflow: clip;
  color: var(--white);
  background:
    radial-gradient(circle at 51% 42%, rgba(255, 61, 77, .28), transparent 19rem),
    radial-gradient(circle at 74% 22%, rgba(31,199,212,.22), transparent 24rem),
    radial-gradient(circle at 25% 24%, rgba(255,106,0,.22), transparent 22rem),
    linear-gradient(135deg, #080713 0%, #160e2d 42%, #09161f 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12vw -20vh;
  height: 46vh;
  background: linear-gradient(90deg, rgba(232,63,145,.7), rgba(255,106,0,.68), rgba(68,196,107,.56), rgba(31,199,212,.62));
  filter: blur(48px);
  opacity: .6;
  transform: rotate(-2deg);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: .18;
  pointer-events: none;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 76%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  height: 100%;
  display: grid;
  grid-template-columns: minmax(300px, .85fr) minmax(340px, .98fr) minmax(290px, .72fr);
  gap: clamp(18px, 2.4vw, 34px);
  align-items: center;
  padding: calc(var(--header-h) + 32px) clamp(22px, 4vw, 70px) 34px;
}

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

.eyebrow,
.micro-label {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(50px, 7.3vw, 116px);
  line-height: .88;
  letter-spacing: -.065em;
  font-weight: 850;
  text-wrap: balance;
}

.hero-lede {
  max-width: 56ch;
  margin: 22px 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.58;
}

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

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  letter-spacing: -.01em;
  transition: color .22s var(--ease), border .22s var(--ease), background .22s var(--ease), transform .22s var(--ease), box-shadow .22s var(--ease);
  will-change: transform;
}

.btn-primary {
  color: var(--ink);
  background: linear-gradient(135deg, var(--orange), var(--apricot));
  box-shadow: 0 16px 44px rgba(255,106,0,.28);
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 5px;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,.34);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.07);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.trust-line {
  margin: 18px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  font-weight: 800;
}

.hero-art {
  position: relative;
  min-height: min(70svh, 650px);
}

.art-frame {
  position: absolute;
  padding: 10px;
  background: #0f0b17;
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: 0 34px 100px rgba(0,0,0,.38);
  overflow: hidden;
  will-change: transform;
}

.art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.art-frame-main {
  left: 3%;
  top: 1%;
  width: min(58%, 370px);
  aspect-ratio: 638 / 869;
  transform: rotate(-2.8deg);
}

.art-frame-side {
  right: 1%;
  bottom: 1%;
  width: min(49%, 310px);
  aspect-ratio: 697 / 865;
  transform: rotate(4deg);
}

.frame-label {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: calc(100% - 36px);
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(255,248,237,.9);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .02em;
}

.hero-scribble {
  position: absolute;
  left: 4%;
  bottom: 14%;
  width: 74%;
  overflow: visible;
  fill: none;
  stroke: var(--orange);
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 8px 14px rgba(255,106,0,.28));
  transform: rotate(-6deg);
}

.color-tile {
  position: absolute;
  width: 52px;
  height: 78px;
  border: 2px solid rgba(255,255,255,.65);
  box-shadow: 0 16px 50px rgba(0,0,0,.28);
}

.tile-a {
  right: 22%;
  top: 6%;
  background: var(--green);
  transform: rotate(10deg);
}

.tile-b {
  left: 2%;
  bottom: 3%;
  background: var(--hot-pink);
  transform: rotate(-15deg);
}

.tile-c {
  right: 4%;
  top: 38%;
  background: var(--cyan);
  transform: rotate(22deg);
}

.upload-card {
  position: relative;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255,248,237,.96), rgba(255,238,205,.92)),
    var(--paper);
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: var(--shadow);
}

.hero-upload {
  align-self: center;
  border-radius: 0 28px 28px 28px;
  transform: rotate(1deg);
}

.hero-upload h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 36px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.hero-upload p:not(.micro-label):not(.upload-error) {
  margin: 12px 0 18px;
  color: #504b5b;
  line-height: 1.56;
}

.upload-zone {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 178px;
  border: 2px dashed rgba(9,8,18,.28);
  background:
    linear-gradient(135deg, rgba(31,199,212,.15), transparent 40%),
    linear-gradient(315deg, rgba(255,106,0,.18), transparent 46%),
    rgba(255,255,255,.55);
  overflow: hidden;
  transition: border-color .24s var(--ease), transform .24s var(--ease), background .24s var(--ease);
}

.upload-zone::before,
.upload-zone::after {
  content: "";
  position: absolute;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  opacity: .7;
}

.upload-zone::before {
  left: -26px;
  bottom: -24px;
  background: var(--hot-pink);
}

.upload-zone::after {
  right: -20px;
  top: -22px;
  background: var(--cyan);
}

.upload-zone.is-dragging,
.upload-zone:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.upload-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.upload-label {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 4px;
  text-align: center;
  pointer-events: none;
}

.upload-plus {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: var(--ink);
  font-size: 38px;
  line-height: 1;
  font-weight: 400;
}

.upload-title {
  font-weight: 900;
}

.upload-help {
  color: var(--muted);
  font-size: 13px;
}

.upload-preview {
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 2px solid rgba(9,8,18,.14);
  background: var(--ink);
}

.upload-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.upload-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 32px;
  margin-top: 12px;
  color: #5d5767;
  font-size: 13px;
  font-weight: 700;
}

.text-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--magenta);
  font-weight: 900;
  text-decoration: underline;
}

.upload-error {
  min-height: 22px;
  margin: 6px 0 0;
  color: #b00020;
  font-size: 13px;
  font-weight: 800;
}

.mini-cta {
  display: block;
  margin-top: 8px;
  padding: 12px 14px;
  border-radius: 999px;
  text-align: center;
  font-weight: 900;
  color: var(--ink);
  background: rgba(31,199,212,.22);
  border: 1px solid rgba(9,8,18,.12);
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(78px, 10vw, 150px) clamp(22px, 5vw, 84px);
}

.section-head {
  max-width: 840px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section-head h2,
.statement-block h2,
.split-intro h2,
.notes-card h2,
.commission-copy h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.05em;
  font-size: clamp(38px, 5.6vw, 82px);
  text-wrap: balance;
}

.section-head p:not(.eyebrow),
.split-intro p,
.manifesto-copy p,
.commission-copy p {
  max-width: 66ch;
  color: #4e485b;
  font-size: clamp(16px, 1.2vw, 19px);
}

.manifesto {
  background:
    linear-gradient(180deg, var(--paper), #ffe7f1 48%, var(--paper));
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 1.05fr .75fr;
  gap: clamp(30px, 6vw, 90px);
  align-items: end;
}

.statement-block {
  max-width: 950px;
}

.manifesto-copy {
  padding: 26px;
  border-left: 8px solid var(--orange);
  background: rgba(255,255,255,.55);
  box-shadow: var(--shadow-tight);
}

.manifesto-copy p {
  margin: 0;
}

.manifesto-copy p + p {
  margin-top: 18px;
}

.transformation {
  overflow: clip;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 24%, rgba(232,63,145,.24), transparent 30rem),
    radial-gradient(circle at 85% 16%, rgba(31,199,212,.26), transparent 30rem),
    var(--ink);
}

.transformation .eyebrow,
.transformation .split-intro p {
  color: rgba(255,255,255,.78);
}

.split-intro {
  max-width: 760px;
  margin-bottom: 40px;
}

.transform-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 64px);
  align-items: center;
  min-height: 540px;
}

.transform-panel {
  position: relative;
  min-height: 440px;
  padding: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 34px 100px rgba(0,0,0,.24);
  overflow: hidden;
}

.reference-panel {
  transform: rotate(-1deg);
}

.artwork-panel {
  transform: rotate(2deg);
}

.panel-kicker {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 8px 10px;
  color: var(--ink);
  background: var(--aqua);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.blank-photo {
  position: absolute;
  inset: 82px 22px 22px;
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.54);
  background:
    linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.025)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.08) 0 10px, transparent 10px 20px);
  border: 1px dashed rgba(255,255,255,.25);
}

.blank-photo span {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 92px);
  line-height: .9;
  letter-spacing: -.06em;
}

.artwork-panel img {
  position: absolute;
  inset: 82px 22px 22px;
  width: calc(100% - 44px);
  height: calc(100% - 104px);
  object-fit: cover;
  object-position: center;
}

.paint-route {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(62vw, 760px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  fill: none;
  stroke: var(--orange);
  stroke-width: 8;
  stroke-linecap: round;
  filter: drop-shadow(0 12px 20px rgba(255,106,0,.3));
}

.paint-route path {
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
}

.becoming {
  background: linear-gradient(180deg, var(--paper), #eafbf0);
}

.becoming-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.become-chip {
  position: relative;
  min-height: 220px;
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  overflow: hidden;
  transition: transform .24s var(--ease), box-shadow .24s var(--ease);
}

.become-chip:hover,
.become-chip:focus-within {
  transform: translate(-4px, -4px);
  box-shadow: 14px 14px 0 var(--ink);
}

.become-chip::after {
  content: "";
  position: absolute;
  inset: auto -12% -28%;
  height: 70%;
  background: rgba(255,255,255,.25);
  transform: rotate(-7deg);
}

.become-chip span {
  position: relative;
  z-index: 1;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.become-chip strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 13ch;
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.25vw, 42px);
  line-height: .92;
  letter-spacing: -.04em;
}

.become-chip.cyan {
  background: var(--cyan);
}

.become-chip.hot {
  background: var(--hot-pink);
  color: var(--white);
}

.become-chip.orange {
  background: var(--orange);
}

.become-chip.violet {
  background: var(--violet);
  color: var(--white);
}

.become-chip.green {
  background: var(--green);
}

.become-chip.acid {
  background: var(--acid);
}

.become-chip.red {
  background: var(--red);
  color: var(--white);
}

.become-chip.blue {
  background: var(--cyan);
}

.gallery-section {
  background: var(--paper);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-pill {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 15px;
  background: transparent;
  color: var(--ink);
  font-weight: 900;
  transition: background .22s var(--ease), color .22s var(--ease), transform .22s var(--ease);
}

.filter-pill.is-active,
.filter-pill:hover,
.filter-pill:focus-visible {
  color: var(--white);
  background: var(--ink);
  transform: translateY(-2px);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .9fr;
  grid-auto-rows: 190px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-tight);
  text-align: left;
  transition: transform .28s var(--ease), opacity .25s var(--ease);
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item:hover {
  transform: translateY(-6px) rotate(-.8deg);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .6s var(--ease);
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.12);
}

.gallery-item span {
  position: absolute;
  inset: auto 14px 14px;
  z-index: 2;
  display: grid;
  gap: 3px;
  padding: 12px;
  background: rgba(9,8,18,.72);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
}

.gallery-item strong {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: .95;
  letter-spacing: -.04em;
}

.gallery-item em {
  font-style: normal;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 800;
}

.gallery-item.big {
  grid-row: span 2;
}

.gallery-item.tall {
  grid-row: span 3;
}

.painted-card {
  min-height: 190px;
}

.painted-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 26%, var(--cyan) 0 7%, transparent 7.4%),
    radial-gradient(circle at 62% 28%, var(--orange) 0 8%, transparent 8.4%),
    radial-gradient(circle at 42% 66%, var(--hot-pink) 0 9%, transparent 9.4%),
    linear-gradient(135deg, var(--violet), var(--green));
  filter: saturate(1.2);
}

.card-green::before {
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(9,8,18,.32) 46% 49%, transparent 49%),
    linear-gradient(135deg, var(--green), var(--acid) 40%, var(--cyan));
}

.card-pink::before {
  background:
    radial-gradient(circle at 16% 26%, var(--orange) 0 12%, transparent 12.5%),
    radial-gradient(circle at 82% 24%, var(--cyan) 0 14%, transparent 14.5%),
    linear-gradient(135deg, var(--hot-pink), var(--violet));
}

.card-orange::before {
  background:
    repeating-linear-gradient(110deg, rgba(9,8,18,.18) 0 10px, transparent 10px 22px),
    linear-gradient(135deg, var(--orange), var(--apricot), var(--hot-pink));
}

.center-line {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.process {
  color: var(--white);
  background:
    linear-gradient(180deg, #0b0916, #160d28 58%, #0b0916);
}

.process .section-head p:not(.eyebrow) {
  color: rgba(255,255,255,.68);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.process-line {
  position: absolute;
  left: 4%;
  right: 4%;
  top: 28px;
  height: 3px;
  background: rgba(255,255,255,.15);
  overflow: hidden;
}

.process-line span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--orange), var(--hot-pink));
}

.process-step {
  position: relative;
  z-index: 1;
  min-height: 260px;
  padding: 74px 18px 18px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  transition: background .25s var(--ease), transform .25s var(--ease), border .25s var(--ease);
}

.process-step span {
  position: absolute;
  left: 18px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.process-step h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(26px, 2vw, 36px);
  line-height: 1;
  letter-spacing: -.035em;
}

.process-step p {
  margin: 0;
  color: rgba(255,255,255,.66);
}

.process-step.is-active {
  background: rgba(255,106,0,.16);
  border-color: rgba(255,106,0,.55);
  transform: translateY(-8px);
}

.pricing {
  background:
    radial-gradient(circle at 10% 10%, rgba(255,106,0,.18), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(31,199,212,.2), transparent 30rem),
    var(--paper);
}

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

.price-ticket {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 410px;
  padding: 22px;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 rgba(9,8,18,.94);
  transition: transform .24s var(--ease), box-shadow .24s var(--ease), background .24s var(--ease);
}

.price-ticket::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(9,8,18,.12);
  pointer-events: none;
}

.price-ticket:hover,
.price-ticket:focus-within {
  transform: translate(-3px, -5px);
  box-shadow: 14px 14px 0 rgba(9,8,18,.94);
}

.price-ticket.is-selected {
  background: #ffecd6;
  box-shadow: 14px 14px 0 var(--orange);
}

.price-ticket.accent {
  background: #ffe1eb;
}

.price-ticket.framed {
  background: #dcfbf5;
}

.ticket-label {
  margin: 0 0 18px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.price-ticket h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: .95;
  letter-spacing: -.04em;
}

.price {
  margin: 20px 0 4px;
  font-family: var(--font-display);
  font-size: 54px;
  line-height: .9;
  letter-spacing: -.05em;
  font-weight: 900;
}

.price-ticket p {
  position: relative;
  z-index: 1;
}

.ticket-button {
  position: relative;
  z-index: 1;
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
  color: var(--white);
  background: var(--ink);
  font-weight: 900;
  transition: transform .22s var(--ease), background .22s var(--ease);
}

.ticket-button:hover,
.ticket-button:focus-visible {
  background: var(--orange);
  color: var(--ink);
  transform: translateY(-2px);
}

.notes-section {
  background:
    linear-gradient(135deg, var(--violet-deep), var(--ink));
  color: var(--white);
}

.notes-card {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 60px);
  border: 1px solid rgba(255,255,255,.18);
  background:
    radial-gradient(circle at 90% 4%, rgba(68,196,107,.24), transparent 22rem),
    rgba(255,255,255,.06);
  box-shadow: 0 34px 100px rgba(0,0,0,.25);
}

.notes-card h2 {
  max-width: 900px;
}

.notes-card ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
}

.notes-card li {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  font-weight: 900;
}

.testimonials {
  background: #fff1f7;
}

.testimonial-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-strip > * {
  margin: 0;
  padding: 24px;
  color: var(--ink);
  background: var(--white);
  border-left: 9px solid var(--hot-pink);
  box-shadow: var(--shadow-tight);
}

.testimonial-strip > * p {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(27px, 2.4vw, 40px);
  line-height: 1;
  letter-spacing: -.04em;
}

.testimonial-strip > * cite {
  font-style: normal;
  font-weight: 900;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}

.commission {
  background:
    radial-gradient(circle at 16% 10%, rgba(255,106,0,.2), transparent 26rem),
    radial-gradient(circle at 84% 20%, rgba(31,199,212,.22), transparent 30rem),
    var(--paper);
}

.commission-shell {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: start;
}

.commission-copy {
  position: sticky;
  top: calc(var(--header-h) + 54px);
}

.commission-form {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 3vw, 34px);
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 14px 14px 0 var(--ink);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

label span {
  color: #3c3548;
  font-size: 13px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(9,8,18,.2);
  border-radius: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffaf2;
  outline: none;
  transition: border .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(31,199,212,.65);
  outline-offset: 3px;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(31,199,212,.16);
  background: var(--white);
}

.full {
  grid-column: 1 / -1;
}

.form-upload {
  box-shadow: none;
  border: 1px solid rgba(9,8,18,.14);
}

.submit-btn {
  justify-self: start;
  border: 0;
}

.form-message {
  margin: 0;
  min-height: 24px;
  color: var(--magenta);
  font-weight: 900;
}

.faq {
  color: var(--white);
  background: #090812;
}

.faq .section-head p:not(.eyebrow) {
  color: rgba(255,255,255,.7);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 980px;
}

details {
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.055);
  transition: background .22s var(--ease), border .22s var(--ease);
}

details[open] {
  background: rgba(255,106,0,.12);
  border-color: rgba(255,106,0,.38);
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px;
  list-style: none;
  cursor: pointer;
  font-weight: 900;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  transition: transform .22s var(--ease), background .22s var(--ease);
}

details[open] summary::after {
  content: "×";
  transform: rotate(90deg);
  background: var(--orange);
}

details p {
  margin: 0;
  padding: 0 20px 22px;
  color: rgba(255,255,255,.72);
  max-width: 76ch;
}

.final-cta {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 76svh;
  padding: clamp(70px, 10vw, 130px) 22px;
  text-align: center;
  color: var(--ink);
  background:
    radial-gradient(circle at 24% 28%, rgba(255,106,0,.34), transparent 24rem),
    radial-gradient(circle at 80% 20%, rgba(31,199,212,.32), transparent 28rem),
    linear-gradient(135deg, #fff8ed, #ffd9ec 55%, #d9fff4);
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 2px solid rgba(9,8,18,.18);
  transform: rotate(-1deg);
}

.final-cta > div {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.final-cta .btn {
  margin-top: 28px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) 64px;
  align-items: center;
  gap: 10px;
  padding: 28px;
  background: rgba(5,4,9,.86);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), visibility .25s var(--ease);
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox figure {
  margin: 0 auto;
  max-width: min(880px, 76vw);
  max-height: 88svh;
  color: var(--white);
}

.lightbox img {
  max-height: 78svh;
  width: auto;
  margin: 0 auto;
  object-fit: contain;
  box-shadow: 0 34px 120px rgba(0,0,0,.5);
}

.lightbox figcaption {
  margin-top: 12px;
  font-weight: 900;
  text-align: center;
}

.lightbox-close,
.lightbox-nav {
  border: 1px solid rgba(255,255,255,.28);
  color: var(--white);
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  transition: background .22s var(--ease), transform .22s var(--ease);
}

.lightbox-close {
  position: absolute;
  right: 22px;
  top: 22px;
  width: 46px;
  height: 46px;
  font-size: 30px;
}

.lightbox-nav {
  width: 52px;
  height: 52px;
  font-size: 42px;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  background: var(--orange);
  color: var(--ink);
  transform: scale(1.05);
}


@media (max-width: 1100px) {
  .becoming-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(280px, 1fr) minmax(320px, .9fr);
  }

  .hero-upload {
    position: absolute;
    right: clamp(18px, 4vw, 46px);
    bottom: 24px;
    width: min(360px, 38vw);
  }

  .art-frame-main {
    width: min(56%, 330px);
  }

  .art-frame-side {
    width: min(45%, 270px);
  }

  .pricing-board {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .process-line {
    left: 34px;
    right: auto;
    top: 0;
    width: 3px;
    height: 100%;
  }

  .process-line span {
    width: 100%;
    height: 0;
  }

  .process-step {
    min-height: auto;
    padding: 22px 22px 22px 78px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 64px;
  }

  .cursor-shell {
    display: none;
  }

  .site-header {
    inset: 0 0 auto 0;
    height: var(--header-h);
    border-radius: 0 0 22px 22px;
    padding-inline: 14px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: calc(var(--header-h) + 10px);
    display: grid;
    gap: 6px;
    padding: 16px;
    background: rgba(9,8,18,.94);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 22px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .2s var(--ease), visibility .2s var(--ease), transform .2s var(--ease);
  }

  body.nav-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .hero {
    height: auto;
    max-height: none;
    min-height: 100svh;
    overflow: hidden;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100svh;
    padding: calc(var(--header-h) + 26px) 18px 34px;
  }

  .hero-title {
    font-size: clamp(48px, 14vw, 78px);
    max-width: 10ch;
  }

  .hero-art {
    order: 2;
    min-height: 520px;
  }

  .hero-upload {
    order: 3;
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    transform: none;
  }

  .art-frame-main {
    left: 0;
    width: 56%;
  }

  .art-frame-side {
    right: 0;
    width: 49%;
  }

  .manifesto-grid,
  .transform-stage,
  .commission-shell {
    grid-template-columns: 1fr;
  }

  .commission-copy {
    position: static;
  }

  .becoming-wall,
  .gallery-grid,
  .notes-card ul,
  .testimonial-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.big,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid {
    grid-auto-rows: minmax(260px, auto);
  }

  .transform-panel {
    min-height: 360px;
  }

  .paint-route {
    width: 90vw;
    transform: translate(-50%, -50%) rotate(80deg);
    opacity: .56;
  }

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

  .lightbox {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .lightbox-prev {
    left: 14px;
  }

  .lightbox-next {
    right: 14px;
  }

  .lightbox figure {
    max-width: 92vw;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding-inline: 16px;
  }

  .hero-art {
    min-height: 430px;
  }

  .hero-scribble {
    width: 96%;
    left: 0;
  }

  .color-tile {
    width: 40px;
    height: 58px;
  }

  .section-head h2,
  .statement-block h2,
  .split-intro h2,
  .notes-card h2,
  .commission-copy h2,
  .final-cta h2 {
    font-size: clamp(36px, 13vw, 58px);
  }

  .commission-form {
    box-shadow: 7px 7px 0 var(--ink);
  }
}

@media (hover: none) and (pointer: coarse) {
  .cursor-shell {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }

  .cursor-shell {
    display: none;
  }
}


/* v6 refinement: more breathing room, gentler headline tracking, and bento asymmetry. */
body::before {
  opacity: .18;
}

.hero-title {
  letter-spacing: -.045em;
  max-width: 10.8ch;
}

.section-head h2,
.statement-block h2,
.split-intro h2,
.notes-card h2,
.commission-copy h2,
.final-cta h2 {
  letter-spacing: -.034em;
}

.hero-scribble {
  opacity: .78;
  width: 68%;
}

.color-tile {
  opacity: .64;
}

.tile-b {
  opacity: .48;
}

.section {
  padding-top: clamp(92px, 11vw, 164px);
  padding-bottom: clamp(92px, 11vw, 164px);
}

.section-head {
  margin-bottom: clamp(42px, 6vw, 78px);
}

.bento-wall {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(118px, auto);
  gap: clamp(16px, 1.8vw, 24px);
  max-width: 1180px;
}

.bento-wall .become-chip {
  min-height: auto;
  padding: clamp(20px, 2vw, 30px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-wall .become-chip strong {
  max-width: 14ch;
  margin-top: clamp(24px, 4vw, 56px);
  font-size: clamp(24px, 2vw, 38px);
  letter-spacing: -.025em;
}

.bento-wall .chip-large {
  grid-column: 1 / 6;
  grid-row: 1 / 3;
}

.bento-wall .chip-wide:nth-child(2) {
  grid-column: 6 / 10;
  grid-row: 1 / 2;
}

.bento-wall .chip-tall {
  grid-column: 10 / 13;
  grid-row: 1 / 3;
}

.bento-wall .chip-wide:nth-child(4) {
  grid-column: 6 / 10;
  grid-row: 2 / 3;
}

.bento-wall .chip-small {
  grid-column: 1 / 4;
  grid-row: 3 / 4;
}

.bento-wall .chip-wide-low {
  grid-column: 4 / 9;
  grid-row: 3 / 4;
}

.bento-wall .chip-medium {
  grid-column: 9 / 13;
  grid-row: 3 / 4;
}

.commission-form {
  gap: 20px;
}

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

@media (max-width: 1100px) {
  .bento-wall {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .bento-wall .chip-large {
    grid-column: 1 / 4;
    grid-row: span 2;
  }

  .bento-wall .chip-wide:nth-child(2) {
    grid-column: 4 / 7;
    grid-row: span 1;
  }

  .bento-wall .chip-tall {
    grid-column: 4 / 7;
    grid-row: span 1;
  }

  .bento-wall .chip-wide:nth-child(4),
  .bento-wall .chip-wide-low {
    grid-column: span 3;
    grid-row: span 1;
  }

  .bento-wall .chip-small,
  .bento-wall .chip-medium {
    grid-column: span 3;
    grid-row: span 1;
  }
}

@media (max-width: 900px) {
  .section {
    padding-top: clamp(70px, 13vw, 104px);
    padding-bottom: clamp(70px, 13vw, 104px);
  }

  .bento-wall,
  .becoming-wall {
    grid-template-columns: 1fr;
  }

  .bento-wall .become-chip,
  .bento-wall .chip-large,
  .bento-wall .chip-wide:nth-child(2),
  .bento-wall .chip-tall,
  .bento-wall .chip-wide:nth-child(4),
  .bento-wall .chip-small,
  .bento-wall .chip-wide-low,
  .bento-wall .chip-medium {
    grid-column: auto;
    grid-row: auto;
    min-height: 190px;
  }
}

@media (max-width: 520px) {
  .hero-title {
    letter-spacing: -.036em;
  }

  .section-head h2,
  .statement-block h2,
  .split-intro h2,
  .notes-card h2,
  .commission-copy h2,
  .final-cta h2 {
    letter-spacing: -.026em;
  }
}

/* v7 refinement: more horizontal bento rhythm. It keeps the irregular studio feeling, but spreads the wall across the canvas instead of leaning left. */
.bento-wall {
  width: min(100%, 1540px);
  max-width: 1540px;
  margin-inline: auto;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(124px, 8.2vw, 150px);
  gap: clamp(16px, 1.45vw, 24px);
}

.bento-wall .become-chip {
  min-height: 0;
  padding: clamp(20px, 1.75vw, 30px);
}

.bento-wall .become-chip strong {
  max-width: 12.8ch;
  margin-top: clamp(18px, 2.2vw, 36px);
  font-size: clamp(23px, 1.72vw, 34px);
  line-height: .92;
}

.bento-wall .chip-large {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.bento-wall .chip-wide:nth-child(2) {
  grid-column: 5 / 8;
  grid-row: 1 / 2;
}

.bento-wall .chip-tall {
  grid-column: 8 / 11;
  grid-row: 1 / 2;
}

.bento-wall .chip-wide:nth-child(4) {
  grid-column: 11 / 13;
  grid-row: 1 / 2;
}

.bento-wall .chip-small {
  grid-column: 5 / 7;
  grid-row: 2 / 3;
}

.bento-wall .chip-wide-low {
  grid-column: 7 / 10;
  grid-row: 2 / 3;
}

.bento-wall .chip-medium {
  grid-column: 10 / 13;
  grid-row: 2 / 3;
}

.bento-wall .chip-wide:nth-child(4) strong,
.bento-wall .chip-small strong {
  max-width: 10ch;
  font-size: clamp(21px, 1.45vw, 28px);
}

@media (max-width: 1180px) {
  .bento-wall {
    width: min(100%, 1040px);
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-auto-rows: minmax(132px, auto);
  }

  .bento-wall .chip-large {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
  }

  .bento-wall .chip-wide:nth-child(2) {
    grid-column: 5 / 9;
    grid-row: 1 / 2;
  }

  .bento-wall .chip-tall {
    grid-column: 5 / 7;
    grid-row: 2 / 3;
  }

  .bento-wall .chip-wide:nth-child(4) {
    grid-column: 7 / 9;
    grid-row: 2 / 3;
  }

  .bento-wall .chip-small {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }

  .bento-wall .chip-wide-low {
    grid-column: 3 / 6;
    grid-row: 3 / 4;
  }

  .bento-wall .chip-medium {
    grid-column: 6 / 9;
    grid-row: 3 / 4;
  }
}

@media (max-width: 900px) {
  .bento-wall,
  .becoming-wall {
    width: 100%;
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .bento-wall .become-chip,
  .bento-wall .chip-large,
  .bento-wall .chip-wide:nth-child(2),
  .bento-wall .chip-tall,
  .bento-wall .chip-wide:nth-child(4),
  .bento-wall .chip-small,
  .bento-wall .chip-wide-low,
  .bento-wall .chip-medium {
    grid-column: auto;
    grid-row: auto;
    min-height: 184px;
  }
}

/* v8 refinement: master-detail FAQ, cleaner commission form, and stable horizontal bento. */
.bento-wall {
  width: min(100%, 1460px);
  max-width: 1460px;
  grid-template-columns: repeat(14, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(196px, 13.4vw, 250px));
  grid-auto-rows: clamp(196px, 13.4vw, 250px);
  gap: clamp(18px, 1.45vw, 26px);
  align-items: stretch;
}

.bento-wall .become-chip {
  min-height: 0;
  padding: clamp(22px, 1.8vw, 32px);
  overflow: hidden;
}

.bento-wall .become-chip strong {
  max-width: 13.4ch;
  margin-top: 0;
  font-size: clamp(24px, 1.86vw, 34px);
  line-height: .94;
  letter-spacing: -.018em;
}

.bento-wall .chip-large {
  grid-column: 1 / 5;
  grid-row: 1 / 3;
}

.bento-wall .chip-wide:nth-child(2) {
  grid-column: 5 / 8;
  grid-row: 1 / 2;
}

.bento-wall .chip-tall {
  grid-column: 8 / 11;
  grid-row: 1 / 2;
}

.bento-wall .chip-wide:nth-child(4) {
  grid-column: 11 / 15;
  grid-row: 1 / 2;
}

.bento-wall .chip-small {
  grid-column: 5 / 7;
  grid-row: 2 / 3;
}

.bento-wall .chip-wide-low {
  grid-column: 7 / 11;
  grid-row: 2 / 3;
}

.bento-wall .chip-medium {
  grid-column: 11 / 15;
  grid-row: 2 / 3;
}

.bento-wall .chip-wide:nth-child(4) strong,
.bento-wall .chip-small strong {
  max-width: 11.5ch;
  font-size: clamp(23px, 1.72vw, 31px);
}

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

.faq {
  min-height: 100svh;
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(330px, .9fr) minmax(420px, 1.1fr);
  gap: clamp(38px, 7vw, 128px);
  align-items: start;
}

.faq-copy .section-head {
  margin-bottom: clamp(34px, 4vw, 58px);
}

.faq-list {
  max-width: none;
  gap: 12px;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 20px 22px;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  background: rgba(255,255,255,.055);
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition: border-color .22s var(--ease), background .22s var(--ease), transform .22s var(--ease);
}

.faq-question:hover,
.faq-question:focus-visible,
.faq-question.is-active {
  border-color: rgba(31,199,212,.68);
  background: rgba(31,199,212,.12);
}

.faq-question.is-active {
  box-shadow: 0 0 0 2px rgba(31,199,212,.16);
}

.faq-question i {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  font-style: normal;
  line-height: 1;
  transition: transform .22s var(--ease), background .22s var(--ease);
}

.faq-question.is-active i {
  transform: rotate(45deg);
  background: var(--orange);
}

.faq-answer-panel {
  position: sticky;
  top: calc(var(--header-h) + 74px);
  min-height: clamp(360px, 48svh, 520px);
  padding: clamp(26px, 3.4vw, 54px);
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255,106,0,.88), rgba(231,55,145,.82) 46%, rgba(31,199,212,.86)),
    var(--orange);
  border: 2px solid var(--white);
  box-shadow: 16px 16px 0 rgba(255,255,255,.08);
  overflow: hidden;
}

.faq-answer-panel::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -18%;
  width: 44%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}

.faq-answer-panel .micro-label,
.faq-answer-panel h3,
.faq-answer-panel p {
  position: relative;
  z-index: 1;
}

.faq-answer-panel .micro-label {
  color: rgba(9,8,18,.74);
}

.faq-answer-panel h3 {
  max-width: 10ch;
  margin: 42px 0 24px;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 80px);
  line-height: .9;
  letter-spacing: -.024em;
}

.faq-answer-panel p:not(.micro-label) {
  max-width: 56ch;
  margin: 0;
  font-size: clamp(18px, 1.45vw, 24px);
  line-height: 1.35;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .bento-wall {
    width: min(100%, 1040px);
    grid-template-columns: repeat(8, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(188px, auto));
    grid-auto-rows: minmax(188px, auto);
  }

  .bento-wall .chip-large {
    grid-column: 1 / 5;
    grid-row: 1 / 3;
  }

  .bento-wall .chip-wide:nth-child(2) {
    grid-column: 5 / 9;
    grid-row: 1 / 2;
  }

  .bento-wall .chip-tall {
    grid-column: 5 / 7;
    grid-row: 2 / 3;
  }

  .bento-wall .chip-wide:nth-child(4) {
    grid-column: 7 / 9;
    grid-row: 2 / 3;
  }

  .bento-wall .chip-small {
    grid-column: 1 / 3;
    grid-row: 3 / 4;
  }

  .bento-wall .chip-wide-low {
    grid-column: 3 / 6;
    grid-row: 3 / 4;
  }

  .bento-wall .chip-medium {
    grid-column: 6 / 9;
    grid-row: 3 / 4;
  }

  .faq-shell {
    grid-template-columns: 1fr;
  }

  .faq-answer-panel {
    position: relative;
    top: auto;
    min-height: 320px;
  }
}

@media (max-width: 900px) {
  .bento-wall,
  .becoming-wall {
    width: 100%;
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
  }

  .bento-wall .become-chip,
  .bento-wall .chip-large,
  .bento-wall .chip-wide:nth-child(2),
  .bento-wall .chip-tall,
  .bento-wall .chip-wide:nth-child(4),
  .bento-wall .chip-small,
  .bento-wall .chip-wide-low,
  .bento-wall .chip-medium {
    grid-column: auto;
    grid-row: auto;
    min-height: 184px;
  }

  .faq-answer-panel h3 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    min-height: 64px;
    padding: 17px 18px;
  }
}


/* v13 requested-only refinements: FAQ layout preserved, checkout headline centered, and notes logic updated. */
.commission-copy h2,
.commission-copy .eyebrow,
.commission-copy p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.notes-card .notes-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 72px;
}

.notes-card .notes-list strong {
  display: block;
  color: var(--white);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.25;
}

.note-icon {
  display: grid;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--cyan);
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.notes-card .notes-list li:nth-child(2) .note-icon {
  background: var(--orange);
}

.notes-card .notes-list li:nth-child(3) .note-icon {
  background: var(--hot-pink);
}

.notes-card .notes-list li:nth-child(4) .note-icon {
  background: var(--green);
}

.notes-card .notes-list li:nth-child(5) .note-icon {
  background: var(--violet);
  color: var(--white);
}

.notes-card .notes-list li:nth-child(6) .note-icon {
  background: var(--cream);
}

@media (max-width: 640px) {
  .notes-card .notes-list li {
    min-height: 68px;
  }

  .note-icon {
    flex-basis: 36px;
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}


/* v14 final requested-only fixes: pricing headline centered, checkout copy restored, and mobile FAQ uses the existing answer card as an inline accordion panel. */
.pricing .section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.pricing .section-head .eyebrow,
.pricing .section-head h2,
.pricing .section-head p {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.commission-copy h2,
.commission-copy .eyebrow,
.commission-copy p {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 1180px) {
  .faq-list .faq-answer-panel {
    position: relative;
    top: auto;
    width: 100%;
    min-height: auto;
    margin: 0 0 12px;
    padding: clamp(24px, 6vw, 38px);
    box-shadow: 10px 10px 0 rgba(255,255,255,.08);
  }

  .faq-list .faq-answer-panel h3 {
    max-width: none;
    margin: 18px 0 16px;
    font-size: clamp(34px, 8.5vw, 56px);
    line-height: .94;
  }

  .faq-list .faq-answer-panel p:not(.micro-label) {
    max-width: 100%;
    font-size: clamp(16px, 4.4vw, 20px);
    line-height: 1.42;
  }
}
