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

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

:root {
  --bg-page: #060c12;
  --bg-card: #070c11;
  --bg-card-2: #0b121a;
  --text-main: #f5f7fb;
  --text-muted: #a4afc1;
  --orange: #ff7a2f;
  --orange-strong: #ff4e05;
  --orange-soft: #ffb073;
  --line: rgba(255, 255, 255, 0.08);
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

* {
  box-sizing: border-box;
}

body {
  height: 100%;
  min-height: 0;
  font-family: "Inter", sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at 16% 14%, rgba(255, 122, 47, 0.1), transparent 32%),
    radial-gradient(circle at 84% 86%, rgba(41, 83, 130, 0.2), transparent 40%),
    var(--bg-page);
  display: block;
}

.page-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 122, 47, 0.16), transparent 30%),
    radial-gradient(circle at 50% 98%, rgba(255, 122, 47, 0.14), transparent 24%);
  filter: blur(30px);
}

.launch-card {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(8, 14, 20, 0.95), rgba(5, 10, 14, 0.98)),
    linear-gradient(90deg, transparent 39px, rgba(255, 255, 255, 0.04) 40px),
    linear-gradient(transparent 39px, rgba(255, 255, 255, 0.04) 40px);
  background-size: auto, 40px 40px, 40px 40px;
  box-shadow: none;
  --mx: 50%;
  --my: 50%;
}

.page-content {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
}

.launch-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 122, 47, 0.1), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(255, 122, 47, 0.12), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 122, 47, 0.12), transparent 30%);
  mix-blend-mode: screen;
  pointer-events: none;
  transition: background-position 0.2s ease;
}

.launch-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/hate_speech.png") center center / cover no-repeat;
  opacity: 0.18;
  mix-blend-mode: screen;
  pointer-events: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: clamp(0.8rem, 2.2vw, 1.35rem) clamp(1rem, 3vw, 2.1rem);
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.logo {
  width: clamp(148px, 14vw, 186px);
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.7rem);
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--text-main);
}

.waitlist-btn {
  color: #10161e;
  text-decoration: none;
  background: linear-gradient(120deg, var(--orange-soft), var(--orange));
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.68rem 1rem;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 78, 5, 0.3);
}

.contact-btn-mobile {
  display: none;
  color: var(--text-main);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.58rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(11, 18, 26, 0.55);
}

.hero {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 0.25rem 1rem 0;
  flex: 1;
  min-height: 0;
  display: grid;
  align-items: center;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 520px);
  align-items: center;
  gap: clamp(1rem, 3vw, 2.4rem);
  width: 100%;
  min-height: 0;
}

.hero-copy {
  text-align: left;
  max-width: 650px;
}

.badge {
  display: inline-block;
  margin: 0;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 122, 47, 0.14);
  border: 1px solid rgba(255, 122, 47, 0.4);
  color: var(--orange-soft);
  letter-spacing: 0.09em;
  font-size: 0.72rem;
  font-weight: 700;
}

h1 {
  margin: 1rem 0 0;
  line-height: 1.03;
  text-wrap: balance;
  font-size: clamp(2.5rem, 6.9vw, 6.2rem);
  max-width: 12ch;
}

h1 span {
  color: var(--orange);
  text-shadow: 0 0 25px rgba(255, 122, 47, 0.25);
}

.sub {
  margin: 1rem 0 0;
  max-width: 46ch;
  color: var(--text-muted);
  font-size: clamp(1.08rem, 2.1vw, 1.45rem);
}

.notify {
  margin: 1.35rem 0 0;
  width: min(620px, 100%);
  display: flex;
  gap: 0.7rem;
  align-items: center;
}

.notify input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(12, 20, 30, 0.85);
  color: var(--text-main);
  border-radius: 999px;
  padding: 0.96rem 1.1rem;
  font: inherit;
}

.notify input::placeholder {
  color: #7f899a;
}

