:root {
  color-scheme: dark;
  --bg: #03040a;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.13);
  --text: #f8f7ff;
  --muted: rgba(248, 247, 255, 0.74);
  --soft: rgba(248, 247, 255, 0.56);
  --purple: #8a2eff;
  --blue: #00c8ff;
  --gold: #ffdf85;
  --header: 72px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--bg);
}

body {
  min-width: 0;
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 16% 0%, rgba(138, 46, 255, 0.22), transparent 32rem),
    radial-gradient(circle at 90% 8%, rgba(0, 200, 255, 0.11), transparent 28rem),
    linear-gradient(180deg, #03040a 0%, #070a14 45%, #03040a 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 14px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 12px 16px;
  border-radius: 999px;
  background: #fff;
  color: #05050a;
  font-weight: 900;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(138, 46, 255, 0.18);
  background: rgba(3, 4, 10, 0.68);
  backdrop-filter: blur(18px) saturate(1.15);
  transition: background 0.22s ease, box-shadow 0.22s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(3, 4, 10, 0.94);
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.45), 0 0 38px rgba(138, 46, 255, 0.12);
}

.brand {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d8b2ff;
  font-weight: 950;
  letter-spacing: 0.23em;
}

.brand img,
.footer-brand img {
  border-radius: 12px;
  box-shadow: 0 0 28px rgba(138, 46, 255, 0.34);
}

.desktop-nav {
  display: none;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(138, 46, 255, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-5px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header) 12px auto;
  display: none;
  padding: 14px;
  border: 1px solid rgba(138, 46, 255, 0.28);
  border-radius: 26px;
  background:
    radial-gradient(circle at 90% 0%, rgba(138, 46, 255, 0.18), transparent 38%),
    rgba(4, 6, 15, 0.98);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.mobile-nav.open {
  display: grid;
  animation: menuIn 0.2s ease both;
}

.mobile-nav a {
  min-height: 52px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(248, 247, 255, 0.86);
  font-weight: 850;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav a.active {
  color: white;
  text-shadow: 0 0 18px rgba(0, 200, 255, 0.52);
}

.hero,
.section,
.site-footer {
  width: min(100% - 28px, var(--max));
  margin: 0 auto;
}

.hero,
.section {
  scroll-margin-top: calc(var(--header) + 16px);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header));
  display: grid;
  align-items: end;
  overflow: hidden;
  width: 100%;
  padding: clamp(70px, 16vw, 120px) 14px 34px;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92) contrast(1.08);
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 18% 20%, rgba(138, 46, 255, 0.28), transparent 32rem),
    linear-gradient(180deg, rgba(3, 4, 10, 0.32) 0%, rgba(3, 4, 10, 0.64) 38%, rgba(3, 4, 10, 0.94) 100%),
    linear-gradient(90deg, rgba(3, 4, 10, 0.92), rgba(3, 4, 10, 0.48));
}

.hero-content {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: #c997ff;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 790px;
  margin-bottom: 16px;
  font-size: clamp(2.7rem, 13vw, 3.7rem);
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2.05rem, 9vw, 3rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.28rem, 5.2vw, 1.8rem);
}

.hero-subtitle {
  margin-bottom: 14px;
  color: white;
  font-size: clamp(1.05rem, 4.7vw, 1.36rem);
  font-weight: 900;
  line-height: 1.34;
}

.hero-copy,
.section-heading p,
.content-pair p,
.offer-card p,
.team-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

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

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 950;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: white;
  box-shadow: 0 0 36px rgba(138, 46, 255, 0.28);
}

.button-secondary,
.button-quiet {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.075);
  color: white;
  backdrop-filter: blur(14px);
}

.trust-line {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 900;
}

.trust-line span {
  width: fit-content;
  padding: 9px 12px;
  border: 1px solid rgba(0, 200, 255, 0.22);
  border-radius: 999px;
  background: rgba(3, 4, 10, 0.5);
}

.section {
  padding: 58px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 24px;
}

.section-heading p:last-child {
  margin-bottom: 0;
}

