/* ================================================
   ИСТОЧНИК — PREMIUM REDESIGN
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* prevent horizontal scroll at root level */
}
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #060614;
  color: #e2d9f3;
  overflow-x: hidden;
  line-height: 1.6;
  /* Ensure width never exceeds viewport */
  max-width: 100vw;
  width: 100%;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; font: inherit; border: none; background: none; }

/* ---- DESIGN TOKENS ---- */
:root {
  --bg:           #060614;
  --bg2:          #0b0a20;
  --surface:      rgba(255,255,255,0.035);
  --surface-2:    rgba(139,92,246,0.08);
  --border:       rgba(139,92,246,0.15);
  --border-bright:rgba(168,85,247,0.35);

  --v1: #7c3aed;   /* violet core */
  --v2: #8b5cf6;
  --v3: #a855f7;
  --v4: #c084fc;   /* soft purple */
  --v5: #e9d5ff;   /* lavender */
  --pink: #e879f9;
  --indigo: #818cf8;

  --grad-main:    linear-gradient(135deg, #7c3aed, #c084fc, #e879f9);
  --grad-text:    linear-gradient(120deg, #c084fc 0%, #e879f9 50%, #a855f7 100%);
  --grad-hero:    radial-gradient(ellipse 120% 80% at 50% -10%, #1a0a40 0%, #060614 60%);

  --font-h: 'Cormorant Garamond', serif;
  --font-b: 'Inter', system-ui, sans-serif;

  --r-sm: 10px; --r-md: 18px; --r-lg: 26px; --r-xl: 40px;
  --t-fast: 0.2s ease;
  --t-med:  0.35s cubic-bezier(.4,0,.2,1);
}

/* ---- NOISE TEXTURE ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ---- ORBS ---- */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  /* Prevent orbs from causing horizontal overflow */
  max-width: 100vw;
  max-height: 100vh;
}

/* ---- PARTICLES ---- */
#particles-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float linear infinite;
}
@keyframes float {
  0%   { transform: translateY(0) scale(1); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

/* ---- LAYOUT ---- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; width: 100%; box-sizing: border-box; }
.section {
  position: relative;
  padding: 8rem 0;
  z-index: 1;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--v4);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.section-label::before, .section-label::after {
  content: '';
  flex: none;
  width: 24px;
  height: 1px;
  background: var(--v4);
  opacity: 0.5;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: #f0ebff;
  margin-bottom: 3.5rem;
}
.section-title em {
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- REVEAL ANIMATION ---- */
/* Elements visible by default — JS adds body.js-reveal to enable animation hiding */
.reveal { opacity: 1; transform: translateY(0); transition: opacity 0.7s ease, transform 0.7s ease; }
body.js-reveal .reveal { opacity: 0; transform: translateY(32px); }
body.js-reveal .reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.55s; }
.delay-6 { transition-delay: 0.7s; }

/* ---- FADE IN UP ---- */
.fade-in-up { animation: fadeInUp 0.8s ease both; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 50px;
  padding: 0.85rem 2rem;
  transition: var(--t-med);
  position: relative;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 50%, #c084fc 100%);
  color: #fff;
  box-shadow: 0 4px 24px rgba(124,58,237,0.5), 0 1px 0 rgba(255,255,255,0.1) inset;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(124,58,237,0.6), 0 1px 0 rgba(255,255,255,0.15) inset;
}
.btn-ghost {
  background: transparent;
  color: rgba(233,213,255,0.7);
  border: 1px solid rgba(139,92,246,0.25);
}
.btn-ghost:hover {
  border-color: rgba(168,85,247,0.5);
  color: var(--v5);
  background: rgba(139,92,246,0.06);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--v4);
  border: 1px solid rgba(168,85,247,0.35);
  box-shadow: 0 0 0 0 rgba(168,85,247,0);
}
.btn-outline:hover {
  background: rgba(168,85,247,0.08);
  border-color: var(--v3);
  box-shadow: 0 0 24px rgba(168,85,247,0.15);
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }
.btn-sm   { padding: 0.6rem 1.25rem; font-size: 0.8rem; }
.btn-loading { display: none; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: var(--t-med);
}
.navbar.scrolled {
  background: rgba(6,6,20,0.75);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  box-shadow: 0 4px 40px rgba(0,0,0,0.4);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-symbol {
  font-size: 1.2rem;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: pulse-star 3s ease-in-out infinite;
}
@keyframes pulse-star {
  0%,100% { filter: drop-shadow(0 0 4px rgba(168,85,247,0.6)); }
  50%      { filter: drop-shadow(0 0 12px rgba(232,121,249,1)); }
}
.logo-text {
  font-family: var(--font-h);
  font-size: 1.25rem;
  letter-spacing: 0.2em;
  color: #f0ebff;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-link {
  font-size: 0.825rem;
  letter-spacing: 0.06em;
  color: rgba(233,213,255,0.6);
  transition: var(--t-fast);
}
.nav-link:hover, .nav-link.active { color: var(--v5); }
.nav-cta {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff !important;
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-size: 0.825rem;
  font-weight: 500;
  box-shadow: 0 4px 20px rgba(124,58,237,0.4);
  transition: var(--t-med);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(124,58,237,0.55); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: rgba(233,213,255,0.8);
  border-radius: 2px;
  transition: var(--t-med);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 6rem;
  background: var(--grad-hero);
  overflow: hidden;
  --scroll-y: 0px;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(124,58,237,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 15% 70%, rgba(168,85,247,0.12) 0%, transparent 55%),
    radial-gradient(ellipse 35% 25% at 85% 20%, rgba(232,121,249,0.12) 0%, transparent 50%);
}
.hero-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(168,85,247,0.08);
  pointer-events: none;
  z-index: 0;
}
.hero-ring--1 {
  width: min(500px, 130vw); height: min(500px, 130vw);
  top:50%; left:50%; transform:translate(-50%,-50%);
}
.hero-ring--2 {
  width: min(720px, 190vw); height: min(720px, 190vw);
  top:50%; left:50%; transform:translate(-50%,-50%);
  border-color: rgba(168,85,247,0.055);
}
.hero-ring--3 {
  width: min(960px, 250vw); height: min(960px, 250vw);
  top:50%; left:50%; transform:translate(-50%,-50%);
  border-color: rgba(168,85,247,0.03);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
  padding: 0 1rem;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.9;
  filter: drop-shadow(0 0 8px rgba(232,121,249,0.4));
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  width: 30px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,121,249,0.6));
}
.hero-eyebrow::after { background: linear-gradient(90deg, rgba(232,121,249,0.6), transparent); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 2rem;
  background: linear-gradient(160deg, #e9d5ff 0%, #c084fc 35%, #e879f9 65%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 60px rgba(168,85,247,0.2));
  text-align: center;
  width: 100%;
  overflow: hidden;
}
.hero-subtitle {
  font-family: var(--font-h);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 300;
  color: rgba(233,213,255,0.75);
  line-height: 1.75;
  margin-bottom: 3rem;
}
.hero-subtitle em { font-style: italic; color: var(--v4); }
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 4.5rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 2.5rem;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(139,92,246,0.12);
  border-radius: var(--r-xl);
  backdrop-filter: blur(10px);
  display: inline-flex;
}
.stat-num {
  display: block;
  font-family: var(--font-h);
  font-size: 2.2rem;
  font-weight: 400;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(233,213,255,0.4);
  margin-top: 0.35rem;
}
.stat-divider { width: 1px; height: 36px; background: rgba(139,92,246,0.2); }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.hero-scroll span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(233,213,255,0.25);
}
.scroll-line {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(168,85,247,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity:1; transform:scaleY(1); }
  50%      { opacity:0.3; transform:scaleY(0.5); }
}

