@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --background: #06110d;
  --surface: rgba(10, 34, 25, 0.76);
  --surface-border: rgba(99, 234, 168, 0.18);
  --text: #f4fbf7;
  --muted: #a8c2b5;
  --green: #10d27f;
  --green-light: #74efa9;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(12, 155, 91, 0.22), transparent 35rem),
    radial-gradient(circle at 85% 85%, rgba(28, 205, 121, 0.14), transparent 32rem),
    linear-gradient(145deg, #040b08 0%, #071b13 55%, #06110d 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.coming-soon {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: 28px 20px;
}

.card {
  position: relative;
  isolation: isolate;
  width: min(100%, 720px);
  overflow: hidden;
  padding: clamp(36px, 7vw, 68px) clamp(24px, 7vw, 70px);
  text-align: center;
  background: linear-gradient(145deg, rgba(12, 42, 30, 0.88), var(--surface));
  border: 1px solid var(--surface-border);
  border-radius: 32px;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.logo {
  display: block;
  width: min(100%, 340px);
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 18px 30px rgba(0, 213, 123, 0.14));
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 5.7rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.message {
  margin: 22px 0 28px;
  color: var(--muted);
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  line-height: 1.6;
}

.email {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 11px 18px;
  color: #dff8e9;
  font-size: 0.98rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid rgba(116, 239, 169, 0.3);
  border-radius: 999px;
  background: rgba(9, 22, 16, 0.55);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.email:hover {
  transform: translateY(-2px);
  border-color: rgba(116, 239, 169, 0.65);
  background: rgba(16, 210, 127, 0.12);
}

.email:focus-visible {
  outline: 3px solid rgba(116, 239, 169, 0.45);
  outline-offset: 4px;
}

.email-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #052116;
  background: linear-gradient(135deg, var(--green-light), var(--green));
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 900;
}

.glow {
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.14;
  pointer-events: none;
}

.glow-one {
  top: -150px;
  right: -80px;
  background: var(--green-light);
}

.glow-two {
  bottom: -170px;
  left: -70px;
  background: var(--green);
}

@media (max-width: 520px) {
  .coming-soon {
    padding: 14px;
  }

  .card {
    padding: 38px 20px 42px;
    border-radius: 24px;
  }

  .logo {
    width: min(88%, 280px);
    margin-bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .email {
    transition: none;
  }
}
