/* ─────────────────────────────────────────────
   AMANI JORDAN — style.css
   Premium dark personal brand portfolio
   ───────────────────────────────────────────── */

:root {
  --bg: #080b10;
  --bg-2: #0d1117;
  --bg-3: #111827;
  --bg-glass: rgba(255,255,255,0.04);
  --bg-glass-hover: rgba(255,255,255,0.07);
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(139,92,246,0.4);

  --purple: #8b5cf6;
  --purple-light: #a78bfa;
  --purple-glow: rgba(139,92,246,0.25);
  --blue: #38bdf8;
  --blue-glow: rgba(56,189,248,0.2);
  --gold: #f59e0b;

  --text-1: #f8fafc;
  --text-2: #94a3b8;
  --text-3: #64748b;

  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-1);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Noise overlay ── */
.noise-overlay {
  position: fixed;
  inset: 0;
  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)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── Custom cursor ── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--purple);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: transform 0.1s, width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: screen;
}

.cursor-trail {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--purple-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: left 0.12s ease, top 0.12s ease, width 0.25s, height 0.25s, opacity 0.25s;
  opacity: 0.5;
}

body:has(a:hover) .cursor,
body:has(button:hover) .cursor {
  width: 18px;
  height: 18px;
}

body:has(a:hover) .cursor-trail,
body:has(button:hover) .cursor-trail {
  width: 48px;
  height: 48px;
  opacity: 0.2;
}

/* ── Layout ── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 120px 0;
}

/* ── Scroll Reveal ── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.4,0,0.2,1), transform 0.75s cubic-bezier(0.4,0,0.2,1);
  transition-delay: var(--d, 0ms);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.revealed {
  opacity: 1 !important;
  transform: none !important;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), backdrop-filter var(--transition), padding var(--transition), border-bottom var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 11, 16, 0.85);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  color: white;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-1);
  letter-spacing: -0.01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-2);
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-1);
  background: var(--bg-glass);
}

.nav-cta {
  display: block;
  padding: 9px 20px;
  background: linear-gradient(135deg, var(--purple), #7c3aed);
  color: white;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: opacity var(--transition), transform var(--transition);
  margin-left: 8px;
}

.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px 28px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
  opacity: 0.25;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: 50%;
  left: 40%;
  animation: orbFloat 12s ease-in-out infinite;
  opacity: 0.12;
}

.orb-4 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  animation: orbFloat 9s ease-in-out infinite;
  opacity: 0.2;
}

.orb-5 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--blue) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  animation: orbFloat 11s ease-in-out infinite reverse;
  opacity: 0.18;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--text-2);
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px #22c55e; }
  50% { opacity: 0.6; box-shadow: 0 0 16px #22c55e; }
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 120px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--text-1);
  margin-bottom: 24px;
}

.name-accent {
  background: linear-gradient(135deg, var(--purple-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-roles {
  font-family: var(--font-mono);
  font-size: clamp(14px, 2vw, 18px);
  color: var(--purple-light);
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.role-static {
  opacity: 0.5;
}

.hero-sub {
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--text-2);
  margin-bottom: 40px;
  line-height: 1.65;
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.hero-social {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-2);
  text-decoration: none;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.social-pill:hover {
  border-color: var(--purple-light);
  color: var(--text-1);
  background: var(--bg-glass-hover);
  transform: translateY(-2px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-3);
  font-size: 11px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: linear-gradient(135deg, var(--purple) 0%, #7c3aed 100%);
  color: white;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  box-shadow: 0 0 0 0 var(--purple-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--purple-glow);
  opacity: 0.92;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  background: transparent;
  color: var(--text-1);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}

.btn-secondary:hover {
  border-color: var(--purple-light);
  background: var(--bg-glass);
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 16px;
  background: transparent;
  color: var(--text-2);
  font-size: 15px;
  font-weight: 400;
  text-decoration: none;
  transition: color var(--transition);
}

.btn-ghost:hover {
  color: var(--purple-light);
}

/* ── SECTION SHARED ── */
.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--purple-light);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  background: rgba(139,92,246,0.1);
  border: 1px solid rgba(139,92,246,0.25);
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-1);
  margin-bottom: 20px;
}