/* ---- ABOUT ---- */
.about { background: var(--bg2); }
.about::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 70% 50% at 80% 50%, rgba(124,58,237,0.07) 0%, transparent 65%);
  z-index:0; pointer-events:none;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.about-text .lead {
  font-family: var(--font-h);
  font-size: 1.5rem;
  font-weight: 300;
  color: #f0ebff;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.about-text p {
  color: rgba(233,213,255,0.6);
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--border);
}
.about-card {
  background: var(--bg2);
  padding: 1.75rem;
  transition: var(--t-med);
  position: relative;
}
.about-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(124,58,237,0.06), transparent);
  opacity: 0;
  transition: var(--t-med);
}
.about-card:hover::before { opacity: 1; }
.about-card:hover { background: rgba(124,58,237,0.05); }
.card-icon { font-size: 1.5rem; margin-bottom: 1rem; }
.about-card h3 {
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 500;
  color: #f0ebff;
  margin-bottom: 0.5rem;
}
.about-card p { font-size: 0.82rem; color: rgba(233,213,255,0.5); line-height: 1.6; margin:0; }

/* ---- STAGES ---- */
.stages { background: var(--bg); }
.stages::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.4), transparent);
}
.stages-timeline { position:relative; padding-left:3rem; }
.stages-timeline::before {
  content:''; position:absolute; left:8px; top:0; bottom:0; width:1px;
  background: linear-gradient(to bottom, rgba(168,85,247,0.5), rgba(232,121,249,0.3), transparent);
}
.stage-item {
  position: relative;
  padding-bottom: 2rem;
}
.stage-item:last-child { padding-bottom: 0; }
.stage-dot {
  position: absolute;
  left: -2.35rem;
  top: 0.4rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--v3);
  border: 2px solid var(--bg);
  box-shadow: 0 0 10px rgba(168,85,247,0.7);
}
.stage-dot--final {
  width: 14px; height: 14px;
  left: -2.55rem;
  top: 0.2rem;
  background: linear-gradient(135deg, #7c3aed, #e879f9);
  box-shadow: 0 0 20px rgba(232,121,249,0.8), 0 0 40px rgba(124,58,237,0.4);
}
.stage-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.5rem 2rem;
  transition: var(--t-med);
  position: relative;
  overflow: hidden;
}
.stage-content::after {
  content:''; position:absolute; top:0; left:0; width:3px; height:100%;
  background: var(--grad-main);
  opacity: 0;
  transition: var(--t-med);
}
.stage-content:hover { border-color: var(--border-bright); background: var(--surface-2); }
.stage-content:hover::after { opacity: 1; }
.stage-num {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--pink);
  display: block;
  margin-bottom: 0.5rem;
  text-shadow: 0 0 8px rgba(232,121,249,0.4);
}
.stage-content h3 {
  font-family: var(--font-h);
  font-size: 1.2rem;
  font-weight: 500;
  color: #f0ebff;
  margin-bottom: 0.35rem;
}
.stage-content p { font-size: 0.875rem; color: rgba(233,213,255,0.55); line-height: 1.65; margin:0; }

