/* --- Reset & base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text);
  background: var(--bg);
  overflow: hidden;
  height: 100vh;
}

:root {
  --bg: #070707;
  --text: #f5f0eb;
  --muted: #8a8580;
  --accent: #e8a87c;
  --accent-soft: rgba(232, 168, 124, 0.15);
  /* SF Pro–style for message UI (system font stack) */
  --font-message: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Segoe UI', Roboto, sans-serif;
}

/* --- Scroll container (Cosmos-style full-page scroll) --- */
.scroll-container {
  width: 100vw;
  height: 100vh;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.scroll-container::-webkit-scrollbar {
  display: none;
}

/* --- Panels: 100vw × 100vh --- */
.panel {
  width: 100vw;
  min-height: 100vh;
  height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.panel-content {
  max-width: 90vw;
  width: 720px;
  text-align: center;
}

/* --- Hero panel (first page) --- */
@keyframes heroQuestionLoad {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(24px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes heroPhoneLoad {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) translateY(40px);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

.panel-hero {
  background: #070707;
  min-height: 250vh;
  height: auto;
  align-items: flex-start;
}

.panel-hero-inner {
  width: 100%;
  max-width: 90vw;
  min-height: 250vh;
  margin: 0 auto;
}

.hero-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  padding: 2rem 1rem;
  box-sizing: border-box;
  --hero-progress: 0;
}

.hero-stage:not(.hero-loaded) .hero-question {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(24px);
}

.hero-stage.hero-loaded .hero-question {
  animation: heroQuestionLoad 0.7s ease-out 0.1s backwards;
}

.hero-stage:not(.hero-loaded) .phone-mockup {
  opacity: 0;
  transform: translate(-50%, -50%) translateY(40px);
}

.hero-stage.hero-loaded .phone-mockup {
  animation: heroPhoneLoad 0.7s ease-out 0.4s backwards;
}

.hero-question {
  position: absolute;
  left: 50%;
  top: calc(50% - 14% * var(--hero-progress));
  transform: translate(-50%, -50%);
  z-index: 2;
  font-family: 'Lora', Georgia, serif;
  font-size: 20px;
  font-weight: 100;
  line-height: 1.2;
  color: var(--text);
  padding: 0 1rem;
  white-space: nowrap;
  letter-spacing: -0.02em;
  text-align: center;
  opacity: max(0, 1 - (var(--hero-progress) - 0.3) * 2.5);
  transition: top 0.35s ease-out, opacity 0.35s ease-out;
}

.hero-visual {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-mockup {
  position: absolute;
  left: 50%;
  /* Start: mockup lower (less visible); end: phone centered */
  top: calc(135% - 85% * var(--hero-progress));
  transform: translate(-50%, -50%);
  z-index: 0;
  /* Start large, shrink to 220px by progress 1 */
  width: calc(330px - 110px * var(--hero-progress));
  aspect-ratio: 330 / 700;
  background: #141414;
  border: none;
  border-radius: 24px;
  box-shadow: none;
  opacity: 1;
  transition: top 0.2s ease-out, width 0.2s ease-out;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  width: 28%;
  min-width: 48px;
  /* 28px at start, 20px at end */
  height: calc(28px - 8px * var(--hero-progress));
  background: #070707;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5);
  transition: height 0.2s ease-out;
}

.chat-bubble {
  position: absolute;
  max-width: 220px;
  padding: 0.75rem 1rem;
  font-family: var(--font-message);
  font-size: 0.9rem;
  line-height: 1.35;
  border-radius: 18px;
  white-space: normal;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  z-index: 3;
}

.hero-visual.bubble-1-visible .chat-bubble[data-bubble-order="1"] {
  opacity: 1;
  transform: translateY(-50%);
}

.hero-visual.bubble-2-visible .chat-bubble[data-bubble-order="2"] {
  opacity: 1;
  transform: none;
}

.hero-visual.bubble-3-visible .chat-bubble[data-bubble-order="3"] {
  opacity: 1;
  transform: none;
}

.bubble-friend {
  left: 32%;
  top: 40%;
  z-index: 3;
  background: #3A3A3C;
  color: #fff;
  border-radius: 18px 18px 18px 4px;
  padding: 0.85rem 1.15rem;
  text-align: left;
}

.bubble-user {
  background: #0A84FF;
  color: #fff;
  border-radius: 18px 18px 4px 18px;
  padding: 0.85rem 1.15rem;
}

.chat-bubbles-user {
  position: absolute;
  right: 38%;
  top: 56%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-end;
  max-width: 220px;
}

.chat-bubbles-user .chat-bubble {
  position: static;
}

/* --- Panel 2: momentarily fixed, 200vh scroll, two-line header, color switch on scroll --- */
.gift-sticky-wrap {
  height: 200vh;
  position: relative;
}

.gift-sticky-wrap .panel-gift {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
}

.panel-gift-inner {
  width: 100%;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  text-align: center;
}

.statement-gift {
  display: flex;
  flex-direction: column;
  gap: 0.35em;
  align-items: center;
  font-size: 20px;
  font-weight: 100;
  margin-bottom: 7rem;
  transition: color 0.4s ease-out;
}

.statement-gift-line1,
.statement-gift-line2 {
  display: block;
  transition: color 0.4s ease-out;
}

.statement-gift-line1 {
  color: #fff;
}

.statement-gift-line2 {
  color: #565656;
}

.panel-gift-inner.gift-header-scrolled .statement-gift-line1 {
  color: #565656;
}

.panel-gift-inner.gift-header-scrolled .statement-gift-line2 {
  color: #fff;
}

.gift-box-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease-out;
}

.gift-box-wrap.gift-visible {
  transform: scale(1);
  opacity: 1;
}

.gift-icon {
  width: clamp(70px, 14vw, 100px);
  height: auto;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.35));
}

/* --- Panel 3: white box (96vh × 98vw, 64 radius), fixed until section ends --- */
.panel-wishlist-screen {
  min-height: 300vh;
  height: auto;
  align-items: flex-start;
  justify-content: flex-start;
}

.panel-wishlist-stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2vh 0;
}

