
/* ═══════════════════════════════════════════════════
   LITY CLUB — DESIGN SYSTEM
   Purple Fusion Color Palette
   ═══════════════════════════════════════════════════ */

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

:root {
  /* Colors — Purple Fusion */
  --accent-violet: #7C3AED;
  --accent-magenta: #C026D3;
  --accent-rose: #E11D48;
  --bg-dark: #1A1A2E;
  --bg-primary: #FFFFFF;
  --bg-secondary: #F9F5FF;
  --bg-tertiary: #F3EAFF;
  --text-primary: #1A1A2E;
  --text-secondary: #6B6B8D;
  --text-on-dark: #E2D9F3;
  --color-border: #E5E1EE;
  --color-success: #16A34A;
  --gradient-brand: linear-gradient(135deg, #7C3AED 0%, #C026D3 50%, #E11D48 100%);
  --gradient-subtle: linear-gradient(135deg, #F9F5FF 0%, #FDF2F8 100%);

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(124, 58, 237, 0.06);
  --shadow-md: 0 4px 20px rgba(124, 58, 237, 0.08);
  --shadow-lg: 0 8px 40px rgba(124, 58, 237, 0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--bg-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Container ─────────────────────────────────── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }

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

/* ── Header ────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}
.header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--text-primary);
}
.logo-img { border-radius: var(--radius-sm); }
.logo-text { font-size: 20px; font-weight: 900; }
.logo-sub { font-size: 11px; color: var(--text-secondary); font-weight: 500; letter-spacing: 0.3px; }

.nav-desktop { display: flex; align-items: center; gap: 28px; }
.nav-desktop a {
  text-decoration: none; color: var(--text-secondary);
  font-size: 14px; font-weight: 500; transition: color 0.2s;
}
.nav-desktop a:hover { color: var(--text-primary); }
.nav-desktop .nav-cta {
  background: var(--gradient-brand); color: white;
  padding: 8px 20px; border-radius: 8px; font-weight: 600;
}
.nav-desktop .nav-cta:hover { opacity: 0.9; color: white; }

.menu-toggle {
  display: none; background: none; border: none;
  cursor: pointer; color: var(--text-primary); padding: 4px;
}
.nav-mobile {
  display: none; flex-direction: column; padding: 16px 24px 24px;
  background: white; border-bottom: 1px solid var(--color-border);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  text-decoration: none; color: var(--text-secondary);
  font-size: 16px; font-weight: 500; padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}
.nav-mobile .nav-cta {
  margin-top: 12px; text-align: center;
  background: var(--gradient-brand); color: white;
  padding: 12px; border-radius: 8px; border-bottom: none;
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .menu-toggle { display: block; }
}

/* ── Buttons ───────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: var(--radius-md);
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: all 0.2s ease; cursor: pointer; border: none;
  font-family: inherit;
}
.btn-primary {
  background: var(--gradient-brand); color: white;
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(124, 58, 237, 0.4); }
.btn-secondary {
  background: var(--bg-secondary); color: var(--accent-violet);
  border: 1px solid var(--color-border);
}
.btn-secondary:hover { background: var(--bg-tertiary); border-color: var(--accent-violet); }
.btn-outline {
  background: transparent; color: var(--accent-violet);
  border: 2px solid var(--accent-violet);
}
.btn-outline:hover { background: var(--accent-violet); color: white; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ── Hero ──────────────────────────────────────── */
.hero {
  padding: 160px 0 100px;
  background: var(--gradient-subtle);
  text-align: center;
}
.hero-content { max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-block; padding: 8px 16px;
  background: rgba(124, 58, 237, 0.08); border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 100px; font-size: 13px; font-weight: 600;
  color: var(--accent-violet); margin-bottom: 24px;
}
.hero h1 { margin-bottom: 20px; }
.hero-subtitle {
  font-size: 18px; color: var(--text-secondary);
  max-width: 640px; margin: 0 auto 12px; line-height: 1.7;
}
.hero-tagline {
  font-size: 14px; font-weight: 600; color: var(--accent-violet);
  margin-bottom: 32px; letter-spacing: 0.5px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Sections ──────────────────────────────────── */
.section { padding: var(--section-padding); }
.section-alt { background: var(--bg-secondary); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-subtitle {
  font-size: 17px; color: var(--text-secondary);
  max-width: 600px; margin: 12px auto 0;
}
.section-cta { text-align: center; margin-top: 40px; }

/* ── Grids ─────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ── Cards ─────────────────────────────────────── */
.card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.card-icon { font-size: 36px; margin-bottom: 16px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-secondary); font-size: 15px; }

.card-problem { border-top: 3px solid transparent; }
.card-problem:nth-child(1) { border-top-color: var(--accent-violet); }
.card-problem:nth-child(2) { border-top-color: var(--accent-magenta); }
.card-problem:nth-child(3) { border-top-color: var(--accent-rose); }

/* ── Solution Cards ────────────────────────────── */
.solution-grid { display: flex; flex-direction: column; gap: 24px; max-width: 700px; margin: 0 auto; }
.solution-card {
  display: flex; align-items: flex-start; gap: 20px;
  background: white; padding: 28px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--color-border);
}
.solution-number {
  width: 44px; height: 44px; min-width: 44px;
  background: var(--gradient-brand); color: white;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800;
}
.solution-content h3 { margin-bottom: 6px; }
.solution-content p { color: var(--text-secondary); font-size: 15px; }

/* ── Steps ─────────────────────────────────────── */
.steps { display: flex; align-items: flex-start; gap: 16px; }
.step {
  flex: 1; text-align: center; padding: 32px 20px;
  background: white; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--color-border);
}
.step-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: var(--bg-secondary); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-violet);
}
.step h3 { margin-bottom: 8px; }
.step p { color: var(--text-secondary); font-size: 14px; }
.step-arrow {
  font-size: 24px; color: var(--accent-violet); font-weight: 700;
  padding-top: 60px;
}

