@import url("https://fonts.googleapis.com/css2?family=Fahkwang:wght@300;400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap");

* {
  box-sizing: border-box;
}

:root {
  --bg: #050505;
  --text: #f4efe4;
  --muted: rgba(244, 239, 228, 0.64);
  --gold: #d6b25e;
  --gold-soft: rgba(214, 178, 94, 0.22);
  --line: rgba(255, 255, 255, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Fahkwang", Inter, ui-sans-serif, system-ui, sans-serif;
  background:
    radial-gradient(circle at 16% 42%, rgba(214, 178, 94, 0.12), transparent 34rem),
    radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.045), transparent 32rem),
    var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* Background */

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  z-index: 20;
}

.orb {
  position: fixed;
  width: 24rem;
  height: 24rem;
  filter: blur(100px);
  opacity: 0.24;
  pointer-events: none;
}

.orb-one {
  left: -12rem;
  top: 20rem;
  background: rgba(214, 178, 94, 0.34);
}

.orb-two {
  right: -12rem;
  bottom: 8rem;
  background: rgba(255, 255, 255, 0.1);
}

/* Navigation */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px clamp(20px, 5vw, 72px);
  backdrop-filter: blur(16px);
  background: linear-gradient(to bottom, rgba(5, 5, 5, 0.84), rgba(5, 5, 5, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  background: rgba(214, 178, 94, 0.08);
  border-radius: 0;
  letter-spacing: 0;
}

.nav-link {
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  border: 1px solid var(--line);
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.035);
  border-radius: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
  border-color: rgba(214, 178, 94, 0.5);
  background: rgba(214, 178, 94, 0.06);
}

/* Hero */

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 120px 20px 80px;
}

.logo-card {
  width: min(92vw, 1000px);
  text-align: center;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  border-radius: 0;
}

.logo-symbol {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 28px;
}

.logo-symbol span {
  width: 12px;
  border-radius: 0;
  background: linear-gradient(to top, var(--gold), #fff1b7);
}

.logo-symbol span:nth-child(1) {
  height: 42px;
}

.logo-symbol span:nth-child(2) {
  height: 68px;
}

.logo-symbol span:nth-child(3) {
  height: 52px;
}

.eyebrow {
  margin: 28px 0 12px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.28em;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1 {
  margin-bottom: 14px;
  font-size: clamp(3.6rem, 8vw, 7.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 700;
}
.tagline {
  max-width: 660px;
  margin: 24px auto 0;
  font-size: clamp(1rem, 2vw, 1.32rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mouse {
  width: 24px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 0;
  display: grid;
  justify-items: center;
  padding-top: 7px;
}

.mouse i {
  display: block;
  width: 3px;
  height: 7px;
  border-radius: 0;
  background: var(--gold);
  animation: drop 1.4s infinite;
}

@keyframes drop {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(12px);
    opacity: 0;
  }
}

/* Sections */

.intro,
.waitlist {
  padding: clamp(90px, 12vw, 160px) clamp(20px, 7vw, 120px);
}

.intro {
  max-width: 1500px;
  margin: 0 auto;
}

.section-label {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}

.intro h2,
.waitlist h2 {
  font-size: clamp(42px, 6.4vw, 104px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 1180px;
  font-weight: 700;
}

.cards {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(28px, 4vw, 72px);
}

/* No boxes */

.cards article {
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.cards h3 {
  color: var(--gold);
  font-size: clamp(22px, 2vw, 34px);
  margin-bottom: 16px;
  font-weight: 700;
}

.cards p {
  max-width: 270px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 17px;
}

/* Waitlist */

.waitlist {
  min-height: 90svh;
  display: grid;
  place-items: center;
}

.waitlist-panel {
  width: min(100%, 800px);
  text-align: center;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}

.waitlist h2 {
  margin-left: auto;
  margin-right: auto;
}

.waitlist-copy {
  max-width: 540px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.form {
  display: flex;
  gap: 12px;
  max-width: 560px;
  margin: 0 auto;
}

input,
button {
  height: 56px;
  border-radius: 0;
  font: inherit;
}

input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  outline: none;
  padding: 0 20px;
  background: rgba(0, 0, 0, 0.38);
  color: var(--text);
}

input::placeholder {
  color: rgba(244, 239, 228, 0.45);
}

input:focus {
  border-color: rgba(214, 178, 94, 0.62);
}

button {
  border: 0;
  padding: 0 24px;
  background: linear-gradient(135deg, #efd184, var(--gold));
  color: #0d0a04;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

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

.form-message {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--gold);
}

.small {
  margin: 22px 0 0;
  color: rgba(244, 239, 228, 0.45);
  font-size: 13px;
}

/* Fly-in animation */

.reveal {
  opacity: 0;
  transform: translateY(46px);
  filter: blur(8px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease,
    filter 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.cards article:nth-child(1) {
  transition-delay: 0.05s;
}

.cards article:nth-child(2) {
  transition-delay: 0.15s;
}

.cards article:nth-child(3) {
  transition-delay: 0.25s;
}

.cards article:nth-child(4) {
  transition-delay: 0.35s;
}

/* Footer */

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 30px clamp(20px, 5vw, 72px);
  color: rgba(244, 239, 228, 0.46);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

/* Mobile */

@media (max-width: 980px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro h2,
  .waitlist h2 {
    font-size: clamp(38px, 10vw, 78px);
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 18px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-link {
    font-size: 13px;
    padding: 9px 12px;
  }

  .hero {
    padding: 110px 18px 80px;
  }

 .hero h1 {
  font-size: clamp(2.6rem, 14vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  word-break: keep-all;
  overflow-wrap: normal;
}

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .intro,
  .waitlist {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cards {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .cards p {
    max-width: 100%;
  }

  .form {
    flex-direction: column;
  }

  button {
    width: 100%;
  }

  footer {
    flex-direction: column;
  }
}