.problem-grid,
.feature-grid,
.trust-grid,
.hub-cards,
.journey-grid,
.offer-grid,
.team-grid,
.support-team {
  display: grid;
  gap: 14px;
}

.glass-card,
.feature-card,
.trust-card,
.hub-card,
.journey-card,
.offer-card,
.team-card,
.artist-form,
.app-link {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.glass-card::before,
.feature-card::before,
.trust-card::before,
.hub-card::before,
.journey-card::before,
.offer-card::before,
.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 18% 0%, rgba(138, 46, 255, 0.17), transparent 42%);
}

.glass-card,
.offer-card {
  padding: 22px;
}

.glass-card ul,
.journey-card ol {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.glass-card li,
.journey-card li {
  display: flex;
  gap: 10px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.46;
}

.glass-card li::before,
.journey-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 0.55em;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  box-shadow: 0 0 16px rgba(0, 200, 255, 0.36);
}

.split-visual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.split-visual figure,
.feature-image,
.phone-visual,
.hub-image,
.journey-card figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.38);
}

.split-visual img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top center;
}

.split-visual figcaption {
  padding: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.content-pair {
  display: grid;
  gap: 24px;
}

.feature-image img,
.hub-image img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center;
}

.flow-line,
.pipeline {
  display: grid;
  gap: 1px;
  overflow: hidden;
  margin-top: 18px;
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.flow-line span,
.pipeline span {
  position: relative;
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 14px;
  text-align: center;
  color: white;
  font-weight: 900;
}

.flow-line span:not(:last-child)::after,
.pipeline span:not(:last-child)::after {
  content: "↓";
  position: absolute;
  bottom: -12px;
  z-index: 2;
  color: var(--blue);
  text-shadow: 0 0 16px var(--blue);
}

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

.feature-card,
.trust-card,
.hub-card {
  min-height: 102px;
  display: grid;
  align-content: end;
  padding: 18px;
  color: white;
  font-weight: 920;
  line-height: 1.25;
}

.artist-offer {
  display: grid;
  gap: 8px;
  margin: 18px 0 16px;
  padding: 18px;
  border: 1px solid rgba(0, 200, 255, 0.24);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(138, 46, 255, 0.16), rgba(0, 200, 255, 0.07));
}

.artist-offer strong {
  color: white;
  font-size: 1.2rem;
}

.artist-offer span {
  color: var(--muted);
  line-height: 1.6;
}

.phone-visual {
  padding: 10px;
}

.phone-visual img {
  width: 100%;
  max-height: 690px;
  object-fit: contain;
  border-radius: 22px;
}

.trust-section {
  padding-top: 46px;
  padding-bottom: 46px;
}

.trust-card {
  min-height: 86px;
  border-color: rgba(0, 200, 255, 0.2);
}

.status-pill {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), #fff2bd);
  color: #070711;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hub-section {
  width: min(100% - 28px, 1240px);
  padding: 58px 16px;
  border: 1px solid rgba(138, 46, 255, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 0%, rgba(138, 46, 255, 0.2), transparent 32rem),
    radial-gradient(circle at 90% 88%, rgba(0, 200, 255, 0.13), transparent 28rem),
    rgba(255, 255, 255, 0.035);
}

.hub-image {
  margin-bottom: 16px;
}

.hub-card {
  min-height: 116px;
}

.journey-grid {
  gap: 18px;
}

.journey-card {
  padding: 14px;
}

.journey-card figure {
  margin-bottom: 18px;
}

.journey-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: top center;
}

.journey-card h3,
.journey-card ol {
  margin-left: 8px;
  margin-right: 8px;
}

.pipeline {
  margin-top: 18px;
}

.why-section {
  padding-top: 48px;
}

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

.offer-card p {
  margin-bottom: 0;
}

.team-grid {
  gap: 18px;
}

.team-card {
  padding: 14px;
}

.team-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
}

.team-card div {
  padding: 18px 4px 4px;
}

.team-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.support-team {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 16px;
}

.support-team span {
  min-height: 52px;
  display: grid;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(0, 200, 255, 0.18);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 850;
  text-align: center;
}

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

