/* SHOWUDO — Premium discovery, mobile-first */
:root {
  --bg: #0a0a0b;
  --bg-elevated: #141416;
  --bg-card: #1a1a1e;
  --bg-soft: #f7f7f5;
  --text: #f5f5f4;
  --text-muted: #a8a29e;
  --text-dark: #1c1917;
  --text-dark-muted: #57534e;
  --accent: #ff2d55;
  --accent-soft: #ff6b81;
  --accent-glow: rgba(255, 45, 85, 0.35);
  --trust: #00d4aa;
  --border: rgba(255, 255, 255, 0.08);
  --border-light: rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  --font: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Syne", "DM Sans", system-ui, sans-serif;
  --max: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  min-height: 100dvh;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 10, 11, 0.78);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: baseline;
  gap: 0.15em;
}

.logo span {
  color: var(--accent);
  font-weight: 700;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--accent-soft);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px var(--accent-glow);
  outline: none;
}

.nav-cta:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s, color 0.2s;
  text-align: center;
}

.btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 3px;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  padding: 1rem 1.75rem;
  font-size: 0.9375rem;
  letter-spacing: 0.03em;
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-dark {
  background: var(--text-dark);
  color: #fff;
  padding: 1rem 1.75rem;
  font-size: 0.9375rem;
}

.btn-dark:hover {
  background: #000;
  transform: translateY(-2px);
}

.btn-full { width: 100%; }
.btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none !important;
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% 20% auto -10%;
  height: 60%;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 30% -20% auto 40%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(0, 212, 170, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--trust);
  margin-bottom: 1.25rem;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--trust);
  box-shadow: 0 0 12px var(--trust);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 9vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  max-width: 12ch;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: var(--text-muted);
  font-weight: 500;
  max-width: 28ch;
  margin-bottom: 0.75rem;
}

.hero-support {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 36ch;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.hero-trust li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-trust svg {
  width: 16px;
  height: 16px;
  color: var(--trust);
  flex-shrink: 0;
}

/* —— Talent strip / video cards —— */
.section {
  padding: 4rem 0;
}

.section-head {
  margin-bottom: 2rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-head p {
  color: var(--text-muted);
  max-width: 42ch;
}

.talent-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .talent-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (min-width: 900px) {
  .talent-grid { grid-template-columns: repeat(4, 1fr); }
}

.video-card {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  cursor: default;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.video-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow);
}

.video-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.85;
}

