@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body.developer-page {
  font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #080c14;
  color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.bg-gradient {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(14, 165, 233, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(6, 182, 212, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(0, 212, 170, 0.08) 0%, transparent 50%),
    #080c14;
}

.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 70%);
}

.nav-container {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  opacity: 0;
  animation: slideDown 0.8s ease 0.3s forwards;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

.nav-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 8px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.nav-logo:hover { transform: scale(1.1); }

.nav-logo img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

.nav-item {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.nav-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.main-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 160px 48px 120px;
}

.hero {
  margin-bottom: 120px;
  opacity: 0;
  animation: fadeUp 1s ease 0.2s forwards;
  position: relative;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #00d4aa);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(60px);
  animation: lineReveal 0.8s ease forwards;
  animation-delay: calc(0.4s + var(--delay));
}

@keyframes lineReveal {
  to { opacity: 1; transform: translateY(0); }
}

.gradient-text {
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #00d4aa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.8s forwards;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.9s forwards;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
}

.hero-cta {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.hero-decoration {
  position: absolute;
  top: 50%;
  right: 48px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  pointer-events: none;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 6s ease-in-out infinite;
}

.circle-2 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 6s ease-in-out infinite reverse;
  border-color: rgba(14, 165, 233, 0.15);
}

.deco-dots {
  position: absolute;
  top: 20%;
  right: 20%;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 8px 8px;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-20px); }
}

.hero-cta {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: #fff;
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(14, 165, 233, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.profile-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 120px;
}

.profile-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.profile-card:hover::before { opacity: 1; }
.profile-card:hover { border-color: rgba(14, 165, 233, 0.3); transform: translateY(-4px); }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.profile-avatar-wrap {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 32px;
}

.profile-avatar {
  width: 80px;
  height: 80px;
  border-radius: 24px;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4, #00d4aa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  position: relative;
  z-index: 1;
}

.avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0ea5e9, #00d4aa);
  z-index: 0;
  animation: rotate 4s linear infinite;
  opacity: 0.5;
  filter: blur(8px);
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.profile-role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

.profile-name {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.profile-bio {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 32px;
}

.profile-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-tag {
  padding: 10px 18px;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.skill-tag:hover {
  background: rgba(14, 165, 233, 0.25);
  border-color: rgba(14, 165, 233, 0.5);
  transform: translateY(-2px);
}

.info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateX(8px);
}

.info-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(0, 212, 170, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  flex-shrink: 0;
}

.info-card-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 6px;
}

.info-card-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.info-card-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.section-header {
  margin-bottom: 48px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}

.label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9, #00d4aa);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
}

.project-section {
  margin-bottom: 120px;
}

.project-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4, #00d4aa);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover::before { opacity: 1; }
.project-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
}

.project-main {
  display: flex;
  flex-direction: column;
}

.project-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.25);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #38bdf8;
  margin-bottom: 24px;
  width: fit-content;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bdf8;
}

.project-name {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.project-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 32px;
}

.project-features {
  list-style: none;
  margin-bottom: 40px;
}

.project-features li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}

.project-features li:last-child { border-bottom: none; }
.project-features li:hover { padding-left: 8px; color: #fff; }

.feature-check {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(0, 212, 170, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.feature-check::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #38bdf8;
  border-bottom: 2px solid #38bdf8;
  transform: rotate(-45deg) translateY(-2px);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: #fff;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.4);
  width: fit-content;
}

.project-link:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 48px rgba(14, 165, 233, 0.5);
}

.project-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.project-preview {
  width: 100%;
  background: rgba(20, 20, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.preview-bar {
  display: flex;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.preview-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.preview-bar span:nth-child(1) { background: #ef4444; }
.preview-bar span:nth-child(2) { background: #eab308; }
.preview-bar span:nth-child(3) { background: #22c55e; }

.preview-content {
  padding: 24px;
}

.preview-hero {
  height: 80px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(0, 212, 170, 0.2));
  border-radius: 12px;
  margin-bottom: 16px;
}

.preview-line {
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  margin-bottom: 10px;
}

.preview-line.short { width: 60%; }

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

.preview-box {
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.quote-section { margin-bottom: 120px; }

.quote-card {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.08), rgba(0, 212, 170, 0.06));
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 32px;
  padding: 64px;
  position: relative;
  overflow: hidden;
}

.quote-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #06b6d4, #00d4aa);
}

.quote-text {
  font-size: 1.5rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 800px;
}

.quote-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}

.quote-line {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, #0ea5e9, #00d4aa);
}

.quote-author {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
}

.disclaimer-section {
  margin-bottom: 120px;
}

.disclaimer-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.disclaimer-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0ea5e9, #00d4aa);
}

.disclaimer-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
}

.disclaimer-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.9;
}

