:root {
  color-scheme: dark;
  --ink: #fffaf2;
  --soft: #eaf6f2;
  --muted: #b4c8c8;
  --quiet: #7f9297;
  --cyan: #73f4ef;
  --violet: #b394ff;
  --pink: #ff82cf;
  --youtube: #ff394f;
  --night: #02040a;
  --line: rgba(255, 250, 242, 0.18);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  overflow-x: hidden;
  background: var(--night);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 6px;
}

.landing {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow-x: hidden;
  place-items: center;
  padding: max(1.15rem, env(safe-area-inset-top)) max(1.15rem, env(safe-area-inset-right)) max(1.15rem, env(safe-area-inset-bottom)) max(1.15rem, env(safe-area-inset-left));
  isolation: isolate;
}

.background {
  position: absolute;
  inset: -1.5rem;
  z-index: -3;
  background-image: url("assets/background.png");
  background-position: center center;
  background-size: cover;
  filter: brightness(1.01) contrast(1.08) saturate(1.13);
  transform: scale(1.015);
}

.landing::before,
.landing::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.landing::before {
  z-index: -2;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(2, 4, 10, 0.03) 0 18rem, rgba(2, 4, 10, 0.2) 46rem, rgba(2, 4, 10, 0.44) 100%),
    radial-gradient(circle at 50% 34%, rgba(115, 244, 239, 0.1), transparent 18rem),
    linear-gradient(180deg, rgba(2, 4, 10, 0.12), rgba(2, 4, 10, 0.28) 62%, rgba(2, 4, 10, 0.46));
}

.landing::after {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(2, 4, 10, 0.18), rgba(2, 4, 10, 0.01) 28%, rgba(2, 4, 10, 0.01) 72%, rgba(2, 4, 10, 0.18)),
    linear-gradient(180deg, rgba(2, 4, 10, 0.08), transparent 40%, rgba(2, 4, 10, 0.26));
}

.hero {
  position: relative;
  width: min(100%, 45.5rem);
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: clamp(1.05rem, 2.6vw, 2.15rem) clamp(0.95rem, 3.2vw, 2rem);
  background:
    linear-gradient(145deg, rgba(1, 4, 12, 0.39), rgba(2, 5, 13, 0.16) 44%, rgba(2, 6, 16, 0.22)) padding-box,
    linear-gradient(135deg, rgba(115, 244, 239, 0.44), rgba(179, 148, 255, 0.16) 48%, rgba(255, 130, 207, 0.28)) border-box;
  box-shadow:
    0 22px 68px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(115, 244, 239, 0.085),
    0 0 52px rgba(179, 148, 255, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 -1px 0 rgba(255, 250, 242, 0.018);
  text-align: center;
  -webkit-backdrop-filter: blur(3px) saturate(1.06);
  backdrop-filter: blur(3px) saturate(1.06);
}

.hero::before,
.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
}

.hero::before {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0, 3, 10, 0.82) 0%, rgba(0, 4, 12, 0.58) 38%, rgba(0, 4, 12, 0.14) 72%, transparent 100%),
    radial-gradient(circle at 50% 0%, rgba(115, 244, 239, 0.032), transparent 13rem);
}

.hero::after {
  inset: 1px;
  border: 1px solid rgba(255, 250, 242, 0.045);
  border-radius: 7px;
  box-shadow:
    inset 0 0 18px rgba(115, 244, 239, 0.04),
    inset 0 0 30px rgba(179, 148, 255, 0.028);
}

.hero > * {
  position: relative;
}

.logo {
  display: block;
  width: clamp(5.65rem, 11.5vw, 7.85rem);
  aspect-ratio: 1;
  height: auto;
  margin: 0 auto clamp(0.58rem, 1.35vw, 0.86rem);
  border: 1px solid rgba(115, 244, 239, 0.18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(2, 4, 10, 0.1), rgba(2, 4, 10, 0) 68%);
  box-shadow:
    0 0 0 0.28rem rgba(115, 244, 239, 0.025),
    0 0 2.9rem rgba(115, 244, 239, 0.4),
    0 0 6rem rgba(179, 148, 255, 0.28),
    0 20px 42px rgba(0, 0, 0, 0.28);
  object-fit: cover;
}

