:root {
  --ink: #111313;
  --muted: #66665f;
  --paper: #f3ecdf;
  --paper-strong: #fffaf0;
  --line: #dfd5c4;
  --teal: #267c78;
  --coral: #da6858;
  --blue: #506b9a;
  --black: #050606;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 24, 21, 0.16);
}

* {
  box-sizing: border-box;
}

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

code,
p,
.notice,
.hint {
  overflow-wrap: anywhere;
}

button,
input {
  font: inherit;
}

button {
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  color: var(--white);
  background: var(--black);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, opacity 160ms ease;
}

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

button:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

button.ghost {
  color: var(--ink);
  background: transparent;
  border: 1px solid rgba(17, 19, 19, 0.14);
}

button.small {
  min-height: 36px;
  padding: 0 14px;
  font-size: 13px;
}

input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}

input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(38, 124, 120, 0.14);
}

.site {
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  padding: 0 28px;
  color: #eef3ef;
  background: var(--black);
  font-size: 13px;
}

.topbar-spacer {
  flex: 1;
}

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5cd46a;
}

.login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 34px);
  padding: clamp(20px, 5vw, 64px);
  background: #07090a;
}

.login-card {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  width: 100%;
  max-width: 920px;
  min-height: 540px;
  overflow: hidden;
  border-radius: 22px;
  background: #0d0f10;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.login-card-form {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 44px);
}

.login-mark {
  display: inline-flex;
  width: 40px;
  height: 40px;
}

.login-mark img {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.login-card-intro {
  margin-top: 38px;
}

.login-card-intro h1 {
  max-width: none;
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #f7f7f2;
}

.login-card-intro p {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 500;
  color: #8c918f;
}

.login-controls {
  width: 100%;
  max-width: 420px;
  margin-top: 40px;
  display: grid;
  gap: 16px;
}

.login-provider,
.login-email button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 54px;
  border: 1px solid #232729;
  border-radius: 13px;
  color: #f4f4ef;
  background: #101314;
  font-size: 14px;
  font-weight: 600;
}

.login-provider:hover,
.login-email button:hover {
  transform: none;
  border-color: #383d3f;
  background: #15191a;
}

.google-mark {
  width: 18px;
  height: 18px;
}

.login-divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555b5a;
}

.login-divider::before,
.login-divider::after {
  content: "";
  height: 1px;
  background: #202425;
}

.login-email {
  display: grid;
  gap: 12px;
}

.login-email input {
  height: 52px;
  border: 1px solid #232729;
  border-radius: 13px;
  padding: 0 16px;
  color: #f7f7f2;
  background: #090b0c;
  font-size: 15px;
  font-weight: 500;
}

.login-email input::placeholder {
  color: #5e6462;
}

.login-email input:focus {
  border-color: #757d79;
  box-shadow: none;
}

.login-preview {
  width: 100%;
  height: 48px;
  color: #aeb7b3;
  background: transparent;
  border: 1px dashed #2b2f31;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 600;
}

.login-preview:hover {
  transform: none;
  color: #f4f4ef;
  border-color: #3a4042;
}

.login-notice-text {
  min-height: 0;
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #c9d2cb;
}

.login-notice-text:empty {
  display: none;
}

.login-controls .notice {
  border-color: #3a2f24;
  color: #e6c8a8;
  background: rgba(120, 80, 40, 0.12);
  font-size: 13px;
}

.login-controls .notice code {
  color: #f4f4ef;
}

.login-terms {
  max-width: 390px;
  margin: 0;
  padding-top: 28px;
  margin-top: auto;
  font-size: 11px;
  line-height: 1.6;
  color: #676d6b;
}

.login-terms a {
  font-weight: 600;
  color: #aeb7b3;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.login-card-media {
  position: relative;
  overflow: hidden;
  background: #1a0f1f;
}

.login-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
}

.login-card-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 15, 16, 0) 26%, rgba(13, 15, 16, 0.28) 56%, rgba(13, 15, 16, 0.9) 100%);
}

.login-card-caption {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 36px;
  color: #fff7ef;
}

.login-card-eyebrow {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffc7e6;
}

