:root {
  --bg: #050608;
  --fg: #f7fbff;
  --muted: #a5afbd;
  --line: rgba(255, 255, 255, 0.14);
  --glass: rgba(255, 255, 255, 0.075);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --cyan: #50f4ff;
  --violet: #9b6cff;
  --green: #56ffbf;
  --shadow: rgba(0, 0, 0, 0.45);
  --font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--fg);
  font-family: var(--font-main);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, rgba(80, 244, 255, 0.26), transparent 28rem),
    radial-gradient(circle at 82% 78%, rgba(155, 108, 255, 0.24), transparent 30rem),
    radial-gradient(circle at 52% 10%, rgba(86, 255, 191, 0.12), transparent 24rem),
    linear-gradient(135deg, #050608 0%, #080b12 48%, #020306 100%);
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  content: "";
  pointer-events: none;
}

body::before {
  opacity: 0.33;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}

body::after {
  background: linear-gradient(rgba(255,255,255,0.025) 50%, transparent 50%);
  background-size: 100% 4px;
  mix-blend-mode: soft-light;
  opacity: 0.32;
}

.shell {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 2rem;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
  opacity: 0.85;
}

.orb-one {
  top: 14%;
  left: 10%;
  width: 0.7rem;
  height: 0.7rem;
  background: var(--cyan);
  box-shadow: 0 0 42px 18px rgba(80, 244, 255, 0.22);
}

.orb-two {
  right: 13%;
  bottom: 20%;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--violet);
  box-shadow: 0 0 48px 20px rgba(155, 108, 255, 0.22);
}

.card {
  position: relative;
  width: min(100%, 760px);
  padding: clamp(2rem, 7vw, 5rem);
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 34px;
  background:
    linear-gradient(145deg, var(--glass-strong), rgba(255, 255, 255, 0.035)),
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0));
  box-shadow: 0 32px 100px var(--shadow), inset 0 1px 0 rgba(255,255,255,0.18);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  isolation: isolate;
}

.card::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(80,244,255,0.55), transparent 30%, transparent 62%, rgba(155,108,255,0.5));
  opacity: 0.45;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.055);
}

.spark {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 20px rgba(86,255,191,0.9);
}

h1 {
  margin: 0;
  font-size: clamp(3.6rem, 14vw, 9.4rem);
  line-height: 0.85;
  letter-spacing: -0.11em;
  text-transform: lowercase;
  background: linear-gradient(92deg, #ffffff 0%, var(--cyan) 38%, var(--green) 58%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 58px rgba(80,244,255,0.18);
}

.statement {
  max-width: 630px;
  margin: 1.8rem auto 2.3rem;
  color: rgba(247,251,255,0.78);
  font-size: clamp(1.05rem, 2.6vw, 1.42rem);
  line-height: 1.7;
  letter-spacing: -0.02em;
}

.email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.25rem;
  border: 1px solid rgba(80,244,255,0.34);
  border-radius: 999px;
  color: var(--fg);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(80,244,255,0.18), rgba(155,108,255,0.16));
  box-shadow: 0 0 42px rgba(80,244,255,0.12), inset 0 1px 0 rgba(255,255,255,0.16);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.email:hover,
.email:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(86,255,191,0.78);
  box-shadow: 0 18px 58px rgba(80,244,255,0.2), inset 0 1px 0 rgba(255,255,255,0.22);
  outline: none;
}

footer {
  position: fixed;
  right: 0;
  bottom: 1.5rem;
  left: 0;
  z-index: 2;
  padding: 0 1rem;
  color: rgba(247,251,255,0.44);
  font-size: 0.86rem;
  text-align: center;
  letter-spacing: 0.01em;
}

@media (max-width: 640px) {
  body {
    overflow: auto;
  }

  .shell {
    padding: 1rem;
  }

  .card {
    border-radius: 26px;
  }

  h1 {
    letter-spacing: -0.09em;
  }

  footer {
    position: relative;
    bottom: auto;
    margin-top: -4.25rem;
    padding-bottom: 1.25rem;
  }
}