.wishlist-white-box {
  position: relative;
  width: 98vw;
  height: 96vh;
  max-width: 98vw;
  max-height: 96vh;
  border-radius: 64px;
  background: #fff;
  overflow: hidden;
  box-sizing: border-box;
}

.section3-dots {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.section3-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
}

.wishlist-white-box.section3-dot-0 .section3-dot[data-dot="0"],
.wishlist-white-box.section3-dot-1 .section3-dot[data-dot="1"],
.wishlist-white-box.section3-dot-2 .section3-dot[data-dot="2"] {
  background: rgba(0, 0, 0, 0.55);
}


.section3-part {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 8rem 3rem 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
  box-sizing: border-box;
}

.section3-part-1 {
  opacity: 1;
  pointer-events: auto;
}

.wishlist-white-box.section3-show-part-2 .section3-part-1 {
  opacity: 0;
  pointer-events: none;
}

.wishlist-white-box.section3-show-part-2 .section3-part-2 {
  opacity: 1;
  pointer-events: auto;
}

.wishlist-white-box.section3-show-part-3 .section3-part-2 {
  opacity: 0;
  pointer-events: none;
}

.wishlist-white-box.section3-show-part-3 .section3-part-3 {
  opacity: 1;
  pointer-events: auto;
}

.section3-question {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 16px 0;
  line-height: 1.35;
  text-align: center;
  flex-shrink: 0;
}

.wishlist-phone-wrap {
  flex: 0 0 auto;
  margin-top: auto;
  width: 100%;
  height: 58vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.section3-image {
  width: auto;
  height: 100vh;
  max-width: 100%;
  object-fit: contain;
  object-position: top center;
}

.section3-statement-wrap {
  flex-shrink: 0;
  background: #000;
  border-radius: 4px;
  padding: 0.35rem 0.75rem;
}

.section3-statement {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 500;
  color: #fff;
  margin: 0;
  line-height: 1.35;
  text-align: center;
}

.phone-app-mockup {
  width: 100%;
  max-width: 280px;
  background: #1c1c1e;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  font-family: var(--font-message);
}

.phone-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.25rem 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
}

