/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --white: #f8f6ff;
  --off-white: #ede9ff;
  --p50:  #f5f0ff;
  --p100: #ede0ff;
  --p200: #d9b8ff;
  --p400: #a855f7;
  --p500: #9333ea;
  --p600: #7e22ce;
  --p700: #6b21a8;
  --p900: #1a0533;
  --dark: #0a0212;
  --dark2: #0f0320;
  --dark3: #150728;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(168,85,247,0.2);
  --glow: 0 0 40px rgba(168,85,247,0.35);
  --glow-sm: 0 0 16px rgba(168,85,247,0.3);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}
::selection { background: var(--p500); color: #fff; }
a { color: inherit; text-decoration: none; }

/* ── CUSTOM CURSOR ── */
#cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none; mix-blend-mode: normal;
}
#cursor-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--p400);
  position: absolute; transform: translate(-50%,-50%);
  transition: transform 0.1s, background 0.2s;
  box-shadow: var(--glow-sm);
}
#cursor-ring {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(168,85,247,0.5);
  position: absolute; transform: translate(-50%,-50%);
  transition: width 0.25s, height 0.25s, border-color 0.25s, transform 0.08s;
}
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 54px; height: 54px;
  border-color: var(--p400);
  background: rgba(168,85,247,0.08);
}

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

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,2,18,0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(168,85,247,0.1);
  transition: padding 0.3s;
}
nav.scrolled { padding: 14px 48px; }
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.5rem;
  background: linear-gradient(135deg, #fff 30%, var(--p400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.6);
  letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s;
  font-family: var(--font-mono);
}
.nav-links a:hover { color: var(--p200); }
.nav-cta {
  padding: 9px 22px;
  border: 1px solid var(--p500);
  border-radius: 6px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--p200) !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { background: rgba(168,85,247,0.12); box-shadow: var(--glow-sm); }
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: none; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }

/* ── HERO ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding: 120px 48px 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(147,51,234,0.18) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 80% 80%, rgba(168,85,247,0.1) 0%, transparent 60%),
              var(--dark);
}
#particles-canvas {
  position: absolute; inset: 0; z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 900px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 99px;
  border: 1px solid var(--glass-border);
  background: var(--glass);
  backdrop-filter: blur(10px);
  font-family: var(--font-mono); font-size: 0.75rem;
  color: var(--p200); margin-bottom: 36px;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-badge::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 800; line-height: 0.9;
  letter-spacing: -0.04em;
  animation: fadeUp 0.8s 0.4s both;
}
.hero-title span {
  display: block;
  background: linear-gradient(135deg, #ffffff 0%, #e8d5ff 40%, var(--p400) 70%, #c084fc 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 60px rgba(168,85,247,0.4));
}
.hero-tagline {
  font-family: var(--font-display); font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 600; color: var(--p200);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: 12px; margin-bottom: 24px;
  animation: fadeUp 0.8s 0.55s both;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(255,255,255,0.55); max-width: 560px; margin: 0 auto 48px;
  line-height: 1.7; font-weight: 300;
  animation: fadeUp 0.8s 0.7s both;
}
.hero-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s 0.85s both;
}
.btn-primary {
  padding: 14px 32px; border-radius: 8px;
  background: linear-gradient(135deg, var(--p500), var(--p600));
  color: #fff; font-weight: 600; font-size: 0.95rem;
  border: none; cursor: none;
  box-shadow: 0 4px 24px rgba(147,51,234,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0; transition: opacity 0.2s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(147,51,234,0.55); }
.btn-primary:hover::before { opacity: 1; }
.btn-ghost {
  padding: 14px 32px; border-radius: 8px;
  border: 1px solid var(--glass-border); background: var(--glass);
  color: var(--off-white); font-weight: 500; font-size: 0.95rem;
  cursor: none; backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: var(--p400); background: rgba(168,85,247,0.08); transform: translateY(-2px); }
.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  z-index: 2; animation: fadeUp 1s 1.2s both;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll span { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(255,255,255,0.3); letter-spacing: 0.1em; }
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--p500), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform:scaleY(1);transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }

/* ── SECTIONS BASE ── */
section { position: relative; padding: 120px 48px; overflow: hidden; }
.section-label {
  font-family: var(--font-mono); font-size: 0.72rem;
  color: var(--p400); letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; display: block; width: 24px; height: 1px; background: var(--p500); }