.login-card-headline {
  max-width: 340px;
  margin: 10px 0 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: #fff7ef;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  min-height: 620px;
  padding: min(8vw, 92px);
  background: #080b13;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  min-width: 0;
  max-width: 720px;
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(3, 4, 8, 0.9), rgba(3, 4, 8, 0.5) 42%, rgba(3, 4, 8, 0.16));
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.app-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 13px 8px 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  font-weight: 800;
}

.app-mark img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #9be0d8;
}

h1,
h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.96;
}

h1 {
  max-width: 700px;
  font-size: clamp(56px, 8vw, 118px);
}

h2 {
  max-width: 790px;
  font-size: clamp(40px, 6vw, 82px);
}

.login-panel h2,
.quiz h2,
.cabinet h2,
.guide h2,
.accepted h2,
.loading h2 {
  font-size: clamp(34px, 4vw, 62px);
}

p {
  color: var(--muted);
  line-height: 1.58;
}

.hero-lede {
  width: min(100%, 620px);
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.role-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.role-strip span {
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(10px);
}

.login-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 52px;
  background: var(--paper-strong);
}

.login-panel h2 {
  max-width: 440px;
  font-size: 38px;
}

.notice {
  border: 1px solid rgba(218, 104, 88, 0.28);
  border-radius: 8px;
  padding: 14px;
  color: #744136;
  background: rgba(218, 104, 88, 0.1);
  line-height: 1.45;
}

.auth-form,
.upload-list {
  display: grid;
  gap: 14px;
}

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

.auth-actions,
.nav-row,
.guide-actions,
.header-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.hint {
  min-height: 24px;
  margin: 0;
  font-size: 14px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  border-bottom: 1px solid #1a1d1e;
  padding: 0 7vw;
  background: rgba(7, 9, 10, 0.85);
  backdrop-filter: blur(14px);
}

.header .brand {
  color: #f4f4ef;
}

.header .secondary {
  color: #aeb7b3;
  background: transparent;
  border: 1px solid #232729;
}

.header .secondary:hover {
  color: #f4f4ef;
  border-color: #383d3f;
}

.header .ghost {
  color: #8c918f;
  background: transparent;
  border: 1px solid transparent;
}

.header .ghost:hover {
  color: #f4f4ef;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f4f4ef;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

.landing {
  background: #07090a;
  color: #f4f4ef;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  border-bottom: 1px solid #1a1d1e;
  padding: 0 7vw;
  background: rgba(7, 9, 10, 0.85);
  backdrop-filter: blur(14px);
}

.landing-nav .brand img {
  width: 28px;
  height: 28px;
}

.landing-nav .ghost {
  color: #aeb7b3;
  background: transparent;
  border: 1px solid #232729;
}

.landing-nav .ghost:hover {
  color: #f4f4ef;
  border-color: #383d3f;
}

.landing-nav button:not(.ghost) {
  color: #07090a;
  background: #f4f4ef;
  font-weight: 700;
}

.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.92fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(40px, 7vw, 96px) 7vw;
}

.landing-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.pill {
  align-self: flex-start;
  margin-bottom: 26px;
  border: 1px solid #232729;
  border-radius: 999px;
  padding: 8px 14px;
  color: #aeb7b3;
  background: #101314;
  font-size: 13px;
  font-weight: 600;
}

.landing-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(46px, 6vw, 92px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #f7f7f2;
}

.landing-hero-copy p {
  max-width: 560px;
  margin-top: 22px;
  color: #8c918f;
  font-size: 19px;
}

.landing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
}

.landing-actions button,
.final-cta button {
  height: 52px;
  padding: 0 26px;
  color: #07090a;
  background: #f4f4ef;
  font-weight: 700;
}

.landing-actions button:hover,
.final-cta button:hover {
  background: #ffffff;
}

.landing-actions span {
  color: #676d6b;
  font-weight: 600;
}

.landing-hero-media {
  position: relative;
  overflow: hidden;
  min-height: clamp(320px, 42vw, 520px);
  border: 1px solid #1a1d1e;
  border-radius: 22px;
  background: #0d0f10;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.landing-hero-media-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 15, 16, 0) 60%, rgba(13, 15, 16, 0.5) 100%);
  pointer-events: none;
}