.phone-icons {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.phone-signal,
.phone-wifi,
.phone-battery {
  width: 18px;
  height: 12px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 2px;
}

.phone-signal { width: 16px; }
.phone-wifi { width: 14px; height: 10px; }
.phone-battery { width: 24px; height: 11px; border: 1.5px solid rgba(255,255,255,0.8); border-radius: 2px; background: transparent; }

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 1rem 0.75rem;
  gap: 0.5rem;
}

.phone-back,
.phone-menu {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  padding: 0.25rem;
  cursor: default;
  line-height: 1;
}

.phone-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  min-width: 0;
  justify-content: center;
}

.phone-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #34c759;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}

.phone-contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  min-width: 0;
}

.phone-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}

.phone-date {
  font-size: 0.75rem;
  color: var(--muted);
}

.phone-tabs {
  display: flex;
  padding: 0 1rem 0.5rem;
  gap: 0.25rem;
}

.phone-tab {
  font-size: 0.8rem;
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.phone-tab.active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.phone-wishlist {
  list-style: none;
  padding: 0 1rem 1.25rem;
  margin: 0;
}

.wishlist-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.wishlist-item:last-child {
  border-bottom: none;
}

.wishlist-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  flex-shrink: 0;
  background: #2c2c2e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
}

.wishlist-icon svg {
  width: 22px;
  height: 22px;
}

.wishlist-item-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.wishlist-item-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
}

.wishlist-item-status {
  font-size: 0.75rem;
  color: var(--muted);
}

/* --- Panel 4: Interested? --- */
.panel-interested {
  background: #070707;
  min-height: 60vh;
  height: 60vh;
}

.panel-interested-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.interested-text {
  font-family: 'Lora', Georgia, serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text);
  margin: 30vh 0 0 0;
  white-space: nowrap;
}

/* --- Statement panels (Cosmos-style one-liners) --- */
.statement {
  font-family: 'Lora', Georgia, serif;
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}

/* --- Waitlist panel --- */
.panel-waitlist {
  background: #070707;
  min-height: 120vh;
  height: 120vh;
  position: relative;
  overflow: hidden;
  align-items: center;
  justify-content: center;
}

