/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
}

body {
  font-family: Geist, sans-serif;
  background: linear-gradient(180deg, #ffffff, #d7ecff);
  background-attachment: fixed;
  background-size: 100% 100%;
  color: #003669;
  padding: 0 1rem;
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* Navigation */
.nav {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo {
  width: 28px;
  height: 28px;
}

.brand {
  font-size: 1rem;
  font-weight: 500;
}

.buy-btn {
  background: black;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.buy-btn.disabled {
  background: #cccccc;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Notification */
.notification {
  background: white;
  border: 1px solid rgba(0, 54, 105, 0.1);
  border-radius: 999px;
  padding: 0.75rem 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: opacity 0.3s ease;
}

.notification.blur {
  filter: blur(4px);
  opacity: 0.6;
}

.notification-icon {
  font-size: 1.2rem;
}

.notification-text {
  font-size: 0.9rem;
  color: #003669;
}

.notification-email {
  font-weight: 500;
}

/* Hero */
.hero {
  text-align: center;
  padding: 2rem 1rem;
  max-width: 1280px;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hero-icon {
  width: 96px;
  height: 96px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 6vw, 3.75rem);
  font-weight: 600;
  line-height: 1.2;
  background: linear-gradient(to bottom, #00b7ff, #0089ff);
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.subtext {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 2rem;
}

.cta {
  background: black;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
  font-size: 1rem;
}

.cta.disabled {
  background: #cccccc;
  color: #666666;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
  justify-content: center;
  align-items: center;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #003669;
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 54, 105, 0.1);
  transition: all 0.2s ease;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.social-link svg {
  flex-shrink: 0;
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  opacity: 0.8;
  margin-top: auto;
}

.footer a {
  color: #003669;
  text-decoration: none;
  font-size: 0.9rem;
}
