:root {
  color-scheme: light;
  --bg: #f5f5f3;
  --panel: rgba(255, 255, 255, 0.74);
  --ink: #111111;
  --muted: #626262;
  --muted-strong: #414141;
  --muted-soft: #767672;
  --line: rgba(17, 17, 17, 0.11);
  --soft: rgba(17, 17, 17, 0.045);
  --focus: #000000;
  --error: #b42318;
  --positive: #28a745;
  --positive-border: rgba(40, 167, 69, 0.68);
  --positive-line: var(--positive-border);
  --positive-soft: rgba(40, 167, 69, 0.1);
  --positive-highlight: rgba(40, 167, 69, 0.055);
  --selected: rgba(255, 255, 255, 0.9);
  --surface: rgba(255, 255, 255, 0.58);
  --button-text: #ffffff;
  --placeholder: #8a8a85;
  --hover-line: rgba(17, 17, 17, 0.24);
  --panel-border: rgba(17, 17, 17, 0.075);
  --card-bg: rgba(255, 255, 255, 0.58);
  --card-base-shadow: 0 1px 0 rgba(255, 255, 255, 0.62);
  --card-hover-shadow: 0 16px 38px rgba(0, 0, 0, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.66);
  --logo-filter: none;
  --watermark-filter: none;
  --watermark-opacity: 0.032;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.065), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  --quote-shadow: 0 40px 110px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  --button-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  --button-hover-shadow: 0 16px 36px rgba(0, 0, 0, 0.16);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0b0b0c;
  --panel: rgba(25, 25, 27, 0.76);
  --ink: #f2f2f2;
  --muted: #a7a7a7;
  --muted-strong: #d2d2d2;
  --muted-soft: #8e8e8e;
  --line: rgba(242, 242, 242, 0.1);
  --soft: rgba(242, 242, 242, 0.055);
  --focus: #f2f2f2;
  --selected: rgba(34, 34, 36, 0.92);
  --surface: rgba(255, 255, 255, 0.055);
  --button-text: #0e0e0e;
  --placeholder: #777777;
  --hover-line: rgba(242, 242, 242, 0.22);
  --panel-border: rgba(242, 242, 242, 0.09);
  --card-bg: rgba(255, 255, 255, 0.052);
  --card-base-shadow: 0 1px 0 rgba(255, 255, 255, 0.035);
  --card-hover-shadow: 0 16px 36px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  --logo-filter: invert(1);
  --watermark-filter: invert(1);
  --watermark-opacity: 0.018;
  --shadow: 0 22px 58px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  --quote-shadow: 0 30px 78px rgba(0, 0, 0, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  --button-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  --button-hover-shadow: 0 18px 42px rgba(0, 0, 0, 0.4);
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes system-start-outline {
  0% {
    opacity: 0;
    stroke-dashoffset: 1;
  }

  5% {
    opacity: 1;
    stroke-dashoffset: 1;
  }

  56% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  91% {
    opacity: 1;
    stroke-dashoffset: 0;
  }

  100% {
    opacity: 0;
    stroke-dashoffset: 0;
  }
}

@keyframes form-ready-glow {
  0%,
  100% {
    box-shadow: var(--shadow);
  }

  48% {
    box-shadow:
      0 24px 62px rgba(40, 167, 69, 0.12),
      inset 0 0 0 1px rgba(40, 167, 69, 0.18);
  }
}

@keyframes field-error-attention {
  0%,
  100% {
    border-color: var(--error);
    box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.055), inset 0 0 0 1px var(--error);
  }

  48% {
    border-color: var(--error);
    box-shadow: 0 0 0 5px rgba(180, 35, 24, 0.09), inset 0 0 0 1px var(--error);
  }
}

* {
  box-sizing: border-box;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: auto;
}

body {
  margin: 0;
  max-width: 100%;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

[hidden] {
  display: none !important;
}

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

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 30;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--button-text);
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

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

