* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Figtree', Helvetica, sans-serif;
}

.page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: #f8f8ff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Background decorative layer */

.bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.fit-icon {
  position: absolute;
  opacity: 0.9;
}

.fit-icon--a {
  top: 22%;
  left: 8%;
  width: 40px;
  height: 40px;
}

.fit-icon--b {
  top: 62%;
  right: 10%;
  width: 38px;
  height: 38px;
}

.fit-icon--c {
  bottom: 12%;
  left: 14%;
  width: 32px;
  height: 32px;
  opacity: 0.9;
}

/* Header */

.header {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 0;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.brand-row {
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.wordmark-logo {
  height: clamp(40px, 6vw, 64px);
  width: auto;
  display: block;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #A9A9A9;
  flex: none;
}

.eyebrow {
  font-family: 'Figtree', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #A9A9A9 0%, #A9A9A9 40%, #F4122C 50%, #A9A9A9 60%, #A9A9A9 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Main */

.main {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 64px 24px;
  text-align: center;
  align-items: center;
}

.orbit {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  border: 1.5px dotted rgba(43, 43, 43, 0.16);
  border-radius: 50%;
  animation: orbit-spin linear infinite;
}

.orbit-ring--1 {
  width: 320px;
  height: 320px;
  animation-duration: 14s;
}

.orbit-ring--2 {
  width: 520px;
  height: 520px;
  animation-duration: 24s;
  animation-direction: reverse;
  border-color: rgba(244, 18, 44, 0.16);
}

.orbit-ring--3 {
  width: 720px;
  height: 720px;
  animation-duration: 34s;
  border-color: rgba(43, 43, 43, 0.06);
}

.orbit-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  margin-left: -4px;
  width: 8px;
  height: 8px;
}

.orbit-dot--particle {
  border-radius: 50%;
  background: #F4122C;
  box-shadow: 0 0 12px 4px rgba(244, 18, 44, 0.55);
}


@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.headline {
  margin: 0;
  font-family: 'Figtree', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: #2b2b2b;
}

.accent-word {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  background: linear-gradient(90deg, #4a4a4a 0%, #4a4a4a 40%, #F4122C 50%, #4a4a4a 60%, #4a4a4a 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.body-copy {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #6a6a6a;
  max-width: 480px;
  min-height: 1.7em;
}

.cursor {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: #F4122C;
  vertical-align: middle;
  margin-left: 2px;
}

.waitlist-form {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.waitlist-form.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.waitlist-input {
  padding: 14px 18px;
  border: 1px solid rgba(43, 43, 43, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: 'Figtree', sans-serif;
  font-size: 15px;
  color: #2b2b2b;
  min-width: 220px;
  outline: none;
  transition: border-color 0.2s ease;
}

.waitlist-input::placeholder {
  color: #9a9a9a;
}

.waitlist-input:focus {
  border-color: rgba(244, 18, 44, 0.4);
}

.waitlist-btn {
  position: relative;
  overflow: hidden;
  padding: 14px 32px;
  border: 1px solid rgba(244, 18, 44, 0.25);
  border-radius: 12px;
  background: #F4122C;
  box-shadow: 0 8px 24px rgba(43, 43, 43, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: box-shadow 0.2s ease;
}

.waitlist-btn:hover {
  box-shadow: 0 8px 24px rgba(244, 18, 44, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.waitlist-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  animation: shimmer 2.6s ease-in-out infinite;
}

@keyframes shimmer {
  0% {
    left: -150%;
  }
  100% {
    left: 150%;
  }
}

.waitlist-btn:disabled {
  opacity: 0.6;
  cursor: default;
}

.waitlist-status {
  margin: -8px 0 0;
  min-height: 1.4em;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.waitlist-status.is-visible {
  opacity: 1;
}

.waitlist-status.is-success {
  color: #2e7d32;
}

.waitlist-status.is-error {
  color: #F4122C;
}

/* Footer */

.footer {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.copyright {
  margin: 0;
  font-size: 13px;
  color: #7a7a7a;
}

.socials {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #F4122C;
  background: transparent;
  text-decoration: none;
  transition: background 0.2s ease;
}

.social-link:hover,
.social-link:focus-visible {
  background: rgba(244, 18, 44, 0.12);
}

/* Responsive */

@media (max-width: 640px) {
  .header {
    padding: 24px 20px 0;
  }

  .main {
    padding: 40px 20px;
    gap: 20px;
  }

  .orbit-ring--1 {
    width: 200px;
    height: 200px;
  }

  .orbit-ring--2 {
    width: 320px;
    height: 320px;
  }

  .orbit-ring--3 {
    width: 440px;
    height: 440px;
  }

  .waitlist-form {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

  .waitlist-input {
    min-width: 0;
    width: 100%;
  }

  .waitlist-btn {
    width: 100%;
  }

  .footer {
    padding: 0 20px 24px;
    justify-content: center;
    text-align: center;
  }
}
