:root {
  --bg: #061018;
  --bg-deep: #040b10;
  --bg-soft: #0a1721;
  --surface: #0d1d28;
  --surface-2: #112531;
  --hero-title: #f1f6f3;
  --heading-main: #e4ece9;
  --heading-accent: #57e9b8;
  --title: #b8ccc5;
  --title-soft: #b7c8c3;
  --body: #889ca3;
  --body-strong: #a9babf;
  --mint: #17d596;
  --mint-light: #62f2c0;
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
  --radius: 24px;
  --container: 1180px;
  --header-height: 104px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--body);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--hero-title);
  font-size: clamp(3.3rem, 7vw, 6.9rem);
  font-weight: 820;
}

h2 {
  margin-bottom: 22px;
  color: var(--heading-main);
  font-size: clamp(2.35rem, 4.6vw, 4.7rem);
  font-weight: 760;
}

h3 {
  margin-bottom: 12px;
  color: var(--title-soft);
  font-size: 1.45rem;
  font-weight: 720;
}

.headline-accent {
  display: block;
  color: var(--heading-accent);
  text-shadow: 0 0 32px rgba(23, 213, 150, 0.08);
}

.heading-accent-inline {
  color: var(--heading-accent);
}

.text-accent {
  color: var(--heading-accent);
  font-weight: 760;
}

p {
  color: var(--body);
}

strong {
  color: var(--body-strong);
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--hero-title);
  color: #061018;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--mint-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 32px;
  height: 1px;
  background: var(--mint);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
.primary-nav a:focus-visible,
.text-link:focus-visible,
.earning-content a:focus-visible {
  outline: 3px solid rgba(23, 213, 150, 0.45);
  outline-offset: 4px;
}