.site-header,
.site-footer,
.app {
  width: min(1120px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
}

.brand-link {
  display: inline-flex;
  width: 72px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  animation: reveal-up 280ms var(--ease-out) both;
}

.brand-link:focus-visible,
.theme-toggle:focus-visible,
.footer-icon:focus-visible,
.email-button:focus-visible,
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.choice-row label:focus-within {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.brand-logo {
  display: block;
  width: 72px;
  height: 32px;
  filter: var(--logo-filter);
  object-fit: contain;
  object-position: center;
}

button.theme-toggle {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 32px;
  min-width: 0;
  height: 32px;
  min-height: 0;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 280ms var(--ease-soft),
    border-color 260ms var(--ease-soft),
    box-shadow 260ms var(--ease-soft);
}

button.theme-toggle[aria-pressed="true"] {
  transform: rotate(180deg);
}

.half {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.half.black {
  background: #000;
}

.half.white {
  background: #fff;
}

html[data-theme="dark"] button.theme-toggle {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.app {
  padding: 42px 0 72px;
}

.intro {
  position: relative;
  isolation: isolate;
  margin-bottom: 30px;
  overflow: hidden;
}

.intro > :not(.hero-watermark) {
  position: relative;
  z-index: 1;
}

.hub-hero {
  position: relative;
  min-height: 348px;
  padding-top: 6px;
}

.hero-watermark {
  position: absolute;
  top: 58%;
  right: -300px;
  z-index: 0;
  width: min(62vw, 690px);
  max-width: none;
  filter: var(--watermark-filter);
  --hero-watermark-opacity: var(--watermark-opacity);
  opacity: var(--watermark-opacity);
  pointer-events: none;
  transform: translateY(-50%) rotate(0deg);
  user-select: none;
}

html.watermark-pending .hero-watermark {
  opacity: 0;
  visibility: hidden;
}

html.watermark-pending.watermark-measuring .hero-watermark,
html.watermark-pending.watermark-ready .hero-watermark {
  opacity: var(--hero-watermark-opacity);
  visibility: visible;
}

html.watermark-pending.watermark-measuring .hero-watermark {
  visibility: hidden;
}

.hero-copy {
  position: relative;
  z-index: 1;
  animation: reveal-up 320ms var(--ease-out) both;
}

.hero-copy.is-gsap-hero-intro {
  animation: none;
}


.eyebrow,
.step-kicker,
.panel-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.panel-label {
  color: rgba(255, 255, 255, 0.78);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 760px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 4.8rem;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-subline {
  max-width: 520px;
  margin-bottom: 6px;
  color: var(--muted-strong);
  font-size: 0.95rem;
  font-weight: 720;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
}

.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-benefits li {
  min-height: 32px;
  padding: 8px 10px;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 780;
  line-height: 1.25;
}

.hero-cta,
.email-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--positive);
  border-radius: 14px;
  padding: 0 22px;
  background: var(--positive);
  color: #ffffff;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
  box-shadow: var(--button-shadow);
  transition:
    transform 200ms var(--ease-out),
    background 200ms var(--ease-out),
    color 200ms var(--ease-out),
    box-shadow 200ms var(--ease-out),
    border-color 200ms var(--ease-out);
}

.email-button:not(.button--cta) {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--button-text);
  box-shadow: var(--button-shadow);
}

.hero-cta {
  border-color: var(--positive);
  background: var(--positive);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(40, 167, 69, 0.22);
}

.hero-cta:hover,
.email-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--button-hover-shadow);
}

.hero-cta--secondary {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--button-text);
  box-shadow: var(--button-shadow);
}

.selector,
.request-panel,
.quote-panel {
  position: relative;
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px) saturate(135%);
}

.section-start-outline {
  position: absolute;
  inset: -9px;
  z-index: 2;
  width: calc(100% + 18px);
  height: calc(100% + 18px);
  overflow: visible;
  pointer-events: none;
}

.section-start-outline rect {
  fill: none;
  opacity: 0;
  stroke: var(--positive-line);
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  vector-effect: non-scaling-stroke;
}

.perimeter-target.is-guided > .section-start-outline rect,
.quick-form.is-guided > .form-start-outline rect,
.quick-form.is-sent > .form-start-outline rect {
  animation: system-start-outline 2850ms var(--ease-soft) both;
}

.selector {
  padding: 30px;
}

.section-heading {
  display: block;
  margin-bottom: 18px;
}

.section-heading > div {
  display: grid;
  gap: 5px;
  justify-items: start;
  min-width: 0;
  text-align: left;
}

.section-heading .step-kicker {
  margin-bottom: 0;
}

