:root {
  --bg: #0a0a0a;
  --bg-secondary: #111111;
  --text: #ffffff;
  --text-muted: #a0a0a0;
  --border: #222222;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --glass-bg: rgba(17, 17, 17, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* Gradient mesh background */
body {
  font-family: var(--font-body);
  background: 
    radial-gradient(ellipse 80% 50% at 20% -20%, rgba(120, 119, 198, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(139, 92, 246, 0.08) 0%, transparent 50%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text);
  color: var(--bg);
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  font-weight: 500;
  z-index: 10000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid rgba(139, 92, 246, 0.5);
}

/* Focus states for accessibility */
*:focus-visible {
  outline: 2px solid rgba(139, 92, 246, 0.8);
  outline-offset: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid rgba(139, 92, 246, 0.8);
  outline-offset: 2px;
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.sticky-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  padding: 0.75rem 2rem;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Status indicator - morse code LED */
.status-indicator {
  margin-right: 1rem;
  display: flex;
  align-items: center;
}

.status-indicator .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #2a2a2a;
  border: 1px solid #444;
  animation: morse-ERLYQ 8s steps(1) infinite;
}

@keyframes morse-ERLYQ {
  /* E */
  0%, 3.9% { background: #2a2a2a; box-shadow: none; }
  4%, 6.9% { background: #fff; box-shadow: 0 0 10px #fff, 0 0 20px #fff; }
  7%, 11.9% { background: #2a2a2a; box-shadow: none; }
  
  /* R */
  12%, 14.9% { background: #fff; box-shadow: 0 0 10px #fff, 0 0 20px #fff; }
  15%, 17.9% { background: #2a2a2a; box-shadow: none; }
  18%, 20.9% { background: #fff; box-shadow: 0 0 10px #fff, 0 0 20px #fff; }
  21%, 23.9% { background: #2a2a2a; box-shadow: none; }
  24%, 26.9% { background: #fff; box-shadow: 0 0 10px #fff, 0 0 20px #fff; }
  27%, 31.9% { background: #2a2a2a; box-shadow: none; }
  
  /* L */
  32%, 34.9% { background: #fff; box-shadow: 0 0 10px #fff, 0 0 20px #fff; }
  35%, 37.9% { background: #2a2a2a; box-shadow: none; }
  38%, 42.9% { background: #2a2a2a; box-shadow: none; }
  43%, 45.9% { background: #fff; box-shadow: 0 0 10px #fff, 0 0 20px #fff; }
  46%, 48.9% { background: #2a2a2a; box-shadow: none; }
  49%, 51.9% { background: #fff; box-shadow: 0 0 10px #fff, 0 0 20px #fff; }
  52%, 56.9% { background: #2a2a2a; box-shadow: none; }
  
  /* Y */
  57%, 59.9% { background: #fff; box-shadow: 0 0 10px #fff, 0 0 20px #fff; }
  60%, 62.9% { background: #2a2a2a; box-shadow: none; }
  63%, 65.9% { background: #fff; box-shadow: 0 0 10px #fff, 0 0 20px #fff; }
  66%, 68.9% { background: #2a2a2a; box-shadow: none; }
  69%, 71.9% { background: #fff; box-shadow: 0 0 10px #fff, 0 0 20px #fff; }
  72%, 74.9% { background: #2a2a2a; box-shadow: none; }
  75%, 77.9% { background: #fff; box-shadow: 0 0 10px #fff, 0 0 20px #fff; }
  78%, 80.9% { background: #2a2a2a; box-shadow: none; }
  81%, 83.9% { background: #fff; box-shadow: 0 0 10px #fff, 0 0 20px #fff; }
  84%, 100% { background: #2a2a2a; box-shadow: none; }
}

@keyframes breathe {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 1; }
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

nav { display: flex; align-items: center; gap: 2rem; }
nav a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
nav a:hover { color: var(--text); }

.lang-switch { display: flex; gap: 0.5rem; }
.lang-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 0.3rem 0.6rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.lang-btn:hover, .lang-btn.active { background: var(--text); color: var(--bg); border-color: var(--text); }

.hamburger { 
  display: none; 
  flex-direction: column; 
  gap: 5px; 
  cursor: pointer; 
  padding: 8px;
}
.hamburger span { width: 25px; height: 2px; background: var(--text); transition: all 0.3s ease; }
.hamburger:hover span { background: rgba(255, 255, 255, 0.8); }

.mobile-nav {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(17, 17, 17, 0.98);
  backdrop-filter: blur(20px);
  padding: 2rem;
  border-bottom: 1px solid var(--border);
}
.mobile-nav.active { display: flex; flex-direction: column; gap: 1.5rem; }
.mobile-nav a { color: var(--text); text-decoration: none; font-size: 1.1rem; transition: color 0.2s; }
.mobile-nav a:hover { color: rgba(139, 92, 246, 0.8); }

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: 
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(139, 92, 246, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at center, #1a1a1a 0%, var(--bg) 70%);
}

.hero-logo {
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline { font-size: clamp(1rem, 3vw, 1.5rem); color: var(--text-muted); font-weight: 300; max-width: 560px; }

.hero-actions { margin-top: 1.8rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.btn {
  display: inline-block;
  padding: 0.85rem 1.5rem;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.25s ease;
}
.btn.primary { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(255,255,255,0.1); }
.btn:focus-visible { outline: 2px solid rgba(139, 92, 246, 0.8); outline-offset: 2px; }

section { padding: 5rem 2rem; max-width: 1200px; margin: 0 auto; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 3rem;
}

/* Bento Grid for Apps */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-wide {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-large { grid-column: span 2; grid-row: span 1; }
  .bento-wide { grid-column: span 2; }
}

@media (max-width: 500px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }
}

/* Glassmorphism app cards */
.app-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.app-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.app-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.4),
    0 0 40px rgba(139, 92, 246, 0.1);
}

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

/* Larger icons in bento cards */
.bento-large .app-icon,
.bento-wide .app-icon {
  width: 100px;
  height: 100px;
  font-size: 2.5rem;
}

.app-link {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  height: 100%;
}

.app-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, #ffffff 0%, #e8e8e8 100%);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d1d1f;
  font-weight: 600;
  font-size: 2rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-card:hover .app-icon {
  transform: scale(1.08);
  box-shadow: 0 12px 32px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.12);
}

.app-name {
  font-weight: 600;
  font-size: 1.1rem;
  color: #f5f5f7;
  letter-spacing: -0.01em;
}

.app-desc {
  color: #86868b;
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 160px;
}

.bento-large .app-desc,
.bento-wide .app-desc {
  max-width: 200px;
}

/* Philosophy section */
.philosophy-content { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.philosophy-text p { color: var(--text-muted); margin-bottom: 1rem; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.stat-item { 
  text-align: center; 
  padding: 2rem; 
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  transition: all 0.3s ease;
}
.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.2);
}
.stat-number { font-family: var(--font-display); font-size: 3rem; font-weight: 700; line-height: 1; margin-bottom: 0.5rem; }
.stat-label { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.1em; }

/* Trust section */
.trust-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 1.5rem; 
  max-width: 1000px;
  margin: 0 auto;
}

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

.trust-item { 
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border); 
  border-radius: 16px; 
  padding: 2rem;
  text-align: left;
  transition: all 0.3s ease;
}

.trust-item:hover { 
  transform: translateY(-5px); 
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.trust-item h3 { 
  margin-bottom: 0.8rem; 
  font-size: 1.1rem; 
  font-weight: 600;
  color: #f5f5f7;
  letter-spacing: -0.01em;
}

.trust-item p { 
  color: #86868b; 
  font-size: 0.9rem; 
  line-height: 1.5; 
}

/* Team section */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; max-width: 800px; margin: 0 auto; }
.team-member { 
  text-align: center; 
  padding: 2.5rem; 
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px; 
  transition: all 0.3s ease;
}
.team-member:hover { 
  transform: translateY(-5px); 
  border-color: var(--text-muted);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.team-avatar { 
  width: 100px; 
  height: 100px; 
  margin: 0 auto 1.5rem; 
  background: linear-gradient(135deg, #444 0%, #888 100%); 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-family: var(--font-display); 
  font-size: 2rem; 
  font-weight: 600; 
}
.team-name { font-weight: 600; font-size: 1.3rem; margin-bottom: 0.5rem; }
.team-role { color: var(--text-muted); font-size: 0.95rem; }

/* Blog Grid */
.blog-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; 
  max-width: 1100px; 
  margin: 0 auto; 
}

@media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* Glassmorphism blog cards */
.blog-card { 
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  overflow: hidden; 
  border-radius: 20px; 
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}

.blog-card:hover { 
  transform: scale(1.03) translateY(-4px); 
  border-color: rgba(255,255,255,0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.blog-card a {
  color: inherit;
  text-decoration: none;
  display: block;
}

.blog-image { 
  height: 180px; 
  background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 3rem; 
  color: rgba(255,255,255,0.25);
}

.blog-content { padding: 1.8rem; }
.blog-date { color: #86868b; font-size: 0.8rem; margin-bottom: 0.8rem; font-weight: 500; }
.blog-title { font-weight: 600; font-size: 1.15rem; margin-bottom: 0.8rem; line-height: 1.35; color: #f5f5f7; letter-spacing: -0.01em; }
.blog-excerpt { color: #86868b; font-size: 0.9rem; line-height: 1.5; }

/* Contact section */
.contact-section { 
  text-align: center; 
  background: linear-gradient(180deg, rgba(17,17,17,0.8) 0%, rgba(13,13,13,0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  margin: 4rem 2rem;
  padding: 4rem 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Copy email button */
.contact-email { 
  font-size: clamp(1.5rem, 4vw, 2rem); 
  color: #fff; 
  text-decoration: none; 
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.contact-email:hover { 
  color: #2997ff;
}

.copy-icon {
  font-size: 1rem;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.contact-email:hover .copy-icon {
  opacity: 1;
  transform: scale(1.1);
}

.copy-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(255, 255, 255, 0.95);
  color: #0a0a0a;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 10000;
}

.copy-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Footer */
footer { 
  padding: 4rem 2rem 3rem; 
  text-align: center; 
  border-top: 1px solid #2d2d2d; 
  color: #86868b; 
  font-size: 0.85rem;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.3) 100%);
}

footer p { margin-bottom: 1.5rem; }

.social-links { display: flex; justify-content: center; gap: 1rem; margin-top: 2rem; }
.social-link { 
  width: 48px; 
  height: 48px; 
  border: 1px solid #3d3d3d; 
  border-radius: 50%;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  color: #86868b; 
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.03);
}
.social-link:hover { 
  background: #fff; 
  color: #1d1d1f; 
  border-color: #fff;
  transform: scale(1.1);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 9999;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--text);
  color: var(--bg);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.3);
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(139, 92, 246, 0.8);
  outline-offset: 2px;
}

@media (max-width: 600px) {
  .back-to-top {
    bottom: 1rem;
    right: 1rem;
    width: 44px;
    height: 44px;
  }
}

.scroll-progress { position: fixed; top: 0; left: 0; width: 0%; height: 3px; background: linear-gradient(90deg, #fff 0%, #888 100%); z-index: 10001; }
.loader { position: fixed; inset: 0; background: #0a0a0a; display: flex; align-items: center; justify-content: center; z-index: 99999; transition: opacity 0.6s ease, visibility 0.6s ease; }
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { width: 50px; height: 50px; border: 2px solid #222; border-top-color: #fff; border-radius: 50%; animation: spin 1s linear infinite; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

@media (max-width: 768px) {
  nav { display: none; }
  .hamburger { display: flex; }
  .philosophy-content { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  section { padding: 3rem 1rem; }
  .hero { padding: 5rem 1rem 3rem; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* Micro-interactions */
.app-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.app-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.app-link { text-decoration: none; color: inherit; }

.team-member { transition: transform 0.3s ease; }
.team-member:hover { transform: translateY(-4px); }

.blog-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }

.btn { transition: all 0.3s ease; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(255,255,255,0.1); }
.btn.primary:hover { box-shadow: 0 10px 30px rgba(139,92,246,0.3); }

a { transition: color 0.2s ease; }

/* Improved Contact Section */
.contact-section { 
  text-align: center; 
  background: linear-gradient(135deg, rgba(139,92,246,0.1) 0%, rgba(59,130,246,0.1) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(139,92,246,0.2);
  border-radius: 24px;
  margin: 4rem 2rem;
  padding: 5rem 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 50%);
  animation: pulse 4s ease-in-out infinite;
}

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

.contact-section .section-title {
  position: relative;
  z-index: 1;
}

.contact-email { 
  position: relative;
  z-index: 1;
  font-size: clamp(1.5rem, 4vw, 2.5rem); 
  color: #fff; 
  text-decoration: none; 
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, rgba(139,92,246,0.2) 0%, rgba(59,130,246,0.2) 100%);
  border: 1px solid rgba(139,92,246,0.3);
  padding: 1rem 2rem;
  border-radius: 16px;
  cursor: pointer;
  font-family: inherit;
}

.contact-email:hover { 
  background: linear-gradient(135deg, rgba(139,92,246,0.4) 0%, rgba(59,130,246,0.4) 100%);
  border-color: rgba(139,92,246,0.6);
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(139,92,246,0.3);
}

.contact-email .copy-icon {
  font-size: 1.2rem;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.contact-email:hover .copy-icon {
  opacity: 1;
}

.social-links {
  position: relative;
  z-index: 1;
}

/* ========================================
   Scroll Reveal Animations
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for bento grid cards */
.bento-grid .app-card {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s ease-out forwards;
}

.bento-grid .app-card:nth-child(1) { animation-delay: 0.1s; }
.bento-grid .app-card:nth-child(2) { animation-delay: 0.2s; }
.bento-grid .app-card:nth-child(3) { animation-delay: 0.3s; }
.bento-grid .app-card:nth-child(4) { animation-delay: 0.4s; }
.bento-grid .app-card:nth-child(5) { animation-delay: 0.5s; }

/* Other sections */
section .animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

section .animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   Reduced Motion Support
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
  
  .bento-grid .app-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  
  html {
    scroll-behavior: smooth;
  }
}

/* ========================================
   Mobile Touch Targets (44px+)
   ======================================== */
@media (max-width: 480px) {
  nav a,
  .lang-btn,
  .mobile-nav a,
  .btn,
  .social-link,
  .hamburger {
    min-height: 44px;
    min-width: 44px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .app-card {
    padding: 1.5rem;
    min-height: 160px;
  }
  
  .blog-card {
    min-height: 280px;
  }
  
  .team-member {
    padding: 1.5rem;
    min-height: 200px;
  }
  
  .trust-item {
    padding: 1.5rem;
    min-height: 140px;
  }
  
  .contact-email {
    min-height: 44px;
    padding: 12px;
  }
  
  .back-to-top {
    width: 48px;
    height: 48px;
  }
  
  .logo {
    font-size: 1.3rem;
  }
}

/* Ensure minimum tap targets on all interactive elements */
a, button, .lang-btn, .hamburger {
  min-height: 44px;
  min-width: 44px;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #111; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #555; }

/* Selection */
::selection { background: #8b5cf6; color: #fff; }

/* Focus visible */
*:focus-visible { outline: 2px solid #8b5cf6; outline-offset: 2px; }

/* Smooth scroll with offset */
html { scroll-behavior: smooth; scroll-padding-top: 100px; }

/* Skip link */
.skip-link {
  position: absolute; top: -40px; left: 0; background: #8b5cf6; color: #fff; padding: 8px 16px; z-index: 10000; transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Improved Apps Grid - Clean & Minimal */
.apps-grid, .bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1rem;
}

.app-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.app-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(139,92,246,0.3);
  transform: translateY(-4px);
}

.app-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.app-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #fff;
}

.app-desc {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.5;
}

.app-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}