.artist-form {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.artist-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 850;
}

.artist-form input,
.artist-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 0 14px;
  background: rgba(3, 4, 10, 0.64);
  color: white;
}

.form-message {
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(0, 200, 255, 0.2);
  border-radius: 18px;
  background: rgba(0, 200, 255, 0.08);
  color: white;
  line-height: 1.55;
}

.app-link {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 18px;
}

.app-link span {
  color: white;
  font-size: 1.1rem;
  font-weight: 950;
}

.site-footer {
  display: grid;
  gap: 26px;
  padding: 48px 0 28px;
}

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 8px;
}

.site-footer h2,
.site-footer h3,
.site-footer p {
  margin-bottom: 0;
}

.site-footer nav,
.footer-contact {
  display: grid;
  gap: 12px;
}

.site-footer a {
  min-height: 40px;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-weight: 800;
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  display: grid;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--soft);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes menuIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 520px) {
  .hero-actions,
  .app-link {
    grid-template-columns: repeat(2, minmax(0, max-content));
    align-items: center;
  }

  .app-link {
    justify-content: space-between;
  }
}

@media (min-width: 720px) {
  :root {
    --header: 82px;
  }

  .site-header {
    padding: 0 clamp(24px, 5vw, 64px);
  }

  .hero {
    padding: 110px 22px 64px;
  }

  .hero,
  .section,
  .site-footer {
    width: min(100% - 44px, var(--max));
  }

  .hero {
    width: 100%;
  }

  h1 {
    font-size: clamp(4.2rem, 8vw, 7.8rem);
  }

  h2 {
    font-size: clamp(2.7rem, 5.8vw, 5rem);
  }

  .section {
    padding: 78px 0;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .trust-line {
    display: flex;
    flex-wrap: wrap;
  }

  .problem-grid,
  .content-pair,
  .content-pair.reverse,
  .journey-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .hub-cards,
  .offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .flow-line,
  .pipeline {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .flow-line span:not(:last-child)::after,
  .pipeline span:not(:last-child)::after {
    content: "→";
    right: -10px;
    bottom: auto;
  }

  .phone-visual {
    order: 0;
  }

  .hub-section {
    padding: 78px 28px;
  }

  .journey-card img {
    height: 420px;
  }

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

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

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

  .site-footer {
    grid-template-columns: minmax(240px, 1.45fr) 1fr 1fr 1fr;
  }

  .footer-bottom {
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto;
  }
}

@media (min-width: 980px) {
  .menu-toggle,
  .mobile-nav {
    display: none;
  }

  .desktop-nav {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.1vw, 34px);
    color: rgba(248, 247, 255, 0.74);
    font-size: 0.92rem;
    font-weight: 850;
  }

  .desktop-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-bottom: 2px solid transparent;
  }

  .desktop-nav a:hover,
  .desktop-nav a.active {
    color: white;
    border-bottom-color: var(--blue);
    text-shadow: 0 0 18px rgba(138, 46, 255, 0.48);
  }

  .split-visual img {
    height: 360px;
  }
}

@media (max-width: 390px) {
  .split-visual,
  .feature-grid,
  .trust-grid,
  .hub-cards,
  .support-team {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.35rem, 12.4vw, 3rem);
  }

  h2 {
    font-size: clamp(1.9rem, 8.8vw, 2.5rem);
  }

  .team-card img {
    height: 320px;
  }
}

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

/* Final mobile-first fit + typography refinement */
:root {
  --max: 1200px;
  --gutter: 16px;
}

.site-header {
  padding-inline: var(--gutter);
}