.button-primary {
  background: linear-gradient(135deg, var(--mint), #08af7a);
  color: #03130e;
  box-shadow: 0 12px 34px rgba(23, 213, 150, 0.2);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(23, 213, 150, 0.3);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
  color: #afc0bd;
  backdrop-filter: blur(10px);
}

.button-secondary:hover {
  border-color: rgba(23, 213, 150, 0.55);
  background: rgba(23, 213, 150, 0.08);
  color: #c9d7d3;
}

.button-secondary.light {
  border-color: rgba(255, 255, 255, 0.3);
}

.button-small {
  min-height: 42px;
  padding: 11px 18px;
  font-size: 0.9rem;
}

.button-large {
  min-height: 60px;
  padding-inline: 30px;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  overflow: visible;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: rgba(6, 16, 24, 0.58);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  background: rgba(6, 16, 24, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.nav-shell {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-header .brand img {
  width: 132px;
  height: 132px;
  object-fit: contain;
  transform: translateY(16px);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  font-weight: 650;
}

.primary-nav > a:not(.button) {
  color: #9aaca9;
  transition: color 160ms ease;
}

.primary-nav > a:not(.button):hover {
  color: #c2d0cc;
}

.primary-nav .nav-login {
  margin-left: 8px;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: #b8cac5;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 920px;
  overflow: hidden;
  padding: 160px 0 100px;
  background:
    radial-gradient(circle at 74% 35%, rgba(23, 213, 150, 0.14), transparent 30%),
    radial-gradient(circle at 10% 0%, rgba(20, 72, 92, 0.35), transparent 40%),
    linear-gradient(180deg, #07141e 0%, var(--bg) 100%);
}

.hero-backdrop {
  position: absolute;
  top: 10%;
  right: -12%;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(23, 213, 150, 0.13);
  border-radius: 50%;
  box-shadow: inset 0 0 0 70px rgba(23, 213, 150, 0.018), inset 0 0 0 140px rgba(23, 213, 150, 0.012);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 680px;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 30px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: #a8b9bd;
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 52px;
}

.hero-proof {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-proof div {
  padding-left: 16px;
  border-left: 1px solid rgba(23, 213, 150, 0.35);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  margin-bottom: 3px;
  color: #b5c7c1;
  font-size: 0.95rem;
}

.hero-proof span {
  color: #758a92;
  font-size: 0.78rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  width: min(100%, 600px);
  margin-left: auto;
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  background: #0b1a23;
  box-shadow: var(--shadow);
}

.hero-image-frame::before {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 34px -24px -26px 40px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(23, 213, 150, 0.24), rgba(23, 213, 150, 0));
  filter: blur(18px);
}

.hero-image-frame > img {
  width: 100%;
  min-height: 610px;
  border-radius: 33px;
  object-fit: cover;
  object-position: 78% center;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(6, 16, 24, 0.86);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  margin-bottom: 2px;
  color: #7f939a;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.floating-card strong {
  color: #b9c9c4;
  font-size: 0.88rem;
}

.card-live {
  top: 34px;
  left: -44px;
}

.card-earnings {
  right: -34px;
  bottom: 42px;
  display: block;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 7px rgba(23, 213, 150, 0.12);
}

.hero-noise {
  position: absolute;
  pointer-events: none;
  opacity: 0.08;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

.trust-grid {
  display: flex;
  min-height: 108px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.trust-grid > p {
  margin: 0;
  color: #a9bbb5;
  font-size: 1rem;
  font-weight: 700;
}

.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.trust-items span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #81959b;
  font-size: 0.78rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 60px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.section-heading.centered > p:last-child {
  margin-inline: auto;
}

.section-earn {
  background: linear-gradient(180deg, var(--bg) 0%, #08141d 100%);
}

.earning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.earning-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.022);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.earning-card:hover {
  border-color: rgba(23, 213, 150, 0.32);
  background: rgba(23, 213, 150, 0.032);
  transform: translateY(-7px);
}

.earning-image {
  position: relative;
  height: 310px;
  overflow: hidden;
}

.earning-image::after {
  position: absolute;
  content: "";
  inset: auto 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(6, 16, 24, 0.88));
}

.earning-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.earning-card:hover .earning-image img {
  transform: scale(1.045);
}

.number {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 14px;
  color: #9fb1ad;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.earning-content {
  padding: 28px;
}

.earning-content p {
  min-height: 76px;
  margin-bottom: 22px;
}

.earning-content a,
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mint-light);
  font-weight: 750;
}

.earning-content a span,
.text-link span {
  transition: transform 160ms ease;
}

.earning-content a:hover span,
.text-link:hover span {
  transform: translateX(4px);
}

.section-platform {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(23, 213, 150, 0.032), transparent 45%),
    var(--bg-soft);
}

.platform-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 78px;
}

.platform-visual {
  position: relative;
}

.platform-visual::before {
  position: absolute;
  z-index: 0;
  content: "";
  width: 70%;
  height: 70%;
  right: -12%;
  bottom: -12%;
  border-radius: 50%;
  background: rgba(23, 213, 150, 0.14);
  filter: blur(70px);
}

.platform-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 640px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.platform-label {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 38px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 18px;
  background: rgba(6, 16, 24, 0.91);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.platform-label span,
.platform-label strong {
  display: block;
}

.platform-label span {
  margin-bottom: 4px;
  color: var(--mint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.platform-label strong {
  color: #aebfba;
  font-size: 1rem;
}

.platform-copy .lead {
  margin-bottom: 38px;
  color: #91a4aa;
  font-size: 1.08rem;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.steps li:last-child {
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(23, 213, 150, 0.35);
  border-radius: 50%;
  color: var(--mint);
  font-weight: 800;
}

.steps h3 {
  margin-bottom: 7px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.steps p {
  margin: 0;
}

.artist-section {
  overflow: hidden;
}

.artist-glow {
  position: absolute;
  top: 15%;
  left: -12%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(23, 213, 150, 0.09);
  filter: blur(100px);
}

.artist-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.artist-copy {
  position: relative;
  z-index: 2;
}

.artist-statement {
  margin-bottom: 26px;
  color: #afc1bb;
  font-size: clamp(1.35rem, 2.2vw, 1.8rem);
  font-weight: 620;
  line-height: 1.35;
}

.artist-copy blockquote {
  margin: 36px 0 30px;
  padding: 22px 0 22px 24px;
  border-left: 2px solid var(--mint);
}

.artist-copy blockquote p {
  margin: 0;
  color: #a7b9b4;
  font-size: 1.08rem;
  font-style: italic;
}

.artist-visual {
  position: relative;
}

.artist-visual::before {
  position: absolute;
  z-index: -1;
  content: "";
  top: -28px;
  right: -28px;
  width: 55%;
  height: 55%;
  border-top: 1px solid rgba(23, 213, 150, 0.35);
  border-right: 1px solid rgba(23, 213, 150, 0.35);
  border-radius: 0 32px 0 0;
}

.artist-visual img {
  width: 100%;
  max-height: 720px;
  border-radius: 30px;
  box-shadow: var(--shadow);
  object-fit: cover;
  object-position: center 20%;
}

.artist-badge {
  position: absolute;
  left: -34px;
  bottom: 36px;
  padding: 17px 19px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: rgba(6, 16, 24, 0.89);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
}

.artist-badge strong,
.artist-badge span {
  display: block;
}

.artist-badge strong {
  margin-bottom: 2px;
  color: #aebfba;
}

.artist-badge span {
  color: #72878e;
  font-size: 0.8rem;
}

.economics-section {
  background: var(--bg-soft);
}

.economics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value-card {
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.022);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.value-card:hover {
  border-color: rgba(23, 213, 150, 0.3);
  background: rgba(23, 213, 150, 0.032);
  transform: translateY(-5px);
}

.value-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 36px;
  place-items: center;
  border: 1px solid rgba(23, 213, 150, 0.35);
  border-radius: 14px;
  color: var(--mint);
  font-size: 1.4rem;
  font-weight: 800;
}

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

.comparison {
  display: grid;
  margin-top: 34px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: linear-gradient(115deg, rgba(23, 213, 150, 0.07), rgba(255, 255, 255, 0.015));
  grid-template-columns: 0.26fr 0.74fr;
  align-items: center;
  gap: 30px;
}

.comparison-intro span,
.comparison-intro strong {
  display: block;
}

.comparison-intro span {
  color: #71858d;
  font-size: 0.9rem;
}

.comparison-intro strong {
  color: #aebfba;
  font-size: 1.15rem;
}

.support-path {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.support-path span {
  color: #96a9ae;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.support-path i {
  width: 26px;
  height: 1px;
  background: linear-gradient(90deg, rgba(23, 213, 150, 0.25), var(--mint));
}

.community-section {
  padding-top: 90px;
  background: var(--bg-soft);
}

.community-card {
  position: relative;
  min-height: 660px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.community-card::after {
  position: absolute;
  z-index: 1;
  content: "";
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 15, 23, 0.95) 0%, rgba(5, 15, 23, 0.78) 42%, rgba(5, 15, 23, 0.14) 80%);
}

.community-image {
  position: absolute;
  inset: 0;
}

.community-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.community-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 660px;
  width: min(56%, 620px);
  padding: 74px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.community-copy p:not(.eyebrow) {
  margin-bottom: 30px;
  color: #96a9ae;
}

.application-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 120px 0;
  background: #061018;
}

.application-bg {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(5, 14, 21, 0.94) 0%,
      rgba(5, 14, 21, 0.76) 48%,
      rgba(5, 14, 21, 0.42) 100%
    ),
    url("assets/cta_background.png") 72% center / cover no-repeat;
}

.application-section::after {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
  background:
    radial-gradient(circle at 15% 34%, rgba(23, 213, 150, 0.11), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(23, 213, 150, 0.08), transparent 26%);
  pointer-events: none;
}

.application-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  align-items: start;
  gap: 72px;
}

.application-intro {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  padding-top: 18px;
}

.application-intro h2,
.application-lead,
.application-points {
  max-width: 620px;
}

.application-lead {
  margin-bottom: 38px;
  color: #91a4aa;
  font-size: 1.08rem;
}

.application-points {
  display: grid;
  gap: 14px;
}

.application-points > div {
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-left-color: rgba(23, 213, 150, 0.62);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.026);
  backdrop-filter: blur(10px);
}

.application-points strong,
.application-points span {
  display: block;
}

.application-points strong {
  margin-bottom: 4px;
  color: #aebfba;
  font-size: 0.95rem;
}

.application-points span {
  color: #7e9299;
  font-size: 0.84rem;
  line-height: 1.5;
}

.application-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 26px 0 0;
  color: #84999f;
  font-size: 0.84rem;
}

.application-note span {
  color: var(--mint);
  font-size: 0.72rem;
}

.application-panel {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: linear-gradient(
    145deg,
    rgba(9, 27, 38, 0.78),
    rgba(4, 16, 24, 0.70)
  );
  box-shadow:
    0 34px 85px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px) saturate(108%);
  -webkit-backdrop-filter: blur(12px) saturate(108%);
}