.section-title {
  font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800; letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 24px;
}
.section-title em { font-style: normal; color: var(--p400); }
.container { max-width: 1100px; margin: 0 auto; }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s, transform 0.7s; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── ABOUT ── */
#about { background: var(--dark2); }
#about .about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-visual { position: relative; }
.about-avatar-wrap {
  width: 300px; height: 300px; margin: 0 auto;
  position: relative;
}
.about-avatar-bg {
  position: absolute; inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.25), transparent 70%);
  animation: spin 12s linear infinite;
}
.about-avatar-ring {
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px dashed rgba(168,85,247,0.3);
  animation: spin 20s linear infinite reverse;
}
.about-avatar-ring::after {
  content: ''; position: absolute; width: 10px; height: 10px;
  border-radius: 50%; background: var(--p400);
  top: 50%; left: 0; transform: translate(-50%,-50%);
  box-shadow: var(--glow-sm);
}
@keyframes spin { to { transform: rotate(360deg); } }
.about-avatar-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--p700), var(--p900));
  border: 2px solid rgba(168,85,247,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 5rem; font-weight: 800;
  color: rgba(255,255,255,0.15);
  overflow: hidden; position: relative;
}
.about-avatar-inner::after {
  content: 'Z'; position: absolute;
  font-size: 8rem; font-weight: 800;
  background: linear-gradient(135deg, var(--p300,#c084fc), var(--p400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  opacity: 0.6;
}
.about-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px;
}
.stat-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 12px; padding: 16px;
  backdrop-filter: blur(8px); text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.stat-card:hover { border-color: var(--p400); box-shadow: var(--glow-sm); }
.stat-num {
  font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--p400));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.4); font-family: var(--font-mono); margin-top: 4px; }
.about-text p {
  font-size: 1.05rem; line-height: 1.8; color: rgba(255,255,255,0.7);
  font-weight: 300; margin-bottom: 20px;
}
.about-text p strong { color: var(--p200); font-weight: 500; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.tag {
  padding: 6px 14px; border-radius: 99px;
  border: 1px solid var(--glass-border); background: var(--glass);
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--p200);
  transition: border-color 0.2s, background 0.2s;
}
.tag:hover { border-color: var(--p400); background: rgba(168,85,247,0.1); }

/* ── SERVICES ── */
#services { background: var(--dark); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 64px;
}
.service-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--p500), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--glow); border-color: rgba(168,85,247,0.4); }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(168,85,247,0.2), rgba(147,51,234,0.1));
  border: 1px solid rgba(168,85,247,0.25);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--p400); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.service-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; }