.landing-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 0 7vw 40px;
}

.proof-strip div {
  padding: 28px;
  border: 1px solid #1a1d1e;
  border-radius: 16px;
  background: #0d0f10;
}

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

.proof-strip strong {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1;
  color: #f7f7f2;
}

.proof-strip span {
  margin-top: 10px;
  color: #8c918f;
  font-weight: 600;
}

.creator-proof {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 100px) 7vw;
  border-top: 1px solid #1a1d1e;
  border-bottom: 1px solid #1a1d1e;
  background: #0a0c0d;
}

.creator-proof-copy h2,
.community-section h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.8vw, 70px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #f7f7f2;
}

.creator-proof-copy p,
.community-section > div > p {
  max-width: 620px;
  margin-top: 18px;
  color: #8c918f;
  font-size: 18px;
}

.creator-proof-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.creator-proof-actions button {
  height: 50px;
  padding: 0 24px;
  color: #07090a;
  background: #f4f4ef;
  border-radius: 13px;
  font-weight: 700;
}

.creator-proof-actions a {
  color: #ffc7e6;
  font-weight: 800;
  text-decoration: none;
}

.creator-proof-actions a:hover {
  color: #f7f7f2;
}

.creator-proof-card {
  position: relative;
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #1a1d1e;
  border-radius: 22px;
  background: #0d0f10;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.creator-proof-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.creator-proof-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(13, 15, 16, 0) 44%, rgba(13, 15, 16, 0.88) 100%);
}

.creator-proof-card figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px;
  background: rgba(7, 9, 10, 0.72);
  backdrop-filter: blur(16px);
}

.creator-proof-card span {
  color: #ffc7e6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.creator-proof-card strong {
  display: block;
  margin-top: 8px;
  color: #f7f7f2;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.05;
}

.creator-proof-card p {
  margin: 10px 0 0;
  color: #aeb7b3;
}

.creator-proof-card a {
  color: #ffc7e6;
  font-weight: 800;
  text-decoration: none;
}

.creator-proof-card a:hover {
  color: #f7f7f2;
}

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

.community-grid article {
  min-width: 0;
  border: 1px solid #1a1d1e;
  border-radius: 16px;
  padding: 24px;
  background: #0d0f10;
}

.community-grid h3 {
  margin: 22px 0 0;
  color: #f4f4ef;
  font-size: 22px;
  line-height: 1.16;
}

.community-grid h3 {
  margin-top: 0;
}

.community-grid p {
  margin: 12px 0 0;
  color: #8c918f;
  font-size: 16px;
}

.landing-section {
  padding: clamp(56px, 8vw, 100px) 7vw;
}

.intro-grid,
.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.landing-section h2 {
  max-width: 720px;
  font-size: clamp(34px, 4.4vw, 64px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #f7f7f2;
}

.landing-section p {
  max-width: 600px;
  margin-top: 18px;
  color: #8c918f;
  font-size: 18px;
}

.landing-section .landing-actions button,
.intro-grid > div > button {
  margin-top: 28px;
  height: 50px;
  padding: 0 24px;
  color: #f4f4ef;
  background: #101314;
  border: 1px solid #232729;
  border-radius: 13px;
  font-weight: 600;
}

.intro-grid > div > button:hover {
  border-color: #383d3f;
  background: #15191a;
}

.media-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid #1a1d1e;
  border-radius: 22px;
  background: #0d0f10;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.landing-preview {
  justify-self: end;
  width: min(100%, 480px);
  aspect-ratio: 1 / 1;
}

.asset-showcase {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(56px, 8vw, 100px) 7vw;
  border-top: 1px solid #1a1d1e;
  border-bottom: 1px solid #1a1d1e;
  background: #0a0c0d;
}

.asset-showcase-copy {
  position: sticky;
  top: 28px;
}

