*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background-color: #050811;
  color: #f7f9fc;
}

body {
  margin: 0;
  background: radial-gradient(120% 120% at 50% 0%, #18223a 0%, #050811 55%);
  min-height: 100vh;
}

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

.container {
  width: min(1100px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background-color: rgba(5, 8, 17, 0.82);
  border-bottom: 1px solid rgba(84, 106, 170, 0.2);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.logo span {
  color: #67e3ff;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  margin-inline-start: 1.5rem;
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.site-nav a:hover {
  border-color: #67e3ff;
  color: #f0fbff;
}

.hero {
  padding: 6rem 0 4rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 4.5vw, 3.5rem);
  margin: 0.5rem 0 1.5rem;
  line-height: 1.2;
}

.hero-highlight {
  display: inline-block;
  background: linear-gradient(135deg, #67e3ff 0%, #9f83ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

#hero-term {
  display: inline-block;
  white-space: nowrap;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.75rem;
  font-weight: 600;
  color: #8ba5ff;
}

.lead {
  font-size: 1.05rem;
  color: rgba(241, 246, 255, 0.86);
  max-width: 560px;
}

.waitlist-form {
  margin: 2rem 0 0.75rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.form-message {
  margin: 0.35rem 0;
  font-size: 0.9rem;
  color: rgba(197, 212, 255, 0.85);
}

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

.form-message[data-state="success"] {
  color: #67e3ff;
}

.waitlist-form input {
  flex: 1;
  min-width: 220px;
  border-radius: 999px;
  border: 1px solid rgba(131, 166, 255, 0.28);
  background-color: rgba(10, 17, 38, 0.65);
  color: #f7f9fc;
  padding: 0.9rem 1.1rem;
  font-size: 1rem;
}

.waitlist-form input::placeholder {
  color: rgba(226, 235, 255, 0.6);
}

.waitlist-form button {
  border-radius: 999px;
  border: none;
  padding: 0.95rem 1.8rem;
  font-weight: 600;
  background: linear-gradient(135deg, #67e3ff 0%, #9f83ff 100%);
  color: #04070f;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 12px 20px rgba(66, 171, 210, 0.22);
}

.form-helper {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(211, 223, 255, 0.7);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  padding: 1.25rem 1rem;
  background: rgba(17, 24, 46, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(86, 100, 148, 0.28);
}

.metric {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
}

.metric-label {
  font-size: 0.8rem;
  color: rgba(210, 221, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.glass-card {
  width: min(340px, 85%);
  background: rgba(13, 22, 45, 0.7);
  border-radius: 24px;
  border: 1px solid rgba(103, 227, 255, 0.25);
  padding: 1.75rem;
  box-shadow: 0 20px 60px rgba(9, 16, 32, 0.55);
  backdrop-filter: blur(18px);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.title {
  font-weight: 600;
  font-size: 1.05rem;
}

.badge {
  font-size: 0.75rem;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: rgba(103, 227, 255, 0.12);
  border: 1px solid rgba(103, 227, 255, 0.35);
  color: #9ee9ff;
}

.card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.card-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(7, 13, 28, 0.6);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(84, 104, 150, 0.25);
}

.name {
  font-weight: 500;
}

.status {
  font-size: 0.8rem;
  color: rgba(181, 201, 247, 0.8);
}

.status-live {
  color: #ff7ba1;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.primary-btn,
.secondary-btn {
  flex: 1;
  padding: 0.8rem;
  border-radius: 12px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.primary-btn {
  background: linear-gradient(135deg, #67e3ff, #8c7eff);
  color: #050811;
}

.secondary-btn {
  background: rgba(10, 19, 38, 0.85);
  color: rgba(186, 204, 250, 0.9);
  border: 1px solid rgba(86, 104, 150, 0.3);
}

.stat-bubble {
  position: absolute;
  top: 18%;
  right: 5%;
  background: rgba(10, 19, 36, 0.68);
  border-radius: 14px;
  border: 1px solid rgba(103, 227, 255, 0.25);
  padding: 0.8rem 1rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(4, 10, 24, 0.35);
}

.stat-bubble.alt {
  top: auto;
  bottom: 12%;
  left: 12%;
  right: auto;
  border-color: rgba(255, 205, 112, 0.3);
}

.bubble-metric {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
}

.bubble-label {
  font-size: 0.75rem;
  color: rgba(194, 209, 246, 0.85);
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  display: grid;
  gap: 1rem;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.section-header p {
  color: rgba(214, 225, 255, 0.75);
  max-width: 650px;
  justify-self: center;
}

.feature-grid {
  margin-top: 3rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.feature-card {
  background: rgba(13, 21, 40, 0.6);
  border-radius: 18px;
  padding: 1.75rem;
  border: 1px solid rgba(84, 106, 170, 0.28);
  box-shadow: 0 16px 40px rgba(7, 14, 30, 0.45);
}

.feature-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
}

.feature-card p {
  color: rgba(206, 220, 255, 0.75);
  margin-bottom: 0;
}

.crew-preview {
  border-top: 1px solid rgba(72, 94, 150, 0.25);
  border-bottom: 1px solid rgba(72, 94, 150, 0.25);
  background: radial-gradient(120% 140% at 50% 0%, rgba(20, 30, 60, 0.8), rgba(6, 12, 27, 0.9));
}

.crew-container {
  display: grid;
  gap: 2.5rem;
}

.crew-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.crew-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scroll-padding-inline: 1rem;
  padding: 0.5rem 0.5rem 0.5rem 0;
  flex: 1;
}

.crew-track::-webkit-scrollbar {
  height: 6px;
}

.crew-track::-webkit-scrollbar-thumb {
  background: rgba(100, 140, 200, 0.35);
  border-radius: 999px;
}

.crew-card {
  background: rgba(10, 18, 36, 0.78);
  border: 1px solid rgba(103, 227, 255, 0.18);
  border-radius: 22px;
  padding: 1.75rem;
  flex: 0 0 min(320px, 80vw);
  scroll-snap-align: start;
  box-shadow: 0 22px 40px rgba(7, 14, 30, 0.5);
  display: grid;
  gap: 1rem;
}

.crew-card h3 {
  margin: 0;
  font-size: 1.3rem;
}

.crew-card p {
  margin: 0;
  color: rgba(210, 223, 255, 0.8);
  line-height: 1.5;
}

.crew-card ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.45rem;
  color: rgba(197, 209, 247, 0.82);
  font-size: 0.95rem;
}

.carousel-btn {
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(12, 20, 38, 0.85);
  border: 1px solid rgba(103, 227, 255, 0.3);
  color: #67e3ff;
  font-size: 1.4rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.carousel-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: rgba(150, 240, 255, 0.6);
}

.carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.crew-cta {
  display: flex;
  justify-content: center;
}

.crew-cta .primary-btn {
  min-width: 220px;
  text-align: center;
}

.community {
  background: linear-gradient(135deg, rgba(9, 16, 34, 0.85), rgba(11, 26, 55, 0.7));
  border-block: 1px solid rgba(86, 104, 150, 0.2);
}

.community-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.bullet-list {
  padding-left: 1.25rem;
  color: rgba(210, 223, 255, 0.8);
  display: grid;
  gap: 0.8rem;
}

.quote-card {
  background: rgba(7, 13, 28, 0.75);
  padding: 2.5rem;
  border-radius: 24px;
  border: 1px solid rgba(103, 227, 255, 0.2);
  box-shadow: 0 12px 35px rgba(5, 11, 25, 0.4);
}

.quote-card blockquote {
  margin: 0 0 1.5rem;
  font-size: 1.25rem;
  line-height: 1.6;
}

.quote-card cite {
  font-style: normal;
  color: rgba(180, 196, 236, 0.75);
}

.preview-grid {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.preview-copy h2 {
  margin-top: 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.preview-copy p {
  color: rgba(210, 223, 255, 0.78);
}

.badge-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.badge-row .badge {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(230, 230, 230, 0.12);
  color: rgba(230, 237, 255, 0.85);
}

.phone-mockup {
  display: flex;
  justify-content: center;
}

.screen {
  width: 270px;
  background: linear-gradient(180deg, rgba(16, 24, 46, 0.9), rgba(7, 11, 24, 0.94));
  border-radius: 32px;
  border: 1px solid rgba(87, 109, 180, 0.28);
  padding: 1.6rem 1.3rem;
  box-shadow: 0 25px 60px rgba(6, 10, 24, 0.5);
  display: grid;
  gap: 1.2rem;
}

.screen-header {
  display: grid;
  gap: 0.25rem;
}

.screen-title {
  font-weight: 600;
}

.screen-date {
  font-size: 0.85rem;
  color: rgba(194, 209, 246, 0.7);
}

.session-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.session-list li {
  background: rgba(9, 15, 33, 0.7);
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid rgba(103, 227, 255, 0.18);
}

.session-name {
  display: block;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.session-meta {
  color: rgba(189, 206, 250, 0.7);
  font-size: 0.85rem;
}

.screen-cta {
  margin-top: 0.5rem;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #67e3ff, #c877ff);
  color: #071022;
  font-weight: 600;
  padding: 0.95rem;
  cursor: pointer;
}

.cta {
  background: radial-gradient(120% 160% at 50% 0%, rgba(14, 33, 71, 0.78), rgba(6, 12, 27, 0.92));
  border-top: 1px solid rgba(86, 104, 150, 0.2);
}

.cta-card {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  background: rgba(10, 18, 38, 0.75);
  border-radius: 28px;
  padding: 3rem 2rem;
  border: 1px solid rgba(103, 227, 255, 0.2);
  box-shadow: 0 30px 60px rgba(5, 12, 28, 0.55);
}

.cta-card h2 {
  margin-top: 0;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.cta-card p {
  color: rgba(210, 223, 255, 0.78);
}

.site-footer {
  padding: 3rem 0 2rem;
  background: rgba(5, 8, 17, 0.9);
  border-top: 1px solid rgba(86, 104, 150, 0.2);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-logo {
  font-size: 1.5rem;
}

.footer-blurb {
  color: rgba(190, 204, 241, 0.75);
  margin-top: 0.75rem;
}

.footer-link {
  display: block;
  color: rgba(211, 223, 255, 0.85);
  margin-top: 0.6rem;
  font-weight: 500;
}

.socials {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.socials a {
  color: rgba(211, 223, 255, 0.85);
  font-weight: 500;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(86, 104, 150, 0.2);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(183, 198, 236, 0.6);
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .site-header .container {
    flex-direction: column;
    gap: 0.75rem;
  }

  .site-nav a {
    margin-inline-start: 0.75rem;
    margin-inline-end: 0.75rem;
  }

  .hero {
    padding-top: 5rem;
  }

  .hero-copy h1 {
    font-size: 2.25rem;
  }

  .card-footer {
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .stat-bubble {
    display: none;
  }

  .crew-carousel {
    gap: 0.5rem;
  }

  .crew-track {
    padding-inline: 0;
  }

  .carousel-btn {
    display: none;
  }
}

.brand[role="button"] {
  cursor: pointer;
}