.service-desc { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.55); font-weight: 300; }
.service-features { margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.service-features li {
  list-style: none; font-size: 0.82rem; color: rgba(255,255,255,0.45);
  font-family: var(--font-mono); display: flex; align-items: center; gap: 8px;
}
.service-features li::before { content: '→'; color: var(--p400); }

/* ── MI MUNDO ── */
#world { background: var(--dark3); }
.world-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px; margin-top: 64px;
}
.world-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 24px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.world-card:hover { border-color: rgba(168,85,247,0.4); box-shadow: 0 8px 40px rgba(0,0,0,0.3), var(--glow-sm); transform: translateY(-4px); }
.wc-1 { grid-column: span 7; }
.wc-2 { grid-column: span 5; }
.wc-3 { grid-column: span 4; }
.wc-4 { grid-column: span 5; }
.wc-5 { grid-column: span 3; }
.wc-6 { grid-column: span 6; }
.wc-7 { grid-column: span 6; }
.world-card-label {
  font-family: var(--font-mono); font-size: 0.68rem;
  color: var(--p400); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px;
}
.world-card-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.world-card-body { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.6; font-weight: 300; }
.status-list { margin-top: 12px; display: flex; flex-direction: column; gap: 10px; }
.status-item { display: flex; align-items: center; justify-content: space-between; }
.status-item span:first-child { font-family: var(--font-mono); font-size: 0.78rem; color: rgba(255,255,255,0.6); }
.status-badge {
  font-family: var(--font-mono); font-size: 0.7rem;
  padding: 3px 10px; border-radius: 99px;
}
.s-active { background: rgba(74,222,128,0.12); color: #4ade80; border: 1px solid rgba(74,222,128,0.25); }
.s-building { background: rgba(251,191,36,0.12); color: #fbbf24; border: 1px solid rgba(251,191,36,0.25); }
.s-idea { background: rgba(168,85,247,0.12); color: var(--p200); border: 1px solid var(--glass-border); }
.terminal-body {
  background: rgba(0,0,0,0.4); border-radius: 10px; padding: 16px;
  font-family: var(--font-mono); font-size: 0.78rem; margin-top: 12px;
  border: 1px solid rgba(255,255,255,0.07);
}
.terminal-line { display: flex; gap: 8px; margin-bottom: 6px; }
.t-prompt { color: var(--p400); }
.t-cmd { color: rgba(255,255,255,0.7); }
.t-out { color: #4ade80; }
.t-comment { color: rgba(255,255,255,0.3); }
.interests-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.interest-item {
  padding: 6px 14px; border-radius: 8px;
  background: rgba(168,85,247,0.08); border: 1px solid rgba(168,85,247,0.15);
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--p200);
  transition: background 0.2s;
}
.interest-item:hover { background: rgba(168,85,247,0.18); }
.philosophy-quote {
  font-size: 1.15rem; line-height: 1.7; font-style: italic;
  color: rgba(255,255,255,0.65); font-weight: 300;
  border-left: 2px solid var(--p500); padding-left: 20px; margin-top: 12px;
}
.hour-blocks { display: flex; gap: 4px; margin-top: 14px; flex-wrap: wrap; }
.hour-block {
  width: 22px; height: 22px; border-radius: 4px;
  background: rgba(168,85,247,0.08);
  border: 1px solid rgba(168,85,247,0.1);
  position: relative; cursor: none;
  transition: background 0.2s;
}
.hour-block.on { background: rgba(168,85,247,0.45); border-color: rgba(168,85,247,0.5); }
.hour-block.peak { background: var(--p500); border-color: var(--p400); box-shadow: 0 0 8px rgba(168,85,247,0.4); }
.hour-labels { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 0.65rem; color: rgba(255,255,255,0.3); margin-top: 6px; }

/* ── EXPERIENCE ── */
#experience { background: var(--dark2); }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 64px; }
.exp-card {
  background: var(--glass); border: 1px solid var(--glass-border);
  border-radius: 16px; padding: 32px; position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.exp-card:hover { transform: translateY(-4px); box-shadow: var(--glow); border-color: rgba(168,85,247,0.4); }
.exp-card-bg {
  position: absolute; top: -40px; right: -40px;
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,0.12), transparent);
  pointer-events: none;
}
.exp-server {
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--p400);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.exp-server::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--p400); box-shadow: 0 0 8px var(--p400);
}
.exp-role { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 6px; }
.exp-period { font-family: var(--font-mono); font-size: 0.75rem; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.exp-desc { font-size: 0.9rem; line-height: 1.7; color: rgba(255,255,255,0.55); font-weight: 300; }
.exp-impact { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 10px; }
.impact-pill {
  padding: 5px 12px; border-radius: 6px;
  background: rgba(168,85,247,0.1); border: 1px solid rgba(168,85,247,0.2);
  font-family: var(--font-mono); font-size: 0.72rem; color: var(--p200);
}
.exp-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(168,85,247,0.06), rgba(147,51,234,0.03));
}