.asset-showcase h2 {
  margin-top: 12px;
  font-size: clamp(32px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #f7f7f2;
}

.asset-showcase p {
  max-width: 460px;
  margin-top: 16px;
  color: #8c918f;
  font-size: 18px;
}

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

.asset-grid article {
  display: grid;
  align-content: space-between;
  overflow: hidden;
  border: 1px solid #1a1d1e;
  border-radius: 16px;
  background: #0d0f10;
}

.asset-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.asset-grid h3 {
  margin: 0;
  padding: 18px 20px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.2;
  color: #f4f4ef;
}

.section-head {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.section-head span,
.mini-label {
  color: #ffc7e6;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split-band {
  border: 1px solid #1a1d1e;
  border-radius: 22px;
  padding: clamp(36px, 5vw, 64px);
  margin: clamp(8px, 2vw, 24px) 7vw;
  color: #f4f4ef;
  background: #0d0f10;
}

.split-band p {
  color: #8c918f;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  border: 1px solid #232729;
  border-radius: 13px;
  padding: 18px 20px;
  background: #101314;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  display: inline-block;
  flex: none;
  width: 9px;
  height: 9px;
  margin-right: 12px;
  border-radius: 50%;
  background: #5cd46a;
}

.community-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  padding: clamp(56px, 8vw, 100px) 7vw;
  border-top: 1px solid #1a1d1e;
  border-bottom: 1px solid #1a1d1e;
  background: #0a0c0d;
}

.final-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(64px, 9vw, 110px) 7vw;
  border-top: 1px solid #1a1d1e;
  color: #f4f4ef;
  background: #0a0c0d;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: #f7f7f2;
}

.final-cta p {
  max-width: 480px;
  margin: 0;
  color: #8c918f;
  font-size: 18px;
}

.landing-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 7vw;
  border-top: 1px solid #1a1d1e;
  color: #676d6b;
  background: #07090a;
  font-size: 13px;
  font-weight: 600;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-links a,
.legal-back {
  color: #aeb7b3;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-links a:hover,
.legal-back:hover {
  color: #f7f7f2;
}

.legal-page {
  min-height: calc(100vh - 34px);
  background: #07090a;
  color: #f4f4ef;
}

.legal-nav {
  position: sticky;
  top: 0;
  z-index: 10;
}

.legal-page .landing-nav button:not(.ghost) {
  color: #07090a;
  background: #f4f4ef;
  font-weight: 700;
}

.legal-document {
  width: min(100%, 880px);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 86px) max(22px, 4vw) clamp(64px, 9vw, 110px);
}

.legal-back {
  display: inline-flex;
  margin-bottom: 34px;
  font-size: 14px;
  font-weight: 700;
}

