/* Reset & Base */
@font-face {
  font-family: 'Inter';
  src: url('Assets/fonts/Inter.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: 'InterTight';
  src: url('Assets/fonts/InterTight.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}

:root {
  /* Brand palette — aligned with the mobile-app identity (rebranded
     from violet→fuchsia to mono + electric-blue, 2026-05-25). Primary
     CTAs are flat white pills with black text; the single
     complementary accent is electric blue (#3B82F6). Tier accents +
     status colors mirror BRAND in apps/user-app/constants/brand.ts —
     do NOT introduce site-only colors. */
  --icon-ground: #0a0a0f;
  --icon-ground-mid: #0f0f14;
  --icon-surface: #1a1a1f;
  --icon-surface-elevated: #1a1a1f;

  /* Primary CTA — flat white pill, mirrors mobile BRAND.primary */
  --icon-primary: #ffffff;
  --icon-primary-deep: #f5f5f5;
  /* Legacy fuchsia aliases retired in favor of electric-blue accent
     so legacy call-sites that still reference --icon-fuchsia inherit
     the new identity without per-file changes. */
  --icon-fuchsia: #3B82F6;
  --icon-fuchsia-deep: #1D4ED8;
  --icon-violet-soft: #60a5fa;

  /* Section accents — mirror mobile app's accentGold / accentRose /
     accentMint plus the legacy cyan for tier visuals. */
  --icon-cyan: #06b6d4;
  --icon-violet: #3B82F6;
  --icon-accent-gold: #F59E0B;
  --icon-accent-rose: #FB7185;
  --icon-accent-mint: #34D399;

  /* Status — unchanged; functional colors match the mobile app. */
  --icon-success: #10b981;
  --icon-success-soft: #34d399;
  --icon-warning: #facc15;
  --icon-danger: #f43f5e;
  --icon-blue-accent: #3B82F6;

  /* Text + surfaces — mirror mobile BRAND.linen / .linenMuted */
  --icon-linen: #ffffff;
  --icon-linen-muted: #717182;
  --icon-border: rgba(255, 255, 255, 0.10);
  --icon-border-soft: rgba(255, 255, 255, 0.05);

  /* Brand gradient — flat white to match the mobile app's
     `gradient: [text, text]` shape. Existing `linear-gradient(...)`
     wrappers render as a flat white fill, just like in the app. */
  --icon-gradient: linear-gradient(135deg, #ffffff, #ffffff);
  --icon-gradient-page: linear-gradient(to bottom, #0a0a0f, #0f0f14, #0a0a0f);

  --font-display: 'InterTight', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--icon-gradient-page);
  background-attachment: fixed;
  color: var(--icon-linen);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 100px;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
}

.btn-primary {
  /* Mono+blue rebrand: primary CTAs are flat white pills with black
     text — mirrors mobile BRAND.primary + BRAND.onPrimary. The
     `linear-gradient` wrapper renders as a flat white fill, matching
     the app's `gradient: [text, text]` shape. */
  background: linear-gradient(to right, #ffffff, #ffffff);
  color: var(--icon-ground);
}

.btn-primary:hover {
  background: linear-gradient(to right, #f5f5f5, #f5f5f5);
  color: var(--icon-ground);
  transform: translateY(-1px);
  box-shadow: 0 10px 34px rgba(255, 255, 255, 0.12);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--icon-linen);
  color: var(--icon-ground);
}

.btn-white:hover {
  background: #f0f0f0;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--icon-linen);
  border: 1.5px solid var(--icon-border);
}

.btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.05);
}

/* Nav */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 0;
  background: linear-gradient(to bottom, rgba(10, 10, 15, 0.88), transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  height: 28px;
  opacity: 0.9;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--icon-linen-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--icon-linen);
}

.nav-links .btn-primary {
  color: var(--icon-ground);
  background: linear-gradient(to right, #ffffff, #ffffff);
}

.nav-links .btn-primary:hover {
  color: var(--icon-ground);
  background: linear-gradient(to right, #f5f5f5, #f5f5f5);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 15, 0.5) 0%,
    rgba(10, 10, 15, 0.4) 50%,
    rgba(10, 10, 15, 0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--icon-linen);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.24), rgba(59, 130, 246, 0.22), rgba(59, 130, 246, 0.22));
  border: 1px solid rgba(59, 130, 246, 0.42);
  border-radius: 100px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-accent {
  background: var(--icon-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--icon-linen-muted);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.02em;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* Stats Bar */
.stats-bar {
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

/* Section Styles */
.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  margin-bottom: 16px;
}

.section-title {
  text-align: center;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-sub {
  text-align: center;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 540px;
  margin: 0 auto 64px;
  line-height: 1.7;
}

/* Steps */
.how-it-works {
  padding: 40px 0 120px;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}

.step-card {
  flex: 1;
  max-width: 340px;
  padding: 40px 32px;
  text-align: center;
}

.step-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  letter-spacing: -0.03em;
  opacity: 0.95;
}

.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  background: linear-gradient(135deg, #60A5FA, #93C5FD);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.step-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

.step-connector {
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 72px;
  flex-shrink: 0;
}

/* Photo Gallery */
.gallery {
  padding: 120px 0 80px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.gallery-tall {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-tag {
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 100px;
  backdrop-filter: blur(10px);
}

/* Features */
.features {
  padding: 120px 0;
  background: rgba(255, 255, 255, 0.02);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 40px 36px;
  border-radius: 16px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  background: rgba(59, 130, 246, 0.03);
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(59, 130, 246, 0.2);
  background: rgba(59, 130, 246, 0.06);
  transform: translateY(-2px);
}

.feature-icon {
  color: #3B82F6;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
}

/* CTA Split */
.cta-split {
  padding: 120px 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cta-card {
  border-radius: 20px;
  padding: 56px 48px;
}

.cta-users {
  background: linear-gradient(135deg, #0f0a14 0%, #0f0a14 100%);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.cta-photographers {
  background: linear-gradient(135deg, #1a1a24 0%, #0f0a14 100%);
  border: 1px solid rgba(59, 130, 246, 0.15);
}

.cta-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.cta-card h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 380px;
}

/* Gallery hover glow */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: linear-gradient(to top, rgba(59, 130, 246, 0.3) 0%, transparent 60%);
  pointer-events: none;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Section eyebrow color */
.section-eyebrow {
  color: #3B82F6;
}

/* Scroll line color */
.scroll-line {
  background: linear-gradient(to bottom, #3B82F6, transparent);
}

/* Final CTA */
.final-cta {
  padding: 120px 0;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
}

.final-cta h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 40px;
}

/* Footer */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-logo {
  height: 24px;
  opacity: 0.5;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}

/* Waitlist Forms */
.waitlist-section {
  padding: 120px 0;
}

.waitlist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.waitlist-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 40px 36px;
}

.waitlist-card-dark {
  background: linear-gradient(135deg, #0f0a14 0%, #1a1a24 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.waitlist-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.waitlist-card-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.form-input {
  flex: 1;
  padding: 16px 20px;
  font-family: inherit;
  font-size: 15px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  outline: none;
  transition: all 0.2s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-input:focus {
  border-color: rgba(59, 130, 246, 0.4);
  background: rgba(59, 130, 246, 0.06);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input-sm {
  flex: 0.5;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-select option {
  background: #1a1e2a;
  color: #ffffff;
}

.form-group {
  margin-top: 4px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.checkbox-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.checkbox-item input[type="checkbox"],
.checkbox-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: #ffffff;
  cursor: pointer;
  flex-shrink: 0;
}

.radio-group {
  display: flex;
  gap: 16px;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-message {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  min-height: 20px;
}

.form-message-success {
  color: #ffffff;
  background: linear-gradient(135deg, #059669, #10b981);
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  animation: successPop 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

@keyframes successPop {
  0% { opacity: 0; transform: scale(0.95) translateY(8px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}

.form-message-error {
  color: #f87171;
}

/* Form Pages (/join, /apply) */
.form-page {
  min-height: 100vh;
  padding: 100px 0 80px;
}

.form-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.form-page-back {
  display: inline-block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color 0.2s ease;
}

.form-page-back:hover {
  color: #ffffff;
}

.form-page-info h1 {
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.form-page-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 420px;
}

.value-props {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-prop {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-prop-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(59, 130, 246, 0.1));
  border-radius: 12px;
  color: #3B82F6;
}

.value-prop h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.value-prop p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
}

.form-page-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: 20px;
  padding: 40px 36px;
}

.form-page-card h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.form-page-card .waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-page-card .form-input {
  padding: 14px 18px;
  font-size: 14px;
}

.form-page-card .form-group {
  margin-top: 4px;
  margin-bottom: 4px;
}

.form-page-card .form-label {
  font-size: 13px;
  margin-bottom: 8px;
}

.form-page-card .checkbox-group {
  gap: 4px;
}

.form-page-card .checkbox-item {
  padding: 6px 10px;
  font-size: 13px;
}

.form-page-card .checkbox-item input[type="checkbox"],
.form-page-card .checkbox-item input[type="radio"] {
  width: 16px;
  height: 16px;
}

.form-page-card .form-submit {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .form-page-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .form-page-info {
    text-align: center;
  }

  .form-page-back {
    margin-bottom: 24px;
  }

  .form-page-subtitle {
    margin: 0 auto 32px;
  }

  .value-props {
    display: none;
  }

  .form-page-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .form-page {
    padding: 80px 0 60px;
  }

  .form-page-card {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .form-page-card .form-input {
    padding: 12px 14px;
  }
}

/* Legal Pages */
.legal-page {
  min-height: 100vh;
  padding: 40px 0 80px;
}

.legal-header {
  padding: 40px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 48px;
}

.legal-header a {
  display: inline-block;
}

.legal-header img {
  width: 100px;
  opacity: 0.8;
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-content .effective-date {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 40px;
}

.legal-content h2 {
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.legal-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-content a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content strong {
  color: rgba(255, 255, 255, 0.85);
}

/* Support Page */
.support-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.support-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 32px 24px;
}

.support-card h3 {
  margin-top: 0;
}

/* Footer Grid (shared across all pages) */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 0;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
}

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-social a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* Hamburger Menu (shared across all pages) */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links a:not(.btn) {
    display: none;
  }

  .hero-headline {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .stats-inner {
    flex-direction: column;
    gap: 32px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    width: 1px;
    height: 40px;
    margin: 0;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-tall {
    grid-row: span 2;
  }

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

  .waitlist-card {
    padding: 32px 24px;
  }

  .form-row {
    flex-direction: column;
  }

  .form-input-sm {
    flex: 1;
  }

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

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

  .cta-card {
    padding: 40px 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }

  .footer-social {
    justify-content: center;
  }

  .nav-hamburger {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.98) !important;
    backdrop-filter: blur(20px);
    transition: right 0.3s ease;
    z-index: 100;
    padding: 80px 32px 40px;
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-menu .nav-links {
    flex-direction: column;
    gap: 24px;
  }

  .nav-menu .nav-links a {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }

  .stat-number {
    font-size: 28px;
  }
}

/* User app brand alignment */
h1,
h2,
h3,
.hero-headline,
.section-title,
.pricing-hero h1,
.shoot-hero h1,
.bottom-cta h2,
.value-card h3,
.cta-card h3,
.plan-price,
.stat-number,
.step-number {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
}

p,
li,
.hero-sub,
.section-sub,
.pricing-hero p,
.shoot-hero-sub,
.app-sub,
.stat-label,
.pricing-credits,
.pricing-desc,
.footer-brand p {
  color: var(--icon-linen-muted);
}

.hero-accent,
.gradient-text,
.grad,
.shoot-hero h1 .gradient-text,
.bottom-cta h2 .gradient-text,
.step-number,
.stat-number {
  background: var(--icon-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

.hero-badge,
.section-eyebrow,
.value-card-eyebrow,
.pricing-badge,
.plan-badge,
.city-status,
.shoot-hero-eyebrow {
  color: var(--icon-linen) !important;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.18), rgba(59, 130, 246, 0.22), rgba(59, 130, 246, 0.18)) !important;
  border-color: rgba(59, 130, 246, 0.38) !important;
}

.value-card,
.pricing-card,
.plan-card,
.city-card,
.use-case-card,
.faq-item,
.req-card,
.tier-card,
.apply-card,
.waitlist-card,
.article-card,
.resource-card {
  background-color: var(--icon-surface) !important;
  border-color: var(--icon-border) !important;
}

.value-card-users,
.value-card-photographers,
.pricing-card.featured,
.plan-card.featured,
.cta-users,
.cta-photographers {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(15, 23, 42, 0.98) 58%, rgba(59, 130, 246, 0.12)) !important;
  border-color: rgba(59, 130, 246, 0.36) !important;
}

.btn-primary,
.btn-next,
.btn-submit,
.app-badge:hover {
  background: var(--icon-primary) !important;
  color: #ffffff !important;
}

.btn-outline,
.btn-glass,
.app-badge {
  color: var(--icon-linen) !important;
  border-color: var(--icon-border) !important;
}

.btn-outline:hover,
.btn-glass:hover,
.app-badge:hover {
  border-color: rgba(59, 130, 246, 0.55) !important;
}

.nav,
.collapsible-nav,
.footer {
  background-color: rgba(10, 10, 15, 0.92) !important;
}

input,
select,
textarea,
.inp,
.form-input,
.form-select,
.form-textarea {
  background-color: var(--icon-surface-elevated) !important;
  border-color: var(--icon-border) !important;
  color: var(--icon-linen) !important;
}

input:focus,
select:focus,
textarea:focus,
.inp:focus {
  border-color: var(--icon-primary) !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18) !important;
}

/* Bright customer-site theme */
:root {
  --icon-ground: #ffffff;
  --icon-surface: #ffffff;
  --icon-surface-elevated: #f8fafc;
  --icon-primary: #ffffff;
  --icon-primary-deep: #f5f5f5;
  --icon-cyan: #06B6D4;
  --icon-violet: #3B82F6;
  --icon-linen: #11181c;
  --icon-linen-muted: #64748b;
  --icon-border: #e2e8f0;
  --icon-gradient: linear-gradient(90deg, #ffffff, #ffffff, #ffffff);
}

body {
  background:
    radial-gradient(circle at 12% 0%, rgba(6, 182, 212, 0.08), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(59, 130, 246, 0.07), transparent 30%),
    var(--icon-ground) !important;
  color: var(--icon-linen) !important;
}

.nav,
.collapsible-nav {
  background: rgba(255, 255, 255, 0.88) !important;
  border-bottom: 1px solid rgba(226, 232, 240, 0.72) !important;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08) !important;
}

.nav-logo,
.footer-logo {
  opacity: 1 !important;
  filter: none !important;
}

.nav-links a,
.nav-menu .nav-links a,
.footer a,
.footer-link {
  color: var(--icon-linen-muted) !important;
}

.nav-links a:hover,
.footer a:hover {
  color: var(--icon-primary) !important;
}

.nav-links a.btn-primary,
.nav-menu .nav-links a.btn-primary {
  color: #ffffff !important;
}

.nav-hamburger span {
  background: var(--icon-linen) !important;
}

.nav-menu {
  background: rgba(255, 255, 255, 0.98) !important;
}

.hero,
.book-hero,
.pricing-hero,
.shoot-hero,
.apply-hero,
.cities-hero,
.community-hero {
  background:
    radial-gradient(circle at 12% 16%, rgba(6, 182, 212, 0.16), transparent 32%),
    radial-gradient(circle at 84% 12%, rgba(59, 130, 246, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%) !important;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.70) 48%, rgba(255, 255, 255, 0.86) 100%),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.56), rgba(248, 250, 252, 0.95)) !important;
}

.hero-video {
  opacity: 0.46;
  filter: saturate(1.08) contrast(0.9);
}

.hero-headline,
.section-title,
.pricing-hero h1,
.book-hero h1,
.shoot-hero h1,
.apply-hero h1,
.bottom-cta h2 {
  color: var(--icon-linen) !important;
  text-shadow: none !important;
}

.hero-sub,
.section-sub,
.pricing-hero p,
.book-hero p,
.hero p,
.shoot-hero-sub,
.apply-hero p {
  color: var(--icon-linen-muted) !important;
}

.hero-badge,
.section-eyebrow,
.value-card-eyebrow,
.pricing-badge,
.plan-badge,
.city-status,
.shoot-hero-eyebrow,
.badge,
.kicker {
  color: var(--icon-primary) !important;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.10), rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.10)) !important;
  border: 1px solid rgba(59, 130, 246, 0.22) !important;
}

.btn-primary,
.btn-next,
.btn-submit {
  background: var(--icon-primary) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(59, 130, 246, 0.22) !important;
}

.btn-primary:hover,
.btn-next:hover,
.btn-submit:hover {
  background: var(--icon-primary-deep) !important;
  color: #ffffff !important;
}

.btn-glass,
.btn-outline,
.app-badge,
.btn-back {
  background: rgba(255, 255, 255, 0.68) !important;
  color: var(--icon-linen) !important;
  border-color: rgba(100, 116, 139, 0.24) !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06) !important;
}

.btn-glass:hover,
.btn-outline:hover,
.app-badge:hover,
.btn-back:hover {
  background: #ffffff !important;
  border-color: rgba(59, 130, 246, 0.34) !important;
}

.stats-bar,
.launch-cities,
.pricing-preview,
.app-download,
.value-split,
.gallery,
.waitlist,
.features,
.direct-pay,
.credits-section,
.faq,
.requirements,
.tiers,
.shoot-how,
.why-icon,
.earnings,
.bottom-cta,
.use-cases,
.how-it-works,
.what-you-get {
  background: transparent !important;
  border-color: var(--icon-border) !important;
}

.value-card,
.pricing-card,
.plan-card,
.city-card,
.use-case-card,
.faq-item,
.req-card,
.tier-card,
.apply-card,
.waitlist-card,
.article-card,
.resource-card,
.cta-card,
.feature-card {
  background: rgba(255, 255, 255, 0.86) !important;
  border-color: var(--icon-border) !important;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08) !important;
}

.value-card-users,
.value-card-photographers,
.pricing-card.featured,
.plan-card.featured,
.cta-users,
.cta-photographers {
  background:
    linear-gradient(135deg, rgba(6, 182, 212, 0.10), rgba(255, 255, 255, 0.94) 42%, rgba(59, 130, 246, 0.10)) !important;
  border-color: rgba(59, 130, 246, 0.28) !important;
}

.gallery-item,
.use-case-card,
.how-step-visual,
.phone-mock,
.step-mock,
.app-preview {
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.12) !important;
}

.footer {
  background: #f8fafc !important;
  border-top: 1px solid var(--icon-border) !important;
}

.footer,
.footer p,
.footer li {
  color: var(--icon-linen-muted) !important;
}

input,
select,
textarea,
.inp,
.form-input,
.form-select,
.form-textarea {
  background-color: #ffffff !important;
  border-color: var(--icon-border) !important;
  color: var(--icon-linen) !important;
}

.scroll-line {
  background: linear-gradient(to bottom, rgba(59, 130, 246, 0.45), transparent) !important;
}

.plan-name,
.pricing-tier,
.credits-info h2,
.direct-pay h2,
.faq-question,
.apply-step h2,
.review-head,
.community-hero h1,
.article-card h3,
.resource-card h3,
.feedback-card h2 {
  color: var(--icon-linen) !important;
}

.plan-price,
.plan-price span,
.plan-features li,
.credits-info p,
.direct-pay p,
.faq-answer,
.faq-answer-inner,
.apply-progress-step,
.apply-progress-step strong,
.apply-progress-title,
.apply-step-sub,
.field label.lbl,
.review-body dt,
.review-body dd,
.community-hero p,
.hero p,
.article-card p,
.resource-card p,
.footer-bottom,
.footer-col a {
  color: var(--icon-linen-muted) !important;
}

.apply-card h2,
.apply-card h3,
.apply-card .review-head {
  color: var(--icon-linen) !important;
}

.apply-card p,
.apply-card label,
.apply-card span,
.apply-card dt,
.apply-card dd,
.apply-card .apply-step-sub {
  color: var(--icon-linen-muted) !important;
}

.apply-card .req,
.req {
  color: #ef4444 !important;
}

.plan-features li::before {
  background: var(--icon-gradient) !important;
}

.apply-progress {
  background: var(--icon-surface-elevated) !important;
  border-bottom-color: var(--icon-border) !important;
}

.apply-progress-bar {
  background: var(--icon-border) !important;
}

.apply-progress-fill {
  background: var(--icon-gradient) !important;
}

.opt,
.pill,
.review-section,
.info-box,
.critical-banner,
.warn-box {
  background: #ffffff !important;
  border-color: var(--icon-border) !important;
  color: var(--icon-linen) !important;
}

.opt:has(input:checked),
.pill:has(input:checked) {
  background: rgba(59, 130, 246, 0.08) !important;
  border-color: rgba(59, 130, 246, 0.38) !important;
}

.opt input {
  accent-color: var(--icon-primary) !important;
}

.inp::placeholder,
input::placeholder,
textarea::placeholder {
  color: #717182 !important;
}

select.inp {
  background-image: none !important;
}

/* Premium dark direction — mono+blue rebrand (2026-05-25). Aligned
   with apps/user-app/constants/brand.ts BRAND tokens. Page background
   bottoms at #0a0a0f; primary action is a flat white pill with black
   text; the single complementary accent is electric blue (#3B82F6).
   Muted text matches the mobile spec (#717182). */
:root {
  --icon-ground: #0a0a0f;
  --icon-ground-mid: #0f0f14;
  --icon-surface: #1a1a1f;
  --icon-surface-elevated: #1a1a1f;
  --icon-primary: #ffffff;
  --icon-primary-deep: #f5f5f5;
  --icon-fuchsia: #3B82F6;
  --icon-fuchsia-deep: #1D4ED8;
  --icon-cyan: #06b6d4;
  --icon-violet: #3B82F6;
  --icon-success: #10b981;
  --icon-success-soft: #34d399;
  --icon-warning: #facc15;
  --icon-danger: #f43f5e;
  --icon-blue-accent: #3B82F6;
  --icon-linen: #ffffff;
  --icon-linen-muted: #717182;
  --icon-border: rgba(255, 255, 255, 0.10);
  --icon-border-soft: rgba(255, 255, 255, 0.05);
  --icon-gradient: linear-gradient(135deg, #ffffff, #ffffff);
  --shadow-premium: 0 30px 90px rgba(0, 0, 0, 0.42);
}

body {
  background:
    radial-gradient(circle at 20% -10%, rgba(59, 130, 246, 0.14), transparent 30%),
    radial-gradient(circle at 78% 2%, rgba(59, 130, 246, 0.14), transparent 30%),
    linear-gradient(180deg, #0a0a0f 0%, #0f0a14 50%, #0a0a0f 100%) !important;
  color: var(--icon-linen) !important;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 72%);
}

.nav,
.collapsible-nav {
  position: fixed !important;
  width: min(1180px, calc(100% - 32px)) !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  top: 14px !important;
  padding: 10px 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 22px !important;
  background: rgba(10, 10, 15, 0.72) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26) !important;
}

.nav-inner {
  padding-inline: 18px;
}

.nav-logo,
.footer-logo {
  opacity: 1 !important;
  filter: none !important;
}

.nav-links {
  gap: 22px;
}

.nav-links a,
.nav-menu .nav-links a,
.footer a,
.footer-link {
  color: rgba(226, 232, 240, 0.72) !important;
}

.nav-links a:hover,
.footer a:hover {
  color: #ffffff !important;
}

.nav-hamburger span {
  background: var(--icon-linen) !important;
}

/* .nav-menu is a flex wrapper for the links — no background on
   desktop (otherwise it paints a second pill inside the .nav pill,
   creating the doubled container look). The @media drawer rule sets
   its own background when it becomes a slide-out on mobile. */
.nav-menu {
  background: transparent !important;
}

.nav-menu.active {
  right: 0 !important;
}

.btn {
  border-radius: 999px;
}

.btn-primary,
.btn-next,
.btn-submit {
  background: linear-gradient(to right, #ffffff, #ffffff) !important;
  color: var(--icon-ground) !important;
  box-shadow: 0 18px 44px rgba(255, 255, 255, 0.12) !important;
}

.btn-primary:hover,
.btn-next:hover,
.btn-submit:hover {
  transform: translateY(-2px);
  background: linear-gradient(to right, #f5f5f5, #f5f5f5) !important;
}

.btn-glass,
.btn-outline,
.app-badge,
.btn-back {
  color: var(--icon-linen) !important;
  background: rgba(26, 26, 36, 0.62) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  box-shadow: none !important;
}

.btn-glass:hover,
.btn-outline:hover,
.app-badge:hover,
.btn-back:hover {
  background: rgba(26, 26, 36, 0.86) !important;
  border-color: rgba(59, 130, 246, 0.48) !important;
}

.hero,
.book-hero,
.pricing-hero,
.shoot-hero,
.apply-hero,
.cities-hero,
.community-hero {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 22%, rgba(59, 130, 246, 0.18), transparent 30%),
    radial-gradient(circle at 82% 24%, rgba(59, 130, 246, 0.16), transparent 32%),
    linear-gradient(180deg, #0a0a0f 0%, #0f0a14 64%, #0a0a0f 100%) !important;
}

.hero {
  text-align: left;
  justify-content: flex-start;
  padding: 124px 0 78px;
}

.hero-content,
.shoot-hero-content {
  width: min(1120px, calc(100% - 48px));
  max-width: none;
  margin: 0 auto;
  padding: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.48fr);
  column-gap: 56px;
  align-items: end;
}

.hero-badge,
.shoot-hero-eyebrow,
.section-eyebrow,
.value-card-eyebrow,
.pricing-badge,
.plan-badge,
.city-status,
.badge,
.kicker {
  width: fit-content;
  color: #dbeafe !important;
  background: rgba(59, 130, 246, 0.12) !important;
  border: 1px solid rgba(96, 165, 250, 0.26) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

/* Legacy pill alignment. Kept for older classes that may still appear
   in archived templates; visible eyebrow classes are hidden at the end
   of this file. */
.section-eyebrow,
.pricing-badge,
.plan-badge,
.city-status,
.kicker {
  margin-inline: auto;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 16px;
  line-height: 1;
}

.hero-headline,
.shoot-hero h1,
.book-hero h1,
.pricing-hero h1,
.apply-hero h1,
.section-title,
.bottom-cta h2 {
  color: #ffffff !important;
  letter-spacing: -0.045em !important;
}

.hero-headline {
  grid-column: 1;
  max-width: 850px;
  font-size: clamp(58px, 8.2vw, 118px);
  line-height: 0.9;
  margin-bottom: 28px;
}

.hero-badge {
  grid-column: 1;
}

.hero-sub {
  grid-column: 1;
  max-width: 620px;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.58;
  color: rgba(226, 232, 240, 0.72) !important;
}

.hero-buttons {
  grid-column: 1;
  justify-content: flex-start;
}

.hero-note {
  grid-column: 1;
  color: rgba(255, 255, 255, 0.72) !important;
}

.hero-proof-grid {
  grid-column: 2;
  grid-row: 1 / span 5;
  display: grid;
  gap: 12px;
  align-self: end;
}

.hero-proof {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(26, 26, 36, 0.74), rgba(26, 26, 36, 0.62));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.hero-proof span {
  display: block;
  margin-bottom: 28px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: var(--icon-cyan);
}

.hero-proof strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 19px;
  line-height: 1.1;
  color: #ffffff;
}

.hero-proof p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(203, 213, 225, 0.72) !important;
}

.hero-overlay {
  /* Vertical fade only — clear up top so the video reads, deeper at the
     bottom where the headline + buttons sit so the copy stays legible. */
  background:
    linear-gradient(to bottom, rgba(10, 10, 15, 0.18) 0%, rgba(10, 10, 15, 0.55) 60%, rgba(10, 10, 15, 0.92) 100%) !important;
}

.hero-video {
  opacity: 0.92;
  filter: saturate(1.08) contrast(1.05);
}

.hero-scroll {
  display: none;
}

.shoot-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  text-align: left;
  padding: 126px 0 86px !important;
}

.pricing-hero,
.apply-hero,
.cities-hero,
.community-hero {
  min-height: 62vh !important;
  padding: 158px 0 92px !important;
  overflow: hidden;
}

.pricing-hero + .plans-section,
.apply-hero + .apply-progress,
.community-hero + section,
.cities-hero + section {
  margin-top: -34px;
  position: relative;
  z-index: 2;
}

.shoot-hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.48fr);
  gap: 24px 56px;
  align-items: end;
}

.shoot-hero-eyebrow,
.shoot-hero h1,
.shoot-hero-sub,
.shoot-hero-buttons {
  grid-column: 1;
}

.shoot-hero h1 {
  max-width: 830px;
  font-size: clamp(56px, 7.4vw, 108px) !important;
  line-height: 0.92 !important;
  margin-bottom: 8px !important;
}

.shoot-hero-sub {
  max-width: 650px;
  color: rgba(226, 232, 240, 0.72) !important;
  font-size: clamp(18px, 1.55vw, 21px) !important;
}

.shoot-hero-buttons {
  justify-content: flex-start;
}

.hero-proof-grid--photog {
  grid-column: 2;
  grid-row: 1 / span 4;
}

.value-card,
.pricing-card,
.plan-card,
.city-card,
.use-case-card,
.faq-item,
.req-card,
.tier-card,
.apply-card,
.waitlist-card,
.article-card,
.resource-card,
.cta-card,
.feature-card,
.earnings-card,
.why-card,
.shoot-step,
.wyg-card {
  background: linear-gradient(180deg, rgba(26, 26, 36, 0.86), rgba(26, 26, 36, 0.78)) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  box-shadow: var(--shadow-premium) !important;
}

.apply-card,
.apply-step.active {
  opacity: 1 !important;
}

.apply-card h2,
.apply-card h3,
.apply-card .review-head,
.apply-card label.lbl,
.field label.lbl {
  color: #ffffff !important;
}

.apply-card p,
.apply-card label,
.apply-card span,
.apply-card dt,
.apply-card dd,
.apply-card .apply-step-sub,
.apply-progress-title,
.apply-progress-step,
.apply-progress-step strong {
  color: rgba(203, 213, 225, 0.76) !important;
}

.opt,
.pill,
.review-section,
.info-box,
.critical-banner,
.warn-box {
  background: rgba(26, 26, 36, 0.72) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  color: var(--icon-linen) !important;
}

.opt:has(input:checked),
.pill:has(input:checked) {
  background: rgba(59, 130, 246, 0.14) !important;
  border-color: rgba(96, 165, 250, 0.36) !important;
}

.value-card-users,
.value-card-photographers,
.pricing-card.featured,
.plan-card.featured,
.cta-users,
.cta-photographers {
  background:
    linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(26, 26, 36, 0.88) 46%, rgba(59, 130, 246, 0.13)) !important;
  border-color: rgba(96, 165, 250, 0.30) !important;
}

.stats-bar,
.launch-cities,
.pricing-preview,
.app-download,
.value-split,
.gallery,
.waitlist,
.features,
.direct-pay,
.credits-section,
.faq,
.requirements,
.tiers,
.shoot-how,
.why-icon,
.earnings,
.bottom-cta,
.use-cases,
.how-it-works,
.what-you-get {
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.section-sub,
.pricing-credits,
.pricing-desc,
.plan-features li,
.earnings-card-title,
.earnings-card-detail,
.earnings-disclaimer,
.why-card p,
.shoot-step p,
.tier-card p,
.req-item p,
.faq-answer-inner,
.footer p,
.footer li {
  color: rgba(203, 213, 225, 0.70) !important;
}

.footer {
  background: #0a0a0f !important;
  border-top: 1px solid rgba(255, 255, 255, 0.14) !important;
}

input,
select,
textarea,
.inp,
.form-input,
.form-select,
.form-textarea {
  background-color: rgba(26, 26, 36, 0.80) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
}

@media (max-width: 900px) {
  .hero-content,
  .shoot-hero-content {
    display: block;
    width: min(100% - 48px, 680px);
    text-align: center;
  }

  .hero,
  .shoot-hero {
    text-align: center;
    padding-top: 118px !important;
  }

  .hero-badge,
  .shoot-hero-eyebrow {
    margin-inline: auto;
  }

  .hero-buttons,
  .shoot-hero-buttons {
    justify-content: center;
  }

  .hero-proof-grid,
  .hero-proof-grid--photog {
    margin-top: 34px;
  }

  .hero-headline,
  .shoot-hero h1 {
    font-size: clamp(42px, 14vw, 72px) !important;
  }
}

/* User-app parity pass — mono + electric-blue. These overrides keep the
   public marketing surface aligned with apps/user-app/constants/brand.ts. */
:root {
  --icon-ground: #0a0a0f;
  --icon-ground-mid: #0f0f14;
  --icon-surface: #1a1a1f;
  --icon-surface-elevated: rgba(255, 255, 255, 0.08);
  --icon-primary: #ffffff;
  --icon-primary-deep: #f5f5f5;
  --icon-fuchsia: #ffffff;
  --icon-fuchsia-deep: #f5f5f5;
  --icon-cyan: #3B82F6;
  --icon-violet: #3B82F6;
  --icon-blue-accent: #3B82F6;
  --icon-linen: #ffffff;
  --icon-linen-muted: #717182;
  --icon-border: rgba(255, 255, 255, 0.10);
  --icon-border-soft: rgba(255, 255, 255, 0.05);
  --icon-gradient: linear-gradient(90deg, #3B82F6, #3B82F6);
  --icon-gradient-page: linear-gradient(180deg, #0a0a0f, #0a0a0f);
}

body {
  background: #0a0a0f !important;
}

body::before {
  display: none !important;
}

.nav,
.collapsible-nav {
  border-radius: 14px !important;
  background: rgba(10, 10, 15, 0.88) !important;
  border-color: rgba(255, 255, 255, 0.10) !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.30) !important;
}

.btn {
  border-radius: 20px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
}

.btn-primary,
.btn-next,
.btn-submit,
.nav-links .btn-primary,
.nav-menu .nav-links a.btn-primary {
  background: #ffffff !important;
  color: #000000 !important;
  border: 1px solid #ffffff !important;
  box-shadow: none !important;
}

.btn-primary:hover,
.btn-next:hover,
.btn-submit:hover,
.nav-links .btn-primary:hover,
.nav-menu .nav-links a.btn-primary:hover {
  background: #f5f5f5 !important;
  color: #000000 !important;
  border-color: #f5f5f5 !important;
  transform: translateY(-1px);
}

.btn-glass,
.btn-outline,
.app-badge,
.btn-back {
  background: rgba(26, 26, 31, 0.82) !important;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  box-shadow: none !important;
}

.btn-glass:hover,
.btn-outline:hover,
.app-badge:hover,
.btn-back:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(59, 130, 246, 0.58) !important;
}

.hero-badge,
.shoot-hero-eyebrow,
.section-eyebrow,
.value-card-eyebrow,
.pricing-badge,
.plan-badge,
.city-status,
.badge,
.kicker {
  border-radius: 20px !important;
  color: #3B82F6 !important;
  background: rgba(59, 130, 246, 0.14) !important;
  border: 1px solid rgba(59, 130, 246, 0.45) !important;
  box-shadow: none !important;
}

.hero-accent,
.gradient-text,
.grad,
.shoot-hero h1 .gradient-text,
.bottom-cta h2 .gradient-text,
.step-number,
.stat-number {
  background: none !important;
  color: #3B82F6 !important;
  -webkit-text-fill-color: #3B82F6 !important;
}

.hero-proof span {
  color: #3B82F6 !important;
}

/* Sitewide eyebrow removal. Keep ordinary badges/status pills visible. */
.hero-badge,
.shoot-hero-eyebrow,
.section-eyebrow,
.value-card-eyebrow,
.card-eyebrow,
.modal-eyebrow,
.invite-eyebrow,
.cta-eyebrow,
.eyebrow {
  display: none !important;
}
