:root {
  --bg: #070708;
  --fg: #e8e6ed;
  --muted: #8a8594;
  --accent: #c42b4a;
  --accent-glow: rgba(196, 43, 74, 0.35);
  --purple: #7b5cbf;
}

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

html {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: "Outfit", system-ui, sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--fg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  -webkit-font-smoothing: antialiased;
}

.wrap {
  width: 100%;
  max-width: 28rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 4vw, 2rem);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.title {
  margin: 0;
  font-size: clamp(1.5rem, 5vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* «Замазано» + сильнее blur и многослойный ореол (drop-shadow → потом blur смягчает свечение) */
.title-vpn {
  position: relative;
  display: inline-block;
  margin-left: 0.2em;
  letter-spacing: 0.14em;
  transform: skewX(-6deg);
  opacity: 0.95;
  filter:
    drop-shadow(0 0 3px rgba(232, 230, 237, 0.35))
    drop-shadow(0 0 10px rgba(123, 92, 191, 0.65))
    drop-shadow(0 0 22px rgba(123, 92, 191, 0.4))
    drop-shadow(0 0 36px rgba(196, 43, 74, 0.35))
    drop-shadow(0 0 52px rgba(196, 43, 74, 0.2))
    blur(1.85px);
  -webkit-filter:
    drop-shadow(0 0 3px rgba(232, 230, 237, 0.35))
    drop-shadow(0 0 10px rgba(123, 92, 191, 0.65))
    drop-shadow(0 0 22px rgba(123, 92, 191, 0.4))
    drop-shadow(0 0 36px rgba(196, 43, 74, 0.35))
    drop-shadow(0 0 52px rgba(196, 43, 74, 0.2))
    blur(1.85px);
  text-shadow:
    0.07em 0 2px rgba(196, 43, 74, 0.55),
    -0.06em 0 2px rgba(123, 92, 191, 0.5),
    0 0 18px rgba(123, 92, 191, 0.45),
    0 0 28px rgba(196, 43, 74, 0.3);
}

.title-vpn::after {
  content: "";
  position: absolute;
  left: -0.12em;
  right: -0.12em;
  top: 0.1em;
  height: 0.16em;
  min-height: 3px;
  background: rgba(7, 7, 8, 0.9);
  border-radius: 1px;
  pointer-events: none;
  box-shadow:
    0 0.32em 0 rgba(7, 7, 8, 0.86),
    0 0.58em 0 rgba(7, 7, 8, 0.82);
}

.tagline {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 300;
}

.hero {
  margin: 0;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(123, 92, 191, 0.12),
    0 24px 48px -12px rgba(0, 0, 0, 0.65),
    0 0 80px -20px var(--accent-glow);
}

.hero img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #8b2244 100%);
  border: none;
  border-radius: 999px;
  box-shadow: 0 4px 24px var(--accent-glow);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.cta:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 3px;
}

.cta:active {
  transform: translateY(0);
}