.section-heading h2,
.request-copy h2,
.route-note h2 {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-heading__description {
  max-width: none;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
  text-align: left;
  white-space: nowrap;
}

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

.path-card {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 312px;
  flex-direction: column;
  padding: 20px;
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  background: var(--card-bg);
  box-shadow: var(--card-base-shadow);
  transition:
    transform 860ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 860ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 860ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 860ms cubic-bezier(0.22, 1, 0.36, 1),
    background 860ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 860ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.path-card:hover {
  border-color: var(--hover-line);
  box-shadow: var(--card-hover-shadow);
  transform: scale(1.01);
}

.path-card:focus-within {
  border-color: var(--hover-line);
  box-shadow: var(--card-hover-shadow);
}

.path-card--accent {
  border-color: var(--positive-border);
  box-shadow: inset 0 0 0 1px var(--positive-soft), 0 12px 26px var(--positive-highlight);
}

.path-card--accent:hover,
.path-card--accent:focus-within {
  border-color: var(--positive-border);
  box-shadow: inset 0 0 0 1px var(--positive-soft), var(--card-hover-shadow);
}

.path-card__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  min-width: 74px;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border: 1px solid var(--positive-border);
  border-radius: 999px;
  background: var(--panel);
  color: var(--positive);
  font-size: 0.64rem;
  font-weight: 750;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(10px) saturate(125%);
}

.path-card > :not(.path-card__badge) {
  position: relative;
  z-index: 1;
}

.path-card__badge {
  z-index: 2;
}

.path-card__index {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.path-card h3 {
  margin: auto 0 0;
  color: var(--ink);
  font-size: 1.22rem;
  font-weight: 760;
  line-height: 1.14;
}

.path-card p {
  margin: 14px 0 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.48;
}

.path-card__cta {
  width: 100%;
  margin-top: auto;
  padding-right: 14px;
  padding-left: 14px;
}

.path-microcopy {
  max-width: 760px;
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.45;
  text-align: center;
}

.route-note {
  display: grid;
  grid-template-columns: minmax(220px, 340px) minmax(0, 1fr);
  gap: 28px 42px;
  align-items: center;
  margin: 30px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.route-list {
  display: grid;
  gap: 10px;
  align-self: center;
}

.route-list p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 650;
  line-height: 1.58;
}

.route-list strong {
  color: var(--ink);
  font-weight: 780;
}

.route-list span::before {
  content: " — ";
}

.workspace {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.artist-guides {
  display: grid;
  grid-template-columns: minmax(280px, 390px) minmax(0, 1fr);
  gap: 16px 32px;
  align-items: center;
  margin: 30px 0 0;
  padding: 18px 20px;
  border: 1px solid var(--panel-border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--card-base-shadow);
}

.artist-guides h2 {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  text-transform: uppercase;
}

.artist-guides__list {
  display: grid;
  gap: 8px;
  align-self: center;
  justify-items: center;
  text-align: center;
}

.artist-guide-link {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 760;
  line-height: 1.45;
  text-decoration: underline;
  text-decoration-color: var(--positive);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  transition:
    color 180ms var(--ease-out),
    text-decoration-color 180ms var(--ease-out);
}

.artist-guide-link:hover {
  color: var(--muted-strong);
  text-decoration-color: currentColor;
}

.request-copy {
  --request-copy-column: 318px;
  position: sticky;
  top: 24px;
  display: grid;
  align-content: start;
  padding: 26px 28px 28px;
  box-shadow: var(--quote-shadow);
}

.request-copy__inner {
  width: min(100%, var(--request-copy-column));
  justify-self: center;
}

.request-copy h2 {
  margin-bottom: 13px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 0.98;
  text-transform: none;
}

.request-copy__text {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 690;
  line-height: 1.48;
}

.quote-topline {
  display: inline-flex;
  justify-self: start;
  max-width: 100%;
  min-height: 30px;
  align-items: center;
  margin: 0 0 17px;
  padding: 7px 10px;
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.advice {
  width: 100%;
  margin: 20px 0 0;
  padding: 16px 17px 17px;
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--surface);
}

.advice h3 {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.advice p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.83rem;
  font-weight: 620;
  line-height: 1.5;
}

.quick-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  transition:
    border-color 320ms var(--ease-out),
    box-shadow 320ms var(--ease-out),
    transform 320ms var(--ease-out);
}

.quick-form.is-filled {
  border-color: rgba(40, 167, 69, 0.28);
}

.quick-form.is-ready {
  animation: form-ready-glow 1200ms var(--ease-soft) both;
}

.quick-form.is-sent {
  border-color: var(--positive-border);
}

.field {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 0;
}

.field span,
.fieldset legend {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.fieldset legend {
  display: block;
  width: 100%;
  max-width: 100%;
  font-size: clamp(0.66rem, 2.6vw, 0.78rem);
  white-space: nowrap;
}

.field input:not([type="radio"]),
.field select,
.field textarea {
  display: block;
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 14px;
  background: var(--surface);
  color: var(--ink);
  line-height: 1.45;
  transition:
    border-color 240ms var(--ease-out),
    background 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out);
}

.field select {
  appearance: none;
  padding-right: 44px;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 22px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--muted) 50%, transparent 50%) calc(100% - 16px) 50% / 6px 6px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    var(--surface);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
}