.eyebrow {
  margin: 0 0 clamp(0.42rem, 1.1vw, 0.58rem);
  color: var(--cyan);
  font-size: clamp(0.68rem, 1.6vw, 0.8rem);
  font-weight: 850;
  letter-spacing: 0;
  text-shadow: 0 0 1.25rem rgba(115, 244, 239, 0.34);
}

h1,
p {
  margin-top: 0;
}

h1 {
  max-width: 100%;
  margin: 0 auto clamp(0.45rem, 1.15vw, 0.65rem);
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.75rem, 6.4vw, 5rem);
  font-weight: 600;
  line-height: 0.95;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.62),
    0 0 2.8rem rgba(115, 244, 239, 0.13),
    0 0 4.4rem rgba(179, 148, 255, 0.2);
  text-wrap: balance;
}

.tagline {
  max-width: 40rem;
  margin: 0 auto clamp(0.46rem, 1.05vw, 0.66rem);
  color: var(--soft);
  font-size: clamp(1.04rem, 2.45vw, 1.42rem);
  font-weight: 650;
  line-height: 1.32;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
  text-wrap: balance;
}

.supporting {
  max-width: 34rem;
  margin: 0 auto clamp(0.76rem, 1.85vw, 1.08rem);
  color: rgba(180, 200, 200, 0.84);
  font-size: clamp(0.95rem, 2.1vw, 1.08rem);
  line-height: 1.54;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
  text-wrap: balance;
}

.social-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.62rem;
  width: min(100%, 27.75rem);
  margin: 0 auto clamp(0.7rem, 1.85vw, 0.98rem);
}

.button {
  --accent: var(--cyan);
  --accent-border: rgba(115, 244, 239, 0.34);
  --accent-border-strong: rgba(186, 255, 250, 0.64);
  --accent-soft: rgba(115, 244, 239, 0.11);
  --accent-glow: rgba(115, 244, 239, 0.1);
  --accent-glow-strong: rgba(115, 244, 239, 0.16);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  overflow: hidden;
  border: 1px solid var(--accent-border);
  border-radius: 999px;
  padding: 0.78rem 0.92rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 242, 0.065), rgba(255, 250, 242, 0.018)),
    rgba(1, 4, 12, 0.32);
  color: var(--ink);
  box-shadow:
    0 0 1.1rem var(--accent-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
  font-weight: 800;
  font-size: clamp(0.9rem, 1.2vw, 0.97rem);
  line-height: 1.15;
  isolation: isolate;
  white-space: nowrap;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.button::before {
  position: absolute;
  inset: 0;
  content: "";
  z-index: -1;
  background:
    radial-gradient(circle at 18% 50%, var(--accent-soft), transparent 1.5rem),
    linear-gradient(90deg, var(--accent-soft), transparent 58%);
  opacity: 0.18;
  transition: opacity 180ms ease;
}

.button::after {
  width: 0.4rem;
  height: 0.4rem;
  margin-right: 0.48rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 1rem var(--accent);
  content: "";
  flex: 0 0 auto;
  order: -1;
}

.button:hover,
.button:focus-visible {
  border-color: var(--accent-border-strong);
  background-color: rgba(4, 9, 20, 0.34);
  box-shadow:
    0 0 1.8rem var(--accent-glow-strong),
    0 10px 22px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 0.34;
}

.youtube {
  --accent: var(--youtube);
  --accent-border: rgba(255, 57, 79, 0.36);
  --accent-border-strong: rgba(255, 128, 142, 0.68);
  --accent-soft: rgba(255, 57, 79, 0.12);
  --accent-glow: rgba(255, 57, 79, 0.1);
  --accent-glow-strong: rgba(255, 57, 79, 0.17);
}

.tiktok {
  --accent: var(--cyan);
  --accent-border: rgba(115, 244, 239, 0.38);
  --accent-border-strong: rgba(186, 255, 250, 0.68);
  --accent-soft: rgba(115, 244, 239, 0.12);
  --accent-glow: rgba(115, 244, 239, 0.1);
  --accent-glow-strong: rgba(115, 244, 239, 0.17);
}

.instagram {
  --accent: var(--pink);
  --accent-border: rgba(255, 130, 207, 0.38);
  --accent-border-strong: rgba(255, 185, 232, 0.68);
  --accent-soft: rgba(255, 130, 207, 0.12);
  --accent-glow: rgba(255, 130, 207, 0.1);
  --accent-glow-strong: rgba(255, 130, 207, 0.17);
}

.minimal-footer {
  display: grid;
  justify-items: center;
  gap: 0.32rem;
  padding-top: clamp(0.48rem, 1.2vw, 0.64rem);
  border-top: 1px solid rgba(255, 250, 242, 0.08);
  color: var(--quiet);
  font-size: clamp(0.82rem, 2vw, 0.93rem);
  line-height: 1.55;
}

.minimal-footer p {
  margin: 0;
}

.email-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.14rem;
  border: 1px solid rgba(115, 244, 239, 0.16);
  border-radius: 999px;
  padding: 0.34rem 0.82rem;
  background: rgba(2, 5, 13, 0.18);
  color: var(--soft);
  font-weight: 700;
  overflow-wrap: anywhere;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.email-link:hover,
.email-link:focus-visible {
  border-color: rgba(115, 244, 239, 0.55);
  background-color: rgba(115, 244, 239, 0.08);
  color: var(--ink);
  transform: translateY(-1px);
}

@media (min-width: 680px) {
  .social-links {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 41.5rem);
  }

  .button {
    min-height: 3.05rem;
  }
}