@media (max-width: 768px) {
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); padding: 0; text-align: center; }
}

/* ── Team Cards — ИСПРАВЛЕНО ───────────────────── */
.team-card {
  text-align: center;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-photo {
  width: 160px;
  height: 160px;
  min-width: 160px;
  min-height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin-bottom: 20px;
  border: 3px solid var(--accent-violet);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.15);
  background: var(--bg-secondary);
}
.team-card h3 {
  margin-bottom: 4px;
}
.team-role {
  font-weight: 700;
  color: var(--accent-violet);
  font-size: 14px;
  margin-bottom: 8px;
}



/* ── Feature Cards ─────────────────────────────── */
.feature-card {
  background: white; border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all 0.3s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-icon { font-size: 32px; margin-bottom: 14px; }
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { color: var(--text-secondary); font-size: 14px; }

/* ── Audience Cards ────────────────────────────── */
.audience-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}
.audience-icon { font-size: 40px; margin-bottom: 16px; }
.audience-card h3 { margin-bottom: 10px; font-size: 1.4rem; }
.audience-card > p { color: var(--text-secondary); font-size: 15px; margin-bottom: 20px; }
.audience-card ul { list-style: none; margin-bottom: 24px; }
.audience-card li {
  padding: 8px 0; font-size: 14px; color: var(--text-secondary);
  padding-left: 24px; position: relative;
}
.audience-card li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--accent-violet); font-weight: 700;
}

/* ── Status Section ────────────────────────────── */
.section-status {
  background: var(--gradient-subtle);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.status-content { text-align: center; max-width: 700px; margin: 0 auto; }
.status-badge {
  display: inline-block; padding: 6px 14px;
  background: rgba(124, 58, 237, 0.1); border-radius: 100px;
  font-size: 13px; font-weight: 600; color: var(--accent-violet);
  margin-bottom: 16px;
}
.status-content h2 { margin-bottom: 16px; }
.status-content > p { color: var(--text-secondary); font-size: 16px; margin-bottom: 32px; }
.status-progress { display: flex; flex-direction: column; gap: 12px; text-align: left; max-width: 400px; margin: 0 auto; }
.progress-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; font-weight: 500;
}
.progress-item.done { color: var(--color-success); }
.progress-item.active { color: var(--accent-violet); font-weight: 700; }
.progress-item.pending { color: var(--text-secondary); }

/* ── Waitlist / Dark Section ───────────────────── */
.section-dark {
  background: var(--bg-dark); color: var(--text-on-dark);
  padding: 80px 0;
}
.waitlist-content { text-align: center; max-width: 560px; margin: 0 auto; }
.waitlist-content h2 { color: white; margin-bottom: 12px; }
.waitlist-content > p { color: var(--text-on-dark); margin-bottom: 32px; font-size: 16px; }