.creator-form {
  padding: 38px;
}

.form-heading {
  display: flex;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.form-heading > span {
  color: #b6c7c1;
  font-size: 1.15rem;
  font-weight: 780;
}

.form-heading p {
  margin: 0;
  color: #748890;
  font-size: 0.76rem;
}

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

.form-field {
  min-width: 0;
}

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

.form-field > label:not(.choice):not(.consent) {
  display: block;
  margin-bottom: 8px;
  color: #a7b9b3;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="url"],
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  outline: none;
  background: rgba(3, 13, 20, 0.72);
  color: #c8d7d2;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="url"],
.form-field select {
  min-height: 50px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 150px;
  padding: 13px 14px;
  resize: vertical;
  line-height: 1.55;
}

.form-field select {
  color-scheme: dark;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #5f747d;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(23, 213, 150, 0.72);
  background: rgba(5, 20, 28, 0.94);
  box-shadow: 0 0 0 4px rgba(23, 213, 150, 0.1);
}

.form-field [aria-invalid="true"] {
  border-color: #ff7878 !important;
  box-shadow: 0 0 0 3px rgba(255, 120, 120, 0.08);
}

.field-help,
.field-error,
.field-meta {
  display: block;
  margin-top: 7px;
  font-size: 0.72rem;
  line-height: 1.4;
}

.field-help,
.field-meta {
  color: #6d828a;
}

.field-error {
  min-height: 1em;
  color: #ff9898;
}

.field-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.field-meta .field-error {
  margin-top: 0;
}

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

.choice,
.consent {
  display: flex;
  cursor: pointer;
}

.choice {
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.02);
  align-items: center;
  gap: 10px;
  color: #a5b7b2;
  font-size: 0.8rem;
  transition: border-color 160ms ease, background 160ms ease;
}

.choice:hover {
  border-color: rgba(23, 213, 150, 0.4);
  background: rgba(23, 213, 150, 0.055);
}

.choice input,
.consent input {
  flex: 0 0 auto;
  accent-color: var(--mint);
}

.choice input {
  width: 16px;
  height: 16px;
}

.consent-field {
  padding-top: 2px;
}

.consent {
  align-items: flex-start;
  gap: 11px;
  color: #8ea2a8;
  font-size: 0.78rem;
  line-height: 1.5;
}

.consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

.submit-button {
  width: 100%;
  margin-top: 26px;
  gap: 14px;
  cursor: pointer;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: var(--mint-light);
  font-size: 0.82rem;
  text-align: center;
}

.form-status.error {
  color: #ff9898;
}

.form-privacy {
  margin: 5px 0 0;
  color: #657a83;
  font-size: 0.72rem;
  text-align: center;
}

.site-footer {
  padding: 70px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
}

.footer-brand .brand img {
  width: 150px;
  height: 150px;
  object-fit: contain;
}

.footer-brand p {
  margin: 4px 0 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-links strong {
  margin-bottom: 7px;
  color: #a6b8b2;
  font-size: 0.86rem;
}

.footer-links a {
  color: #71868e;
  font-size: 0.84rem;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--mint-light);
}

.footer-bottom {
  display: flex;
  margin-top: 55px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  justify-content: space-between;
  gap: 20px;
  color: #5f737b;
  font-size: 0.78rem;
}

.reveal,
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .primary-nav {
    gap: 18px;
  }

  .primary-nav > a:not(.button) {
    font-size: 0.84rem;
  }

  .hero-grid,
  .platform-grid,
  .artist-grid {
    gap: 48px;
  }

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

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

  .support-path {
    justify-content: flex-start;
  }

  .application-grid {
    grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1.22fr);
    gap: 42px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 72px;
  }

  .section {
    padding: 92px 0;
  }

  .site-header .brand img {
    width: 86px;
    height: 86px;
    transform: translateY(6px);
  }

  .nav-toggle {
    position: relative;
    z-index: 1003;
    display: block;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-left: auto;
  }

  .primary-nav {
    position: fixed;
    z-index: 1002;
    top: calc(var(--header-height) + 8px);
    right: 12px;
    left: 12px;
    display: none;
    max-height: calc(100dvh - var(--header-height) - 24px);
    padding: 12px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
    background: rgba(5, 15, 23, 0.985);
    box-shadow: 0 24px 54px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav > a:not(.button) {
    padding: 13px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: #9fb2ad;
    font-size: 0.98rem;
  }

  .primary-nav .nav-login {
    margin-left: 0;
  }

  .primary-nav .button {
    width: 100%;
    margin-top: 12px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding: 122px 0 82px;
  }

  .hero-grid,
  .platform-grid,
  .artist-grid,
  .application-grid,
  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-grid {
    min-height: 0;
    gap: 50px;
  }

  .hero-copy,
  .hero-copy h1 {
    text-align: left;
  }

  .hero-copy .eyebrow {
    justify-content: flex-start;
  }

  .hero-lead,
  .hero-proof {
    margin-inline: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-visual {
    width: 100%;
    margin-left: 0;
  }

  .hero-image-frame {
    width: min(100%, 650px);
    margin-inline: auto;
    aspect-ratio: 5 / 4;
  }

  .hero-image-frame > img {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: inherit;
    object-position: 76% center;
  }

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

  .earning-card {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
  }

  .earning-image {
    height: 100%;
    min-height: 310px;
  }

  .earning-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .earning-content p {
    min-height: 0;
  }

  .platform-visual,
  .platform-copy,
  .artist-visual,
  .application-intro,
  .application-panel {
    width: 100%;
    max-width: 720px;
    margin-inline: auto;
  }

  .artist-copy {
    order: 2;
  }

  .artist-visual {
    order: 1;
  }

  .artist-badge {
    left: 20px;
  }

  .application-section {
    padding: 92px 0;
  }

  .application-grid {
    gap: 48px;
  }

  .application-intro {
    position: static;
    padding-top: 0;
  }

  .community-copy {
    width: min(78%, 640px);
    max-width: 100%;
  }

  .footer-grid {
    gap: 42px;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  h1 {
    max-width: none;
    margin-bottom: 22px;
    font-size: clamp(2.55rem, 10.4vw, 3.35rem);
    line-height: 1.01;
    letter-spacing: -0.045em;
  }

  h2 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.05;
  }

  h3 {
    font-size: 1.25rem;
  }

  .site-header .brand img {
    width: 78px;
    height: 78px;
    transform: translateY(5px);
  }

  .hero {
    padding: 102px 0 62px;
  }

  .hero-grid {
    gap: 38px;
  }

  .hero-lead {
    margin-bottom: 28px;
    font-size: 1.02rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    margin-bottom: 32px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-proof div {
    min-width: 0;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-left-color: rgba(23, 213, 150, 0.48);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
  }

  .hero-image-frame {
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 24px;
  }

  .hero-image-frame::before {
    inset: 22px -8px -15px 18px;
    border-radius: 24px;
  }

  .hero-image-frame > img {
    border-radius: 23px;
    object-position: 74% center;
  }

  .floating-card {
    max-width: calc(100% - 26px);
    padding: 11px 13px;
    border-radius: 13px;
  }

  .card-live {
    top: 13px;
    left: 13px;
  }

  .card-earnings {
    right: 13px;
    bottom: 13px;
  }

  .trust-grid {
    min-height: 0;
    padding: 24px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .trust-items {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }

  .trust-items span {
    flex: 1 1 auto;
    text-align: center;
  }

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

  .section-heading.centered,
  .section-heading.centered > p:last-child {
    text-align: left;
  }

  .section-heading.centered .eyebrow {
    justify-content: flex-start;
  }

  .earning-card {
    display: block;
  }

  .earning-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .earning-content {
    padding: 24px 20px 26px;
  }

  .platform-grid,
  .artist-grid {
    gap: 42px;
  }

  .platform-visual img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .platform-label {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .steps li {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 13px;
    padding: 18px 0;
  }

  .steps li > span {
    width: 37px;
    height: 37px;
  }

  .artist-visual img {
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .artist-badge {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px 16px;
  }

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

  .value-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .value-icon {
    margin-bottom: 24px;
  }

  .comparison {
    padding: 24px 20px;
  }

  .support-path {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
  }

  .support-path i {
    width: 1px;
    height: 18px;
    margin-left: 6px;
    background: linear-gradient(180deg, rgba(23, 213, 150, 0.25), var(--mint));
  }

  .community-section {
    padding-top: 72px;
  }

  .community-card,
  .community-copy {
    min-height: 560px;
  }

  .community-card {
    border-radius: 24px;
  }

  .community-card::after {
    background: linear-gradient(180deg, rgba(5, 15, 23, 0.46), rgba(5, 15, 23, 0.96) 60%);
  }

  .community-copy {
    width: 100%;
    padding: 32px 22px;
    justify-content: flex-end;
  }

  .application-section {
    padding: 72px 0;
  }

  .application-grid {
    gap: 36px;
  }

  .application-panel {
    border-radius: 22px;
  }

  .creator-form {
    padding: 24px 18px;
  }

  .form-heading {
    margin-bottom: 22px;
    padding-bottom: 16px;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .form-grid,
  .checkbox-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-field input[type="text"],
  .form-field input[type="email"],
  .form-field input[type="url"],
  .form-field select,
  .form-field textarea {
    max-width: 100%;
    font-size: 16px;
  }

  .form-field input[type="text"],
  .form-field input[type="email"],
  .form-field input[type="url"],
  .form-field select {
    min-height: 52px;
  }

  .choice {
    min-height: 52px;
  }

  .field-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .submit-button {
    min-height: 56px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .footer-bottom {
    margin-top: 38px;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .section {
    padding: 64px 0;
  }

  h1 {
    font-size: clamp(2.35rem, 10.8vw, 2.95rem);
  }

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

  .eyebrow {
    gap: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .eyebrow span {
    width: 23px;
  }

  .site-header .brand img {
    width: 72px;
    height: 72px;
    transform: translateY(4px);
  }

  .hero {
    padding-top: 94px;
  }

  .hero-image-frame {
    aspect-ratio: 1 / 1.17;
  }

  .hero-image-frame > img {
    object-position: 72% center;
  }

  .card-earnings {
    display: none;
  }

  .trust-items span {
    flex-basis: 100%;
  }

  .community-card,
  .community-copy {
    min-height: 520px;
  }

  .community-copy {
    padding: 28px 18px;
  }

  .creator-form {
    padding: 22px 15px;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 24px 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* Artist ownership reassurance */
.trust-grid > p {
  max-width: 660px;
}

.trust-grid > p strong {
  color: var(--mint-2);
}

.rights-notice {
  display: grid;
  gap: 5px;
  max-width: 620px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(23, 213, 150, 0.22);
  border-left: 3px solid var(--mint);
  border-radius: 14px;
  background: rgba(23, 213, 150, 0.055);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.rights-notice strong {
  color: #b8cbc4;
  font-size: 0.92rem;
}

.rights-notice span {
  color: #81969d;
  font-size: 0.82rem;
  line-height: 1.55;
}

@media (max-width: 760px) {
  .trust-grid > p {
    max-width: none;
  }

  .rights-notice {
    margin-top: 16px;
    padding: 15px 16px;
  }
}

/* Fixed language switcher */
.language-switcher {
  position: fixed;
  z-index: 1200;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: inherit;
}

.language-button {
  position: relative;
  display: inline-flex;
  min-width: 82px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background:
    linear-gradient(145deg, rgba(12, 31, 42, 0.94), rgba(5, 17, 25, 0.94));
  color: #c5d5d0;
  box-shadow:
    0 16px 38px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 0 1px rgba(23, 213, 150, 0.03);
  backdrop-filter: blur(18px) saturate(120%);
  -webkit-backdrop-filter: blur(18px) saturate(120%);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.language-button::before {
  position: absolute;
  top: 7px;
  left: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px rgba(23, 213, 150, 0.8);
  content: "";
}

.language-button:hover {
  border-color: rgba(23, 213, 150, 0.42);
  background:
    linear-gradient(145deg, rgba(14, 37, 49, 0.97), rgba(6, 21, 30, 0.97));
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.48),
    0 0 26px rgba(23, 213, 150, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}

.language-button:focus-visible,
.language-menu button:focus-visible {
  outline: 3px solid rgba(23, 213, 150, 0.38);
  outline-offset: 3px;
}

.language-button > svg:first-child {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--mint-light);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-button > span {
  min-width: 22px;
  color: #d3dfdb;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  line-height: 1;
}

.language-chevron {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: #71878e;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease, stroke 180ms ease;
}

.language-switcher.open .language-chevron {
  stroke: var(--mint-light);
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 11px);
  width: 205px;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(155deg, rgba(11, 30, 41, 0.98), rgba(4, 15, 23, 0.985));
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px) saturate(125%);
  -webkit-backdrop-filter: blur(20px) saturate(125%);
  transform-origin: right bottom;
  animation: language-menu-in 160ms ease both;
}

.language-menu[hidden] {
  display: none;
}

@keyframes language-menu-in {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.language-menu button {
  display: grid;
  width: 100%;
  min-height: 43px;
  padding: 8px 10px;
  border: 0;
  border-radius: 11px;
  grid-template-columns: 34px 1fr 18px;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #9eafac;
  text-align: left;
  cursor: pointer;
  transition: background 150ms ease, color 150ms ease;
}

.language-menu button:hover {
  background: rgba(255, 255, 255, 0.045);
  color: #d1ded9;
}

.language-menu button.active {
  background: rgba(23, 213, 150, 0.09);
  color: #d9e7e2;
}

.language-option-code {
  color: #657c84;
  font-size: 0.7rem;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.language-menu button.active .language-option-code {
  color: var(--mint-light);
}

.language-menu button > span:nth-child(2) {
  font-size: 0.86rem;
  font-weight: 680;
}

.language-check {
  color: var(--mint);
  font-size: 0.82rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.65);
  transition: opacity 150ms ease, transform 150ms ease;
}

.language-menu button.active .language-check {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 700px) {
  .language-switcher {
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
  }

  .language-button {
    min-width: 72px;
    height: 44px;
    padding-inline: 12px;
    gap: 7px;
  }

  .language-button > svg:first-child {
    width: 17px;
    height: 17px;
  }

  .language-menu {
    width: 190px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .language-menu {
    animation: none;
  }
}
