/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 24px 80px;
  background-color: var(--background);
  overflow: hidden;
}

.hero-wallpaper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: radial-gradient(circle at center, rgba(20, 20, 23, 0.4) 0%, rgba(20, 20, 23, 0.95) 100%);
}

.hero-wallpaper-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
  filter: blur(10px);
  transform: scale(1.05);
  animation: slowPan 40s infinite alternate linear;
}

@keyframes slowPan {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.15) translate(-1%, -1%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Dynamic Island Component */
.dynamic-island-container {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
  animation: slideDownFade 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.dynamic-island {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(21, 21, 23, 0.75);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-pill);
  padding: 8px 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.dynamic-island:hover {
  border-color: rgba(255, 77, 106, 0.3);
}

.island-logo {
  display: flex;
  align-items: center;
  color: var(--primary-color);
}

.island-logo svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.island-divider {
  width: 1px;
  height: 12px;
  background-color: var(--border-color);
}

.island-stat {
  display: flex;
  align-items: center;
  gap: 6px;
}

.island-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--success-color);
  display: inline-block;
  box-shadow: 0 0 8px var(--success-color);
}

.island-dot.ping-dot {
  background-color: var(--primary-color);
  box-shadow: 0 0 8px var(--primary-color);
}

.island-val {
  font-family: monospace;
  color: #fff;
  font-weight: 600;
}

.island-label {
  color: var(--text-secondary);
}

@keyframes slideDownFade {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Titles and Descs */
.hero-title {
  font-size: clamp(40px, 8vw, 76px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero-description {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

/* Section Headers (shared across pages) */
.section-header {
  text-align: center;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-accent {
  width: 32px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
  border-radius: 2px;
  margin-bottom: 4px;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.6;
}

/* Video Showcase Section */
.video-section {
  padding: 100px 0;
  background-color: var(--background-secondary);
  border-top: 1px solid var(--border-color);
}

.video-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.video-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(255, 77, 106, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.video-container {
  position: relative;
  width: 100%;
  padding: 8px;
  background: rgba(21, 21, 23, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--border-radius-large);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  aspect-ratio: 16/9;
  overflow: hidden;
}

.video-container {
  border: 1px solid rgba(255, 77, 106, 0.15);
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border-radius: calc(var(--border-radius-large) - 8px);
  border: none;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--border-radius-large) - 8px);
  background: linear-gradient(135deg, rgba(255, 77, 106, 0.05), rgba(98, 78, 255, 0.05));
  border: 1px solid rgba(255, 77, 106, 0.1);
}

.soon-text {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* Call to action */
.cta-section {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(180deg, var(--background-secondary) 0%, var(--background) 100%);
  border-top: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.cta-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 650px;
  margin: 0 auto;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 77, 106, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-color);
  padding: 40px 0;
  background-color: var(--background);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 16px;
  color: #fff;
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 24px;
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-links a:hover {
  color: #fff;
}
