/* ===== PHANTOM — ULTRA-DARK LUXURY DESIGN SYSTEM ===== */

/* ===== DESIGN TOKENS ===== */
:root {
  --bg:            #050508;
  --bg-surface:    #0a0a0f;
  --bg-surface-2:  #0f0f18;
  --bg-dim:        #080810;
  --bg-elevated:   rgba(255,255,255,0.02);
  --text-primary:  #f0f0f5;
  --text-secondary:#8a8a9a;
  --text-muted:    #55556a;
  --accent-green:  #00ffcc;
  --accent-cyan:   #06b6d4;
  --accent-red:    #ff003c;
  --accent-violet: #7c3aed;
  --accent-blue:   #3b82f6;
  --outline:       rgba(255,255,255,0.06);
  --outline-hover: rgba(255,255,255,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --font-serif: 'Instrument Serif', serif;
  --font-sans:  'Inter', -apple-system, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #2a2a3a; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-green); }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.label-caps {
  font-family: var(--font-sans);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--accent-green);
}
.gradient-text {
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s var(--ease-out);
  transform: translateY(-80px);
  animation: navbar-slide-down 0.8s var(--ease-out) 0.3s forwards;
}
@keyframes navbar-slide-down { to { transform: translateY(0); } }
.navbar.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border-bottom: 1px solid var(--outline);
  padding: 0.6rem 0;
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-serif); font-size: 1.5rem;
  color: var(--text-primary); text-decoration: none; letter-spacing: 2px;
}
.logo-accent { color: var(--accent-green); text-shadow: 0 0 20px rgba(0,255,204,0.4); }
.nav-links { display: flex; gap: 2rem; }
.nav-link {
  font-size: 0.85rem; font-weight: 400; color: var(--text-secondary);
  text-decoration: none; letter-spacing: 0.02em; position: relative; transition: color 0.3s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1.5px; background: var(--accent-green);
  transition: width 0.3s var(--ease-out);
}
.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link.active::after, .nav-link:hover::after { width: 100%; }
.nav-cta {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 0.55rem 1.4rem;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  color: #000; border: none; border-radius: var(--radius-full);
  cursor: pointer; transition: all 0.3s var(--ease-out);
  text-decoration: none; display: inline-flex; align-items: center;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 30px rgba(0,255,204,0.3); }

/* Mobile toggle */
.mobile-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-toggle span {
  display: block; width: 24px; height: 2px; background: var(--text-primary);
  border-radius: 2px; transition: all 0.3s;
}
.mobile-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; padding: 0.85rem 2rem;
  font-size: 0.9rem; font-weight: 600; color: #000;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  border: none; border-radius: var(--radius-full);
  text-decoration: none; cursor: pointer; transition: all 0.3s var(--ease-out);
  box-shadow: 0 4px 20px rgba(0,255,204,0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(0,255,204,0.35); }
.btn-primary.btn-lg { padding: 1.1rem 2.8rem; font-size: 1rem; }
.btn-glass {
  display: inline-flex; align-items: center; padding: 0.85rem 2rem;
  font-size: 0.9rem; font-weight: 500; color: var(--text-primary);
  background: rgba(255,255,255,0.04); backdrop-filter: blur(12px);
  border: 1px solid var(--outline); border-radius: var(--radius-full);
  text-decoration: none; cursor: pointer; transition: all 0.3s var(--ease-out);
}
.btn-glass:hover {
  border-color: var(--outline-hover); background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}

/* ===== PAGE HERO (shared) ===== */
.page-hero {
  position: relative; min-height: 50vh;
  display: flex; align-items: center; overflow: hidden;
  padding-top: 5rem;
}
.page-hero-full { min-height: 100vh; }
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.18;
  animation: hero-bg-zoom 20s ease-in-out infinite alternate;
}
@keyframes hero-bg-zoom {
  0% { transform: scale(1.05); }
  100% { transform: scale(1.15); }
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(5,5,8,0.3) 0%, rgba(5,5,8,0.7) 50%, rgba(5,5,8,1) 100%);
}
.page-hero-content {
  position: relative; z-index: 1; text-align: center; width: 100%; padding: 4rem 0;
}
.page-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
  color: var(--accent-green); padding: 0.4rem 1.2rem;
  border: 1px solid rgba(0,255,204,0.2); border-radius: var(--radius-full);
  background: rgba(0,255,204,0.05); margin-bottom: 2rem;
}
.badge-dot {
  width: 6px; height: 6px; background: var(--accent-green);
  border-radius: 50%; box-shadow: 0 0 8px var(--accent-green);
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }

.page-title {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(3rem, 8vw, 7rem); font-weight: 400;
  line-height: 0.95; letter-spacing: -3px; margin-bottom: 1.5rem;
}
.page-subtitle {
  font-size: 1.05rem; font-weight: 300; color: var(--text-secondary);
  max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.7;
}

/* ===== WORD REVEAL ===== */
.reveal-word {
  display: inline-block; opacity: 0; filter: blur(12px);
  transform: translateY(20px);
  animation: word-reveal 0.8s var(--ease-out) forwards;
  animation-delay: calc(var(--i) * 0.08s + 0.4s);
}
@keyframes word-reveal { to { opacity: 1; filter: blur(0); transform: translateY(0); } }

/* ===== BLUR REVEAL ===== */
.reveal-blur {
  opacity: 0; filter: blur(8px); transform: translateY(15px);
  animation: blur-reveal 0.7s var(--ease-out) forwards;
}
.reveal-blur[data-delay="0"]   { animation-delay: 0.3s; }
.reveal-blur[data-delay="0.5"] { animation-delay: 0.5s; }
.reveal-blur[data-delay="0.8"] { animation-delay: 0.8s; }
.reveal-blur[data-delay="1"]   { animation-delay: 1s; }
.reveal-blur[data-delay="1.2"] { animation-delay: 1.2s; }
.reveal-blur[data-delay="1.5"] { animation-delay: 1.5s; }
.reveal-blur[data-delay="2"]   { animation-delay: 2s; }
@keyframes blur-reveal { to { opacity: 1; filter: blur(0); transform: translateY(0); } }

/* ===== SCROLL REVEAL ===== */
.reveal-up {
  opacity: 0; transform: translateY(50px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-up[data-delay="0"]    { transition-delay: 0s; }
.reveal-up[data-delay="0.1"]  { transition-delay: 0.1s; }
.reveal-up[data-delay="0.15"] { transition-delay: 0.15s; }
.reveal-up[data-delay="0.2"]  { transition-delay: 0.2s; }
.reveal-up[data-delay="0.25"] { transition-delay: 0.25s; }
.reveal-up[data-delay="0.3"]  { transition-delay: 0.3s; }
.reveal-up[data-delay="0.4"]  { transition-delay: 0.4s; }

/* ===== SECTIONS ===== */
.section { padding: 7rem 0; position: relative; }
.section-alt { background: var(--bg-dim); }
.section-label { text-align: center; margin-bottom: 1rem; }
.section-title {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400;
  letter-spacing: -1px; text-align: center; margin-bottom: 1rem; line-height: 1.1;
}
.section-desc {
  text-align: center; color: var(--text-secondary);
  font-size: 1rem; font-weight: 300; max-width: 600px;
  margin: 0 auto 3rem; line-height: 1.7;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-indicator span { font-size: 0.6rem; letter-spacing: 0.3em; color: var(--text-muted); }
.scroll-line { width: 1px; height: 48px; background: var(--outline); position: relative; overflow: hidden; }
.scroll-dot {
  width: 3px; height: 8px; background: var(--accent-green);
  border-radius: 2px; position: absolute; left: -1px;
  animation: scroll-down 1.5s ease-in-out infinite;
}
@keyframes scroll-down {
  0% { top: -10%; opacity: 0; } 30% { opacity: 1; } 70% { opacity: 1; } 100% { top: 100%; opacity: 0; }
}

/* ===== TOOLS GRID ===== */
.tools-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.tool-card {
  background: var(--bg-surface); border: 1px solid var(--outline);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all 0.5s var(--ease-out); position: relative;
}
.tool-card::before {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.02) 40%, transparent 60%, rgba(255,255,255,0.02) 80%, rgba(255,255,255,0.06) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; pointer-events: none;
}
.tool-card:hover { border-color: rgba(0,255,204,0.15); transform: translateY(-4px); box-shadow: 0 12px 48px rgba(0,255,204,0.08); }
.card-img-wrap { position: relative; overflow: hidden; aspect-ratio: 16/9; }
.card-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.tool-card:hover .card-img { transform: scale(1.05); }
.card-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,15,0.9) 0%, transparent 60%); }
.card-body { padding: 1.5rem; }
.card-label { margin-bottom: 0.5rem; display: block; }
.card-title { font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; margin-bottom: 0.6rem; }
.card-desc { color: var(--text-secondary); font-size: 0.9rem; font-weight: 300; line-height: 1.6; margin-bottom: 1rem; }
.card-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.tag {
  font-size: 0.7rem; font-weight: 500; padding: 0.25rem 0.75rem;
  background: rgba(0,255,204,0.06); color: var(--accent-green);
  border: 1px solid rgba(0,255,204,0.12); border-radius: var(--radius-full);
}