.section-title em {
  font-style: normal;
  background: linear-gradient(135deg, var(--purple-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 17px;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.65;
  font-weight: 300;
}

.section-header {
  text-align: center;
  margin-bottom: 72px;
}

.section-header .section-sub {
  margin: 0 auto;
}

/* ── ABOUT ── */
.about {
  background: var(--bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-img-wrap {
  position: relative;
}

.about-placeholder {
  position: relative;
  width: 320px;
  height: 320px;
  margin: 0 auto 32px;
}

.profile-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 2;
}

.placeholder-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  animation: ringPulse 3s ease-in-out infinite;
}

.ring-1 {
  inset: -14px;
  border-color: rgba(139,92,246,0.3);
  animation-delay: 0s;
}

.ring-2 {
  inset: -28px;
  border-color: rgba(139,92,246,0.15);
  animation-delay: 0.4s;
}

.ring-3 {
  inset: -44px;
  border-color: rgba(139,92,246,0.07);
  animation-delay: 0.8s;
}

@keyframes ringPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.03); }
}

.about-stats {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 20px;
}

.stat-card {
  flex: 1;
  padding: 20px 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: border-color var(--transition), transform var(--transition);
}

.stat-card:hover {
  border-color: var(--purple-light);
  transform: translateY(-3px);
}

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
  margin-top: 4px;
}

.about-text {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 18px;
  font-weight: 300;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}

.value-item:hover {
  border-color: var(--border-hover);
}

.value-icon {
  font-size: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 3px;
}

.value-item p {
  font-size: 14px;
  color: var(--text-3);
}

/* ── SERVICES ── */
.services {
  background: var(--bg-2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  padding: 32px 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-card:hover::before {
  opacity: 1;
}

.service-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.service-icon {
  color: var(--purple-light);
  margin-bottom: 16px;
  width: 48px;
  height: 48px;
  background: rgba(139,92,246,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.service-card p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 300;
}

.service-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(139,92,246,0.1);
  color: var(--purple-light);
  border-radius: 100px;
  border: 1px solid rgba(139,92,246,0.2);
}

.service-card--cta {
  background: linear-gradient(135deg, rgba(139,92,246,0.1), rgba(56,189,248,0.05));
  border-color: rgba(139,92,246,0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.cta-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--purple-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.service-card--cta h3 {
  font-size: 20px;
  margin-bottom: 24px;
}

/* ── PORTFOLIO ── */
.portfolio {
  background: var(--bg);
}

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

.project-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.project-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(0,0,0,0.4);
}

.project-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
}

.project-visual {
  background: var(--bg-3);
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  position: relative;
  overflow: hidden;
}

.project-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, var(--accent, var(--purple)) 0%, transparent 65%);
  opacity: 0.15;
}

.project-mockup {
  width: 100%;
  max-width: 320px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.mockup-bar {
  height: 32px;
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  display: block;
}

.mockup-bar span:nth-child(1) { background: #ff5f57; }
.mockup-bar span:nth-child(2) { background: #ffbd2e; }
.mockup-bar span:nth-child(3) { background: #28ca41; }

.mockup-body {
  padding: 16px;
}

.mockup-hero {
  height: 90px;
  background: linear-gradient(135deg, var(--accent, var(--purple)) 0%, transparent 100%);
  border-radius: 6px;
  margin-bottom: 12px;
  opacity: 0.4;
}

.mockup-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ml {
  height: 8px;
  width: var(--w, 100%);
  background: rgba(255,255,255,0.08);
  border-radius: 4px;
}

.project-info {
  padding: 28px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.project-tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text-3);
}

.project-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.project-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 20px;
  font-weight: 300;
}

.project-links {
  display: flex;
  gap: 16px;
  align-items: center;
}

.proj-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--purple-light);
  text-decoration: none;
  transition: color var(--transition);
}

.proj-link:hover {
  color: var(--blue);
}

.proj-link--ghost {
  color: var(--text-3);
}

.proj-link--ghost:hover {
  color: var(--text-1);
}

.portfolio-footer {
  text-align: center;
  margin-top: 56px;
}

.portfolio-footer p {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 16px;
}

/* ── CREATOR ── */
.creator {
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}

.creator-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.creator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.creator-text {
  font-size: 16px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 18px;
  font-weight: 300;
}

.creator-pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px;
}

.pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition);
}

.pillar:hover {
  border-color: var(--border-hover);
}

.pillar-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.pillar strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 3px;
}

.pillar p {
  font-size: 14px;
  color: var(--text-3);
}

.creator-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* TikTok Card */
.tiktok-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  backdrop-filter: blur(20px);
  transition: border-color var(--transition);
}

.tiktok-card:hover {
  border-color: var(--border-hover);
}

.tiktok-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 16px;
  border-bottom: 1px solid var(--border);
}

.tiktok-avatar {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.tiktok-meta {
  flex: 1;
}

.tiktok-meta strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
}