.waitlist-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: flex; gap: 12px; }
.form-row input, .form-row select {
  flex: 1; padding: 14px 16px; border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15); background: rgba(255,255,255,0.05);
  color: white; font-size: 15px; font-family: inherit;
}
.form-row input::placeholder { color: rgba(255,255,255,0.5); }
.form-row select { color: rgba(255,255,255,0.8); }
.form-row select option { background: var(--bg-dark); color: white; }
.form-note { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 8px; }

.waitlist-success { padding: 24px; }
.success-icon { font-size: 48px; margin-bottom: 12px; }
.waitlist-success h3 { color: white; margin-bottom: 8px; }
.waitlist-success p { color: var(--text-on-dark); }

/* ── Waitlist Form — extended ──────────────────── */
.waitlist-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: white;
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
  min-height: 100px;
}
.waitlist-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}


@media (max-width: 768px) {
  .form-row { flex-direction: column; }
}

/* ── Footer ────────────────────────────────────── */
.footer { background: var(--bg-dark); color: var(--text-on-dark); padding: 60px 0 0; }
.footer-inner { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand { max-width: 300px; }
.footer-logo { border-radius: 6px; margin-bottom: 8px; }
.footer-name { font-size: 18px; font-weight: 800; color: white; display: block; margin-bottom: 8px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-links { display: flex; gap: 60px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: white; font-size: 14px; margin-bottom: 4px; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: white; }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.footer-disclaimer { font-size: 11px; color: rgba(255,255,255,0.35); max-width: 700px; margin: 0 auto; line-height: 1.6; }

@media (max-width: 768px) {
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 32px; }
}

/* ── Cookie Banner ─────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: var(--bg-dark); color: var(--text-on-dark);
  padding: 20px 0; box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  transform: translateY(100%); transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 300px; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.85); }
.cookie-link { color: var(--accent-violet); text-decoration: underline; font-weight: 600; }
.cookie-link:hover { color: var(--accent-magenta); }
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn {
  padding: 10px 20px; border-radius: 6px; font-size: 14px;
  font-weight: 600; cursor: pointer; border: none; font-family: inherit; transition: all 0.2s ease; white-space: nowrap;
}
.cookie-btn-accept { background: var(--gradient-brand); color: white; }
.cookie-btn-accept:hover { opacity: 0.9; }
.cookie-btn-reject { background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.3); }
.cookie-btn-reject:hover { border-color: white; color: white; }
.cookie-btn-settings { background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.3); }
.cookie-btn-settings:hover { border-color: white; color: white; }

/* ── Cookie Modal ──────────────────────────────── */
.cookie-overlay {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 10000;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.cookie-overlay.visible { display: flex; }
.cookie-modal {
  background: white; border-radius: var(--radius-lg); max-width: 640px; width: 100%;
  max-height: 85vh; display: flex; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.cookie-modal-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 28px 16px; border-bottom: 1px solid var(--color-border);
}
.cookie-modal-header h2 { font-size: 20px; font-weight: 700; color: var(--text-primary); }
.cookie-modal-close { background: none; border: none; cursor: pointer; padding: 4px; color: var(--text-secondary); }
.cookie-modal-close:hover { color: var(--text-primary); }
.cookie-modal-body { padding: 24px 28px; overflow-y: auto; flex: 1; }
.cookie-modal-intro { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.cookie-section-title { font-size: 16px; font-weight: 700; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--color-border); }
.cookie-category { padding: 16px 0; border-bottom: 1px solid var(--color-border); }
.cookie-category:last-child { border-bottom: none; }
.cookie-category-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; }
.cookie-category-info h4 { font-size: 15px; font-weight: 600; }
.cookie-always-active { font-size: 12px; font-weight: 700; color: var(--color-success); text-transform: uppercase; }
.cookie-category-desc { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.cookie-toggle { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-toggle-slider {
  position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0;
  background: #D1D5DB; border-radius: 24px; transition: background 0.3s ease;
}
.cookie-toggle-slider::before {
  content: ''; position: absolute; height: 18px; width: 18px;
  left: 3px; bottom: 3px; background: white; border-radius: 50%; transition: transform 0.3s ease;
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--accent-violet); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-modal-footer {
  padding: 16px 28px; border-top: 1px solid var(--color-border);
  display: flex; justify-content: flex-end; gap: 12px;
}
.cookie-modal-footer .cookie-btn-reject { color: var(--text-secondary); border-color: var(--color-border); }
.cookie-modal-footer .cookie-btn-reject:hover { color: var(--text-primary); border-color: var(--text-secondary); }

@media (max-width: 768px) {
  .cookie-banner-inner { flex-direction: column; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

