* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Jost', sans-serif;
  background: #0A0A0F;
  color: #F5F5F7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ШАРЫ */
.bg-orbs {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.35;
  will-change: transform;
}

.orb1 { width: 420px; height: 420px; background: #B03060; top: -130px; left: -100px; }
.orb2 { width: 550px; height: 550px; background: #E5C07B; bottom: -180px; right: -130px; opacity: 0.2; }
.orb3 { width: 220px; height: 220px; background: #FFFFFF; top: 40%; left: 65%; opacity: 0.12; }
.orb4 { width: 300px; height: 300px; background: #8B1E3F; bottom: 15%; left: 5%; opacity: 0.3; }
.orb5 { width: 140px; height: 140px; background: #E5C07B; top: 12%; right: 18%; opacity: 0.25; }
.orb6 { width: 450px; height: 450px; background: #A52A5A; top: 50%; left: 30%; opacity: 0.18; }

/* СТЕКЛЯННЫЙ ХЕДЕР */
.glass-header {
  position: sticky;
  top: 12px;
  z-index: 100;
  max-width: 1000px;
  margin: 12px auto;
  padding: 0 20px;
  border-radius: 22px;
  background: rgba(255,255,255,0.02);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.glass-header::before {
  content: '';
  position: absolute;
  top: 0; left: 5%;
  width: 90%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.7), transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-icon { font-size: 16px; opacity: 0.7; }

.toggle-track {
  width: 48px;
  height: 26px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  display: flex;
  align-items: center;
  padding: 3px;
  border: 1px solid rgba(255,255,255,0.1);
}

.toggle-thumb {
  display: block;
  width: 18px;
  height: 18px;
  background: #B03060;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav { display: flex; gap: 20px; }

.nav-link {
  color: #B0B0C0;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-link:hover { color: #E09EB5; }

/* КОНТЕНТ */
.container {
  position: relative;
  z-index: 5;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section { margin-bottom: 100px; }

/* ОБО МНЕ */
.about-grid {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.photo-frame {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
}

.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

.about-info { flex: 1; min-width: 280px; }

.hero-label {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E09EB5;
  margin-bottom: 12px;
}

.hero-name {
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #FFFFFF, #E5C07B);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}

.hero-text {
  font-size: 18px;
  color: #B0B0C0;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 600px;
}

.hero-text.small { font-size: 15px; opacity: 0.8; }

.contact-links { display: flex; flex-wrap: wrap; gap: 10px; }

.contact-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 60px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  color: #F0F0F8;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}

.contact-pill:hover {
  border-color: #B03060;
  background: rgba(176,48,96,0.15);
}

/* БРЕНДЫ */
.section-title {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E09EB5;
  margin-bottom: 28px;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.brand-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s;
}

.brand-card:hover {
  border-color: #B03060;
  transform: translateY(-4px);
}

.brand-preview {
  position: relative;
}

.brand-preview img { width: 100%; height: auto; display: block; }

.watermark {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.3);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  padding: 16px 18px 6px;
}

.brand-meta {
  font-size: 14px;
  color: #B0B0C0;
  padding: 0 18px;
}

.brand-note {
  font-size: 13px;
  color: #E09EB5;
  padding: 10px 18px 18px;
}

/* НАВЫКИ */
.skills-cloud { display: flex; flex-wrap: wrap; gap: 12px; }

.skill-chip {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 8px 18px;
  border-radius: 60px;
  font-size: 14px;
  transition: all 0.3s;
}

.skill-chip:hover {
  border-color: #B03060;
  background: rgba(176,48,96,0.15);
}

/* ПРОЕКТЫ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.project-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s;
}

.project-card:hover {
  border-color: #B03060;
  transform: translateY(-4px);
}

.card-img img { width: 100%; height: 180px; object-fit: cover; }

.card-content { padding: 20px; }

.card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.card-metric {
  font-size: 14px;
  color: #E5C07B;
  margin-bottom: 10px;
}

.card-desc {
  font-size: 14px;
  color: #B0B0C0;
  margin-bottom: 14px;
  line-height: 1.5;
}

.badge {
  display: inline-block;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 40px;
  background: rgba(176,48,96,0.15);
  border: 1px solid rgba(176,48,96,0.4);
  color: #E09EB5;
  margin-right: 6px;
}

/* АДАПТИВ */
@media (max-width: 800px) {
  .brands-grid {
    grid-template-columns: 1fr;
  }
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}
