/* Shared theme (mirrors Monors look) */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #e6e7ea;
  background: radial-gradient(1200px 800px at 80% -10%, #3b82f6 0%, transparent 60%),
              radial-gradient(800px 600px at -10% 20%, #22d3ee 0%, transparent 60%),
              #0b0f17;
  background-attachment: fixed;
  background-size: cover;
  min-height: 100vh;
  line-height: 1.6;
}
.container { width: 100%; max-width: 1120px; margin: 0 auto; padding: 0 20px; }
a { color: #9ed1ff; text-decoration: none; }
a:hover { text-decoration: underline; }

.site-header { position: sticky; top: 0; z-index: 100; backdrop-filter: saturate(180%) blur(10px); }
.site-header::before { content: ""; position: absolute; inset: 0; background: rgba(11,15,23,0.55); border-bottom: 1px solid rgba(255,255,255,0.08); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; position: relative; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; letter-spacing: 0.3px; }
.brand img { width: 36px; height: 36px; object-fit: contain; filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35)); }
.site-header .nav-menu { display: flex; gap: 18px; align-items: center; }
.site-header .nav-menu a { color: #c9d2e0; padding: 8px 10px; border-radius: 8px; transition: all .2s ease; }
.site-header .nav-menu a:hover { background: rgba(255,255,255,0.06); color: #ffffff; text-decoration: none; }

/* Mobile menu toggle */
.mobile-menu-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-menu-toggle span { width: 24px; height: 2px; background: #c9d2e0; transition: all 0.3s ease; border-radius: 1px; }
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

.btn { display: inline-flex; align-items: center; justify-content: center; padding: 12px 18px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.16); color: #dbe6ff; background: rgba(255,255,255,0.04); transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn svg { flex-shrink: 0; }
.btn:hover { transform: translateY(-1px); background: rgba(255,255,255,0.08); text-decoration: none; }
.btn-primary { background: linear-gradient(135deg, #2563eb, #22d3ee); color: white; border-color: transparent; box-shadow: 0 8px 24px rgba(37,99,235,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37,99,235,0.45); }

.hero { position: relative; padding: 96px 0 72px; overflow: hidden; }
.grid-2 { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.hero h1 { font-size: clamp(36px, 5vw, 56px); line-height: 1.05; margin: 0 0 14px; letter-spacing: -0.02em; }
.lead { font-size: 18px; color: #c3c9d4; margin: 0 0 22px; }
.features { display: grid; gap: 6px; color: #cbd3df; margin-bottom: 16px; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-gallery { position: relative; }
.gallery { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.gallery img { width: 100%; height: 220px; object-fit: cover; border-radius: 12px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.03); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
/* Responsive Design */
@media (max-width: 1024px) {
  .container { padding: 0 16px; }
  .hero { padding: 80px 0 60px; }
  .section { padding: 60px 0; }
  .grid-2 { gap: 32px; }
  .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .nav { height: 64px; }
  
  /* Mobile Navigation */
  .mobile-menu-toggle { display: flex; }
  .nav-menu { 
    position: fixed; 
    top: 64px; 
    left: 0; 
    right: 0; 
    background: rgba(11,15,23,0.95); 
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: column; 
    padding: 20px; 
    gap: 12px; 
    transform: translateY(-100%); 
    opacity: 0; 
    visibility: hidden; 
    transition: all 0.3s ease; 
  }
  .nav-menu.active { 
    transform: translateY(0); 
    opacity: 1; 
    visibility: visible; 
  }
  .nav-menu a { 
    padding: 12px 16px; 
    border-radius: 8px; 
    text-align: center; 
    background: rgba(255,255,255,0.04); 
  }
  
  /* Hero Section */
  .hero { padding: 60px 0 40px; }
  .grid-2 { grid-template-columns: 1fr; gap: 24px; }
  .hero h1 { font-size: clamp(28px, 8vw, 42px); margin-bottom: 16px; }
  .lead { font-size: 16px; margin-bottom: 20px; }
  .cta-row { flex-direction: column; gap: 12px; }
  .cta-row .btn { width: 100%; justify-content: center; }
  
  /* Gallery */
  .gallery { grid-template-columns: 1fr; gap: 12px; }
  .gallery img { height: 200px; }
  
  /* Sections */
  .section { padding: 40px 0; }
  .section-title { font-size: 28px; margin-bottom: 20px; }
  .cards { grid-template-columns: 1fr; gap: 16px; }
  
  /* Footer */
  .site-footer { margin: 0 16px; }
  .footer { flex-direction: column; gap: 16px; text-align: center; padding: 24px 20px; }
  .footer-links { justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 12px; }
  
  .hero { padding: 40px 0 30px; }
  .hero h1 { font-size: clamp(24px, 10vw, 32px); }
  .lead { font-size: 15px; }
  
  .section { padding: 30px 0; }
  .section-title { font-size: 24px; }
  
  .glass { padding: 16px; }
  .gallery img { height: 180px; }
  
  .btn { padding: 10px 16px; font-size: 14px; }
  
  .site-footer { margin: 0 12px; }
  .footer { padding: 20px 16px; }
}

.glass { background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03)); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.06); }
.section { padding: 80px 0; }
.cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.section-title { font-size: 32px; margin: 0 0 24px; }

.site-footer { border-top: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.02); margin: 0 20px; border-radius: 12px 12px 0 0; }
.footer { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 28px 24px; }
.muted { color: #aeb6c4; font-size: 14px; }
.footer-links { display: flex; gap: 12px; }


.reveal, .reveal-delay-1, .reveal-delay-2, .reveal-delay-3 { opacity: 0; transform: translateY(8px); will-change: transform, opacity; }
.revealed { opacity: 1 !important; transform: none !important; transition: opacity .7s ease, transform .7s ease; }
.reveal-delay-1.revealed { transition-delay: .1s; }
.reveal-delay-2.revealed { transition-delay: .2s; }
.reveal-delay-3.revealed { transition-delay: .3s; }