/* ---- AUTHOR ---- */
.author { background: var(--bg2); position: relative; }
.author::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(232,121,249,0.4), rgba(168,85,247,0.35), transparent);
}
.author::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse 50% 70% at 15% 50%, rgba(124,58,237,0.08) 0%, transparent 60%);
}
.author-wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 6rem;
  align-items: start;
  position: relative; z-index: 1;
}
.author-image-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  position: sticky;
  top: 7rem;
}
/* Ornate avatar */
.author-avatar {
  position: relative;
  width: 260px;
  height: 260px;
}

/* Real photo wrapper */
.author-avatar--photo {
  width: 280px;
  height: 340px;
  border-radius: var(--r-lg);
  overflow: hidden;
  flex-shrink: 0;
}
.author-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1.5px solid rgba(168,85,247,0.35);
  box-shadow: 0 0 40px rgba(124,58,237,0.25), 0 20px 60px rgba(0,0,0,0.5);
}
.author-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  transition: transform 0.6s ease;
}
.author-photo-wrap:hover .author-photo { transform: scale(1.03); }
.author-avatar-ring {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(168,85,247,0.25);
  animation: authorRing 8s linear infinite;
}
.author-avatar-ring::before {
  content:''; position:absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--v3);
  top: -5px; left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 12px rgba(168,85,247,0.9);
}
@keyframes authorRing {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.author-avatar-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%);
  animation: authorGlow 4s ease-in-out infinite;
}
@keyframes authorGlow {
  0%,100% { transform: scale(1); opacity:0.7; }
  50%      { transform: scale(1.1); opacity:1; }
}
.author-avatar-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(124,58,237,0.18) 0%, rgba(232,121,249,0.08) 100%);
  border: 1.5px solid rgba(168,85,247,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.author-avatar-inner::before {
  content:''; position:absolute; inset:0;
  background: linear-gradient(160deg, rgba(255,255,255,0.04) 0%, transparent 50%);
}
.author-avatar-icon { font-size: 5.5rem; position:relative; z-index:1; }

.author-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
  font-size: 0.825rem;
  font-weight: 500;
  color: var(--v5);
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(168,85,247,0.25);
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  transition: var(--t-med);
  letter-spacing: 0.03em;
}
.author-social-btn svg { flex-shrink:0; }
.author-social-btn:hover {
  background: rgba(124,58,237,0.2);
  border-color: rgba(168,85,247,0.5);
  box-shadow: 0 0 24px rgba(124,58,237,0.25);
  transform: translateY(-2px);
}