.legal-document h1 {
  max-width: 760px;
  margin-top: 14px;
  color: #f7f7f2;
  font-size: clamp(44px, 7vw, 82px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.legal-updated {
  margin: 18px 0 42px;
  color: #8c918f;
  font-size: 15px;
  font-weight: 700;
}

.legal-document section {
  border-top: 1px solid #1a1d1e;
  padding: 26px 0;
}

.legal-document h2 {
  max-width: none;
  color: #f7f7f2;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.legal-document p {
  max-width: 760px;
  margin: 12px 0 0;
  color: #aeb7b3;
  font-size: 17px;
  line-height: 1.68;
}

.quiz,
.accepted,
.loading {
  display: grid;
  place-items: center;
  min-height: calc(100vh - 118px);
  padding: clamp(42px, 5vw, 74px) 7vw;
}

.quiz {
  grid-template-columns: minmax(0, 760px);
  align-content: start;
  justify-content: center;
  gap: 28px;
  place-items: start stretch;
  padding: clamp(48px, 6vw, 78px) max(22px, 7vw);
  background: #07090a;
}

.quiz-copy {
  position: static;
  min-width: 0;
}

.quiz-copy h2 {
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f7f7f2;
}

.quiz-copy p {
  max-width: 620px;
  margin-top: 16px;
  color: #8c918f;
  font-size: 17px;
}

.progress {
  overflow: hidden;
  height: 6px;
  width: min(100%, 760px);
  margin-top: 28px;
  border-radius: 999px;
  background: #1a1d1e;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5cd46a, #ffc7e6);
}

.quiz-control {
  display: grid;
  gap: 26px;
}

.quiz-control .nav-row button {
  height: 50px;
  padding: 0 26px;
  border-radius: 13px;
}

.quiz-control .nav-row button[data-action="quiz-next"] {
  color: #07090a;
  background: #f4f4ef;
  font-weight: 700;
}

.quiz-control .nav-row button[data-action="quiz-next"]:hover {
  background: #ffffff;
}

.options {
  display: grid;
  gap: 12px;
}

.option-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  align-items: center;
  gap: 18px;
  min-height: 84px;
  border: 1px solid #232729;
  border-radius: 13px;
  padding: 16px 20px;
  color: #f4f4ef;
  background: #101314;
  text-align: left;
}

.option-card:hover {
  border-color: #383d3f;
  background: #15191a;
}

.option-card.selected {
  border-color: rgba(92, 212, 106, 0.55);
  background: #0f1512;
}

.option-head {
  display: block;
  min-width: 0;
}

.option-title {
  display: block;
  color: #f4f4ef;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.option-description {
  display: block;
  margin-top: 5px;
  color: #8c918f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.selection-dot {
  width: 22px;
  height: 22px;
  border: 2px solid #3a3f41;
  border-radius: 50%;
}

.selection-dot.checkbox {
  border-radius: 7px;
}

.option-card.selected .selection-dot {
  border-color: #5cd46a;
  background: radial-gradient(circle, #5cd46a 0 42%, transparent 44%);
}

.option-card.selected .selection-dot.checkbox {
  background: #5cd46a;
  box-shadow: inset 0 0 0 4px #0f1512;
}

.large-input {
  min-height: 60px;
  border: 1px solid #232729;
  border-radius: 13px;
  color: #f7f7f2;
  background: #090b0c;
  font-size: 17px;
}

.large-input::placeholder {
  color: #5e6462;
}

.large-input:focus {
  border-color: #757d79;
  box-shadow: none;
}

.field-label {
  color: #8c918f;
  font-weight: 600;
}

.loading {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.accepted {
  position: relative;
  text-align: center;
}

.accepted h2,
.accepted-grid {
  max-width: 820px;
}

.accepted {
  overflow: hidden;
  background: #07090a;
}

.accepted h2 {
  color: #f7f7f2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.accepted > p {
  max-width: 560px;
  color: #8c918f;
  font-size: 17px;
}

.accepted > button {
  height: 52px;
  padding: 0 26px;
  color: #07090a;
  background: #f4f4ef;
  font-weight: 700;
}

.accepted > button:hover {
  background: #ffffff;
}

.confetti-canvas {
  position: fixed;
  inset: 0;
  z-index: 30;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}

.loading-review {
  display: grid;
  place-items: center;
  max-width: none;
  width: 100%;
  background: #07090a;
}

.loading-review-card {
  display: grid;
  justify-items: center;
  width: min(100%, 520px);
  border: 1px solid #1a1d1e;
  border-radius: 22px;
  padding: clamp(26px, 5vw, 46px);
  background: #0d0f10;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
}

.loading-visual {
  position: relative;
  display: grid;
  place-items: center;
  width: 210px;
  height: 210px;
  margin-bottom: 28px;
}

.loading-visual img {
  position: absolute;
  right: 4px;
  bottom: 0;
  z-index: 2;
  width: 78px;
  height: 78px;
  object-fit: contain;
  border: 1px solid #232729;
  border-radius: 18px;
  background: #101314;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
}

.loading-ring-outer {
  position: relative;
  z-index: 1;
  width: 190px;
  height: 190px;
}

.loading-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.ring-bg,
.ring-fill {
  fill: none;
  stroke-width: 7;
}

.ring-bg {
  stroke: #1a1d1e;
}

.ring-fill {
  stroke: #5cd46a;
  stroke-linecap: round;
  transition: stroke-dashoffset 100ms linear;
}

.loading-percentage {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  place-items: center;
  color: #f7f7f2;
  font-size: 30px;
  font-weight: 800;
}

.loading-copy h2 {
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f7f7f2;
}

.loading-copy p {
  margin: 12px auto 0;
  max-width: 360px;
  color: #8c918f;
  font-size: 17px;
}

.loading-checklist {
  display: grid;
  gap: 14px;
  width: min(100%, 390px);
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #8c918f;
  font-size: 16px;
  font-weight: 600;
  opacity: 0.42;
  transform: translateX(-10px);
  transition: opacity 240ms ease, transform 240ms ease, color 240ms ease;
}

.check-item.active {
  color: #f4f4ef;
  opacity: 1;
  transform: translateX(0);
}

.check-item::before {
  content: "";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border: 2px solid #2b2f31;
  border-radius: 50%;
  color: #07090a;
  font-size: 14px;
  font-weight: 900;
  transition: background 220ms ease, border-color 220ms ease;
}

.check-item.done::before {
  content: "✓";
  border-color: #5cd46a;
  background: #5cd46a;
}

.accepted-grid,
.job-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin: 34px 0;
}

.accepted-grid div,
.job-summary div {
  border: 1px solid #232729;
  border-radius: 13px;
  padding: 18px;
  background: #101314;
}

.accepted-grid span,
.job-summary span {
  display: block;
  margin-bottom: 8px;
  color: #ffc7e6;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.accepted-grid strong,
.job-summary strong {
  color: #f7f7f2;
}

.accepted-grid p {
  margin: 10px auto 0;
  max-width: 250px;
  color: #8c918f;
  font-size: 14px;
  line-height: 1.4;
}

.dashboard {
  display: grid;
  grid-template-columns: 250px minmax(0, 820px);
  gap: 46px;
  align-items: start;
  padding: 48px 7vw 88px;
  background: #07090a;
}

.upload-page {
  display: grid;
  justify-content: center;
  padding: 48px 7vw 88px;
  background: #07090a;
}

.sidebar {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 6px;
  border: 1px solid #1a1d1e;
  border-radius: 16px;
  padding: 16px;
  background: #0d0f10;
}

.muted {
  margin: 0 0 8px;
  color: #8c918f;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.sidebar button {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 9px;
  align-items: center;
  min-height: 48px;
  border-radius: 10px;
  padding: 8px 10px;
  color: #aeb7b3;
  background: transparent;
  text-align: left;
  line-height: 1.2;
}

.sidebar button:hover {
  color: #f4f4ef;
  background: #101314;
}

.sidebar button span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #232729;
  background: #101314;
  color: #aeb7b3;
  font-size: 12px;
}

.sidebar button.active {
  color: #07090a;
  background: #f4f4ef;
}

.sidebar button.active span {
  border-color: transparent;
  color: #f4f4ef;
  background: #07090a;
}

.cabinet,
.guide {
  min-width: 0;
}

.upload-cabinet {
  width: min(100%, 920px);
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: #ffc7e6;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cabinet h2 {
  color: #f7f7f2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cabinet p {
  color: #8c918f;
}

.cabinet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid #1a1d1e;
  padding-bottom: 28px;
}

.upload-cabinet .secondary {
  color: #aeb7b3;
  background: transparent;
  border: 1px solid #232729;
}

.upload-cabinet .secondary:hover {
  color: #f4f4ef;
  border-color: #383d3f;
}

.upload-slot span {
  color: #aeb7b3;
  font-size: 14px;
  font-weight: 600;
}

.upload-slot input {
  height: 54px;
  border: 1px solid #232729;
  border-radius: 12px;
  background: #0d0f10;
  color: #f7f7f2;
}

.upload-slot input::placeholder {
  color: #5e6462;
}

.upload-slot input:focus {
  border-color: #757d79;
  box-shadow: none;
}

.upload-progress {
  margin: 4px 0 0;
  color: #8c918f;
  font-size: 14px;
  font-weight: 600;
}

.send-button {
  width: 100%;
  height: 56px;
  margin-top: 6px;
  color: #07090a;
  background: #f4f4ef;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
}

.send-button:hover {
  background: #ffffff;
}

.link-button {
  justify-self: center;
  min-height: 0;
  margin-top: 2px;
  padding: 6px 8px;
  color: #8c918f;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-button:hover {
  color: #f4f4ef;
  transform: none;
}

.upload-cabinet .hint {
  color: #aeb7b3;
}

.upload-cabinet .hint:empty {
  display: none;
}

.submitted-panel {
  display: grid;
  justify-items: start;
  gap: 14px;
  margin-top: 30px;
  border: 1px solid #1a1d1e;
  border-radius: 16px;
  padding: clamp(24px, 4vw, 34px);
  background: #0d0f10;
}

.submitted-check {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #07090a;
  background: #5cd46a;
  font-size: 24px;
  font-weight: 800;
}

.submitted-panel h3 {
  margin: 0;
  color: #f7f7f2;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.submitted-panel > p {
  max-width: 560px;
  margin: 0;
  color: #aeb7b3;
  font-size: 16px;
  line-height: 1.55;
}

.submitted-links {
  display: grid;
  gap: 8px;
  width: 100%;
  margin: 6px 0;
}

.submitted-links a {
  display: grid;
  gap: 3px;
  border: 1px solid #232729;
  border-radius: 12px;
  padding: 12px 14px;
  color: #aeb7b3;
  background: #101314;
  font-size: 14px;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.submitted-links a span {
  color: #8c918f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.submitted-links a:hover {
  border-color: #383d3f;
}

.submitted-panel .secondary {
  color: #aeb7b3;
  background: transparent;
  border: 1px solid #232729;
}

.submitted-panel .secondary:hover {
  color: #f4f4ef;
  border-color: #383d3f;
}

.cabinet-head > button {
  flex: 0 0 auto;
  white-space: nowrap;
}

.cabinet-head p {
  max-width: 700px;
}

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

.upload-deadline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  gap: 18px;
  align-items: stretch;
  margin: 30px 0 0;
  border: 1px solid #1a1d1e;
  border-radius: 8px;
  padding: 18px;
  color: #f4f4ef;
  background: #0d0f10;
}

.upload-deadline.expired {
  border-color: rgba(218, 104, 88, 0.5);
}

.upload-deadline-copy {
  display: grid;
  align-content: center;
  min-width: 0;
}

.upload-deadline-copy span {
  color: #ffc7e6;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.upload-deadline-copy strong {
  display: block;
  margin-top: 8px;
  color: #f7f7f2;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
}

.upload-deadline-copy p {
  margin: 10px 0 0;
  color: #aeb7b3;
  font-size: 16px;
}

.upload-deadline-copy .deadline-status {
  color: #5cd46a;
  font-size: 18px;
  font-weight: 850;
}

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

.time-left-grid div {
  display: grid;
  place-items: center;
  min-height: 116px;
  border: 1px solid #232729;
  border-radius: 8px;
  padding: 14px 10px;
  background: #101314;
}

.time-left-grid strong {
  color: #5cd46a;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.95;
}

.time-left-grid span {
  margin-top: 8px;
  color: #8c918f;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.upload-list {
  margin-top: 22px;
}

.upload-slot {
  display: grid;
  gap: 8px;
}

.guide {
  padding-top: 24px;
}

.guide p {
  max-width: 700px;
  color: #8c918f;
  font-size: 17px;
  line-height: 1.6;
}

.guide h2 {
  max-width: 740px;
  margin-bottom: 24px;
  color: #f7f7f2;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.guide-asset-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 820px;
  margin-top: 28px;
}

.guide-asset-grid figure,
.guide-image {
  margin: 0;
  border: 1px solid #1a1d1e;
  border-radius: 16px;
  overflow: hidden;
  background: #0d0f10;
}

.guide-asset-grid img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  padding: 16px;
  background: #101314;
}

