:root {
  --bg: #1a0b2e;
  --panel: #2d1b69;
  --text: #e2e8f0;
  --muted: #a5b4fc;
  --primary: #8b5cf6;
  --ring: rgba(139, 92, 246, 0.4);
  --card: rgba(45, 27, 105, 0.6);
  --card-border: rgba(226, 232, 240, 0.1);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
  color: var(--text);
  background: 
    radial-gradient(1000px 600px at 20% 0%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
    radial-gradient(800px 500px at 80% 100%, rgba(168, 85, 247, 0.25) 0%, transparent 50%),
    radial-gradient(600px 400px at 50% 50%, rgba(124, 58, 237, 0.15) 0%, transparent 60%),
    linear-gradient(135deg, #1a0b2e 0%, #2d1b69 25%, #1e0f3a 50%, #0f051f 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 11, 46, 0.3);
  backdrop-filter: blur(20px);
  pointer-events: none;
  z-index: 1;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: saturate(120%) blur(15px);
  background: transparent;
  border-bottom: 1px solid rgba(226,232,240,0.1);
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.brand-mark { font-size: 22px; }
.brand-name { font-size: 18px; }

.header-actions { display: flex; align-items: center; gap: 8px; }

.mas-badge {
  display: inline-flex;
  transition: transform 0.15s ease, filter 0.2s ease;
}
.mas-badge:hover { transform: translateY(-1px); filter: brightness(1.1); }
.mas-badge:active { transform: translateY(0); }
.mas-badge img { display: block; }

.hero-video { padding: 36px 0 10px; position: relative; z-index: 2; }
.video-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #0e111a;
  border: 1px solid rgba(139, 92, 246, 0.3);
  box-shadow: 
    0 40px 100px -40px rgba(0,0,0,0.8), 
    0 20px 60px -20px rgba(139, 92, 246, 0.4),
    0 0 0 1px rgba(139, 92, 246, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.video-shell:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 50px 120px -40px rgba(0,0,0,0.9), 
    0 30px 80px -20px rgba(139, 92, 246, 0.5),
    0 0 0 1px rgba(139, 92, 246, 0.2);
}
.video-shell iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
}

.hero-cta { text-align: center; margin: 24px auto 0; }
.tagline { 
  color: var(--muted); 
  margin: 12px 0 20px; 
  font-size: 18px; 
  font-weight: 300;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.rating { margin: 0 0 20px; }
.stars { 
  display: inline-flex; 
  gap: 2px; 
  margin-bottom: 6px;
}
.star { 
  font-size: 20px; 
  color: #ffd700; 
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.star.half { 
  background: linear-gradient(90deg, #ffd700 50%, var(--muted) 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rating-text { 
  display: block; 
  font-size: 14px; 
  color: var(--muted); 
}

.press {
  padding: 40px 0 20px;
  position: relative;
  z-index: 2;
}

.press-title {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.press-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 8px;
  background: none;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  box-shadow: none;
  outline: none;
}

.press-link:hover {
  transform: translateY(-2px);
  background: none;
  box-shadow: none;
}

.press-link:focus {
  outline: none;
  background: none;
}

.press-logo {
  height: 32px;
  width: auto;
  opacity: 0.9;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.press-link:hover .press-logo {
  opacity: 1;
  filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.4));
}

@media (max-width: 600px) {
  .press-logos {
    gap: 24px;
  }
  .press-logo {
    height: 28px;
  }
  .press-link {
    padding: 12px 20px;
  }
}

.features { 
  padding: 60px 0 80px; 
  position: relative;
  z-index: 2;
}
.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}
.features-title { 
  text-align: center; 
  margin: 0 0 56px; 
  font-size: 28px; 
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
@media (max-width: 1000px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
  background: rgba(45, 27, 105, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.15);
  border-radius: 14px;
  padding: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
}
.feature-card h3 { 
  margin: 8px 0 10px; 
  font-size: 19px; 
  font-weight: 600;
  letter-spacing: -0.01em;
}
.feature-card p { 
  margin: 0; 
  color: var(--muted); 
  line-height: 1.6;
  font-size: 15px;
}
.feature-emoji { 
  font-size: 24px; 
  margin-bottom: 4px;
  display: block;
}

.site-footer { 
  border-top: 1px solid rgba(226,232,240,0.1); 
  padding: 32px 0 40px; 
  color: var(--muted); 
  position: relative; 
  z-index: 2; 
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(45, 27, 105, 0.4);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.15);
  border-radius: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
}

.contact-icon {
  font-size: 16px;
}

.copyright {
  margin: 0;
  font-size: 14px;
  text-align: center;
}

@media (max-width: 600px) {
  .footer-content {
    gap: 12px;
  }
  .contact-btn {
    padding: 10px 16px;
    font-size: 14px;
  }
}

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