.hero,
.section,
.site-footer {
  width: min(100%, calc(var(--max) + (var(--gutter) * 2)));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.hero {
  min-height: auto;
  display: block;
  padding-block: clamp(56px, 13vw, 92px) 42px;
  overflow: visible;
}

.hero-shell {
  display: grid;
  gap: 26px;
  align-items: center;
}

.hero-content {
  width: 100%;
  max-width: 650px;
  margin: 0;
}

.hero-brand-lockup {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 8px 14px 8px 8px;
  border: 1px solid rgba(138, 46, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 34px rgba(138, 46, 255, 0.18);
}

.hero-brand-lockup img {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  box-shadow: 0 0 28px rgba(138, 46, 255, 0.36);
}

.hero-brand-lockup span {
  color: #d8b2ff;
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.24em;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(138, 46, 255, 0.34);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42), 0 0 48px rgba(138, 46, 255, 0.16);
}

.hero-image {
  position: relative;
  inset: auto;
  z-index: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 200, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(3, 4, 10, 0.08), rgba(3, 4, 10, 0.62)),
    linear-gradient(120deg, rgba(138, 46, 255, 0.3), transparent 54%);
  pointer-events: none;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.35rem, 11vw, 3.85rem);
}

h2 {
  max-width: 760px;
  font-size: clamp(2rem, 8vw, 3.4rem);
}

.hero-copy,
.section-heading p:not(.eyebrow),
.content-pair p,
.offer-card p,
.team-card p,
.site-footer p,
.join-section p,
.app-link span {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.92);
  font-family: "Times New Roman", Times, serif;
  font-size: clamp(1rem, 2.8vw, 1.1rem);
  line-height: 1.78;
}

.hero-subtitle,
.eyebrow {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.section {
  padding-block: clamp(46px, 8vw, 78px);
}

.section-heading {
  max-width: 780px;
}

.journey-card-product {
  padding: 16px;
}

.journey-visual {
  position: relative;
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 200, 255, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 14% 14%, rgba(138, 46, 255, 0.28), transparent 34%),
    radial-gradient(circle at 86% 72%, rgba(0, 200, 255, 0.2), transparent 34%),
    rgba(4, 7, 16, 0.92);
  background-size: 30px 30px, 30px 30px, auto, auto, auto;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 70px rgba(0, 0, 0, 0.34);
}

.journey-phone {
  width: min(100%, 300px);
  margin-inline: auto;
  padding: 14px;
  border: 1px solid rgba(138, 46, 255, 0.42);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(15, 19, 36, 0.96), rgba(2, 5, 12, 0.96)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 38px rgba(138, 46, 255, 0.2);
}

.phone-status {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-status strong {
  color: var(--blue);
}

.mini-screen {
  min-height: 118px;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 16%, rgba(0, 200, 255, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(138, 46, 255, 0.2), rgba(255, 255, 255, 0.035));
}

.mini-screen strong {
  color: white;
  font-size: 1.08rem;
  line-height: 1.12;
}

.mini-screen small,
.screen-label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  font-weight: 800;
}

.screen-label {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 200, 255, 0.13);
  color: #9beeff;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.mini-grid span,
.booking-strip span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 850;
  text-align: center;
  background: rgba(255, 255, 255, 0.045);
}

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

.booking-strip span:last-child {
  border-color: rgba(0, 200, 255, 0.36);
  color: white;
  background: linear-gradient(135deg, rgba(138, 46, 255, 0.18), rgba(0, 200, 255, 0.12));
}

.journey-path {
  display: grid;
  gap: 10px;
  counter-reset: step;
}

.journey-path span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 12px 10px 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: white;
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.26;
  background: rgba(255, 255, 255, 0.055);
}

.journey-path span::before {
  content: counter(step);
  counter-increment: step;
  position: absolute;
  left: 10px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  color: white;
  font-size: 0.68rem;
  font-weight: 950;
}

.journey-path span:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 21px;
  bottom: -11px;
  width: 1px;
  height: 11px;
  background: linear-gradient(var(--blue), var(--purple));
}

.customer-journey .mini-screen {
  background:
    radial-gradient(circle at 18% 16%, rgba(0, 200, 255, 0.24), transparent 36%),
    linear-gradient(145deg, rgba(138, 46, 255, 0.2), rgba(255, 255, 255, 0.035));
}

.artist-journey .mini-screen {
  background:
    radial-gradient(circle at 20% 16%, rgba(138, 46, 255, 0.32), transparent 36%),
    linear-gradient(145deg, rgba(0, 200, 255, 0.16), rgba(255, 255, 255, 0.035));
}