.notify button {
  border: 0;
  border-radius: 999px;
  padding: 0.96rem 1.2rem;
  font: inherit;
  font-weight: 700;
  color: #11151b;
  background: linear-gradient(120deg, var(--orange-soft), var(--orange-strong));
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 78, 5, 0.3);
}

.hero-shield-wrap {
  margin: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero-shield {
  width: clamp(360px, 40vw, 620px);
  max-height: 58dvh;
  height: auto;
  opacity: 0.96;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 24px rgba(255, 122, 47, 0.32));
  will-change: transform;
  animation: shield-float 6.8s linear infinite;
}

@keyframes shield-float {
  0% { transform: translateY(-8px); }
  50% { transform: translateY(8px); }
  100% { transform: translateY(-8px); }
}

.contact-hero {
  max-width: 680px;
  width: 100%;
  margin: 0 auto;
  padding: 0.25rem 1rem 0;
  flex: 1;
  min-height: 0;
  display: grid;
  align-items: center;
}

.contact-copy {
  text-align: left;
}

.contact-form {
  margin-top: 1.6rem;
  max-width: 620px;
  display: grid;
  gap: 0.75rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(12, 20, 30, 0.86);
  color: var(--text-main);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7f899a;
}

.contact-form button {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  padding: 0.92rem 1.24rem;
  font: inherit;
  font-weight: 700;
  color: #11151b;
  background: linear-gradient(120deg, var(--orange-soft), var(--orange-strong));
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(255, 78, 5, 0.3);
}

.contact-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  margin-top: 0.15rem;
}

.contact-actions .cf-turnstile {
  min-width: 300px;
}

body.is-contact .contact-actions {
  justify-content: center;
}

body.is-contact .launch-card {
  display: flex;
  flex-direction: column;
}

body.is-contact .contact-hero {
  flex: 1;
  width: min(980px, 100%);
  max-width: none;
  display: grid;
  align-items: center;
  margin: 0 auto;
  padding: 0 1rem 0;
}

body.is-contact .contact-copy {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

body.is-contact .contact-form {
  margin-left: auto;
  margin-right: auto;
}

body.is-contact .contact-form button {
  justify-self: center;
}

@media (max-width: 900px) {
  .topbar {
    padding: 1rem 1rem 0.8rem;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .hero-copy {
    text-align: center;
    margin: 0 auto;
  }

  h1 {
    margin-left: auto;
    margin-right: auto;
  }

  .sub {
    margin-left: auto;
    margin-right: auto;
  }

  .notify {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-shield {
    width: clamp(290px, 56vw, 460px);
    max-height: 40dvh;
    opacity: 0.92;
  }
}

@media (max-width: 640px) {
  .nav {
    display: none;
  }

  .topbar {
    gap: 0.55rem;
    padding: 0.7rem 0.8rem 0.55rem;
  }

  .logo {
    width: clamp(118px, 36vw, 150px);
  }

  .topbar-actions {
    gap: 0.45rem;
  }

  .contact-btn-mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .waitlist-btn {
    font-size: 0.86rem;
    padding: 0.58rem 0.82rem;
  }

  .notify {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-shield {
    width: clamp(250px, 76vw, 360px);
    max-height: 31dvh;
    opacity: 0.9;
  }

  .notify {
    flex-direction: column;
  }

  .notify input,
  .notify button {
    width: 100%;
  }

  .contact-copy {
    text-align: center;
  }

  .contact-form {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-form button {
    width: 100%;
    justify-self: stretch;
  }

  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-actions .cf-turnstile {
    min-width: 0;
  }
}

.message {
  min-height: 1.3rem;
  margin: 0.7rem 0 0;
  font-size: 0.93rem;
  color: #9aa8be;
}

.message[data-state="success"] {
  color: #63f0a2;
}

.message[data-state="error"] {
  color: #ff8d80;
}

button[disabled] {
  cursor: not-allowed;
  opacity: 0.72;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.site-footer {
  position: relative;
  z-index: 1;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.2rem 1rem 0.45rem;
}

.site-footer a {
  color: var(--orange-soft);
  font-weight: 700;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--orange);
}