.tiktok-meta span {
  display: block;
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
}

.tiktok-follow-badge {
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  cursor: pointer;
}

.tiktok-feed {
  padding: 8px 0;
}

.feed-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  transition: background var(--transition);
  cursor: pointer;
}

.feed-item:hover {
  background: var(--bg-glass-hover);
}

.feed-thumb {
  width: 52px;
  height: 52px;
  background: var(--c, var(--purple));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  opacity: 0.8;
}

.feed-info p {
  font-size: 13px;
  color: var(--text-1);
  font-weight: 400;
  margin-bottom: 3px;
  line-height: 1.4;
}

.feed-info span {
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
}

.tiktok-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--border);
}

/* ── SKILLS ── */
.skills-section {
  background: var(--bg);
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.skill-card {
  padding: 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}

.skill-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.skill-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.skill-icon.html { background: rgba(228,77,38,0.12); color: #e44d26; }
.skill-icon.css  { background: rgba(38,77,228,0.12); color: #264de4; }
.skill-icon.js   { background: rgba(240,219,79,0.12); color: #f0db4f; }
.skill-icon.react{ background: rgba(97,218,251,0.12); color: #61dafb; }
.skill-icon.github{ background: rgba(255,255,255,0.06); color: var(--text-1); }
.skill-icon.uiux { background: rgba(139,92,246,0.12); color: var(--purple-light); }

.skill-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}

.skill-card p {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 18px;
  line-height: 1.5;
  font-weight: 300;
}

.skill-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}

.skill-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--purple), var(--blue));
  border-radius: 100px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

.skill-fill.animated {
  width: var(--p);
}

.skill-pct {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
}

/* ── TESTIMONIALS ── */
.testimonials {
  background: var(--bg-2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.testimonial-card {
  padding: 32px 28px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition);
}

.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--purple), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
}

.testimonial-author span {
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
}

.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 32px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.trust-item {
  text-align: center;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-item span {
  font-size: 13px;
  color: var(--text-3);
  font-family: var(--font-mono);
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ── CONTACT ── */
.contact {
  background: var(--bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 40px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color var(--transition), transform var(--transition);
}

.contact-link:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-glass-hover);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
  flex-shrink: 0;
}

.contact-link strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 2px;
}

.contact-link span {
  display: block;
  font-size: 13px;
  color: var(--text-3);
  font-family: var(--font-mono);
}

/* Form */
.contact-form-wrap {
  padding: 36px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  margin-bottom: 8px;
  font-family: var(--font-mono);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-1);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color var(--transition);
  outline: none;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-light);
  background: rgba(139,92,246,0.05);
}

.form-group select option {
  background: var(--bg-2);
  color: var(--text-1);
}

.form-submit {
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 15px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: var(--radius-sm);
  color: #22c55e;
  font-size: 14px;
}

.form-success.visible {
  display: flex;
}

/* ── FOOTER ── */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 60px 0 36px;
}

.footer-top {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 280px;
}

.footer-brand .logo-mark {
  width: 40px;
  height: 40px;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  gap: 60px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-col strong {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-1);
  font-family: var(--font-mono);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-nav-col a {
  font-size: 14px;
  color: var(--text-3);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nav-col a:hover {
  color: var(--purple-light);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-statement {
  font-size: 14px;
  color: var(--text-3);
  font-style: italic;
}

.footer-statement .accent {
  color: var(--purple-light);
  font-style: normal;
}

.footer-copy {
  font-size: 13px;
  color: var(--text-3);
  font-family: var(--font-mono);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid,
  .creator-grid,
  .contact-grid {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(8,11,16,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px 28px 32px;
    border-bottom: 1px solid var(--border);
    gap: 4px;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-link {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    font-size: 16px;
  }

  .nav-cta {
    margin: 12px 0 0;
    text-align: center;
    padding: 14px;
  }

  .hamburger {
    display: flex;
  }

  .about-grid,
  .creator-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

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

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

  .project-card--featured {
    grid-column: span 1;
    display: block;
  }

  .skills-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .trust-bar {
    flex-wrap: wrap;
    gap: 24px;
  }

  .trust-divider {
    display: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .footer-nav {
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

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

  .about-placeholder {
    width: 220px;
    height: 220px;
  }

  .placeholder-initials {
    font-size: 52px;
  }
}

@media (max-width: 480px) {
  .skills-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge {
    font-size: 11px;
  }

  .about-stats {
    gap: 10px;
  }

  .stat-card {
    padding: 16px 12px;
  }

  .contact-form-wrap {
    padding: 24px;
  }
}
