:root {
  --bg: #0f130d;
  --panel: rgba(22, 27, 18, 0.72);
  --text: #f2f5dc;
  --muted: #c9cdb2;
  --gold: #f3c744;
  --gold-strong: #ffde69;
  --moss: #9aad47;
  --line: rgba(237, 240, 212, 0.18);
  --danger: #ff7f75;
  --ok: #8ce59b;
  --shadow: 0 20px 65px rgba(0, 0, 0, 0.35);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% 15%, #2a321b 0%, var(--bg) 45%), #0a0d08;
  color: var(--text);
  overflow-x: hidden;
}

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

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

.orb-a {
  width: 34vw;
  height: 34vw;
  left: -10vw;
  top: -6vw;
  background: #f1bd34;
  animation: drift-a 12s ease-in-out infinite alternate;
}

.orb-b {
  width: 28vw;
  height: 28vw;
  right: -6vw;
  bottom: -6vw;
  background: #79ad49;
  animation: drift-b 14s ease-in-out infinite alternate;
}

.hive-grid {
  position: absolute;
  inset: -30% -10%;
  opacity: 0.2;
  background-image:
    linear-gradient(30deg, transparent 74%, rgba(247, 213, 93, 0.2) 75%),
    linear-gradient(150deg, transparent 74%, rgba(247, 213, 93, 0.14) 75%);
  background-size: 62px 108px;
  animation: hive-pan 36s linear infinite;
}

.shell {
  position: relative;
  z-index: 1;
  width: min(940px, calc(100% - 2.4rem));
  margin: 2rem auto 3rem;
  padding: clamp(1.2rem, 2vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(170deg, rgba(31, 39, 25, 0.92), var(--panel));
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  animation: rise 620ms cubic-bezier(0.2, 0.9, 0.3, 1) both;
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-badge {
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(155deg, var(--gold-strong), #db9d23);
  color: #2f2205;
  font-size: 1.3rem;
  box-shadow: 0 12px 30px rgba(254, 214, 99, 0.35);
}

.eyebrow {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand {
  margin: 0.18rem 0 0;
  font-family: "Chakra Petch", "IBM Plex Sans", sans-serif;
  font-size: clamp(1.45rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero {
  margin-top: clamp(1.4rem, 4vw, 3.2rem);
}

.kicker {
  display: inline-block;
  margin: 0;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255, 222, 108, 0.35);
  border-radius: 999px;
  background: rgba(255, 222, 108, 0.11);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: #ffe48a;
}

.hero h2 {
  margin: 0.9rem 0 0;
  max-width: 16ch;
  font-family: "Chakra Petch", "IBM Plex Sans", sans-serif;
  font-size: clamp(2rem, 6vw, 4.2rem);
  line-height: 0.97;
  text-wrap: balance;
}

.lede {
  margin: 1.15rem 0 0;
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.6;
}

.tease-list {
  margin: 1.45rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  max-width: 560px;
}

.tease-list li {
  padding: 0.72rem 0.9rem;
  border: 1px solid rgba(235, 238, 208, 0.16);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
}

.waitlist {
  margin-top: clamp(1.6rem, 4vw, 2.8rem);
  padding-top: clamp(1rem, 2vw, 1.4rem);
  border-top: 1px solid var(--line);
}

.waitlist h3 {
  margin: 0;
  font-family: "Chakra Petch", "IBM Plex Sans", sans-serif;
  font-size: clamp(1.3rem, 3.4vw, 1.95rem);
}

.waitlist-copy {
  margin: 0.65rem 0 0;
  color: var(--muted);
}

.waitlist-form {
  margin-top: 1.1rem;
}

.label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.input-row {
  display: flex;
  gap: 0.65rem;
}

input,
button {
  font: inherit;
}

input {
  flex: 1;
  min-width: 0;
  height: 3rem;
  border-radius: 12px;
  border: 1px solid rgba(241, 243, 220, 0.26);
  background: rgba(14, 18, 10, 0.75);
  color: var(--text);
  padding: 0 0.95rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input::placeholder {
  color: rgba(213, 218, 187, 0.62);
}

input:focus {
  outline: none;
  border-color: rgba(255, 222, 105, 0.66);
  box-shadow: 0 0 0 4px rgba(255, 222, 105, 0.18);
}

button {
  height: 3rem;
  border: 0;
  border-radius: 12px;
  padding: 0 1.1rem;
  background: linear-gradient(155deg, #ffd85c, #e4ae30);
  color: #2a1b04;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  transition: transform 140ms ease, filter 160ms ease;
}

button:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

button:focus-visible {
  outline: 3px solid rgba(255, 225, 110, 0.32);
  outline-offset: 2px;
}

button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-message {
  min-height: 1.5rem;
  margin: 0.7rem 0 0;
  font-size: 0.95rem;
}

.form-message.error {
  color: var(--danger);
}

.form-message.success {
  color: var(--ok);
}

.footer {
  margin-top: clamp(1.5rem, 4vw, 2.8rem);
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
  color: rgba(212, 217, 186, 0.74);
  font-size: 0.86rem;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift-a {
  to {
    transform: translate3d(14px, 20px, 0);
  }
}

@keyframes drift-b {
  to {
    transform: translate3d(-18px, -12px, 0);
  }
}

@keyframes hive-pan {
  to {
    transform: translateY(-44px);
  }
}

@media (max-width: 740px) {
  .shell {
    width: calc(100% - 1.4rem);
    margin-top: 1rem;
    margin-bottom: 1.4rem;
    padding: 1.1rem;
  }

  .hero h2 {
    max-width: 100%;
  }

  .input-row {
    flex-direction: column;
  }

  button {
    width: 100%;
    justify-content: center;
  }
}

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