.guide-asset-grid figcaption {
  border-top: 1px solid #1a1d1e;
  padding: 12px 14px;
  color: #f4f4ef;
  font-weight: 850;
}

.guide-image {
  display: grid;
  place-items: center;
  max-width: 520px;
  margin-top: 30px;
  padding: 18px;
  background: #0d0f10;
}

.guide-image img {
  width: min(100%, 420px);
  max-height: 320px;
  object-fit: contain;
}

.guide-checklist,
.guide-rules,
.guide-example {
  max-width: 700px;
  margin-top: 22px;
  border: 1px solid #1a1d1e;
  border-radius: 16px;
  padding: 18px;
  background: #0d0f10;
}

.guide-checklist h3,
.guide-example h3 {
  margin: 0 0 12px;
  color: #f7f7f2;
  font-size: 15px;
  font-weight: 900;
}

.guide-checklist ol,
.guide-rules ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.guide-checklist li,
.guide-rules li {
  color: #aeb7b3;
  font-size: 16px;
  line-height: 1.45;
}

.guide-checklist ol {
  list-style: disc;
}

.guide-links {
  display: grid;
  gap: 10px;
  max-width: 700px;
  margin-top: 22px;
}

.guide-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 52px;
  border: 1px solid #232729;
  border-radius: 13px;
  padding: 12px 16px;
  color: #f4f4ef;
  background: #101314;
  font-weight: 850;
  line-height: 1.25;
  text-decoration: none;
}

