:root {
  /* Color Palette - Premium Dark Mode Indigo / Academic Blue */
  --clr-bg: #0B0F19;
  /* Deep Academic Blue Dark */
  --clr-surface: rgba(17, 24, 39, 0.7);
  --clr-surface-hover: rgba(30, 41, 59, 0.85);
  --clr-border: rgba(255, 255, 255, 0.08);
  --clr-text-main: #FFFFFF;
  --clr-text-muted: #94A3B8;

  /* Primary Gradient */
  --clr-brand-1: #4F46E5;
  /* Vibrant Indigo */
  --clr-brand-2: #2563EB;
  /* Academic/Royal Blue */
  --clr-brand-3: #1E40AF;
  /* Deep Navy Accent */

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--clr-bg);
  color: var(--clr-text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Background animated blob */
.blob-bg {
  position: fixed;
  top: -20%;
  left: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, var(--clr-brand-1) 0%, rgba(108, 56, 255, 0) 60%);
  filter: blur(140px);
  opacity: 0.25;
  z-index: -1;
  animation: drift 20s infinite alternate ease-in-out;
}

.blob-bg::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -50%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, var(--clr-brand-2) 0%, rgba(36, 198, 254, 0) 60%);
  filter: blur(120px);
  opacity: 0.2;
}

@keyframes drift {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(10%, 15%) scale(1.1);
  }
}

/* Utilities */
.text-gradient {
  background: linear-gradient(135deg, var(--clr-brand-2), var(--clr-brand-1));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--clr-border);
  margin-bottom: 1.5rem;
}

.neon-badge {
  background: rgba(108, 56, 255, 0.1);
  border-color: rgba(108, 56, 255, 0.3);
  color: var(--clr-brand-2);
  box-shadow: 0 0 20px rgba(108, 56, 255, 0.2);
}

/* Typography */
h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.1;
}

.section-title {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 3rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(3, 4, 11, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--clr-border);
  padding: 1rem 0;
}

.nav-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-name {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--clr-brand-1), var(--clr-brand-2));
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 24px rgba(108, 56, 255, 0.25);
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(36, 198, 254, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 3rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid var(--clr-border);
  transition: var(--transition-smooth);
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

/* Main Container */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 3rem;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  animation: fadeUp 1s ease-out forwards;
}

.hero-title {
  font-size: 4.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: -1.5px;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--clr-text-muted);
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
}

