/* ============================================
   CSS VARIABLES & RESET
   ============================================ */
:root {
  --bg: #0F1117;
  --card: #1A1D27;
  --card-alt: #1E2130;
  --muted: #6B7280;
  --accent: #7C6FF0;
  --accent-hover: #6B5CE7;
  --text-primary: #F1F3F9;
  --text-secondary: #9BA4B2;
  --border: #2A2D3E;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
  --shadow-lg: 0 10px 30px rgba(0,0,0,0.5);
  --radius: 16px;
  --radius-sm: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ============================================
   BUTTONS & INTERACTIVE ELEMENTS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  outline: none;
}

.btn:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(180deg, rgba(15, 17, 23, 0.98) 0%, rgba(15, 17, 23, 0.95) 100%);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(124, 111, 240, 0.12);
  box-shadow: 0 1px 0 0 rgba(124, 111, 240, 0.08);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 0 0 rgba(107, 92, 231, 0.1);
}

header.hidden {
  transform: translateY(-100%);
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--accent) 0%, #9B87F5 100%);
  transition: width 0.1s ease-out;
  z-index: 901;
}

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

/* Logo with Social Container */
.logo-with-social {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-icon-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon {
  width: 42px;
  height: 42px;
  transition: var(--transition);
  filter: drop-shadow(0 2px 8px rgba(107, 92, 231, 0.2));
}

.logo:hover .logo-icon {
  filter: drop-shadow(0 4px 12px rgba(107, 92, 231, 0.3));
  transform: rotate(-5deg);
}

.logo-text {
  background: linear-gradient(135deg, var(--accent) 0%, #9B87F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

/* Header Social Links */
.header-social {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  padding-left: 1.5rem;
  border-left: 1px solid var(--border);
}

.header-social .social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(107, 92, 231, 0.05);
  border: 1px solid rgba(107, 92, 231, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: var(--transition);
  text-decoration: none;
}

.header-social .social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(107, 92, 231, 0.3);
}

.header-social .social-link svg {
  width: 18px;
  height: 18px;
}

/* Language Switcher */
.language-switcher {
  display: flex;
  gap: 0.25rem;
  align-items: center;
  padding-left: 1.5rem;
  margin-left: 1rem;
  border-left: 1px solid var(--border);
}

.lang-btn {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.lang-btn:hover {
  background: rgba(107, 92, 231, 0.05);
  border-color: rgba(107, 92, 231, 0.1);
  color: var(--accent);
}

.lang-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.lang-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  align-items: center;
}

.nav-links li:not(:last-child) {
  margin-right: 1.5rem;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  position: relative;
  padding: 0.625rem 1rem;
  border-radius: 8px;
  display: inline-block;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(107, 92, 231, 0.08);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link:hover::before {
  opacity: 1;
}

.nav-link:hover {
  color: var(--accent);
}

.nav-link.active {
  color: var(--accent);
  font-weight: 600;
}

.nav-link.active::before {
  opacity: 1;
}

/* Dropdown Navigation */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--text-primary);
  background: none;
  border: none;
  font-family: inherit;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.625rem 1rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}

.nav-dropdown-toggle::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(107, 92, 231, 0.08);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-dropdown-toggle:hover::before,
.nav-dropdown.active .nav-dropdown-toggle::before {
  opacity: 1;
}

.nav-dropdown-toggle:hover,
.nav-dropdown.active .nav-dropdown-toggle {
  color: var(--accent);
}

.nav-dropdown-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.dropdown-icon {
  transition: transform 0.3s ease;
  margin-top: 2px;
}

.nav-dropdown.active .dropdown-icon {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 200px;
  background: var(--card);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  list-style: none;
  padding: 0.5rem 0;
  z-index: 1000;
  border: 1px solid var(--border);
}

.nav-dropdown.active .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.nav-dropdown-item:hover {
  background: rgba(107, 92, 231, 0.08);
  color: var(--accent);
  padding-left: 1.5rem;
}

.nav-dropdown-item:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: -2px;
  background: rgba(107, 92, 231, 0.08);
}