.waitlist-balloons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.balloon {
  position: absolute;
  opacity: 0;
  height: auto;
  pointer-events: none;
  user-select: none;
  transition: opacity 0.6s ease-out, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.waitlist-balloons.landed .balloon {
  opacity: 1;
  transform: translate(0, 0);
}

/* Left side balloons */
.balloon-1  { left: 9%;   top: 11%; width: 42px; filter: hue-rotate(210deg) brightness(0.82) saturate(1.3) drop-shadow(2px 8px 14px rgba(0,0,0,0.5));  transform: translate(-20px, 85px); transition-delay: 0s; }
.balloon-2  { left: 4%;   top: 36%; width: 64px; filter: hue-rotate(-108deg) brightness(0.75) saturate(1.3) drop-shadow(3px 10px 16px rgba(0,0,0,0.5)); transform: translate(30px, 90px);  transition-delay: 0.08s; }
.balloon-3  { left: 15%;  top: 48%; width: 40px; filter:                      brightness(0.8)  saturate(1.1) drop-shadow(2px 8px 12px rgba(0,0,0,0.5));  transform: translate(20px, 78px);  transition-delay: 0.14s; }
.balloon-4  { left: 7%;   top: 62%; width: 52px; filter: hue-rotate(192deg)  brightness(0.76) saturate(1.25) drop-shadow(3px 10px 16px rgba(0,0,0,0.5)); transform: translate(-25px, 88px); transition-delay: 0.2s; }
.balloon-5  { left: -2%;  top: 82%; width: 74px; filter: hue-rotate(270deg)  brightness(0.8)  saturate(1.2) drop-shadow(3px 10px 18px rgba(0,0,0,0.5)); transform: translate(-30px, 82px); transition-delay: 0.26s; }
.balloon-11 { left: 12%;  top: 22%; width: 38px; filter: hue-rotate(85deg)   brightness(0.79) saturate(1.15) drop-shadow(2px 8px 12px rgba(0,0,0,0.5)); transform: translate(-15px, 88px); transition-delay: 0.04s; }
.balloon-12 { left: 2%;   top: 55%; width: 58px; filter: hue-rotate(200deg)  brightness(0.77) saturate(1.25) drop-shadow(3px 10px 16px rgba(0,0,0,0.5)); transform: translate(22px, 85px);  transition-delay: 0.16s; }
.balloon-13 { left: 18%;  top: 72%; width: 46px; filter: hue-rotate(-45deg)  brightness(0.8)  saturate(1.1) drop-shadow(2px 8px 14px rgba(0,0,0,0.5)); transform: translate(-28px, 80px); transition-delay: 0.22s; }
.balloon-14 { left: 8%;   top: 92%; width: 62px; filter: hue-rotate(165deg)  brightness(0.76) saturate(1.2) drop-shadow(3px 10px 16px rgba(0,0,0,0.5)); transform: translate(18px, 90px);  transition-delay: 0.28s; }

/* Right side balloons */
.balloon-6  { right: 17%; top: 14%; width: 44px; filter: hue-rotate(112deg)  brightness(0.77) saturate(1.2) drop-shadow(2px 8px 14px rgba(0,0,0,0.5)); transform: translate(25px, 90px);  transition-delay: 0.05s; }
.balloon-7  { right: 4%;  top: 40%; width: 92px; filter: hue-rotate(210deg) brightness(0.82) saturate(1.2) drop-shadow(4px 12px 20px rgba(0,0,0,0.5)); transform: translate(35px, 85px);  transition-delay: 0.11s; }
.balloon-8  { right: 24%; top: 52%; width: 56px; filter: hue-rotate(148deg)  brightness(0.76) saturate(1.3) drop-shadow(3px 10px 16px rgba(0,0,0,0.5)); transform: translate(-20px, 88px); transition-delay: 0.17s; }
.balloon-9  { right: 13%; top: 68%; width: 80px; filter: hue-rotate(118deg)  brightness(0.77) saturate(1.2) drop-shadow(4px 12px 20px rgba(0,0,0,0.5)); transform: translate(30px, 82px);  transition-delay: 0.23s; }
.balloon-10 { right: 21%; top: 88%; width: 48px; filter: hue-rotate(-108deg) brightness(0.75) saturate(1.3) drop-shadow(2px 8px 14px rgba(0,0,0,0.5)); transform: translate(-25px, 78px); transition-delay: 0.3s; }
.balloon-15 { right: 14%; top: 35%; width: 52px; filter: hue-rotate(42deg)   brightness(0.78) saturate(1.2) drop-shadow(3px 10px 16px rgba(0,0,0,0.5)); transform: translate(-18px, 86px); transition-delay: 0.15s; }

.waitlist-content {
  position: relative;
  z-index: 1;
  padding: 2rem 1.5rem;
  padding-top: calc(2rem + 20vh);
  text-align: center;
}

.waitlist-title {
  font-family: 'Lora', Georgia, serif;
  font-size: 32px;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.waitlist-subtitle {
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 16px;
  color: #505050;
  margin-bottom: 3rem;
}

.waitlist-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  max-width: 420px;
  margin: 0 auto;
}

.waitlist-form input {
  flex: 1;
  min-width: 200px;
  padding: 0.9rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.waitlist-form input::placeholder {
  color: var(--muted);
}

.waitlist-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.waitlist-btn {
  padding: 0.85rem 1.75rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  background: linear-gradient(#070707, #070707) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.28) 0%, rgba(255, 255, 255, 0.08) 100%) border-box;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}

.waitlist-btn:hover {
  opacity: 0.95;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

/* --- Waitlist email popup (blur backdrop) --- */
.waitlist-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.waitlist-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.waitlist-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.waitlist-modal-popup {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  background: rgba(16, 16, 16, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.55);
}

.waitlist-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.waitlist-modal-form input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.waitlist-modal-form input::placeholder {
  color: var(--muted);
}

.waitlist-modal-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.waitlist-modal-submit {
  padding: 0.9rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: #141414;
  background: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.waitlist-modal-submit:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.waitlist-modal-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.waitlist-form-message {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}

.waitlist-form-message--success {
  color: #5cb85c;
}

.waitlist-form-message--error {
  color: #e74c3c;
}