.disclaimer-text strong {
  color: #fff;
  font-weight: 600;
}

.contact-section {
  text-align: center;
  padding: 80px 0;
}

.contact-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.contact-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 48px;
  letter-spacing: -0.03em;
}

.button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-4px);
}

.btn-filled {
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: #fff;
  box-shadow: 0 8px 32px rgba(14, 165, 233, 0.4);
}

.btn-filled:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(14, 165, 233, 0.5);
}

footer {
  text-align: center;
  padding: 48px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 1100px) {
  .project-card {
    grid-template-columns: 1fr 320px;
    gap: 48px;
    padding: 40px;
  }
}

@media (max-width: 900px) {
  .main-wrapper { padding: 120px 24px 80px; }
  
  .profile-section { grid-template-columns: 1fr; gap: 16px; }
  
  .info-cards { flex-direction: row; }
  
  .project-card {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  
  .project-visual { display: none; }
  
  .project-link { justify-content: center; }
  
  .quote-card { padding: 40px; }
  
  .quote-text { font-size: 1.25rem; }
}

@media (max-width: 640px) {
  .main-wrapper { padding: 100px 16px 64px; }
  
  .nav-container {
    top: 12px;
    width: calc(100vw - 32px);
  }
  
  .nav-pill { padding: 4px; gap: 2px; }
  
  .nav-item { padding: 8px 12px; font-size: 0.75rem; }
  
  .hero-title { font-size: clamp(2.5rem, 12vw, 3.5rem); }
  
  .hero-cta { flex-direction: column; }
  
  .profile-card { padding: 28px; }
  
  .info-cards { flex-direction: column; }
  
  .info-card { padding: 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
  
  .project-card { padding: 24px; }
  
  .quote-card { padding: 32px; }
  .quote-text { font-size: 1.25rem; }
  
  .disclaimer-card { padding: 28px; }
  
  .button-group { flex-direction: column; }
  
  .btn { width: 100%; justify-content: center; }
}

@media (max-width: 640px) {
  .main-wrapper { padding: 0 16px 64px; }

  .hero {
    width: 100vw;
    min-height: 78vh;
    min-height: min(720px, 82svh);
    margin: 0 calc(50% - 50vw) 46px;
    padding: 114px 22px 54px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    isolation: isolate;
    background:
      radial-gradient(ellipse 90% 56% at 72% 18%, rgba(14, 165, 233, 0.22) 0%, transparent 58%),
      radial-gradient(ellipse 72% 50% at 12% 86%, rgba(0, 212, 170, 0.16) 0%, transparent 60%),
      #080c14;
    box-shadow: inset 0 -300px 170px rgba(5, 9, 16, 0.88), inset 0 120px 90px rgba(5, 9, 16, 0.28);
  }

  .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image:
      linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, transparent 0%, black 26%, black 100%);
  }

  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.28) 0%, rgba(8, 12, 20, 0.9) 100%);
  }

  .hero-eyebrow {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
  }

  .hero-title {
    margin-bottom: 22px;
    font-size: clamp(2.45rem, 11.8vw, 3.75rem);
    line-height: 1.08;
    letter-spacing: -0.038em;
    text-wrap: balance;
  }

  .gradient-text {
    background: none;
    color: #00d4aa;
    -webkit-text-fill-color: #00d4aa;
  }

  .hero-subtitle {
    margin-bottom: 26px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.98rem;
    line-height: 1.82;
  }

  .hero-stats {
    width: 100%;
    gap: 0;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 14px 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .stat-number { font-size: 1.45rem; }
  .stat-label { font-size: 0.66rem; }
  .stat-divider { height: 42px; }
}