.journey-steps li {
  color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 720px) {
  :root {
    --gutter: 24px;
  }

  .site-header {
    padding-inline: max(24px, calc((100vw - var(--max)) / 2 + 24px));
  }

  .hero {
    width: min(100%, calc(var(--max) + (var(--gutter) * 2)));
    padding-block: 78px 66px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 1.02fr) minmax(290px, 0.78fr);
    gap: clamp(30px, 5vw, 70px);
  }

  .hero-image {
    aspect-ratio: 16 / 10;
    max-height: 640px;
  }

  h1 {
    font-size: clamp(3.25rem, 6vw, 5.75rem);
  }

  h2 {
    font-size: clamp(2.35rem, 4.8vw, 4.25rem);
  }

  .journey-visual {
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1fr);
    align-items: center;
    min-height: 500px;
  }

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

  .journey-path span:not(:last-child)::after {
    left: auto;
    right: -10px;
    bottom: auto;
    top: 50%;
    width: 10px;
    height: 1px;
  }
}

@media (min-width: 1024px) {
  :root {
    --gutter: 32px;
  }

  .site-header {
    padding-inline: max(32px, calc((100vw - var(--max)) / 2 + 32px));
  }

  .hero {
    padding-block: 84px 76px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.72fr);
  }

  .hero-content {
    max-width: 680px;
  }

  .journey-phone {
    width: min(100%, 320px);
  }
}

/* Short premium website refinement */
.short-section {
  padding-block: clamp(38px, 6vw, 66px);
}

.mini-section {
  padding-block: clamp(34px, 5vw, 54px);
}

.section-heading {
  margin-bottom: clamp(16px, 3vw, 24px);
}

.section-heading h2 {
  margin-bottom: 8px;
}

.compact-pain-grid {
  margin-top: 18px;
}

.compact-pain-grid .glass-card {
  padding: 18px;
}

.compact-pain-grid h3 {
  font-size: clamp(1.12rem, 4vw, 1.42rem);
}

.feature-card,
.trust-card,
.hub-card {
  min-height: 76px;
  padding: 16px;
  align-content: center;
}

.trust-section {
  padding-top: clamp(34px, 5vw, 54px);
  padding-bottom: clamp(34px, 5vw, 54px);
}

.hub-section {
  width: min(100%, calc(var(--max) + (var(--gutter) * 2)));
  padding: clamp(34px, 6vw, 58px) var(--gutter);
}

.hub-section h2 {
  max-width: 760px;
  font-size: clamp(1.9rem, 7vw, 3.15rem);
}

.hub-image img,
.feature-image img {
  max-height: 440px;
}

.phone-visual img {
  max-height: 560px;
}

.team-card {
  padding: 16px;
}

.team-card img {
  aspect-ratio: 4 / 5;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  object-position: center 18%;
}

.team-card div {
  padding: 16px 4px 4px;
}

.works-section {
  border-top: 1px solid rgba(138, 46, 255, 0.18);
}

.journey-card-product h3 {
  margin: 2px 8px 16px;
}

.journey-card-product .journey-visual {
  margin-bottom: 0;
}

.journey-grid {
  align-items: start;
}

.final-cta {
  padding-top: clamp(38px, 6vw, 64px);
}

.footer-minimal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.footer-minimal-links a {
  min-height: auto;
}

.site-footer {
  gap: 18px;
  padding-block: 34px 24px;
}

@media (min-width: 720px) {
  .hero {
    padding-block: 58px 54px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 0.96fr) minmax(300px, 0.72fr);
  }

  .hero-image {
    max-height: 520px;
  }

  .feature-grid,
  .hub-cards,
  .offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .team-card {
    display: grid;
    grid-template-rows: auto 1fr;
  }

  .site-footer {
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.6fr);
  }

  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .hero {
    padding-block: 62px 58px;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.7fr);
  }

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

  .journey-visual {
    min-height: 420px;
  }
}