/* Author content */
.author-name {
  font-family: var(--font-h);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 0.75rem;
}
.author-name em {
  display: block;
  font-style: italic;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.author-role {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: var(--pink);
  text-transform: uppercase;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.author-bio {
  font-size: 0.975rem;
  color: rgba(233,213,255,0.7);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* Expertise pills */
.author-expertise { margin: 2.5rem 0; }
.author-expertise h4 {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(233,213,255,0.35);
  margin-bottom: 1.25rem;
}
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.expertise-item {
  font-size: 0.8rem;
  color: rgba(233,213,255,0.75);
  background: rgba(139,92,246,0.07);
  border: 1px solid rgba(139,92,246,0.18);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  transition: var(--t-fast);
  white-space: normal;     /* allow wrapping on mobile */
  word-break: break-word;
}
.expertise-item:hover {
  background: rgba(139,92,246,0.15);
  border-color: rgba(168,85,247,0.4);
  color: var(--v5);
  transform: translateY(-1px);
}

/* Quote */
.author-quote {
  position: relative;
  margin: 2.5rem 0;
  padding: 1.75rem 2rem;
  background: rgba(124,58,237,0.06);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: var(--r-md);
  overflow: hidden;
}
.author-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.5rem; left: 1.25rem;
  font-family: var(--font-h);
  font-size: 5rem;
  line-height: 1;
  color: rgba(168,85,247,0.15);
  font-style: italic;
}
.author-quote p {
  position: relative;
  font-family: var(--font-h);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(233,213,255,0.88);
  line-height: 1.6;
}
.author-quote cite {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--font-b);
  font-size: 0.75rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pink);
}