/* Enhanced CTA Button */
.btn-cta {
  background: linear-gradient(135deg, var(--accent) 0%, #9B87F5 100%);
  box-shadow: 0 4px 15px rgba(107, 92, 231, 0.3);
  margin-left: 1.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn-cta:hover::before {
  width: 300px;
  height: 300px;
}

.btn-cta:hover {
  box-shadow: 0 6px 25px rgba(107, 92, 231, 0.4);
  transform: translateY(-2px);
}

.btn-cta .btn-icon {
  transition: transform 0.3s ease;
}

.btn-cta:hover .btn-icon {
  transform: translateX(3px);
}

/* Animated Hamburger Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 1100;
  border-radius: 8px;
  transition: var(--transition);
}

.mobile-menu-btn:hover {
  background: rgba(107, 92, 231, 0.08);
}

.mobile-menu-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hamburger-line {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--text-primary);
  margin: 5px auto;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
}
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.mobile-menu-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* Mobile Navigation */
@media (max-width: 968px) {
  .nav-container {
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .logo-with-social {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  /* Hide logo icon on mobile, keep text */
  .logo-icon-wrapper {
    display: none !important;
  }

  .logo {
    font-size: 1.375rem;
    gap: 0.625rem;
  }

  /* Show language switcher on mobile */
  .language-switcher {
    display: flex !important;
    padding-left: 1rem;
    margin-left: 1rem;
    border-left: 1px solid var(--border);
  }

  /* Hide social links on mobile to save space */
  .header-social {
    display: none !important;
  }

  /* Show mobile menu button */
  .mobile-menu-btn {
    display: block !important;
  }

  /* Mobile navigation links */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--card);
    padding: 6rem 2rem 2rem;
    flex-direction: column;
    gap: 0.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 1050;
    overflow-y: auto;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin-right: 0 !important;
  }

  .nav-link,
  .nav-dropdown-toggle {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.0625rem;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(107, 92, 231, 0.03);
    margin-top: 0.5rem;
    padding: 0.5rem;
    border-radius: 8px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-dropdown.active .nav-dropdown-menu {
    max-height: 500px;
  }

  .nav-dropdown-item {
    padding: 0.875rem 1rem;
    font-size: 1rem;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    margin-top: 1rem;
  }
}

/* Additional Mobile Adjustments for Small Screens */
@media (max-width: 640px) {
  .nav-container {
    padding: 0.875rem 1rem;
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo-icon {
    width: 32px;
    height: 32px;
  }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 160px;
  overflow: hidden;
  background: linear-gradient(180deg,
    #0F1117 0%,
    #0F1117 50%,
    rgba(15, 17, 23, 0.95) 100%
  );
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #6B5CE7 0%, #9B87F5 100%);
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
  top: 40%;
  right: -150px;
  animation-delay: 5s;
}

.shape-3 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  bottom: -100px;
  left: 30%;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.1); }
  66% { transform: translate(-20px, 20px) scale(0.9); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-text h1 {
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, #9B87F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.store-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: #1F2937;
  color: white;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  font-weight: 500;
  font-size: 0.95rem;
}

.store-badge:hover {
  background: #374151;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.store-badge svg {
  width: 24px;
  height: 24px;
}

.store-badge .store-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
}

.store-badge .store-label {
  font-size: 0.7rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.store-badge .store-name {
  font-size: 1rem;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.device-mockup {
  position: relative;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  animation: floatDevice 6s ease-in-out infinite;
}

@keyframes floatDevice {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.device-frame {
  position: relative;
  aspect-ratio: 9/19.5;
  background: linear-gradient(135deg, #1F2937 0%, #111827 100%);
  border-radius: 40px;
  padding: 16px;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.3),
    0 0 0 8px rgba(255,255,255,0.1);
}

.device-screen {
  width: 100%;
  height: 100%;
  background: #000000;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
}

/* ============================================
   CAROUSEL STYLES
   ============================================ */
.carousel-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.carousel-dot:hover {
  background: var(--muted);
  transform: scale(1.2);
}

.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 5px;
}

.carousel-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.screen-content {
  padding: 2rem 1.5rem;
  text-align: center;
}

.tapping-point {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  margin: 2rem auto;
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(107, 92, 231, 0.7);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(107, 92, 231, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 20px rgba(107, 92, 231, 0);
  }
}

@media (max-width: 968px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .visual-circle {
    margin: 0 auto;
  }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: 5rem 2rem;
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(124, 111, 240, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at bottom left, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
    linear-gradient(180deg,
      rgba(15, 17, 23, 0.95) 0%,
      #0F1117 15%,
      #0F1117 85%,
      rgba(15, 17, 23, 0.95) 100%
    );
}

/* Smooth top transition from hero */
.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg,
    rgba(15, 17, 23, 0.7) 0%,
    rgba(15, 17, 23, 0.3) 40%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.features-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--card);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}

.feature-card.visible {
  animation: fadeInUp 0.6s ease forwards;
}

.feature-card:nth-child(2).visible {
  animation-delay: 0.1s;
}

.feature-card:nth-child(3).visible {
  animation-delay: 0.2s;
}

.feature-card:nth-child(4).visible {
  animation-delay: 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent) 0%, #9B87F5 100%);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 1rem;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: 5rem 2rem;
  background:
    radial-gradient(ellipse at top left, rgba(124, 111, 240, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
    linear-gradient(180deg,
      rgba(15, 17, 23, 0.95) 0%,
      #131620 15%,
      #131620 85%,
      rgba(15, 17, 23, 0.95) 100%
    );
  position: relative;
}

/* Smooth transition from features */
.how-it-works::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(180deg,
    rgba(15, 17, 23, 0.8) 0%,
    rgba(15, 17, 23, 0.4) 40%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 0;
}

.steps-container {
  max-width: 900px;
  margin: 4rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
}

.steps-progress-line {
  position: absolute;
  left: 40px;
  top: 100px;
  bottom: 100px;
  width: 3px;
  background: linear-gradient(180deg, var(--accent) 0%, #9B87F5 50%, #10B981 100%);
  border-radius: 2px;
  opacity: 0.3;
  z-index: 0;
}

.step-card {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
}

.step-card.visible {
  animation: fadeInUp 0.6s ease forwards;
}

.step-card:nth-child(2).visible {
  animation-delay: 0.15s;
}

.step-card:nth-child(3).visible {
  animation-delay: 0.3s;
}

.step-card:nth-child(4).visible {
  animation-delay: 0.45s;
}

.step {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 2.5rem;
  align-items: start;
  background: var(--card);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, #9B87F5 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.step:hover::before {
  transform: scaleX(1);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.step-number {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent) 0%, #9B87F5 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 800;
  color: white;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
}

.step:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.step-number .number {
  font-size: 2.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.step-icon {
  width: 32px;
  height: 32px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.25rem;
}

.step-content {
  padding-top: 0.5rem;
}

.step-content h3 {
  margin-bottom: 1rem;
  color: var(--text-primary);
  font-size: 1.75rem;
}

.step-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .step {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }

  .step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto;
  }

  .step-number .number {
    font-size: 2rem;
  }

  .step-icon {
    width: 28px;
    height: 28px;
  }

  .steps-progress-line {
    display: none;
  }

  .step-content {
    text-align: center;
    padding-top: 0;
  }

  .step-content h3 {
    font-size: 1.5rem;
  }
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 5rem 2rem;
  background: linear-gradient(180deg,
    rgba(15, 17, 23, 0.95) 0%,
    #0F1117 20%,
    #0F1117 80%,
    rgba(124, 111, 240, 0.04) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Pricing background shapes */
.pricing-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.pricing-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: float 20s ease-in-out infinite;
}

.pricing-shape-1 {
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, #6B5CE7 0%, #9B87F5 100%);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.pricing-shape-2 {
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  bottom: -120px;
  left: -80px;
  animation-delay: 7s;
}

.pricing-shape-3 {
  width: 320px;
  height: 320px;
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

.section-header,
.billing-toggle,
.product-cards {
  position: relative;
  z-index: 1;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0 4rem;
}

.toggle-switch {
  position: relative;
  width: 60px;
  height: 32px;
  background: var(--border);
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition);
}

.toggle-switch.active {
  background: var(--accent);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch.active::after {
  left: 32px;
}

.billing-toggle span {
  font-weight: 600;
  color: var(--text-secondary);
}

.billing-toggle span.active {
  color: var(--text-primary);
}

.product-cards {
  max-width: 896px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--card);
  padding: 2.5rem 2rem 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Subtle top-edge gradient accent line */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, #9B87F5 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover::before,
.product-card.featured::before {
  opacity: 1;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(107, 92, 231, 0.25);
}

.product-card.featured {
  border-color: rgba(107, 92, 231, 0.2);
  box-shadow: var(--shadow-lg);
}

/* Card variant: events */
.product-card--events {
  background: linear-gradient(160deg, var(--card) 60%, rgba(124, 111, 240, 0.06) 100%);
}

/* Card variant: apps */
.product-card--apps {
  background: linear-gradient(160deg, var(--card) 60%, rgba(16, 185, 129, 0.06) 100%);
}

/* Card header row */
.product-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

/* Icon wrap */
.product-card__icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-card__icon-wrap--events {
  background: linear-gradient(135deg, var(--accent) 0%, #9B87F5 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(107, 92, 231, 0.3);
}

.product-card__icon-wrap--apps {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Badge — now inline in the header */
.product-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(107, 92, 231, 0.1);
  color: var(--accent);
  border: 1px solid rgba(107, 92, 231, 0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.product-badge--apps {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border-color: rgba(16, 185, 129, 0.2);
}

/* Card description */
.product-card__desc {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.product-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.product-card .price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 1.5rem 0;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price .currency {
  font-size: 1.5rem;
  color: var(--muted);
}

.price .period {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.product-features {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-features li {
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  background: rgba(107, 92, 231, 0.05);
  border: 1px solid rgba(107, 92, 231, 0.12);
  border-radius: 10px;
  transition: var(--transition);
}

.product-features li:hover {
  background: rgba(107, 92, 231, 0.09);
  border-color: rgba(107, 92, 231, 0.22);
  transform: translateX(3px);
}

.product-features li:last-child {
  border-bottom: 1px solid rgba(107, 92, 231, 0.12);
}

.product-features li::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  min-width: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='10' fill='%236B5CE7' fill-opacity='0.15'/%3E%3Cpath d='M6 10l3 3 5-6' stroke='%236B5CE7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.product-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}

/* App List */
.app-list {
  list-style: none;
  margin: 0.5rem 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.app-list-item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  background: rgba(107, 92, 231, 0.04);
  border: 1px solid rgba(107, 92, 231, 0.08);
  transition: var(--transition);
}

.app-list-item:hover {
  background: rgba(107, 92, 231, 0.08);
  border-color: rgba(107, 92, 231, 0.18);
  transform: translateX(3px);
}

.app-list-placeholder {
  opacity: 0.45;
}

/* Per-app icon colors */
.app-list-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.app-list-icon--kalensio {
  background: linear-gradient(135deg, #6B5CE7 0%, #9B87F5 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(107, 92, 231, 0.25);
}

.app-list-icon--powermapp {
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.25);
}

.app-list-icon--aitapp {
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.25);
}

.app-list-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.15rem;
  min-width: 0;
}

.app-list-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.app-list-desc {
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-list-link {
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(107, 92, 231, 0.08);
  text-decoration: none;
  flex-shrink: 0;
  transition: var(--transition);
}

.app-list-link:hover {
  background: var(--accent);
  color: white;
  transform: translateX(2px);
}

.app-list-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #1A1D27 0%, #0F1117 60%, rgba(124, 111, 240, 0.08) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.cta-bg-shape {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(124, 111, 240, 0.12);
  filter: blur(100px);
  animation: float 15s ease-in-out infinite;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.cta-content .btn-primary {
  background: white;
  color: var(--accent);
}

.cta-content .btn-primary:hover {
  background: var(--bg);
}

/* CTA inverse button — works in both light and dark mode */
.btn-cta-inverse {
  background: var(--accent) !important;
  color: white !important;
  border: 2px solid var(--accent) !important;
}

.btn-cta-inverse:hover {
  background: var(--accent-hover) !important;
  color: white !important;
  border-color: var(--accent-hover) !important;
}

.cta-content .store-badges {
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: linear-gradient(180deg,
    rgba(124, 111, 240, 0.04) 0%,
    #0F1117 15%,
    #0F1117 100%
  );
  border-top: 1px solid rgba(124, 111, 240, 0.12);
}

/* Smooth transition from CTA section */
footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(107, 92, 231, 0.2) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.footer-main {
  padding: 4rem 2rem 3rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 4rem;
  align-items: start;
}

/* Brand Section */
.footer-brand-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
}

.footer-logo svg {
  width: 40px;
  height: 40px;
}

.footer-tagline {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 380px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: var(--transition);
  text-decoration: none;
}

.social-link:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

/* Links Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-list a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  display: inline-block;
  position: relative;
}

.footer-list a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.footer-list a:hover {
  color: var(--accent);
}

.footer-list a:hover::after {
  width: 100%;
}

/* Footer Bottom */
.footer-bottom {
  padding: 2rem;
  border-top: 1px solid var(--border);
  background: var(--card);
}

.footer-bottom .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  grid-template-columns: 1fr;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.footer-love {
  color: var(--text-secondary);
}

.footer-love .heart {
  color: #EF4444;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Responsive Design */
@media (max-width: 968px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .footer-main {
    padding: 3rem 1.5rem 2rem;
  }

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

  .footer-logo svg {
    width: 36px;
    height: 36px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-links-grid {
    gap: 2rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   ACCESSIBILITY: REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-shape,
  .device-mockup,
  .tapping-point,
  .cta-bg-shape {
    animation: none !important;
  }

  .carousel-track {
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   COMING SOON PAGE STYLES
   ============================================ */

/* ============================================
   COMING SOON HERO SECTION
   ============================================ */
.coming-soon-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 2rem 4rem;
  overflow: hidden;
  background: linear-gradient(180deg,
    #0F1117 0%,
    #0F1117 60%,
    rgba(124, 111, 240, 0.04) 100%
  );
}

/* Animated Background Shapes */
.coming-soon-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.cs-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  animation: float 20s ease-in-out infinite;
}

.cs-shape-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #6B5CE7 0%, #9B87F5 100%);
  top: -200px;
  right: -150px;
  animation-delay: 0s;
}

.cs-shape-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
  bottom: -150px;
  left: -100px;
  animation-delay: 7s;
}

.cs-shape-3 {
  width: 450px;
  height: 450px;
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

/* Main Content Container */
.coming-soon-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.coming-soon-main {
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

/* Status Badge */
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(107, 92, 231, 0.1);
  border: 2px solid rgba(107, 92, 231, 0.2);
  border-radius: 50px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

.status-badge svg {
  color: var(--accent);
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Heading */
.coming-soon-main h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, #9B87F5 50%, #10B981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  max-width: 600px;
}

/* ============================================
   EMAIL NOTIFICATION FORM
   ============================================ */
.notify-form {
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  position: relative;
}

.email-input {
  flex: 1;
  padding: 1.25rem 1.5rem;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: var(--transition);
  background: var(--card);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.email-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(107, 92, 231, 0.1);
}

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

.notify-btn {
  padding: 1.25rem 2rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.notify-btn svg {
  transition: transform 0.3s ease;
}

.notify-btn:hover svg {
  transform: translateX(3px);
}

.notify-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Form Messages */
.form-message {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  animation: slideDown 0.3s ease;
}

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

.form-message.success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #059669;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #DC2626;
}

/* Privacy Note */
.privacy-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.privacy-note svg {
  color: var(--muted);
  flex-shrink: 0;
}

/* ============================================
   VISUAL ELEMENT (Right Side)
   ============================================ */
.coming-soon-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
}

.visual-circle {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatDevice 6s ease-in-out infinite;
}

.pulse-ring {
  position: absolute;
  inset: -40px;
  border: 3px solid var(--accent);
  border-radius: 50%;
  opacity: 0.3;
  animation: pulse-ring 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.pulse-ring-2 {
  animation-delay: 1.5s;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.visual-icon {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--accent) 0%, #9B87F5 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 20px 60px rgba(107, 92, 231, 0.3),
    0 0 0 20px rgba(107, 92, 231, 0.05);
  animation: glow 4s ease-in-out infinite;
}

.visual-icon svg {
  width: 120px;
  height: 120px;
  color: white;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

@keyframes glow {
  0%, 100% {
    box-shadow:
      0 20px 60px rgba(107, 92, 231, 0.3),
      0 0 0 20px rgba(107, 92, 231, 0.05);
  }
  50% {
    box-shadow:
      0 20px 80px rgba(107, 92, 231, 0.5),
      0 0 0 30px rgba(107, 92, 231, 0.1);
  }
}

/* ============================================
   COUNTDOWN TIMER (OPTIONAL)
   ============================================ */
.countdown-section {
  margin-top: 4rem;
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1;
  max-width: 800px;
  width: 100%;
}

.countdown-section h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.countdown-timer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(107, 92, 231, 0.05) 0%, rgba(155, 135, 245, 0.05) 100%);
  border-radius: var(--radius-sm);
  border: 2px solid rgba(107, 92, 231, 0.1);
}

.time-value {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent) 0%, #9B87F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.time-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .coming-soon-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .coming-soon-main {
    max-width: 700px;
    margin: 0 auto;
  }

  .status-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .form-group {
    margin: 0 auto;
  }

  .coming-soon-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .visual-circle {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .visual-icon {
    width: 180px;
    height: 180px;
  }

  .visual-icon svg {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 768px) {
  .coming-soon-hero {
    padding: 120px 1.5rem 3rem;
  }

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

  .notify-btn {
    width: 100%;
    justify-content: center;
  }

  .countdown-timer {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .time-value {
    font-size: 2.5rem;
  }

  .time-unit {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .status-badge {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }

  .status-badge svg {
    width: 16px;
    height: 16px;
  }

  .coming-soon-main h1 {
    font-size: 2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .email-input,
  .notify-btn {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .visual-circle {
    width: 220px;
    height: 220px;
  }

  .visual-icon {
    width: 140px;
    height: 140px;
  }

  .visual-icon svg {
    width: 80px;
    height: 80px;
  }
}

/* ============================================
   ACCESSIBILITY: REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .cs-shape,
  .visual-circle,
  .pulse-ring,
  .visual-icon,
  .status-badge {
    animation: none !important;
  }

  .status-badge svg {
    animation: none !important;
  }
}

/* ============================================
   PRINT STYLES FOR A5 FLYER
   ============================================ */
@media print {
  /* Global print resets */
  @page {
    size: A5;
    margin: 0;
  }

  body {
    margin: 0;
    padding: 0;
  }

  /* Hide non-printable elements */
  .print-button,
  .flyer-header,
  header,
  footer,
  nav,
  .no-print {
    display: none !important;
  }

  /* Flyer-specific print styles */
  .flyer-container {
    display: block;
    width: 100%;
  }

  .flyer-page {
    width: 148mm;
    height: 210mm;
    margin: 0;
    padding: 0;
    box-shadow: none;
    page-break-after: always;
    page-break-inside: avoid;
  }

  .flyer-page:last-child {
    page-break-after: auto;
  }

  /* Ensure background colors and gradients print */
  .flyer-front,
  .cta-section,
  .detail-box,
  .front-icon-card,
  .front-highlight {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    color-adjust: exact;
  }

  /* Optimize text for print */
  body,
  .flyer-page {
    font-size: 11pt;
    line-height: 1.4;
  }

  /* Ensure QR code area is visible */
  .qr-placeholder {
    border: 2px solid #6B5CE7;
  }
}

/* ============================================
   A5 FLYER UTILITIES
   ============================================ */
.flyer-print-note {
  background: #FEF3C7;
  border: 2px solid #F59E0B;
  border-radius: var(--radius-sm);
  padding: 1rem;
  margin: 1rem 0;
  text-align: center;
}

.flyer-print-note p {
  color: #92400E;
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0;
}