.guide-links a::after {
  content: "↗";
  flex: 0 0 auto;
  color: #8c918f;
  font-size: 15px;
}

.guide-links a:hover {
  border-color: #383d3f;
  background: #15191a;
}

.guide-example p {
  margin: 0;
  color: #f7f7f2;
  font-weight: 850;
}

.guide-note {
  border-left: 3px solid #5cd46a;
  padding-left: 14px;
  color: #f4f4ef !important;
  font-weight: 750;
}

.guide-actions {
  justify-content: space-between;
  max-width: 700px;
  margin-top: 42px;
  border-top: 1px solid #1a1d1e;
  padding-top: 24px;
}

.guide-actions .secondary {
  color: #aeb7b3;
  background: transparent;
  border: 1px solid #232729;
}

.guide-actions .secondary:hover {
  color: #f4f4ef;
  border-color: #383d3f;
}

.guide-actions button:not(.secondary) {
  color: #07090a;
  background: #f4f4ef;
  font-weight: 700;
}

.guide-actions button:not(.secondary):hover {
  background: #ffffff;
}

@media (max-width: 1100px) {
  .login,
  .landing-hero,
  .creator-proof,
  .intro-grid,
  .split-band,
  .community-section,
  .quiz,
  .dashboard {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    min-height: auto;
  }

  .landing-hero-media {
    min-height: 420px;
  }

  .proof-strip,
  .asset-showcase,
  .community-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .asset-showcase-copy {
    position: static;
  }

  .hero {
    min-height: 520px;
  }

  .login-card {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .login-card-media {
    order: -1;
    min-height: 260px;
  }

  .login-panel {
    padding: 34px 22px 46px;
  }

  .header {
    padding: 14px 20px;
  }

  .quiz-copy {
    position: static;
  }

  .landing-nav {
    padding: 14px 20px;
  }

  .sidebar {
    position: static;
  }

  .dashboard .cabinet {
    order: -1;
  }

  .cabinet-head {
    display: grid;
  }

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

  .accepted-grid,
  .job-summary,
  .guide-asset-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding: 0 14px;
    font-size: 12px;
  }

  .topbar-spacer,
  .topbar span:last-child {
    display: none;
  }

  .hero {
    min-height: 560px;
    padding: 28px;
  }

  .hero-bg img {
    object-position: 64% center;
  }

  .landing-nav {
    align-items: flex-start;
    gap: 14px;
  }

  .landing-nav .header-actions {
    justify-content: flex-end;
  }

  .landing-hero-copy h1 {
    font-size: clamp(40px, 12vw, 64px);
  }

  .landing-hero-media {
    min-height: 320px;
  }

  .creator-proof-card {
    min-height: 380px;
  }

  .split-band {
    margin-left: 20px;
    margin-right: 20px;
  }

  .proof-strip,
  .community-grid,
  .asset-grid {
    grid-template-columns: 1fr;
  }

  .proof-strip div,
  .landing-section,
  .creator-proof,
  .community-section,
  .asset-showcase,
  .final-cta,
  .landing-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .input-row,
  .auth-actions,
  .nav-row,
  .guide-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .time-left-grid {
    gap: 8px;
  }

  .time-left-grid div {
    min-height: 94px;
  }

  button {
    width: 100%;
  }

  .quiz,
  .dashboard,
  .accepted,
  .loading {
    padding: 34px 18px 56px;
  }
}
