:root {
  --accent: #3d8ef8;
  --accent2: #6c63ff;
  --accent-glow: rgba(61, 142, 248, 0.35);
  --accent-hover: #2563eb;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  width: 100%;
  font-family: "Inter", "Open Sans", system-ui, sans-serif;
  background: #05060a;
  color: #e5e7eb;
}

a {
  color: inherit;
  text-decoration: none;
}

.mw-page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
}

.mw-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.mw-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.mw-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 6, 10, 0.35) 0%, rgba(5, 6, 10, 0.15) 42%, rgba(5, 6, 10, 0.5) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(5, 6, 10, 0.25) 100%);
}

.mw-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.mw-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 16px clamp(16px, 4vw, 48px);
  background: transparent;
  flex-shrink: 0;
}

.mw-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  box-shadow: 0 0 20px var(--accent-glow);
  flex-shrink: 0;
}

.logo-text {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  background: linear-gradient(90deg, #fff, var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.mw-btn-outline {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 6px;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mw-btn-outline:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: var(--accent);
  color: #fff;
}

.mw-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 48px;
}

.mw-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 28px;
  width: 100%;
  max-width: 960px;
}

.mw-typewriter {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.mw-typewriter h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.mw-btn-primary {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--accent);
  color: #fff;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(61, 142, 248, 0.35), rgba(108, 99, 255, 0.35));
  font-weight: 700;
  font-size: 1rem;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.mw-btn-primary:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  border-color: var(--accent);
  transform: translateY(-1px);
}

@media (max-width: 480px) {
  .mw-header {
    padding: 14px 16px;
  }

  .logo-text {
    font-size: 1.25rem;
  }
}