/* Channels */
.author-channels {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.channel-badge {
  font-size: 0.78rem;
  color: rgba(233,213,255,0.6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  text-decoration: none;
  transition: var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
a.channel-badge:hover {
  color: var(--v5);
  border-color: var(--border-bright);
  background: rgba(124,58,237,0.12);
  transform: translateY(-1px);
}

/* Expertise / circles heading */
.expertise-heading {
  font-family: var(--font-b);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.9rem;
}

/* 4 game circles row */
.author-game-block {
  margin: 1.75rem 0 2rem;
}
.circles-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}
.circle-pill {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(233,213,255,0.72);
  background: rgba(139,92,246,0.08);
  border: 1px solid rgba(139,92,246,0.22);
  border-radius: 50px;
  padding: 0.42rem 1.1rem;
  transition: var(--t-fast);
}
.circle-pill:hover {
  background: rgba(139,92,246,0.16);
  color: var(--v5);
}
.circle-pill--accent {
  background: linear-gradient(135deg, rgba(168,85,247,0.18), rgba(232,121,249,0.12));
  border-color: rgba(168,85,247,0.45);
  color: var(--v5);
  font-weight: 600;
}


.tariffs { background: var(--bg); }
.tariffs::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.45), rgba(232,121,249,0.3), transparent);
}
.tariffs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
/* Gradient border trick */
.tariff-card {
  position: relative;
  border-radius: var(--r-lg);
  padding: 2.5rem 2rem;
  background: var(--surface);
  transition: var(--t-med);
  overflow: hidden;
}
.tariff-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(139,92,246,0.2), rgba(139,92,246,0.05), rgba(232,121,249,0.1));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.tariff-card--featured::before {
  background: linear-gradient(135deg, var(--v3), var(--pink), var(--v2));
  opacity: 0.6;
}
.tariff-card:hover {
  transform: translateY(-6px);
  background: rgba(124,58,237,0.06);
}
.tariff-card--featured {
  background: linear-gradient(160deg, rgba(124,58,237,0.1) 0%, rgba(232,121,249,0.05) 100%);
  box-shadow: 0 0 50px rgba(124,58,237,0.18), 0 0 100px rgba(124,58,237,0.06);
}
.tariff-card--featured:hover {
  box-shadow: 0 0 70px rgba(124,58,237,0.28), 0 0 120px rgba(124,58,237,0.1);
}
.tariff-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(232,121,249,0.1);
  border: 1px solid rgba(232,121,249,0.3);
  border-radius: 50px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
}
.tariff-glow {
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 120px;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  opacity: 0.5;
}
.tariff-glow--gold   { background: rgba(168,85,247,0.4); }
.tariff-glow--purple { background: rgba(232,121,249,0.4); }
.tariff-icon { font-size: 2rem; margin-bottom: 1rem; }
.tariff-header h3 {
  font-family: var(--font-h);
  font-size: 1.6rem;
  font-weight: 400;
  color: #f0ebff;
  margin-bottom: 0.4rem;
}
.tariff-desc { font-size: 0.825rem; color: rgba(233,213,255,0.4); margin-bottom: 1.75rem; }
.tariff-price {
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.price-amount {
  font-family: var(--font-h);
  font-size: 2.25rem;
  font-weight: 400;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.price-period { font-size: 0.8rem; color: rgba(233,213,255,0.4); margin-left: 0.4rem; }
.tariff-features { margin-bottom: 2.25rem; display:flex; flex-direction:column; gap:0.75rem; }
.tariff-features li { font-size: 0.875rem; color: rgba(233,213,255,0.7); display:flex; align-items:center; gap:0.5rem; }
.tariff-btn { width:100%; justify-content:center; }

/* ---- BOOKING ---- */
.booking { background: var(--bg2); }
.booking::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.35), transparent);
}
.booking::after {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(124,58,237,0.07) 0%, transparent 70%);
  pointer-events:none;
}
.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: start;
  position: relative; z-index:1;
}
.booking-info h3 {
  font-family: var(--font-h);
  font-size: 1.6rem; font-weight:400;
  color: #f0ebff;
  margin-bottom: 1.75rem;
}
.booking-benefits { display:flex; flex-direction:column; gap:1.1rem; margin-bottom:2.5rem; }
.booking-benefits li {
  display:flex; align-items:flex-start; gap:1rem;
  font-size:0.925rem; color:rgba(233,213,255,0.75); line-height:1.5;
}
.benefit-icon {
  font-size:1.1rem; flex-shrink:0; margin-top:0.05rem;
  filter: drop-shadow(0 0 4px rgba(168,85,247,0.4));
}
.booking-contact p { font-size:0.825rem; color:rgba(233,213,255,0.4); margin-bottom:0.85rem; }
.contact-link {
  display:inline-flex; align-items:center; gap:0.65rem;
  font-size:0.875rem; color:var(--v4);
  border:1px solid rgba(139,92,246,0.25);
  border-radius:50px; padding:0.7rem 1.5rem;
  transition: var(--t-med);
}
.contact-link:hover {
  background: rgba(139,92,246,0.08);
  border-color: var(--v3);
  box-shadow: 0 0 20px rgba(124,58,237,0.2);
  transform: translateY(-2px);
}
/* Form */
.booking-form-container {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.booking-form-container::before {
  content:''; position:absolute; top:-1px; left:10%; width:80%; height:1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.5), transparent);
}
.yclients-widget-wrapper { padding:2.5rem; }
.form-title {
  font-family: var(--font-h);
  font-size: 1.5rem; font-weight:400;
  color: #f0ebff;
  margin-bottom: 2rem; text-align:center;
}
.form-group { margin-bottom:1.25rem; }
.form-group label {
  display:block; font-size:0.72rem; font-weight:500;
  letter-spacing:0.08em; text-transform:uppercase;
  color:rgba(233,213,255,0.45); margin-bottom:0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width:100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: #f0ebff;
  font-family: var(--font-b); font-size:0.9rem;
  padding: 0.85rem 1.1rem;
  outline:none; transition:var(--t-fast);
  -webkit-appearance:none; appearance:none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color:rgba(233,213,255,0.22); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(168,85,247,0.5);
  background: rgba(124,58,237,0.06);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}