.field input:not([type="radio"])::placeholder,
.field textarea::placeholder {
  color: var(--placeholder);
}

.field input:not([type="radio"]):hover,
.field select:hover,
.field textarea:hover {
  border-color: var(--hover-line);
}

.field:focus-within input:not([type="radio"]),
.field:focus-within select,
.field:focus-within textarea {
  border-color: var(--positive-border);
  background: var(--panel);
  box-shadow:
    0 0 0 4px rgba(40, 167, 69, 0.08),
    inset 0 0 0 1px rgba(40, 167, 69, 0.14);
}

.field:focus-within select {
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 22px) 50% / 6px 6px no-repeat,
    linear-gradient(135deg, var(--muted) 50%, transparent 50%) calc(100% - 16px) 50% / 6px 6px no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    var(--panel);
}

.field.has-error input:not([type="radio"]),
.field.has-error select,
.field.has-error textarea {
  border-color: var(--error);
  box-shadow: inset 0 0 0 1px var(--error);
}

.field input:not([type="radio"]).needs-attention,
.field select.needs-attention,
.field textarea.needs-attention {
  border-color: var(--error);
  animation: field-error-attention 1450ms ease-in-out both;
}

.field-error {
  display: block;
  max-height: 0;
  margin: 0;
  color: var(--error);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.35;
  opacity: 0;
  overflow: hidden;
  text-transform: none;
  transform: translateY(-2px);
  transition:
    opacity 220ms var(--ease-out),
    transform 220ms var(--ease-out),
    max-height 220ms var(--ease-out),
    margin-top 220ms var(--ease-out);
}

.field-error.is-visible {
  max-height: 72px;
  margin-top: 7px;
  opacity: 1;
  transform: translateY(0);
}

.fieldset {
  border: 0;
  padding: 0;
}

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

.choice-row label {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 13px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--surface);
  color: var(--ink);
  cursor: pointer;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    border-color 260ms var(--ease-out),
    background 260ms var(--ease-out),
    box-shadow 260ms var(--ease-out),
    transform 260ms var(--ease-out);
}

.choice-row label:hover {
  border-color: var(--hover-line);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    0 10px 24px rgba(0, 0, 0, 0.12);
}

.choice-row label:has(input:checked) {
  border-color: var(--positive-border);
  background:
    linear-gradient(180deg, rgba(40, 167, 69, 0.12), rgba(40, 167, 69, 0.04)),
    var(--surface);
  box-shadow:
    inset 0 0 0 1px rgba(40, 167, 69, 0.18),
    0 14px 34px rgba(40, 167, 69, 0.08);
}

.fieldset.has-error .choice-row label {
  border-color: rgba(180, 35, 24, 0.48);
  box-shadow: inset 0 0 0 1px rgba(180, 35, 24, 0.28);
}

.fieldset.needs-attention .choice-row label {
  border-color: var(--error);
  animation: field-error-attention 1450ms ease-in-out both;
}

.choice-row input {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 0;
  border: 1px solid var(--hover-line);
  border-radius: 50%;
  appearance: none;
  background: transparent;
  place-content: center;
}

.choice-row input::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--positive);
  content: "";
  transform: scale(0);
  transition: transform 220ms var(--ease-out);
}

.choice-row input:checked {
  border-color: var(--positive);
}

.choice-row input:checked::before {
  transform: scale(1);
}