/* Gradient placeholders — TikTok-ish energy */
.vc-dj { background: linear-gradient(145deg, #1a0533 0%, #ff2d55 55%, #ff8a00 100%); }
.vc-singer { background: linear-gradient(160deg, #0c1a2e 0%, #3b82f6 50%, #a78bfa 100%); }
.vc-magician { background: linear-gradient(150deg, #0a0a0a 0%, #4c1d95 50%, #f59e0b 100%); }
.vc-painter { background: linear-gradient(135deg, #1c1917 0%, #dc2626 45%, #fbbf24 100%); }
.vc-sax { background: linear-gradient(155deg, #052e16 0%, #059669 50%, #fde047 100%); }
.vc-chef { background: linear-gradient(145deg, #1c0a00 0%, #ea580c 50%, #fef3c7 100%); }
.vc-bartender { background: linear-gradient(160deg, #0f172a 0%, #6366f1 50%, #ec4899 100%); }
.vc-clown { background: linear-gradient(140deg, #3b0764 0%, #db2777 45%, #fbbf24 100%); }
.vc-teacher { background: linear-gradient(150deg, #042f2e 0%, #0d9488 50%, #99f6e4 100%); }
.vc-photographer { background: linear-gradient(145deg, #18181b 0%, #52525b 40%, #e4e4e7 100%); }
.vc-dancer { background: linear-gradient(155deg, #4a044e 0%, #e11d48 50%, #fb923c 100%); }

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 55%);
  pointer-events: none;
}

.video-card-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: grid;
  place-items: center;
  z-index: 2;
  transition: transform 0.2s var(--ease), background 0.2s;
}

.video-card:hover .video-card-play {
  background: var(--accent);
  border-color: var(--accent);
  transform: translate(-50%, -50%) scale(1.08);
}

.video-card-play svg {
  width: 14px;
  height: 14px;
  margin-left: 2px;
  fill: #fff;
}

.video-card-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  z-index: 2;
}

.video-card-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.2rem;
}

.video-card-title {
  font-weight: 700;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
}

.video-card-price {
  font-size: 0.75rem;
  color: var(--trust);
  font-weight: 600;
  margin-top: 0.15rem;
}

/* —— How it works —— */
.how {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.steps {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 700px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.step-card:hover { border-color: rgba(255, 45, 85, 0.35); }

.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
  opacity: 0.9;
}

.step-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  letter-spacing: -0.01em;
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* —— Map vision —— */
.map-vision {
  position: relative;
}

.map-strip {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 30% 40%, rgba(255, 45, 85, 0.25) 0%, transparent 35%),
    radial-gradient(circle at 70% 60%, rgba(0, 212, 170, 0.2) 0%, transparent 30%),
    linear-gradient(160deg, #12121a 0%, #1a1a28 100%);
  min-height: 280px;
  padding: 2rem 1.5rem;
  display: grid;
  gap: 1.5rem;
  align-content: center;
}

@media (min-width: 700px) {
  .map-strip {
    grid-template-columns: 1.2fr 1fr;
    min-height: 320px;
    padding: 2.5rem;
  }
}

.map-strip h2 {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.map-strip > div > p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 36ch;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 600;
}

.pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.pill:nth-child(2) .pill-dot { background: var(--trust); }
.pill:nth-child(3) .pill-dot { background: #fbbf24; }

.map-dots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  align-self: center;
}

.map-pin {
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  position: relative;
  animation: float 4s ease-in-out infinite;
}

.map-pin:nth-child(2) { animation-delay: 0.6s; }
.map-pin:nth-child(3) { animation-delay: 1.2s; }
.map-pin:nth-child(4) { animation-delay: 0.3s; }
.map-pin:nth-child(5) { animation-delay: 0.9s; }
.map-pin:nth-child(6) { animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.map-pin::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 45, 85, 0.3);
  animation: ring 3s ease-out infinite;
}

@keyframes ring {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* —— Types banner —— */
.types-banner {
  text-align: center;
  padding: 3rem 0;
}

.types-banner p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.type-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.chip {
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.chip:hover {
  color: var(--text);
  border-color: rgba(255, 45, 85, 0.4);
  background: rgba(255, 45, 85, 0.08);
}

/* —— Final CTA —— */
.final-cta {
  padding: 4.5rem 0 5rem;
  text-align: center;
  position: relative;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 55%);
  pointer-events: none;
}

.final-cta .container { position: relative; z-index: 1; }

.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

.final-cta p {
  color: var(--text-muted);
  margin-bottom: 1.75rem;
  max-width: 36ch;
  margin-inline: auto;
}

.final-note {
  margin-top: 1rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* —— Footer —— */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  color: var(--text-muted);
  font-size: 0.8125rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--text);
}

.footer-brand span { color: var(--accent); }

/* ========================================
   JOIN FLOW
   ======================================== */
.join-page {
  background: var(--bg-soft);
  color: var(--text-dark);
  min-height: 100dvh;
}

.join-page .site-header {
  background: rgba(247, 247, 245, 0.9);
  border-bottom-color: var(--border-light);
}

.join-page .logo { color: var(--text-dark); }

.join-page .nav-cta {
  background: transparent;
  color: var(--text-dark-muted);
  box-shadow: none;
  border: 1px solid var(--border-light);
  font-weight: 600;
}

.join-page .nav-cta:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-dark);
}

.join-shell {
  width: min(100% - 2rem, 520px);
  margin: 0 auto;
  padding: 1.5rem 0 4rem;
}

.progress-wrap {
  margin-bottom: 1.75rem;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-dark-muted);
}

.progress-label strong {
  color: var(--accent);
  font-weight: 700;
}

.progress-bar {
  height: 4px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  border-radius: var(--radius-pill);
  transition: width 0.4s var(--ease);
  width: 20%;
}

.join-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-light);
}

@media (min-width: 480px) {
  .join-card { padding: 2rem; }
}

.join-card h1 {
  font-family: var(--font-display);
  font-weight: 750;
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.join-card .step-desc {
  color: var(--text-dark-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeUp 0.35s var(--ease); }

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

.field {
  margin-bottom: 1.15rem;
}

.field label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 650;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255, 45, 85, 0.15);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #a8a29e;
}

.field-error {
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 0.35rem;
  display: none;
}

.field.has-error input,
.field.has-error textarea,
.field.has-error select {
  border-color: #dc2626;
}

.field.has-error .field-error { display: block; }

.talent-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 400px) {
  .talent-options { grid-template-columns: repeat(3, 1fr); }
}

.talent-opt {
  position: relative;
}

.talent-opt input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}

.talent-opt span {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.85rem 0.5rem;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 650;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  color: var(--text-dark-muted);
}

.talent-opt span .emoji { font-size: 1.35rem; line-height: 1; }

.talent-opt input:checked + span,
.talent-opt input:focus-visible + span {
  border-color: var(--accent);
  background: rgba(255, 45, 85, 0.06);
  color: var(--text-dark);
}

.talent-opt input:focus-visible + span {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.upload-zone {
  border: 2px dashed rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #fafaf9;
  position: relative;
}

.upload-zone:hover,
.upload-zone:focus-within {
  border-color: var(--accent);
  background: rgba(255, 45, 85, 0.03);
}

.upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.upload-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: rgba(255, 45, 85, 0.1);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.upload-zone strong {
  display: block;
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
  color: var(--text-dark);
}

.upload-zone p {
  font-size: 0.8125rem;
  color: var(--text-dark-muted);
}

.upload-filename {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--trust);
  display: none;
}

.upload-filename.show { display: block; }

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: start;
}

.price-row .field { margin-bottom: 0; }

.currency-prefix {
  position: relative;
}

.currency-prefix::before {
  content: "$";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-dark-muted);
  font-weight: 600;
  pointer-events: none;
}

.currency-prefix input { padding-left: 1.75rem; }

.help-price {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 650;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem 0;
}

.help-price:hover { text-decoration: underline; }
.help-price:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.price-hint {
  display: none;
  margin-top: 0.75rem;
  padding: 0.85rem 1rem;
  background: #f0fdf9;
  border: 1px solid rgba(0, 212, 170, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--text-dark-muted);
  line-height: 1.5;
}

.price-hint.show { display: block; }
.price-hint strong { color: var(--text-dark); }

.join-nav {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.join-nav .btn { flex: 1; }

.join-page .btn-primary {
  background: var(--accent);
  color: #fff;
}

.join-page .btn-ghost {
  background: transparent;
  color: var(--text-dark-muted);
  border-color: rgba(0, 0, 0, 0.12);
}

.join-page .btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
  color: var(--text-dark);
}

.join-page .btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* Success state */
.success-state {
  display: none;
  text-align: center;
  padding: 1rem 0;
}

.success-state.show { display: block; animation: fadeUp 0.4s var(--ease); }

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--trust), #34d399);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 212, 170, 0.35);
}

.success-state h1 {
  margin-bottom: 0.5rem;
}

.success-state > p {
  color: var(--text-dark-muted);
  margin-bottom: 1.5rem;
}

.summary-box {
  text-align: left;
  background: #fafaf9;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 1.15rem;
  margin-bottom: 1.5rem;
}

.summary-box h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dark-muted);
  margin-bottom: 0.75rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.875rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.summary-row:last-child { border-bottom: none; }
.summary-row dt { color: var(--text-dark-muted); }
.summary-row dd { font-weight: 650; color: var(--text-dark); text-align: right; }

.backend-note {
  font-size: 0.75rem;
  color: var(--text-dark-muted);
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  text-align: left;
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.backend-note code {
  font-size: 0.7rem;
  background: rgba(0, 0, 0, 0.06);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

.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;
}

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