.form-group input.error { border-color: rgba(239,68,68,0.5); }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b5cf6' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 1rem center;
  padding-right:2.5rem; cursor:pointer;
}
.form-group select option { background:#0b0a20; color:#f0ebff; }
.form-group textarea { resize:vertical; min-height:90px; }
.form-error { display:block; font-size:0.72rem; color:#f87171; margin-top:0.35rem; min-height:1.1rem; }
.checkbox-label {
  display:flex; align-items:flex-start; gap:0.75rem; cursor:pointer;
  font-size:0.8rem; color:rgba(233,213,255,0.5); line-height:1.6;
}
.checkbox-label input[type="checkbox"] { position:absolute; opacity:0; width:0; height:0; }
.checkbox-custom {
  flex-shrink:0; width:18px; height:18px;
  border:1px solid var(--border); border-radius:5px;
  background:rgba(255,255,255,0.04); transition:var(--t-fast);
  position:relative; top:1px;
}
.checkbox-label input:checked ~ .checkbox-custom { background:var(--v1); border-color:var(--v1); }
.checkbox-label input:checked ~ .checkbox-custom::after {
  content:'✓'; position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%); font-size:10px; color:#fff;
}
.checkbox-label a { color:var(--v4); text-decoration:underline; }
.form-consent { margin-bottom:1.5rem; }
.booking-form.loading .btn-text { display:none; }
.booking-form.loading .btn-loading { display:inline; }
.booking-form.loading .btn { opacity:0.7; pointer-events:none; }
.form-success { text-align:center; padding:2.5rem 1rem; }
.success-icon { font-size:3rem; margin-bottom:1rem; }
.form-success h4 {
  font-family:var(--font-h); font-size:1.6rem;
  background:var(--grad-text); -webkit-background-clip:text;
  -webkit-text-fill-color:transparent; background-clip:text;
  margin-bottom:0.75rem;
}
.form-success p { color:rgba(233,213,255,0.6); font-size:0.9rem; }

/* ---- FOOTER ---- */
.footer {
  background: rgba(4,4,16,0.97);
  border-top: 1px solid var(--border);
  padding: 5rem 0 2.5rem;
  position:relative; z-index:1;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1.5fr;
  gap:3rem; margin-bottom:3.5rem;
}
.footer-brand .footer-logo {
  display:flex; align-items:center; gap:0.6rem; margin-bottom:1.25rem;
}
.footer-brand p { font-size:0.875rem; color:rgba(233,213,255,0.45); line-height:1.7; margin-bottom:1rem; }
.footer-contact-email a { font-size:0.85rem; color:var(--v4); }
.footer-contact-email a:hover { color:var(--v5); }
.footer-tg { margin-top:1rem; }
.footer-nav-col h4 {
  font-family:var(--font-h); font-size:0.8rem; letter-spacing:0.2em;
  text-transform:uppercase; color:var(--v4); margin-bottom:1.5rem;
}
.footer-nav-col ul { display:flex; flex-direction:column; gap:0.75rem; }
.footer-nav-col a { font-size:0.875rem; color:rgba(233,213,255,0.45); transition:var(--t-fast); }
.footer-nav-col a:hover { color:var(--v5); }
.footer-legal-col h4 {
  font-family:var(--font-h); font-size:0.8rem; letter-spacing:0.2em;
  text-transform:uppercase; color:var(--v4); margin-bottom:1.5rem;
}
.footer-requisites {
  font-size:0.8rem; color:rgba(233,213,255,0.4); line-height:2;
}
.footer-requisites a { color:rgba(233,213,255,0.5); }
.footer-requisites a:hover { color:var(--v4); }
.footer-bottom {
  display:flex; align-items:center; justify-content:space-between;
  padding-top:2rem; border-top:1px solid var(--border);
  font-size:0.8rem; color:rgba(233,213,255,0.3);
}
.footer-bottom a { color:rgba(233,213,255,0.4); }
.footer-bottom a:hover { color:var(--v4); }

/* ---- BACK TO TOP ---- */
.back-to-top {
  position:fixed; bottom:2rem; right:2rem; z-index:50;
  width:44px; height:44px; border-radius:50%;
  background: rgba(124,58,237,0.2);
  border:1px solid rgba(168,85,247,0.3);
  color:var(--v4); font-size:1.1rem;
  display:flex; align-items:center; justify-content:center;
  backdrop-filter:blur(10px);
  transition:var(--t-med);
}
.back-to-top:hover {
  background: rgba(124,58,237,0.4);
  border-color: var(--v3);
  transform:translateY(-3px);
}

/* ---- HERO AURORA ENHANCEMENT ---- */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 60%, rgba(124,58,237,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(232,121,249,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.author-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Count-up number style */
.count-up { font-variant-numeric: tabular-nums; }

/* ---- FAQ ---- */
.faq { background: var(--bg); }
.faq::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.4), rgba(232,121,249,0.25), transparent);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-med);
}
.faq-item[open] {
  border-color: rgba(168,85,247,0.35);
  background: rgba(124,58,237,0.04);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 1.75rem;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-h);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(233,213,255,0.9);
  transition: color var(--t-fast);
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--v5); }
.faq-icon {
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--pink);
  transition: transform var(--t-med), color var(--t-fast);
}
.faq-item[open] .faq-icon {
  transform: rotate(90deg);
  color: var(--v4);
}
.faq-answer {
  padding: 0 1.75rem 1.5rem;
  border-top: 1px solid var(--border);
}
.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: rgba(233,213,255,0.65);
  padding-top: 1.1rem;
}
.faq-answer a {
  color: var(--v4);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq-answer a:hover { color: var(--pink); }

/* ---- REVIEWS ---- */
.reviews { background: var(--bg2); }
.reviews::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, rgba(168,85,247,0.45), rgba(232,121,249,0.3), transparent);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}
.review-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: var(--t-med);
  overflow: hidden;
}
.review-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--v3), var(--pink));
  opacity: 0;
  transition: var(--t-med);
}
.review-card:hover         { transform: translateY(-4px); border-color: rgba(139,92,246,0.3); }
.review-card:hover::before { opacity: 1; }
.review-stars {
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--pink);
}
.review-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(233,213,255,0.75);
  font-style: italic;
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.review-name {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--v5);
}
.review-city {
  font-size: 0.75rem;
  color: rgba(233,213,255,0.35);
}
.review-author::before {
  content: '';
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168,85,247,0.3), rgba(232,121,249,0.2));
  border: 1px solid rgba(168,85,247,0.25);
  flex-shrink: 0;
}

