
/* PulseLore Artist Station — self-contained base styles
   This file intentionally does NOT depend on /site-styles.css. */
:root {
  color-scheme: dark;
  --bg: #030712;
  --bg-2: #07111f;
  --panel: rgba(12, 21, 38, 0.82);
  --panel-strong: rgba(15, 25, 45, 0.95);
  --line: rgba(165, 190, 230, 0.18);
  --text: #f3f7ff;
  --muted: #98a8c3;
  --soft: #c8d4ea;
  --blue: #59a8ff;
  --cyan: #87ddff;
  --gold: #d8b86a;
  --pink: #ff6c9f;
  --ok: #70e6b0;
  --warn: #f7c75b;
  --danger: #ff7d7d;
  --radius: 14px;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--bg); scroll-behavior: smooth; }
body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(89, 168, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 86% 0%, rgba(216, 184, 106, 0.10), transparent 24rem),
    radial-gradient(circle at 50% 92%, rgba(135, 221, 255, 0.08), transparent 28rem),
    linear-gradient(180deg, #020613, var(--bg) 42%, #020715);
  font-family: inherit;
  line-height: 1.6;
  overflow-x: hidden;
}
body::before {
  position: fixed; inset: 0; z-index: -2; content: "";
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}
body::after {
  position: fixed; inset: -20%; z-index: -1; content: "";
  background:
    radial-gradient(circle at 35% 30%, rgba(89,168,255,.09), transparent 18rem),
    radial-gradient(circle at 70% 58%, rgba(255,108,159,.08), transparent 18rem);
  pointer-events: none;
}
img, video, iframe { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

.site-shell { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 20;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 16px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(3,7,18,.82);
  -webkit-backdrop-filter: blur(18px); backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--text); font-weight: 850; letter-spacing: .04em; text-transform: uppercase;
}
.brand-mark {
  display: grid; width: 34px; height: 34px; place-items: center;
  border: 1px solid rgba(135,221,255,.38); border-radius: 10px;
  color: var(--cyan); background: rgba(89,168,255,.12);
  box-shadow: 0 0 24px rgba(89,168,255,.14);
}
.nav { display: flex; align-items: center; justify-content: flex-end; flex-wrap: wrap; gap: 6px; }
.nav a, .nav span {
  display: inline-flex; align-items: center; min-height: 34px; padding: 0 11px;
  border-radius: 999px; color: var(--muted); font-size: 12px; font-weight: 800;
  letter-spacing: .06em; text-transform: uppercase;
}
.nav a:hover, .nav a:focus-visible { color: var(--text); outline: 0; background: rgba(255,255,255,.07); }

.kicker { color: var(--gold); font-size: 12px; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 20px; font-size: clamp(48px, 9vw, 104px); line-height: .9; letter-spacing: -.035em; }
h2 { margin-bottom: 16px; font-size: clamp(30px, 5vw, 56px); line-height: 1; letter-spacing: -.025em; }
h3 { margin-bottom: 8px; }
.lead { max-width: 720px; color: var(--soft); font-size: clamp(17px, 2.2vw, 22px); }
.muted, .card p, .panel p, li { color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.center { margin-inline: auto; text-align: center; }
.center-actions { justify-content: center; }

.button, button.button {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 46px; padding: 0 17px;
  border: 1px solid rgba(135,221,255,.36); border-radius: 12px;
  color: #04111d; font-weight: 850; cursor: pointer;
  background: linear-gradient(180deg, #a4e8ff, #4ea4ff);
  box-shadow: 0 14px 36px rgba(89,168,255,.18);
  transition: transform .18s ease, filter .18s ease, border-color .18s ease;
}
.button:hover, button.button:hover { transform: translateY(-1px); filter: brightness(1.05); }
.button.secondary { color: var(--soft); background: rgba(255,255,255,.045); }
.button.ghost { color: var(--soft); background: transparent; }
.button[aria-disabled="true"], .button:disabled { cursor: not-allowed; opacity: .5; }
.hidden { display: none !important; }

.section { padding: clamp(44px, 8vw, 88px) 0; border-top: 1px solid rgba(165,190,230,.12); }
.section-head { max-width: 760px; margin-bottom: 26px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 16px; }
.grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card, .panel {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.045), transparent), var(--panel);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.04);
}
.card { display: grid; align-content: start; gap: 10px; min-height: 220px; padding: 22px; }
.panel { padding: 24px; }
.status {
  display: inline-flex; width: fit-content; align-items: center; gap: 7px;
  padding: 5px 9px; border: 1px solid rgba(135,221,255,.24); border-radius: 999px;
  color: var(--cyan); font-size: 11px; font-weight: 850; letter-spacing: .08em;
  text-transform: uppercase; background: rgba(135,221,255,.07);
}
.status.warn { border-color: rgba(247,199,91,.28); color: var(--warn); background: rgba(247,199,91,.08); }

.form { display: grid; gap: 16px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
label { display: grid; gap: 7px; color: var(--soft); font-size: 14px; font-weight: 750; }
input, select, textarea {
  width: 100%; min-height: 46px; border: 1px solid rgba(165,190,230,.22);
  border-radius: 12px; padding: 12px 13px; color: var(--text); outline: 0;
  background: rgba(255,255,255,.045);
}
input:focus, select:focus, textarea:focus { border-color: rgba(135,221,255,.65); box-shadow: 0 0 0 3px rgba(89,168,255,.1); }
textarea { min-height: 130px; resize: vertical; }
select option { color: #07111f; background: #f4f7fb; }

.site-footer {
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding: 28px clamp(18px,4vw,56px); border-top: 1px solid var(--line);
  color: var(--muted); font-size: 13px; background: rgba(2,6,16,.7);
}
.site-footer a:hover { color: var(--text); }

@media (max-width: 900px) {
  .site-header { align-items: flex-start; }
  .grid, .grid.two, .form-grid { grid-template-columns: 1fr; }
  h1 { font-size: clamp(42px, 12vw, 76px); }
}
@media (max-width: 680px) {
  .site-shell { width: min(100% - 24px, 1180px); }
  .site-header { position: relative; flex-direction: column; padding: 14px 12px; }
  .nav { justify-content: flex-start; }
  .nav a { padding: 0 8px; font-size: 11px; }
  .site-footer { padding-inline: 16px; }
}

/* ===== Artist Station specific styles ===== */
.portfolio-station {
  background:
    linear-gradient(120deg, rgba(108, 154, 255, 0.13), transparent 28%),
    linear-gradient(240deg, rgba(216, 184, 106, 0.07), transparent 30%),
    linear-gradient(180deg, #030713, #071025 48%, #030713);
}

.portfolio-shell {
  width: min(1220px, calc(100% - 36px));
}

.portfolio-header {
  background: rgba(3, 7, 18, 0.9);
}

.portfolio-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
  min-height: 76vh;
  padding: clamp(48px, 9vw, 110px) 0;
}

.portfolio-hero h1 {
  max-width: 780px;
}

.dream-panel {
  position: relative;
  min-height: 460px;
  border: 1px solid rgba(165, 190, 230, 0.18);
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 7, 18, 0.05), rgba(3, 7, 18, 0.86)),
    radial-gradient(circle at 58% 28%, rgba(135, 221, 255, 0.22), transparent 18rem),
    url("../pulselore-radio-ashtray-hero-4k.jpg") center / cover;
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.48);
}