/* ===== FEATURES GRID ===== */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-item {
  background: var(--bg-surface); border: 1px solid var(--outline);
  border-radius: var(--radius-lg); padding: 2rem;
  transition: all 0.4s var(--ease-out); position: relative;
}
.feature-item::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,204,0.3), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feature-item:hover { border-color: rgba(0,255,204,0.1); transform: translateY(-3px); }
.feature-item:hover::before { opacity: 1; }
.feature-icon-wrap {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: rgba(0,255,204,0.06); border: 1px solid rgba(0,255,204,0.1);
  border-radius: var(--radius-md); margin-bottom: 1.2rem;
}
.feature-icon { font-size: 1.3rem; }
.feature-title { font-family: var(--font-serif); font-style: italic; font-size: 1.2rem; margin-bottom: 0.5rem; }
.feature-desc { color: var(--text-secondary); font-size: 0.88rem; font-weight: 300; line-height: 1.6; }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.stat-card {
  background: var(--bg-surface); border: 1px solid var(--outline);
  border-radius: var(--radius-lg); padding: 2.5rem 1.5rem; text-align: center;
  transition: all 0.3s var(--ease-out);
}
.stat-card:hover { border-color: rgba(0,255,204,0.15); transform: translateY(-2px); }
.stat-number {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 400;
  color: var(--accent-green); text-shadow: 0 0 30px rgba(0,255,204,0.3);
  line-height: 1; margin-bottom: 0.5rem;
}
.stat-label, .stat-label-pct { font-size: 0.85rem; color: var(--text-secondary); }

/* ===== ABOUT PAGE ===== */
.about-hero-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
  align-items: center; min-height: 80vh; padding: 8rem 0 4rem;
}
.about-photo-wrap {
  position: relative; display: flex; justify-content: center;
}
.about-photo-frame {
  position: relative; width: 340px; height: 420px; border-radius: var(--radius-xl);
  overflow: hidden; border: 1px solid var(--outline);
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}
.about-photo-frame::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(5,5,8,0.4) 0%, transparent 40%);
}
.about-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
/* Decorative ring */
.about-photo-ring {
  position: absolute; width: 380px; height: 460px;
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  border: 1px solid rgba(0,255,204,0.12); border-radius: var(--radius-xl);
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translate(-50%, -50%); } 50% { transform: translate(-50%, calc(-50% - 8px)); } }
.about-photo-glow {
  position: absolute; width: 200px; height: 200px;
  bottom: -40px; left: 50%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(0,255,204,0.15) 0%, transparent 70%);
  filter: blur(40px); pointer-events: none;
}

.about-info { display: flex; flex-direction: column; gap: 1.5rem; }
.about-name {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400;
  letter-spacing: -2px; line-height: 1;
}
.about-role {
  font-size: 0.9rem; font-weight: 500; color: var(--accent-green);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.about-age-badge {
  display: inline-flex; align-items: center; gap: 8px; width: fit-content;
  padding: 0.4rem 1rem; border: 1px solid rgba(0,255,204,0.2);
  border-radius: var(--radius-full); background: rgba(0,255,204,0.05);
  font-size: 0.8rem; color: var(--accent-green); font-weight: 500;
}
.about-bio {
  color: var(--text-secondary); font-size: 1.05rem; font-weight: 300;
  line-height: 1.8;
}
.about-skills-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.5rem; }
.skill-tag {
  font-size: 0.75rem; font-weight: 500; padding: 0.4rem 1rem;
  background: rgba(0,255,204,0.04); border: 1px solid rgba(0,255,204,0.1);
  color: var(--accent-green); border-radius: var(--radius-full);
  transition: all 0.3s;
}
.skill-tag:hover { background: rgba(0,255,204,0.1); border-color: rgba(0,255,204,0.25); }