/* ── CONTACT ── */
#contact { background: var(--dark); }
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
  margin-top: 64px;
}
.contact-info h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; }
.contact-info p { font-size: 0.95rem; line-height: 1.8; color: rgba(255,255,255,0.55); font-weight: 300; margin-bottom: 32px; }
.contact-links { display: flex; flex-direction: column; gap: 14px; }
.contact-link {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 10px;
  border: 1px solid var(--glass-border); background: var(--glass);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.contact-link:hover { border-color: var(--p400); background: rgba(168,85,247,0.08); transform: translateX(4px); }
.contact-link-icon {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: rgba(168,85,247,0.1); border-radius: 8px; border: 1px solid rgba(168,85,247,0.2);
}
.contact-link-icon svg { width: 16px; height: 16px; stroke: var(--p400); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-link-text { font-family: var(--font-mono); font-size: 0.82rem; color: rgba(255,255,255,0.7); }
.contact-link-arrow { margin-left: auto; color: var(--p400); font-size: 0.8rem; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-family: var(--font-mono); font-size: 0.72rem; color: var(--p400); letter-spacing: 0.1em; text-transform: uppercase; }
.form-group input, .form-group textarea {
  background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border);
  border-radius: 10px; padding: 14px 18px; color: var(--white);
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 300;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--p500); box-shadow: 0 0 0 3px rgba(147,51,234,0.1);
}
.form-group textarea { min-height: 120px; }
.form-submit {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px; border-radius: 10px;
  background: linear-gradient(135deg, var(--p500), var(--p600));
  color: #fff; font-weight: 600; font-size: 0.95rem;
  border: none; cursor: none;
  box-shadow: 0 4px 24px rgba(147,51,234,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(147,51,234,0.55); }
.form-success {
  display: none; text-align: center; padding: 24px;
  background: rgba(74,222,128,0.06); border: 1px solid rgba(74,222,128,0.2);
  border-radius: 12px; font-family: var(--font-mono); color: #4ade80; font-size: 0.85rem;
}

/* ── FOOTER ── */
footer {
  padding: 48px; background: var(--dark);
  border-top: 1px solid rgba(168,85,247,0.1);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-brand { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; }
.footer-brand span { background: linear-gradient(135deg, #fff, var(--p400)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-domain { font-family: var(--font-mono); font-size: 0.75rem; color: rgba(255,255,255,0.3); margin-top: 4px; }
.footer-copy { font-family: var(--font-mono); font-size: 0.72rem; color: rgba(255,255,255,0.25); text-align: right; }
.footer-copy a { color: var(--p400); }

/* ── GRADIENT LINE DIVIDER ── */
.gradient-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--p500), transparent);
  opacity: 0.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  nav.scrolled { padding: 12px 24px; }
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; bottom: 0; background: rgba(10,2,18,0.97); flex-direction: column; align-items: center; justify-content: center; gap: 32px; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-burger { display: flex; }
  #hero { padding: 100px 24px 60px; }
  section { padding: 80px 24px; }
  #about .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-avatar-wrap { width: 220px; height: 220px; }
  .exp-grid { grid-template-columns: 1fr; }
  .exp-card.featured { grid-column: span 1; }
  .contact-wrap { grid-template-columns: 1fr; gap: 48px; }
  .world-grid { grid-template-columns: 1fr 1fr; }
  .wc-1,.wc-2,.wc-3,.wc-4,.wc-5,.wc-6,.wc-7 { grid-column: span 2; }
  footer { flex-direction: column; text-align: center; }
  .footer-copy { text-align: center; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .world-grid { grid-template-columns: 1fr; }
  .wc-1,.wc-2,.wc-3,.wc-4,.wc-5,.wc-6,.wc-7 { grid-column: span 1; }
  .about-stats { grid-template-columns: 1fr 1fr; }
}