.dream-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, rgba(3, 7, 18, 0.78), transparent 56%),
    radial-gradient(circle at 70% 74%, rgba(216, 184, 106, 0.16), transparent 13rem);
}

.dream-frame {
  position: absolute;
  inset: auto 24px 24px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background: rgba(4, 9, 22, 0.62);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.dream-frame span {
  min-height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(135, 221, 255, 0.18);
  border-radius: 12px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.04);
}

.portfolio-empty {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.portfolio-empty code {
  color: var(--cyan);
}

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

.plan-card,
.template-card,
.request-card,
.preview-strip {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(12, 21, 38, 0.84);
  box-shadow: var(--shadow);
}

.plan-card,
.template-card {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
}

.plan-card.featured {
  border-color: rgba(216, 184, 106, 0.42);
  background:
    linear-gradient(180deg, rgba(216, 184, 106, 0.12), rgba(255, 255, 255, 0.018)),
    rgba(12, 21, 38, 0.9);
}

.price-note {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border: 1px solid rgba(216, 184, 106, 0.36);
  border-radius: 999px;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.plan-card ul {
  display: grid;
  gap: 7px;
  padding-left: 18px;
  margin: 8px 0;
}

.not-included {
  padding-top: 10px;
  border-top: 1px solid rgba(165, 190, 230, 0.14);
  font-size: 13px;
}

.editorial-templates {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.template-art {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(165, 190, 230, 0.16);
  border-radius: 20px;
  overflow: hidden;
  background:
    radial-gradient(circle at 40% 30%, rgba(135, 221, 255, 0.22), transparent 8rem),
    linear-gradient(135deg, rgba(89, 168, 255, 0.16), rgba(3, 7, 18, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 26px 90px rgba(0, 0, 0, 0.34);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.template-card {
  position: relative;
  grid-column: span 2;
  overflow: hidden;
  min-height: 100%;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.template-card:nth-child(1),
.template-card:nth-child(4) {
  grid-column: span 3;
}

.template-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(135, 221, 255, 0.09), transparent 42%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.template-card:hover {
  transform: translateY(-5px);
  border-color: rgba(135, 221, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.022)),
    rgba(12, 21, 38, 0.9);
}

.template-card:hover::before {
  opacity: 1;
}

.template-card:hover .template-art {
  transform: scale(1.012);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 34px 110px rgba(0, 0, 0, 0.44);
}

.template-art::before,
.template-art::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.template-art::before {
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin: 14px;
  border-radius: 14px;
  box-shadow: inset 0 0 34px rgba(0, 0, 0, 0.22);
}

.template-art::after {
  z-index: 3;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.42;
}

.editorial-red {
  background:
    radial-gradient(circle at 76% 21%, rgba(255, 224, 206, 0.24), transparent 9rem),
    radial-gradient(circle at 16% 75%, rgba(255, 42, 42, 0.24), transparent 9rem),
    linear-gradient(135deg, #170304, #670c12 48%, #0e0102);
}

.teal-grid {
  background:
    radial-gradient(circle at 58% 20%, rgba(155, 247, 255, 0.24), transparent 9rem),
    radial-gradient(circle at 18% 76%, rgba(68, 255, 206, 0.14), transparent 8rem),
    linear-gradient(135deg, #061419, #1c6874 48%, #041014);
}

.purple-product {
  background:
    radial-gradient(circle at 78% 20%, rgba(142, 96, 255, 0.4), transparent 9rem),
    radial-gradient(circle at 18% 80%, rgba(255, 255, 255, 0.12), transparent 8rem),
    linear-gradient(135deg, #05040d, #332186 50%, #090714);
}

.silver-editorial {
  background:
    radial-gradient(circle at 70% 16%, rgba(255, 255, 255, 0.22), transparent 9rem),
    radial-gradient(circle at 18% 72%, rgba(255, 255, 255, 0.12), transparent 8rem),
    linear-gradient(135deg, #080b10, #444a55 52%, #05070a);
}

.emerald-luxe {
  background:
    radial-gradient(circle at 70% 18%, rgba(238, 210, 128, 0.26), transparent 8rem),
    radial-gradient(circle at 16% 74%, rgba(38, 148, 94, 0.24), transparent 9rem),
    linear-gradient(135deg, #020e0a, #0d3a2b 54%, #020806);
}

.cinematic-artist {
  background:
    radial-gradient(circle at 72% 18%, rgba(135, 221, 255, 0.24), transparent 9rem),
    radial-gradient(circle at 18% 78%, rgba(104, 74, 255, 0.18), transparent 8rem),
    linear-gradient(135deg, #02040a, #09243b 48%, #050205);
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.preview-strip {
  margin-top: 18px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(10, 18, 34, 0.88);
}

.preview-map {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.preview-map span {
  padding: 8px 11px;
  border: 1px solid rgba(165, 190, 230, 0.16);
  border-radius: 999px;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.04);
  font-size: 12px;
  font-weight: 800;
}

.mock-sheet {
  position: absolute;
  inset: 14px;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.025) 48%, rgba(0, 0, 0, 0.2)),
    rgba(2, 5, 13, 0.24);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.mock-label {
  position: absolute;
  top: 18px;
  left: 20px;
  z-index: 4;
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mock-title {
  position: absolute;
  z-index: 1;
  top: 42px;
  left: 20px;
  max-width: calc(100% - 40px);
  color: rgba(255, 255, 255, 0.85);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4.9vw, 68px);
  font-weight: 800;
  line-height: 0.82;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.mock-title.split {
  font-family: Impact, "Arial Black", sans-serif;
  letter-spacing: 0;
  max-width: 58%;
}

.mock-photo {
  position: absolute;
  right: 24px;
  top: 92px;
  z-index: 2;
  width: min(32%, 148px);
  height: 42%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04) 58%, rgba(0, 0, 0, 0.22)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0 1px, transparent 1px 18px),
    rgba(0, 0, 0, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
}

.mock-photo::before,
.mock-photo::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.mock-photo::before {
  top: 16%;
  height: 9px;
}

.mock-photo::after {
  bottom: 18%;
  height: 7px;
  right: 34%;
}

.mock-photo.square {
  width: 30%;
  height: 34%;
  border-radius: 10px;
}

.mock-photo.wide {
  top: 86px;
  right: 22px;
  left: 22px;
  width: auto;
  height: 32%;
  border-radius: 10px;
}

.mock-line {
  position: absolute;
  z-index: 3;
  left: 22px;
  display: block;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.11));
}

.mock-line.long {
  bottom: 92px;
  width: 48%;
}

.mock-line.short {
  bottom: 68px;
  width: 32%;
  opacity: 0.7;
}

.mock-projects,
.mock-grid,
.mock-cards,
.mock-logos,
.mock-tracklist {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 10px;
}

.mock-projects {
  left: 22px;
  right: 22px;
  bottom: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.mock-projects span,
.mock-grid span,
.mock-cards span,
.mock-logos span,
.mock-tracklist span {
  display: block;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.055) 48%, rgba(0, 0, 0, 0.18)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 17px),
    rgba(0, 0, 0, 0.2);
}

.mock-grid {
  left: 22px;
  right: 22px;
  bottom: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.mock-grid span {
  min-height: 42px;
}

.mock-cards {
  left: 22px;
  right: 22px;
  bottom: 22px;
  grid-template-columns: repeat(3, 1fr);
}

.mock-cards span {
  min-height: 70px;
}

.mock-logos {
  left: 22px;
  right: 22px;
  bottom: 92px;
  grid-template-columns: repeat(4, 1fr);
}

.mock-logos span {
  min-height: 24px;
  border-radius: 999px;
}

.mock-tracklist {
  left: 22px;
  right: 22px;
  bottom: 96px;
  grid-template-columns: 1fr;
  gap: 7px;
}

.mock-tracklist span {
  min-height: 12px;
  border-radius: 999px;
}

.card-actions button.button {
  border: 1px solid rgba(165, 190, 230, 0.22);
  cursor: pointer;
}

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

.modal-open {
  overflow: hidden;
}

.template-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 22px;
}

.template-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(1, 4, 12, 0.78);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.template-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  max-height: min(760px, calc(100vh - 44px));
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(18px, 4vw, 34px);
  padding: clamp(18px, 4vw, 34px);
  border: 1px solid rgba(165, 190, 230, 0.22);
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 10%, rgba(135, 221, 255, 0.13), transparent 18rem),
    linear-gradient(180deg, rgba(18, 30, 54, 0.98), rgba(5, 10, 22, 0.98));
  box-shadow: 0 34px 140px rgba(0, 0, 0, 0.58);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(165, 190, 230, 0.2);
  border-radius: 999px;
  color: var(--soft);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.06);
}

.modal-art .template-art {
  min-height: clamp(420px, 62vh, 620px);
  transform: none !important;
}

.modal-art .mock-title {
  font-size: clamp(72px, 11vw, 142px);
}

.modal-copy {
  align-self: center;
  display: grid;
  gap: 14px;
  padding-right: 24px;
}

.modal-copy h2 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 0.92;
}

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

.flow-list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 0;
  list-style: none;
  counter-reset: flow;
}

.flow-list li {
  min-height: 64px;
  padding: 13px 14px;
  border: 1px solid rgba(165, 190, 230, 0.16);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(255, 255, 255, 0.025);
  color: var(--soft);
  font-weight: 750;
}

.flow-list li::before {
  counter-increment: flow;
  content: counter(flow, decimal-leading-zero);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  min-height: 22px;
  margin: 0 8px 6px 0;
  border: 1px solid rgba(135, 221, 255, 0.2);
  border-radius: 999px;
  color: var(--cyan);
  font-size: 11px;
  letter-spacing: 0.12em;
  background: rgba(135, 221, 255, 0.08);
}

.center-actions {
  justify-content: center;
}

.request-shell {
  padding: clamp(26px, 6vw, 64px) 0 90px;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.request-sidebar {
  position: sticky;
  top: 92px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(12, 21, 38, 0.74);
}

.progress-label {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--soft);
  font-weight: 800;
  margin-bottom: 10px;
}

.progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.08);
}

.progress-track span {
  display: block;
  width: 11.11%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  transition: width 180ms ease;
}

.step-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.step-list button {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  align-items: center;
  width: 100%;
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  background: transparent;
}

.step-list button.is-active {
  color: var(--text);
  border-color: rgba(135, 221, 255, 0.24);
  background: rgba(135, 221, 255, 0.08);
}

.request-card {
  padding: clamp(20px, 4vw, 34px);
  background:
    radial-gradient(circle at 90% 0%, rgba(135, 221, 255, 0.08), transparent 18rem),
    rgba(15, 25, 45, 0.92);
}

.request-step {
  display: none;
}

.request-step.is-active {
  display: block;
}

.request-step h2 {
  margin-bottom: 8px;
}

.step-copy {
  max-width: 760px;
  color: var(--muted);
  margin-bottom: 22px;
}

.request-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(165, 190, 230, 0.14);
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-note,
.field-note,
.error-text,
.submit-note {
  color: var(--muted);
  font-size: 13px;
}

.error-text {
  min-height: 20px;
  color: var(--danger);
  font-weight: 750;
}

.form-card {
  padding: 18px;
  border: 1px solid rgba(165, 190, 230, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

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

.choice-card {
  display: grid;
  gap: 9px;
  padding: 16px;
  border: 1px solid rgba(165, 190, 230, 0.18);
  border-radius: 14px;
  color: var(--soft);
  cursor: pointer;
  background: rgba(255, 255, 255, 0.035);
}

.choice-card input {
  width: 18px;
  min-height: auto;
}

.choice-card:has(input:checked) {
  border-color: rgba(135, 221, 255, 0.56);
  background: rgba(89, 168, 255, 0.12);
}

.field-group {
  display: grid;
  gap: 14px;
}

.hidden {
  display: none !important;
}

.review-summary {
  display: grid;
  gap: 12px;
}

.summary-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid rgba(165, 190, 230, 0.12);
}

.summary-row strong {
  color: var(--cyan);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-row button {
  min-height: 32px;
  padding: 0 10px;
  border: 1px solid rgba(165, 190, 230, 0.22);
  border-radius: 999px;
  color: var(--soft);
  cursor: pointer;
  background: transparent;
}

.submission-result {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(112, 230, 176, 0.28);
  border-radius: 14px;
  color: var(--soft);
  background: rgba(112, 230, 176, 0.07);
}

@media (max-width: 960px) {
  .portfolio-hero,
  .request-layout,
  .plan-grid {
    grid-template-columns: 1fr;
  }

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

  .template-card,
  .template-card:nth-child(1),
  .template-card:nth-child(4) {
    grid-column: span 1;
  }

  .template-modal-dialog {
    grid-template-columns: 1fr;
  }

  .modal-copy {
    padding-right: 0;
  }

  .request-sidebar {
    position: static;
  }

  .flow-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 520px) {
  .portfolio-shell {
    width: min(100% - 28px, 1220px);
  }

  .dream-panel {
    min-height: 340px;
  }

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

  .template-art {
    min-height: 330px;
  }

  .mock-title {
    font-size: clamp(44px, 17vw, 72px);
  }

  .modal-art .template-art {
    min-height: 360px;
  }

  .modal-art .mock-title {
    font-size: clamp(52px, 18vw, 86px);
  }

  .template-modal {
    padding: 12px;
  }

  .template-modal-dialog {
    border-radius: 20px;
    max-height: calc(100vh - 24px);
  }

  .dream-frame {
    grid-template-columns: 1fr;
    position: relative;
    inset: auto;
    margin: 20px;
  }

  .portfolio-empty,
  .summary-row {
    grid-template-columns: 1fr;
  }

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

/* PulseLore Portfolio Station — polished template preview system
   Loaded after artist-station.css so these rules intentionally replace
   the earlier prototype modal without changing the main Station layout. */

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

body.modal-open {
  overflow: hidden;
}

.template-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2vw, 24px);
}

.template-modal-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(79, 143, 255, 0.16), transparent 28rem),
    rgba(1, 4, 11, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.template-preview-dialog {
  position: relative;
  z-index: 1;
  width: min(1480px, 97vw);
  height: min(900px, calc(100vh - 28px));
  min-height: 540px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(174, 201, 240, 0.2);
  border-radius: 24px;
  background: #050914;
  box-shadow:
    0 45px 160px rgba(0, 0, 0, 0.72),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.template-preview-bar {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 12px 14px 12px 18px;
  border-bottom: 1px solid rgba(174, 201, 240, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #0a1120;
}

.preview-window-mark {
  display: flex;
  gap: 7px;
}

.preview-window-mark span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(206, 222, 247, 0.34);
}

.preview-title-group {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.preview-title-group strong {
  overflow: hidden;
  color: #f6f9ff;
  font-size: 15px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-eyebrow {
  color: #8fa4c4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preview-bar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.preview-request-button,
.template-preview-dialog .modal-close {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.preview-request-button {
  border: 1px solid rgba(125, 210, 255, 0.42);
  color: #06101d;
  background: linear-gradient(180deg, #9fe7ff, #62b8ff);
  box-shadow: 0 10px 34px rgba(62, 153, 255, 0.18);
}

.template-preview-dialog .modal-close {
  position: static;
  min-height: 40px;
  border: 1px solid rgba(174, 201, 240, 0.25);
  color: #d9e4f7;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.045);
}

.preview-request-button:hover,
.template-preview-dialog .modal-close:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.template-preview-canvas {
  min-height: 0;
  overflow: auto;
  overscroll-behavior: contain;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    #01040a;
  background-size: 32px 32px;
}

.template-preview-footer {
  min-height: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 10px 18px;
  border-top: 1px solid rgba(174, 201, 240, 0.12);
  color: #8fa0ba;
  background: #080e1a;
}

.template-preview-footer p {
  margin: 0;
  color: #c7d4e8;
  font-size: 13px;
}

.template-preview-footer span {
  font-size: 11px;
  text-align: right;
}

/* Shared full-page demo scene */

.portfolio-preview {
  position: relative;
  width: 100%;
  min-width: 760px;
  min-height: 100%;
  height: max(100%, 720px);
  overflow: hidden;
  color: #f7f9ff;
  isolation: isolate;
}

.portfolio-preview,
.portfolio-preview * {
  box-sizing: border-box;
}

.portfolio-preview a {
  color: inherit;
  text-decoration: none;
}

.demo-nav {
  position: relative;
  z-index: 20;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(28px, 5vw, 76px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.82;
}

/* RED MAGAZINE */

.preview-red {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background:
    radial-gradient(circle at 77% 38%, rgba(255, 131, 131, 0.22), transparent 22rem),
    linear-gradient(120deg, #140102, #6f0a11 55%, #160102);
}

.preview-red::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, transparent 49.85%, rgba(255, 255, 255, 0.07) 50%, transparent 50.15%),
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 100% 100%, 100% 74px;
  opacity: 0.5;
}

.red-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: stretch;
  min-height: 530px;
}

.red-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 56px clamp(30px, 6vw, 92px);
}

.red-kicker {
  display: block;
  margin-bottom: 18px;
  color: #ffb7b7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.red-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(88px, 11vw, 190px);
  font-weight: 500;
  line-height: 0.69;
  letter-spacing: -0.08em;
}

.red-copy p {
  max-width: 540px;
  margin: 34px 0 22px;
  color: rgba(255, 236, 236, 0.8);
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.55;
}

.red-copy a {
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.red-portrait {
  position: relative;
  overflow: hidden;
  margin: 28px 28px 28px 0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    radial-gradient(circle at 62% 28%, rgba(255, 223, 204, 0.4), transparent 12rem),
    linear-gradient(155deg, rgba(255, 255, 255, 0.12), transparent 34%),
    #250407;
}

.red-portrait::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(115deg, transparent 42%, rgba(255, 255, 255, 0.06) 42.3%, transparent 42.7%),
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 100% 100%, 100% 54px;
}

.portrait-silhouette {
  position: absolute;
  right: 9%;
  bottom: -14%;
  width: 68%;
  height: 88%;
  border-radius: 46% 46% 18% 18% / 38% 38% 15% 15%;
  background:
    radial-gradient(circle at 53% 20%, #b06964 0 13%, transparent 13.4%),
    radial-gradient(circle at 50% 23%, #1a0a0c 0 18%, transparent 18.5%),
    linear-gradient(160deg, #21080b, #070102 58%);
  filter: drop-shadow(-20px 25px 40px rgba(0, 0, 0, 0.5));
  transform: rotate(-4deg);
}

.portrait-number {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 3;
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
  opacity: 0.3;
}

.portrait-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.red-project-strip {
  min-height: 74px;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 0 clamp(28px, 5vw, 76px);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.red-project-strip strong {
  font-size: 11px;
}

/* TEAL GRID */

.preview-teal {
  background:
    radial-gradient(circle at 76% 22%, rgba(93, 255, 238, 0.14), transparent 24rem),
    linear-gradient(135deg, #061317, #0c3037 54%, #041014);
}

.teal-nav {
  color: #c6fff8;
}

.teal-board {
  min-height: 650px;
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.62fr 0.62fr;
  grid-template-rows: 1.1fr 0.62fr 1fr;
  gap: 1px;
  padding: 1px;
  background: rgba(156, 255, 245, 0.14);
}

.teal-board > * {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3.6vw, 50px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), transparent 50%),
    #082027;
}

.teal-intro {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.teal-intro span,
.teal-project span {
  color: #83e8de;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.teal-intro h1 {
  margin: 12px 0 18px;
  font-size: clamp(72px, 9vw, 150px);
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.teal-intro p {
  max-width: 640px;
  margin: 0;
  color: #b7d5d3;
  font-size: clamp(14px, 1.35vw, 19px);
  line-height: 1.5;
}

.teal-avatar {
  grid-column: 3 / 5;
  grid-row: 1;
  display: grid;
  place-items: center;
  min-height: 240px;
}

.teal-avatar::before {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 42% 58% 54% 46%;
  content: "";
  background: linear-gradient(145deg, #52d4c8, #0c4d55 65%, #05171b);
  box-shadow:
    0 0 0 24px rgba(87, 221, 211, 0.06),
    0 30px 70px rgba(0, 0, 0, 0.35);
  transform: rotate(22deg);
}

.teal-avatar span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  font-size: 9px;
  letter-spacing: 0.14em;
  opacity: 0.7;
}

.teal-orbit {
  position: absolute;
  width: 240px;
  height: 110px;
  border: 1px solid rgba(156, 255, 245, 0.34);
  border-radius: 50%;
  transform: rotate(-24deg);
}

.teal-stat {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.teal-stat strong {
  font-size: clamp(44px, 5vw, 80px);
  line-height: 0.9;
}

.teal-stat span {
  color: #9ccbc7;
  font-size: 11px;
  text-transform: uppercase;
}

.teal-project {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.teal-project::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 78% 24%, rgba(106, 255, 239, 0.22), transparent 7rem),
    linear-gradient(135deg, transparent 35%, rgba(255, 255, 255, 0.04));
}

.teal-project strong,
.teal-project small,
.teal-project span {
  position: relative;
  z-index: 1;
}

.teal-project strong {
  font-size: clamp(18px, 2vw, 28px);
}

.teal-project small {
  color: #91b9b6;
}

.teal-project-a { grid-column: 1 / 3; }
.teal-project-b { grid-column: 3; }
.teal-project-c { grid-column: 4; }

/* PURPLE PRODUCT */

.preview-purple {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background:
    radial-gradient(circle at 80% 18%, rgba(151, 93, 255, 0.4), transparent 23rem),
    radial-gradient(circle at 14% 82%, rgba(74, 127, 255, 0.16), transparent 24rem),
    #070611;
}

.purple-nav {
  color: #e6dcff;
}

.purple-hero {
  min-height: 510px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: clamp(30px, 5vw, 80px);
  padding: clamp(44px, 6vw, 88px);
}

.purple-copy h1 {
  margin: 18px 0 22px;
  font-size: clamp(64px, 7.5vw, 124px);
  line-height: 0.84;
  letter-spacing: -0.065em;
}

.purple-copy h1 em {
  color: #b695ff;
  font-family: Georgia, serif;
  font-weight: 400;
}

.purple-copy p {
  max-width: 650px;
  margin: 0;
  color: #bcb5d0;
  font-size: clamp(15px, 1.4vw, 20px);
  line-height: 1.55;
}

.purple-pill {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(189, 158, 255, 0.4);
  border-radius: 999px;
  color: #d8c7ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(151, 93, 255, 0.1);
}

.purple-actions {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}

.purple-actions span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 15px;
  border: 1px solid rgba(213, 199, 255, 0.22);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.purple-actions span:first-child {
  color: #0a0614;
  background: #c3a7ff;
}

.purple-product-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(226, 214, 255, 0.25);
  border-radius: 34px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.02) 46%),
    linear-gradient(145deg, #6a3ae8, #170c38 68%);
  box-shadow:
    0 36px 100px rgba(41, 17, 98, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  transform: rotate(2deg);
}

.purple-product-card::after {
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: "";
  box-shadow:
    0 0 0 28px rgba(255, 255, 255, 0.035),
    0 0 0 64px rgba(255, 255, 255, 0.025);
}

.purple-card-label {
  position: relative;
  z-index: 2;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.purple-product-card strong {
  position: relative;
  z-index: 2;
  font-size: clamp(54px, 6vw, 96px);
  line-height: 0.76;
  letter-spacing: -0.075em;
}

.purple-card-row {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.purple-card-row span {
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(4, 2, 10, 0.18);
}

.purple-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.purple-services article {
  min-height: 135px;
  padding: 24px clamp(24px, 4vw, 60px);
  border-right: 1px solid rgba(255, 255, 255, 0.11);
}

.purple-services span {
  color: #a787ff;
  font-size: 10px;
  font-weight: 900;
}

.purple-services strong {
  display: block;
  margin-top: 10px;
  font-size: 22px;
}

.purple-services p {
  margin: 8px 0 0;
  color: #9d96ad;
  font-size: 12px;
}

/* SILVER EDITORIAL */

.preview-silver {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  color: #f5f5f3;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.14), transparent 24rem),
    linear-gradient(135deg, #08090b, #343940 52%, #060708);
}

.silver-nav {
  color: #e7e7e4;
}

.silver-hero {
  min-height: 550px;
  display: grid;
  grid-template-columns: 0.18fr 1.05fr 0.76fr 0.42fr;
  align-items: stretch;
  padding: 28px clamp(26px, 5vw, 76px);
}

.silver-index {
  padding-top: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.16em;
  writing-mode: vertical-rl;
  text-transform: uppercase;
}

.silver-title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px clamp(24px, 3vw, 52px);
}

.silver-title span {
  max-width: 320px;
  color: #c7c7c3;
  font-size: 12px;
  line-height: 1.5;
}

.silver-title h1 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(82px, 10vw, 168px);
  font-weight: 400;
  line-height: 0.66;
  letter-spacing: -0.08em;
}

.silver-photo {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.18), transparent 36%),
    #15171a;
}

.silver-photo::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 100% 64px, 64px 100%;
}

.silver-photo > span {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.silver-figure {
  position: absolute;
  left: 18%;
  bottom: -10%;
  width: 70%;
  height: 86%;
  border-radius: 46% 54% 18% 18%;
  background:
    radial-gradient(circle at 52% 20%, #b8b8b4 0 11%, transparent 11.5%),
    radial-gradient(circle at 50% 21%, #27292c 0 17%, transparent 17.5%),
    linear-gradient(145deg, #8e9297, #141619 62%);
  filter: grayscale(1) contrast(1.12);
}

.silver-note {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 16px 24px;
}

.silver-note strong {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 400;
}

.silver-note p {
  color: #c1c1bd;
  font-size: 11px;
  line-height: 1.5;
}

.silver-list {
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 18px;
  padding: 0 clamp(26px, 5vw, 76px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

/* EMERALD LUXE */

.preview-emerald {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  color: #f4ead4;
  background:
    radial-gradient(circle at 76% 20%, rgba(218, 183, 102, 0.16), transparent 24rem),
    linear-gradient(130deg, #02110c, #0a3b2a 54%, #020c08);
}

.emerald-nav {
  color: #e1c98e;
}

.emerald-hero {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(90px, 0.18fr) minmax(340px, 0.87fr);
  align-items: stretch;
  gap: clamp(22px, 3vw, 52px);
  padding: clamp(34px, 5vw, 72px) clamp(28px, 6vw, 90px);
}

.emerald-copy {
  align-self: center;
}

.emerald-overline {
  color: #d8bb78;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.emerald-copy h1 {
  margin: 22px 0 28px;
  font-family: Georgia, serif;
  font-size: clamp(88px, 10vw, 172px);
  font-weight: 400;
  line-height: 0.68;
  letter-spacing: -0.07em;
}

.emerald-copy p {
  max-width: 560px;
  color: #c8bea9;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.65;
}

.emerald-link {
  display: inline-block;
  margin-top: 26px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(224, 194, 126, 0.58);
  color: #e5cd97;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.emerald-mark {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 0;
  border-right: 1px solid rgba(225, 201, 142, 0.24);
  border-left: 1px solid rgba(225, 201, 142, 0.24);
  color: #dabe7d;
  font-family: Georgia, serif;
  font-size: 34px;
  line-height: 0.82;
}

.emerald-image {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(225, 201, 142, 0.2);
  background:
    radial-gradient(circle at 48% 26%, rgba(233, 212, 156, 0.28), transparent 10rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.09), transparent 34%),
    #041b13;
}

.emerald-image::before {
  position: absolute;
  left: 15%;
  bottom: -10%;
  width: 70%;
  height: 86%;
  border-radius: 52% 48% 16% 16%;
  content: "";
  background:
    radial-gradient(circle at 52% 20%, #987d58 0 11%, transparent 11.5%),
    radial-gradient(circle at 50% 21%, #141b16 0 17%, transparent 17.5%),
    linear-gradient(150deg, #1d3e31, #020806 66%);
  filter: sepia(0.35);
}

.emerald-image span {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: #d5bd84;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.emerald-light {
  position: absolute;
  top: -30%;
  left: 20%;
  z-index: 2;
  width: 50%;
  height: 150%;
  background: linear-gradient(90deg, transparent, rgba(235, 210, 149, 0.12), transparent);
  transform: rotate(17deg);
}

.emerald-footer {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(28px, 6vw, 90px);
  border-top: 1px solid rgba(225, 201, 142, 0.18);
  color: #cdb77f;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* CINEMATIC ARTIST */

.preview-cinematic {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  background: #02040a;
}

.cinematic-nav {
  position: relative;
  z-index: 5;
  color: #d7e9ff;
  background: rgba(2, 4, 10, 0.44);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.cinematic-hero {
  position: relative;
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  align-items: center;
  gap: clamp(24px, 5vw, 80px);
  overflow: hidden;
  padding: clamp(46px, 6vw, 90px);
  background:
    radial-gradient(circle at 76% 25%, rgba(97, 193, 255, 0.25), transparent 19rem),
    radial-gradient(circle at 28% 88%, rgba(92, 64, 255, 0.2), transparent 28rem),
    linear-gradient(145deg, #02040a, #081b31 55%, #07030e);
}

.cinematic-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 140px 100%, 100% 70px;
  opacity: 0.45;
}

.cinematic-copy,
.cinematic-release {
  position: relative;
  z-index: 2;
}

.cinematic-overline {
  color: #8dd7ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cinematic-copy h1 {
  margin: 20px 0 24px;
  font-size: clamp(84px, 10vw, 166px);
  line-height: 0.68;
  letter-spacing: -0.085em;
}

.cinematic-copy p {
  max-width: 600px;
  color: #aebdd2;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.6;
}

.cinematic-buttons {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.cinematic-buttons span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(168, 212, 255, 0.22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.cinematic-buttons span:first-child {
  color: #07111c;
  background: #8fd7ff;
}

.cinematic-release {
  overflow: hidden;
  border: 1px solid rgba(172, 216, 255, 0.23);
  border-radius: 28px;
  background: rgba(7, 15, 29, 0.72);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.release-art {
  min-height: 330px;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  background:
    radial-gradient(circle at 62% 30%, rgba(131, 218, 255, 0.38), transparent 10rem),
    radial-gradient(circle at 28% 80%, rgba(104, 72, 255, 0.42), transparent 12rem),
    linear-gradient(145deg, #02040a, #0c4265 52%, #16062d);
}

.release-art span {
  font-size: clamp(64px, 6vw, 102px);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: -0.07em;
}

.release-meta {
  padding: 18px 22px 22px;
}

.release-meta small {
  display: block;
  color: #85cfff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.release-meta strong {
  display: block;
  margin-top: 7px;
  font-size: 16px;
}

.waveform {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 3px;
  margin-top: 16px;
}

.waveform i {
  width: 3px;
  height: var(--h);
  border-radius: 99px;
  background: linear-gradient(180deg, #95ddff, rgba(149, 221, 255, 0.18));
}

.cinematic-tracklist {
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 0 clamp(28px, 6vw, 90px);
  border-top: 1px solid rgba(168, 212, 255, 0.14);
  color: #a9b7ca;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Compact screens */

@media (max-width: 900px) {
  .template-modal {
    padding: 8px;
  }

  .template-preview-dialog {
    width: 100%;
    height: calc(100vh - 16px);
    border-radius: 18px;
  }

  .template-preview-bar {
    min-height: 62px;
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 10px 10px 10px 14px;
  }

  .preview-window-mark {
    display: none;
  }

  .preview-request-button {
    display: none;
  }

  .template-preview-footer {
    grid-template-columns: 1fr;
    gap: 3px;
    min-height: 68px;
  }

  .template-preview-footer span {
    text-align: left;
  }

  .portfolio-preview {
    min-width: 680px;
  }
}

@media (max-width: 560px) {
  .preview-title-group strong {
    font-size: 13px;
  }

  .preview-eyebrow {
    font-size: 8px;
  }

  .template-preview-dialog .modal-close {
    min-height: 38px;
    padding: 0 12px;
  }

  .template-preview-footer {
    padding: 9px 12px;
  }

  .template-preview-footer p {
    font-size: 12px;
  }

  .template-preview-footer span {
    font-size: 9px;
  }

  .portfolio-preview {
    min-width: 620px;
    height: 650px;
  }
}

/* ===== Long scrolling portfolio demos ===== */

.template-preview-canvas {
  scroll-behavior: smooth;
}

.portfolio-preview {
  min-height: 0;
  height: auto !important;
  overflow: visible;
}

.preview-red,
.preview-teal,
.preview-purple,
.preview-silver,
.preview-emerald,
.preview-cinematic {
  display: block;
  --demo-text: #f7f9ff;
  --demo-muted: rgba(235, 241, 250, 0.68);
  --demo-line: rgba(255, 255, 255, 0.14);
  --demo-panel: rgba(255, 255, 255, 0.055);
  --demo-accent: #8fd7ff;
}

.preview-red {
  --demo-text: #fff7f7;
  --demo-muted: rgba(255, 232, 232, 0.72);
  --demo-line: rgba(255, 210, 210, 0.18);
  --demo-panel: rgba(255, 255, 255, 0.045);
  --demo-accent: #ff9c9c;
}

.preview-teal {
  --demo-text: #efffff;
  --demo-muted: rgba(213, 255, 250, 0.7);
  --demo-line: rgba(153, 255, 243, 0.18);
  --demo-panel: rgba(164, 255, 243, 0.045);
  --demo-accent: #76eadc;
}

.preview-purple {
  --demo-text: #fbf7ff;
  --demo-muted: rgba(236, 222, 255, 0.72);
  --demo-line: rgba(205, 172, 255, 0.2);
  --demo-panel: rgba(193, 148, 255, 0.06);
  --demo-accent: #c6a1ff;
}

.preview-silver {
  --demo-text: #f0f0ec;
  --demo-muted: rgba(220, 220, 214, 0.7);
  --demo-line: rgba(255, 255, 255, 0.17);
  --demo-panel: rgba(255, 255, 255, 0.04);
  --demo-accent: #d6d6ce;
}

.preview-emerald {
  --demo-text: #f4ead4;
  --demo-muted: rgba(226, 210, 177, 0.7);
  --demo-line: rgba(225, 201, 142, 0.2);
  --demo-panel: rgba(225, 201, 142, 0.045);
  --demo-accent: #d8bb78;
}

.preview-cinematic {
  --demo-text: #f4f8ff;
  --demo-muted: rgba(207, 223, 245, 0.7);
  --demo-line: rgba(157, 211, 255, 0.17);
  --demo-panel: rgba(121, 196, 255, 0.05);
  --demo-accent: #8fd7ff;
}

.demo-scroll-cue {
  display: block;
  width: fit-content;
  margin-top: 24px;
  padding: 8px 0;
  color: var(--demo-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-long-section {
  position: relative;
  min-height: 620px;
  padding: clamp(64px, 8vw, 128px) clamp(34px, 7vw, 108px);
  border-top: 1px solid var(--demo-line);
  color: var(--demo-text);
  background:
    radial-gradient(circle at 82% 10%, color-mix(in srgb, var(--demo-accent) 11%, transparent), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(0, 0, 0, 0.08));
}

.demo-section-index,
.demo-overline {
  color: var(--demo-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.demo-story-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(42px, 8vw, 120px);
  align-items: end;
  margin-top: clamp(76px, 11vw, 150px);
}

.demo-story-layout h2,
.demo-section-head h2,
.demo-contact-section h2 {
  margin: 16px 0 0;
  max-width: 820px;
  font-size: clamp(56px, 7.6vw, 122px);
  line-height: 0.86;
  letter-spacing: -0.055em;
}

.preview-red .demo-story-layout h2,
.preview-red .demo-section-head h2,
.preview-red .demo-contact-section h2,
.preview-emerald .demo-story-layout h2,
.preview-emerald .demo-section-head h2,
.preview-emerald .demo-contact-section h2,
.preview-silver .demo-story-layout h2,
.preview-silver .demo-section-head h2,
.preview-silver .demo-contact-section h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.demo-story-copy {
  max-width: 620px;
}

.demo-story-copy p,
.demo-section-head > p,
.demo-contact-side > p {
  color: var(--demo-muted);
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.72;
}

.demo-meta-row {
  display: grid;
  gap: 10px;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid var(--demo-line);
  color: var(--demo-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.demo-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: end;
  margin-bottom: clamp(44px, 7vw, 90px);
}

.demo-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 30px);
}

.demo-project-card {
  overflow: hidden;
  border: 1px solid var(--demo-line);
  background: var(--demo-panel);
}

.demo-project-wide {
  grid-column: 1 / -1;
}

.demo-project-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: end start;
  overflow: hidden;
  padding: 24px;
  background:
    radial-gradient(circle at 70% 24%, color-mix(in srgb, var(--demo-accent) 32%, transparent), transparent 14rem),
    linear-gradient(140deg, rgba(255, 255, 255, 0.09), rgba(0, 0, 0, 0.46));
}

.demo-project-wide .demo-project-visual {
  min-height: 560px;
}

.demo-project-visual::before,
.demo-project-visual::after {
  position: absolute;
  content: "";
}

.demo-project-visual::before {
  inset: 10% 8% auto auto;
  width: 42%;
  height: 72%;
  border: 1px solid var(--demo-line);
  background: linear-gradient(160deg, var(--demo-panel), rgba(0, 0, 0, 0.55));
  transform: rotate(5deg);
}

.demo-project-visual::after {
  left: 8%;
  top: 18%;
  width: 38%;
  height: 48%;
  border-radius: 50% 50% 20% 20%;
  background: radial-gradient(circle at 50% 20%, var(--demo-accent) 0 10%, transparent 10.5%), linear-gradient(150deg, color-mix(in srgb, var(--demo-accent) 38%, #111), #050608 70%);
  opacity: 0.72;
}

.demo-project-visual.visual-two {
  background:
    radial-gradient(circle at 25% 35%, color-mix(in srgb, var(--demo-accent) 24%, transparent), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.52));
}

.demo-project-visual.visual-three {
  background:
    linear-gradient(90deg, transparent 49.8%, var(--demo-line) 50%, transparent 50.2%),
    radial-gradient(circle at 72% 70%, color-mix(in srgb, var(--demo-accent) 28%, transparent), transparent 10rem),
    linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(0, 0, 0, 0.6));
}

.demo-project-visual > span {
  position: relative;
  z-index: 3;
  color: var(--demo-text);
  font-size: clamp(70px, 9vw, 150px);
  font-weight: 900;
  line-height: 0.75;
  letter-spacing: -0.08em;
  opacity: 0.8;
}

.demo-project-copy {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 20px;
}

.demo-project-copy strong {
  font-size: 16px;
  letter-spacing: 0.02em;
}

.demo-project-copy span {
  color: var(--demo-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-process-section {
  min-height: 680px;
  display: grid;
  align-content: center;
}

.demo-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: var(--demo-line);
}

.demo-process-grid article {
  min-height: 340px;
  padding: clamp(28px, 4vw, 58px);
  background: color-mix(in srgb, var(--demo-panel) 85%, #05070d);
}

.demo-process-grid article > span {
  color: var(--demo-accent);
  font-size: 12px;
  font-weight: 900;
}

.demo-process-grid h3 {
  margin: 110px 0 16px;
  font-size: clamp(32px, 4vw, 58px);
  letter-spacing: -0.04em;
}

.demo-process-grid p {
  color: var(--demo-muted);
  line-height: 1.65;
}

.demo-quote-section {
  min-height: 78vh;
  display: grid;
  align-content: center;
}

.demo-quote-section blockquote {
  max-width: 1180px;
  margin: clamp(62px, 9vw, 130px) 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.demo-signature {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 56px;
  padding-top: 18px;
  border-top: 1px solid var(--demo-line);
  color: var(--demo-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-contact-section {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: center;
  padding-bottom: 44px;
}

.demo-contact-side {
  align-self: center;
}

.demo-contact-links {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid var(--demo-line);
}

.demo-contact-links span {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--demo-line);
  color: var(--demo-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.demo-end-line {
  grid-column: 1 / -1;
  align-self: end;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--demo-line);
  color: var(--demo-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

@supports not (color: color-mix(in srgb, red, blue)) {
  .demo-long-section { background: linear-gradient(180deg, rgba(255,255,255,.018), rgba(0,0,0,.08)); }
  .demo-project-visual { background: linear-gradient(140deg, rgba(255,255,255,.09), rgba(0,0,0,.46)); }
  .demo-process-grid article { background: rgba(5, 7, 13, 0.86); }
}

@media (max-width: 900px) {
  .demo-story-layout,
  .demo-section-head,
  .demo-contact-section {
    grid-template-columns: 1fr;
  }

  .demo-story-layout {
    margin-top: 70px;
  }

  .demo-project-grid,
  .demo-process-grid {
    grid-template-columns: 1fr;
  }

  .demo-project-wide {
    grid-column: auto;
  }

  .demo-project-wide .demo-project-visual,
  .demo-project-visual {
    min-height: 420px;
  }

  .demo-contact-section {
    min-height: 900px;
  }
}