.button--cta {
  width: 100%;
  border-color: var(--positive);
  background: var(--positive);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(40, 167, 69, 0.22);
}

.button--cta:disabled {
  cursor: wait;
  opacity: 0.62;
  transform: none;
}

.form-micro,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.45;
}

.form-status {
  padding: 13px 14px;
  border: 1px solid var(--positive-border);
  border-radius: 12px;
  background: var(--positive-highlight);
  color: var(--ink);
}

.form-status[data-state="error"] {
  border-color: rgba(180, 35, 24, 0.48);
  background: rgba(180, 35, 24, 0.08);
}

.site-footer {
  padding: 30px 0 46px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  line-height: 1.45;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

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

.site-footer__legal {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 620;
  letter-spacing: 0.01em;
}

.site-footer__legal p + p {
  margin-top: 4px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 0;
}

.footer-icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    var(--surface);
  color: var(--muted-strong);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    transform 240ms var(--ease-out),
    border-color 240ms var(--ease-out),
    color 240ms var(--ease-out),
    box-shadow 240ms var(--ease-out),
    background 240ms var(--ease-out);
}

.footer-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.footer-icon:hover {
  border-color: var(--positive-border);
  background:
    linear-gradient(180deg, rgba(40, 167, 69, 0.11), rgba(40, 167, 69, 0.035)),
    var(--surface);
  color: var(--ink);
  box-shadow:
    inset 0 0 0 1px rgba(40, 167, 69, 0.14),
    0 12px 30px rgba(40, 167, 69, 0.08);
  transform: translateY(-1px);
}