/* Mockup Animation - macOS Window */
.mockup-frame {
  width: 600px;
  height: 480px;
  background: rgba(17, 24, 39, 0.4);
  border: 1px solid var(--clr-border);
  border-radius: 12px;
  padding: 0;
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transform: rotateX(8deg);
  transition: transform 0.8s ease;
  animation: floatLarge 8s ease-in-out infinite;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mockup-frame:hover {
  transform: rotateX(0deg);
}

.mockup-screen {
  width: 100%;
  flex: 1;
  background: var(--clr-bg);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-logo {
  width: 80px;
  height: 80px;
  opacity: 0.8;
  filter: drop-shadow(0 0 20px rgba(36, 198, 254, 0.4));
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotateY(-15deg) rotateX(5deg);
  }

  50% {
    transform: translateY(-20px) rotateY(-10deg) rotateX(8deg);
  }
}

@keyframes floatLarge {

  0%,
  100% {
    transform: translateY(0) rotateX(8deg);
  }

  50% {
    transform: translateY(-30px) rotateX(12deg);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Features Section */
.features-section {
  padding: 8rem 0;
}

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

.feature-card {
  background: var(--clr-surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--clr-border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(36, 198, 254, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-card:hover::before {
  opacity: 1;
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(108, 56, 255, 0.2), rgba(36, 198, 254, 0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--clr-brand-2);
}

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Coming Soon Section */
.coming-soon-section {
  padding: 6rem 0 10rem;
}

.glass-card {
  background: var(--clr-surface);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--clr-border);
  border-radius: 32px;
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.glass-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(108, 56, 255, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.teaser-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.teaser-text {
  font-size: 1.2rem;
  color: var(--clr-text-muted);
  margin-bottom: 2.5rem;
}

.teaser-text strong {
  color: var(--clr-text-main);
  font-weight: 600;
}

.notify-form {
  display: flex;
  gap: 1rem;
  max-width: 450px;
  margin: 0 auto;
}

.glass-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--clr-border);
  border-radius: 3rem;
  padding: 0 1.5rem;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: var(--transition-smooth);
}

.glass-input:focus {
  border-color: var(--clr-brand-2);
  background: rgba(36, 198, 254, 0.05);
}

/* Footer */
.footer {
  border-top: 1px solid var(--clr-border);
  padding: 3rem 0;
  background: rgba(3, 4, 11, 0.9);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--clr-text-muted);
}

.logo-small {
  width: 24px;
  height: 24px;
  opacity: 0.5;
  filter: grayscale(100%);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: var(--clr-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.footer-links a:hover,
.footer-email:hover {
  color: var(--clr-brand-2);
}

.footer-email {
  color: var(--clr-text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

/* Responsive Design */
@media (max-width: 968px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding-top: 8rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    margin: 0 auto 2.5rem;
  }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .notify-form {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .glass-input {
    width: 100%;
    padding: 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* Modal Styles */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 4, 11, 0.85);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-container {
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: 32px;
  width: 100%;
  max-width: 500px;
  padding: 3rem;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal-container {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--clr-text-muted);
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: white;
}

.modal-header {
  text-align: center;
  margin-bottom: 2rem;
}

.modal-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  color: var(--clr-brand-2);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.reservation-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  margin-left: 0.5rem;
}

.form-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--clr-border);
  border-radius: 1rem;
  padding: 1rem 1.2rem;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--clr-brand-2);
  background: rgba(36, 198, 254, 0.05);
  box-shadow: 0 0 0 4px rgba(36, 198, 254, 0.1);
}

.modal-footer-info {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--clr-border);
  text-align: center;
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.highlight-info {
  display: block;
  color: var(--clr-brand-1);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.release-info {
  font-weight: 600;
  color: white;
}

/* Cookie Banner */
.cookie-banner-wrapper {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  justify-content: center;
  animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cookie-banner {
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--clr-border);
  border-radius: 20px;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  width: 100%;
  max-width: 900px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.cookie-icon {
  width: 44px;
  height: 44px;
  background: rgba(79, 70, 229, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-brand-1);
  flex-shrink: 0;
}

.cookie-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.cookie-text a {
  color: var(--clr-brand-2);
  text-decoration: none;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-cookie-primary {
  background: var(--clr-brand-1);
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-cookie-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--clr-text-muted);
  border: 1px solid var(--clr-border);
  padding: 0.7rem 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-cookie-primary:hover {
  background: var(--clr-brand-2);
  transform: translateY(-2px);
}

.btn-cookie-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
  }
  
  .cookie-actions {
    width: 100%;
  }
  
  .btn-cookie-primary, .btn-cookie-secondary {
    flex: 1;
    text-align: center;
  }
}

/* Countdown Styles */
.countdown-container {
  margin-bottom: 3rem;
  animation: fadeUp 1s ease-out 0.3s forwards;
  opacity: 0;
}

.countdown-header {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--clr-brand-2);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.countdown-header::after {
  content: '';
  height: 1px;
  width: 40px;
  background: var(--clr-brand-1);
  display: inline-block;
}

.countdown-timer {
  display: flex;
  gap: 1.5rem;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--clr-border);
  padding: 1rem 1.2rem;
  border-radius: 18px;
  min-width: 80px;
  backdrop-filter: blur(8px);
  transition: var(--transition-smooth);
}

.countdown-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--clr-brand-2);
  transform: translateY(-5px);
}

.countdown-value {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  background: linear-gradient(135deg, white, var(--clr-text-muted));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.countdown-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  letter-spacing: 1px;
  font-weight: 500;
}

@media (max-width: 600px) {
  .countdown-timer {
    gap: 0.8rem;
    justify-content: center;
  }
  
  .countdown-item {
    min-width: 65px;
    padding: 0.8rem;
  }
  
  .countdown-value {
    font-size: 1.6rem;
  }
  
  .countdown-header {
    justify-content: center;
  }
}