@media (max-width: 430px) {
  .landing {
    padding: max(0.85rem, env(safe-area-inset-top)) max(0.85rem, env(safe-area-inset-right)) max(0.85rem, env(safe-area-inset-bottom)) max(0.85rem, env(safe-area-inset-left));
  }

  .hero {
    padding: 0.95rem 0.85rem;
  }

  .logo {
    width: clamp(4.35rem, 19vw, 5rem);
    box-shadow:
      0 0 0 0.26rem rgba(115, 244, 239, 0.025),
      0 0 1.9rem rgba(115, 244, 239, 0.32),
      0 12px 30px rgba(0, 0, 0, 0.28);
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.55rem, 12.1vw, 3.15rem);
  }

  .tagline {
    font-size: clamp(1rem, 4.5vw, 1.12rem);
  }

  .supporting {
    font-size: 0.93rem;
    line-height: 1.5;
  }

  .button {
    min-height: 2.95rem;
    padding: 0.72rem 0.86rem;
  }

  .minimal-footer {
    gap: 0.3rem;
  }
}

@media (max-height: 720px) {
  .hero {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
  }

  .logo {
    width: clamp(3.75rem, 11vh, 4.9rem);
    margin-bottom: 0.58rem;
  }

  h1 {
    margin-bottom: 0.5rem;
  }

  .tagline {
    margin-bottom: 0.5rem;
  }

  .supporting {
    margin-bottom: 0.78rem;
    line-height: 1.43;
  }

  .social-links {
    gap: 0.54rem;
    margin-bottom: 0.75rem;
  }

  .button {
    min-height: 2.95rem;
  }

  .minimal-footer {
    padding-top: 0.62rem;
  }

  .email-link {
    min-height: 2.1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@supports not (backdrop-filter: blur(1px)) {
  .hero {
    background:
      linear-gradient(145deg, rgba(1, 4, 12, 0.43), rgba(2, 5, 13, 0.19) 44%, rgba(2, 6, 16, 0.26)) padding-box,
      linear-gradient(135deg, rgba(115, 244, 239, 0.44), rgba(179, 148, 255, 0.16) 48%, rgba(255, 130, 207, 0.28)) border-box;
  }
}