@media (max-width: 920px) {
  .site-header,
  .site-footer,
  .app {
    width: min(100% - 24px, 680px);
  }

  .app {
    padding: 30px 0 42px;
  }

  .workspace,
  .route-note,
  .artist-guides {
    grid-template-columns: 1fr;
  }

  .hub-hero {
    min-height: 0;
  }

  h1 {
    font-size: 3.7rem;
  }

  .selector,
  .request-panel,
  .quote-panel {
    padding: 22px;
  }

  .intro {
    margin-bottom: 26px;
  }

  .hero-actions {
    margin-top: 18px;
  }

  .hero-benefits {
    gap: 7px;
    margin-top: 14px;
  }

  .hero-benefits li {
    min-height: 30px;
    padding: 7px 9px;
    font-size: 0.72rem;
  }

  .request-copy {
    position: static;
  }

  .section-heading__description {
    max-width: none;
    margin-top: 9px;
    text-align: left;
    white-space: normal;
  }

  .path-grid {
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .path-card {
    min-height: 208px;
    padding: 17px;
  }

  .path-card__badge {
    top: 15px;
    right: 15px;
    min-width: 68px;
    min-height: 22px;
    padding: 4px 8px;
    font-size: 0.6rem;
  }

  .path-card__index {
    font-size: 0.68rem;
  }

  .path-card h3 {
    margin: 24px 0 0;
    font-size: 1.1rem;
    line-height: 1.12;
  }

  .path-card p {
    margin: 9px 0 14px;
    font-size: 0.86rem;
    line-height: 1.4;
  }

  .path-card__cta {
    min-height: 46px;
    padding-right: 12px;
    padding-left: 12px;
    border-radius: 13px;
  }

  .hero-actions,
  .hero-cta {
    width: 100%;
  }

  .hero-cta,
  .email-button {
    min-height: 52px;
  }

  .path-card .path-card__cta {
    min-height: 46px;
  }

  .route-note {
    gap: 12px;
    margin: 24px 0;
    padding: 19px 0;
  }

  .route-list {
    gap: 12px;
  }

  .artist-guides {
    gap: 10px;
    margin-top: 24px;
    padding: 17px;
  }

  .artist-guides h2,
  .artist-guides__list {
    text-align: left;
  }

  .artist-guides__list {
    justify-items: start;
  }

  .artist-guide-link {
    justify-self: start;
    text-align: left;
  }

  .route-list p {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .route-list span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
  }

  .route-list span::before {
    content: "";
  }

  .hero-watermark {
    top: 58%;
    right: -150px;
    width: 420px;
    --hero-watermark-opacity: calc(var(--watermark-opacity) * 0.86);
    opacity: calc(var(--watermark-opacity) * 0.86);
  }
}

@media (min-width: 861px) and (max-width: 920px) {
  .hero-watermark {
    top: 58%;
    right: -300px;
    width: min(62vw, 690px);
    --hero-watermark-opacity: var(--watermark-opacity);
    opacity: var(--watermark-opacity);
  }
}

@media (max-width: 860px) {
  .hero-watermark {
    top: 58%;
    right: -150px;
    width: 420px;
    --hero-watermark-opacity: calc(var(--watermark-opacity) * 0.86);
    opacity: calc(var(--watermark-opacity) * 0.86);
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
    line-height: 0.96;
  }

  .hero-subline {
    max-width: 94%;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .request-copy h2 {
    font-size: clamp(1.75rem, 8vw, 2.55rem);
  }

  .hero-watermark {
    display: block;
    top: 58%;
    right: -112px;
    width: min(72vw, 330px);
    --hero-watermark-opacity: calc(var(--watermark-opacity) * 0.7);
    opacity: calc(var(--watermark-opacity) * 0.7);
    transform: translateY(-50%) rotate(0deg);
  }

  .quick-form {
    gap: 13px;
  }

  .field input:not([type="radio"]),
  .field select {
    min-height: 49px;
    padding: 13px;
  }

  .field textarea {
    min-height: 112px;
    padding: 13px;
  }

  .choice-row label {
    min-height: 48px;
    padding: 12px 13px;
  }
}

@media (max-width: 480px) {
  .site-header,
  .site-footer,
  .app {
    width: calc(100% - 24px);
  }

  .site-header {
    padding-top: 22px;
  }

  .app {
    padding: 26px 0 18px;
  }

  .eyebrow,
  .step-kicker {
    margin-bottom: 8px;
    font-size: 0.72rem;
  }

  h1 {
    margin-bottom: 8px;
    font-size: 2.34rem;
    line-height: 0.98;
  }

  .hero-subline {
    margin-bottom: 0;
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .hero-actions {
    gap: 8px;
    margin-top: 16px;
  }

  .hero-cta {
    min-height: 48px;
    border-radius: 13px;
  }

  .hero-benefits {
    gap: 6px;
    margin-top: 12px;
  }

  .hero-benefits li {
    min-height: 28px;
    padding: 6px 8px;
    font-size: 0.68rem;
  }

  .selector,
  .request-panel,
  .quote-panel {
    padding: 18px;
  }

  .section-heading {
    margin-bottom: 17px;
  }

  .section-heading__description {
    margin-top: 7px;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .path-grid {
    gap: 10px;
  }

  .path-card {
    min-height: 198px;
    padding: 16px;
  }

  .path-card__badge {
    top: 14px;
    right: 14px;
    min-width: 62px;
    min-height: 21px;
    font-size: 0.58rem;
  }

  .path-card h3 {
    margin-top: 22px;
    font-size: 1.04rem;
  }

  .path-card p {
    margin: 8px 0 13px;
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .path-card .path-card__cta {
    min-height: 44px;
    font-size: 0.92rem;
  }

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

  .request-copy h2 {
    margin-bottom: 10px;
    font-size: 1.88rem;
  }

  .request-copy__text {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .quote-topline {
    min-height: 28px;
    margin-bottom: 14px;
    padding: 6px 9px;
    font-size: 0.76rem;
  }

  .advice {
    margin-top: 16px;
    padding: 14px;
  }

  .advice h3 {
    margin-bottom: 7px;
    font-size: 0.7rem;
  }

  .advice p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .quick-form {
    gap: 12px;
  }

  .field {
    gap: 7px;
  }

  .field span,
  .fieldset legend {
    font-size: 0.7rem;
  }

  .field input:not([type="radio"]),
  .field select {
    min-height: 47px;
    border-radius: 11px;
    padding: 12px;
  }

  .field textarea {
    min-height: 104px;
    border-radius: 11px;
    padding: 12px;
  }

  .choice-row label {
    min-height: 46px;
    border-radius: 11px;
    padding: 11px 12px;
  }

  .button--cta {
    min-height: 48px;
    border-radius: 13px;
  }

  .form-micro,
  .form-status {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .site-footer {
    padding-top: 12px;
    padding-bottom: 40px;
  }

  .footer-icon {
    width: 38px;
    height: 38px;
  }
}

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