/* Reviews stats bar */
.reviews-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(139,92,246,0.06);
  border: 1px solid rgba(139,92,246,0.15);
  border-radius: var(--r-lg);
  padding: 2rem 3rem;
  backdrop-filter: blur(8px);
}
.reviews-stats .stat-item {
  flex: 1;
  text-align: center;
}
.reviews-stats .stat-num {
  display: block;
  font-family: var(--font-h);
  font-size: 2.5rem;
  font-weight: 400;
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.reviews-stats .stat-label {
  display: block;
  font-size: 0.78rem;
  color: rgba(233,213,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.reviews-stats .stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 2rem;
}

/* ---- RESPONSIVE ---- */
.desktop-only { display:none; }
@media (min-width:1024px) { .desktop-only { display:inline; } }

@media (max-width:1024px) {
  .about-grid   { grid-template-columns:1fr; gap:3rem; }
  .tariffs-grid { grid-template-columns:1fr; max-width:480px; margin:0 auto; }
  .booking-wrapper { grid-template-columns:1fr; gap:3rem; }
  .footer-grid  { grid-template-columns:1fr 1fr; }
  .author-wrapper { grid-template-columns:1fr; gap:3rem; }
  .author-image-col { position:static; flex-direction:column; }
  /* Critical: grid child must have min-width:0 to prevent overflow */
  .author-content { min-width: 0; width: 100%; overflow-wrap: break-word; }
  .reviews-grid { grid-template-columns:1fr; max-width:520px; margin-left:auto; margin-right:auto; }
  .reviews-stats { padding:1.75rem 2rem; }
  .reviews-stats .stat-divider { margin:0 1.25rem; }
}
@media (max-width:768px) {
  .section { padding:5rem 0; }
  /* Tighter container padding on mobile */
  .container { padding: 0 1.25rem; }
  .navbar .nav-links {
    display:none; flex-direction:column; position:fixed;
    inset:0; background:rgba(6,6,20,0.97); backdrop-filter:blur(24px);
    align-items:center; justify-content:center; gap:2.5rem; z-index:99;
  }
  .navbar .nav-links.open { display:flex; }
  .nav-link { font-size:1.1rem; }
  .nav-toggle { display:flex; z-index:100; }
  .nav-toggle.active span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity:0; }
  .nav-toggle.active span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }
  .about-cards { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; gap:2rem; }
  .footer-bottom { flex-direction:column; gap:0.75rem; text-align:center; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .hero-actions .btn { justify-content:center; }
  .hero-stats { gap:1.5rem; padding:1.25rem 1.75rem; }
  .stat-divider { height:28px; }
  .expertise-grid { gap:0.45rem; }
  .expertise-item { font-size: 0.72rem; padding: 0.35rem 0.75rem; }
  .author-avatar { width:180px; height:180px; }
  .author-avatar-icon { font-size:4.5rem; }
  /* Author section: ensure full width, no overflow */
  .author-wrapper { gap: 2rem; }
  .author-content { min-width: 0; width: 100%; }
  .author-role { font-size: 0.7rem; letter-spacing: 0.07em; }
  .author-bio { font-size: 0.9rem; }
  .circles-row { flex-wrap: wrap; gap: 0.4rem; }
}
@media (max-width:480px) {
  .yclients-widget-wrapper { padding:1.5rem; }
  .hero-stats { display:none; }
  .reviews-stats { flex-direction:column; gap:1.5rem; padding:1.75rem; }
  .reviews-stats .stat-divider { width:60px; height:1px; margin:0; }
  .circles-row { flex-direction:column; }
}

/* ---- DEVELOPER CREDIT ---- */
.footer-dev {
  font-size: 0.75rem;
  color: rgba(233,213,255,0.3);
  margin-top: 0.5rem;
  line-height: 1.6;
}
.footer-dev a {
  color: rgba(168,85,247,0.6);
  text-decoration: none;
  transition: var(--t-fast);
}
.footer-dev a:hover { color: var(--v4); }

/* Copyright owner notice */
.footer-copyright-owner {
  font-size: 0.68rem;
  color: rgba(233,213,255,0.22);
  line-height: 1.7;
  margin-top: 0.35rem;
  border-top: 1px solid rgba(139,92,246,0.08);
  padding-top: 0.75rem;
}