/* About values grid */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.value-card {
  background: var(--bg-surface); border: 1px solid var(--outline);
  border-radius: var(--radius-lg); padding: 2rem; transition: all 0.4s var(--ease-out);
}
.value-card:hover { border-color: rgba(0,255,204,0.1); transform: translateY(-3px); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-title { font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; margin-bottom: 0.6rem; }
.value-desc { color: var(--text-secondary); font-size: 0.9rem; font-weight: 300; line-height: 1.6; }

/* About timeline */
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 20px; top: 0; bottom: 0;
  width: 1px; background: linear-gradient(to bottom, var(--accent-green), transparent);
}
.timeline-item {
  display: flex; gap: 2rem; padding-bottom: 2.5rem; position: relative;
}
.timeline-dot {
  width: 12px; height: 12px; min-width: 12px;
  background: var(--accent-green); border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-green);
  margin-top: 4px; position: relative; left: 15px;
}
.timeline-content { padding-left: 8px; }
.timeline-year {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent-green); margin-bottom: 0.3rem;
}
.timeline-title {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.15rem; margin-bottom: 0.3rem;
}
.timeline-desc { color: var(--text-secondary); font-size: 0.88rem; font-weight: 300; line-height: 1.6; }

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative; min-height: 60vh;
  display: flex; align-items: center; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg-img { width: 100%; height: 100%; object-fit: cover; opacity: 0.12; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, rgba(5,5,8,0.8) 40%, rgba(5,5,8,0.8) 60%, var(--bg) 100%);
}
.cta-content { position: relative; z-index: 1; text-align: center; width: 100%; padding: 4rem 0; }
.cta-title {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(2.5rem, 5vw, 4.5rem); letter-spacing: -2px; margin-bottom: 1rem;
}
.cta-desc { color: var(--text-secondary); font-size: 1.1rem; font-weight: 300; margin-bottom: 2.5rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-surface); border-top: 1px solid var(--outline); padding: 3rem 0;
}
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center;
}
.footer-logo { font-family: var(--font-serif); font-size: 1.3rem; letter-spacing: 2px; }
.footer-text { color: var(--text-muted); font-size: 0.85rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: var(--text-secondary); font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent-green); }
.footer-copy { color: var(--text-muted); font-size: 0.75rem; margin-top: 0.5rem; }

/* ===== GET STARTED PAGE ===== */
.getstarted-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step-card {
  background: var(--bg-surface); border: 1px solid var(--outline);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem; text-align: center;
  transition: all 0.4s var(--ease-out); position: relative;
}
.step-card:hover { border-color: rgba(0,255,204,0.15); transform: translateY(-4px); }
.step-num {
  font-family: var(--font-serif); font-style: italic;
  font-size: 3rem; font-weight: 400;
  background: linear-gradient(135deg, var(--accent-green), var(--accent-cyan));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
.step-title { font-family: var(--font-serif); font-style: italic; font-size: 1.3rem; margin-bottom: 0.6rem; }
.step-desc { color: var(--text-secondary); font-size: 0.9rem; font-weight: 300; line-height: 1.6; }

/* ===== RESPONSIVE — TABLET ===== */
@media (max-width: 968px) {
  .tools-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-hero-split { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; padding-top: 6rem; }
  .about-info { align-items: center; }
  .about-skills-grid { justify-content: center; }
  .getstarted-grid { grid-template-columns: 1fr; }
}

/* ===== RESPONSIVE — MOBILE ===== */
@media (max-width: 640px) {
  .container { padding: 0 1rem; }
  .section { padding: 4rem 0; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(10,10,15,0.97); backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--outline);
    flex-direction: column; padding: 1.5rem; gap: 1rem;
  }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  .page-title { letter-spacing: -1px; }
  .page-subtitle { font-size: 0.95rem; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .stat-card { padding: 1.5rem 1rem; }
  .about-photo-frame { width: 260px; height: 340px; }
  .about-photo-ring { width: 290px; height: 370px; }
  .about-hero-split { padding-top: 5rem; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
}
