/* Nutricel Cloudflare Pages Landing Page Stylesheet */
:root {
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  --primary: #059669;
  --primary-hover: #047857;
  --primary-light: #ecfdf5;
  --primary-dark: #064e3b;
  --primary-border: #a7f3d0;
  
  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  
  --emerald-gradient: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
  --dark-gradient: linear-gradient(180deg, #0f172a 0%, #020617 100%);
  --card-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
  --card-hover-shadow: 0 20px 35px -10px rgba(5, 150, 105, 0.15), 0 10px 15px -3px rgba(15, 23, 42, 0.05);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
  background-color: #ffffff;
  color: var(--slate-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Layout Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utility */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--slate-900);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

p {
  color: var(--slate-600);
  font-size: 1.05rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
}

/* Header & Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--slate-200);
  transition: all 0.3s ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 1.35rem;
  color: var(--slate-900);
}

.brand-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.brand-badge {
  font-size: 0.65rem;
  font-weight: 800;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-border);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--slate-600);
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.3);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(5, 150, 105, 0.4);
}

.btn-secondary {
  background: var(--slate-100);
  color: var(--slate-800);
  border: 1px solid var(--slate-200);
}

.btn-secondary:hover {
  background: var(--slate-200);
  color: var(--slate-950);
}

.btn-outline-primary {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid var(--primary);
}

.btn-outline-primary:hover {
  background: var(--primary-light);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 70px 0 90px;
  background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero-content {
  max-width: 620px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

.hero-pill-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.35);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  color: var(--slate-900);
}

.hero-title .highlight {
  background: linear-gradient(135deg, #059669 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--slate-600);
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

/* App Store Badges Group */
.store-badges-container {
  padding-top: 24px;
  border-top: 1px solid var(--slate-200);
}

.store-badges-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--slate-500);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.store-badges-label .coming-soon-tag {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
}

.store-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 18px;
  background: var(--slate-900);
  color: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid var(--slate-800);
  transition: all 0.25s ease;
  position: relative;
  cursor: pointer;
  min-width: 220px;
  user-select: none;
}

.store-badge:hover {
  background: var(--slate-950);
  border-color: var(--slate-700);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.35);
}

.store-badge-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.store-badge svg,
.store-badge .store-icon {
  width: 26px;
  height: 26px;
  fill: currentColor;
  flex-shrink: 0;
}

.store-badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-badge-subtitle {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--slate-400);
  line-height: 1.1;
}

.store-badge-title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
}

.store-badge-tag {
  font-size: 0.64rem;
  font-weight: 800;
  background: rgba(245, 158, 11, 0.16);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Interactive Device Mockup */
.hero-mockup-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}

.mockup-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.25) 0%, rgba(255, 255, 255, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  z-index: 1;
}

.device-frame {
  position: relative;
  z-index: 2;
  width: 320px;
  height: 640px;
  background: #0f172a;
  border: 10px solid #1e293b;
  border-radius: 46px;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.device-notch {
  width: 120px;
  height: 22px;
  background: #1e293b;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  z-index: 10;
}

.device-screen {
  background: #ffffff;
  height: 100%;
  width: 100%;
  overflow-y: auto;
  font-size: 0.8rem;
  padding: 30px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.device-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--slate-100);
}

.device-app-header .logo-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  color: var(--slate-900);
  font-size: 0.9rem;
}

.device-app-header .logo-mini img {
  width: 20px;
  height: 20px;
}

.device-calorie-card {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  color: #ffffff;
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.device-cal-num {
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}

.device-cal-label {
  font-size: 0.68rem;
  opacity: 0.85;
}

.device-macro-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.device-macro-item {
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-sm);
  padding: 6px;
  text-align: center;
}

.device-macro-item .name {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--slate-500);
}

.device-macro-item .val {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--slate-900);
}

.device-scan-preview {
  background: #f0fdf4;
  border: 1px dashed #86efac;
  border-radius: var(--radius-md);
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.device-scan-icon {
  width: 34px;
  height: 34px;
  background: var(--primary);
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.device-scan-info h5 {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--slate-900);
}

.device-scan-info p {
  font-size: 0.65rem;
  color: var(--slate-500);
}

.device-micros-widget {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 10px;
}

.device-micros-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.device-micros-header h5 {
  font-size: 0.75rem;
  font-weight: 800;
}

.device-micros-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.device-micro-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.68rem;
}

.device-micro-bar-bg {
  width: 70px;
  height: 6px;
  background: var(--slate-100);
  border-radius: 3px;
  overflow: hidden;
}

.device-micro-bar-fill {
  height: 100%;
  background: var(--primary);
  border-radius: 3px;
}

/* Floating Feature Badges */
.floating-badge {
  position: absolute;
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
  animation: float 4s ease-in-out infinite;
}

.badge-1 {
  top: 15%;
  left: -20px;
}

.badge-2 {
  bottom: 20%;
  right: -25px;
  animation-delay: -2s;
}

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

.floating-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.floating-badge-icon.emerald { background: var(--primary-light); color: var(--primary); }
.floating-badge-icon.blue { background: #eff6ff; color: #2563eb; }

.floating-badge-content h6 {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--slate-900);
}

.floating-badge-content span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--slate-500);
}

/* Section Header Shared */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.18;
  margin-bottom: 16px;
  color: var(--slate-900);
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--slate-600);
}

/* How It Stands Out: Comparison Section */
.comparison-section {
  padding: 90px 0;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.comparison-table-wrapper {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  overflow-x: auto;
  box-shadow: var(--card-shadow);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 700px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--slate-200);
}

.comparison-table th {
  background: #f8fafc;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--slate-900);
}

.comparison-table th.highlight-col {
  background: #ecfdf5;
  color: var(--primary-dark);
  font-size: 1.05rem;
  border-top: 3px solid var(--primary);
}

.comparison-table td.highlight-col {
  background: #f0fdf4;
  font-weight: 700;
  color: var(--slate-900);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.feature-cell {
  font-weight: 700;
  color: var(--slate-800);
  display: flex;
  flex-direction: column;
}

.feature-cell span.desc {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate-500);
  margin-top: 2px;
}

.check-icon {
  color: var(--primary);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cross-icon {
  color: var(--slate-400);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Feature Grid */
.features-section {
  padding: 100px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--card-shadow);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-hover-shadow);
  border-color: var(--primary-border);
}

.feature-icon-wrapper {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.98rem;
  color: var(--slate-600);
  line-height: 1.55;
  flex-grow: 1;
}

.feature-card-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Pricing Section */
.pricing-section {
  padding: 100px 0;
  background: var(--slate-50);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}

.pricing-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-bottom: 50px;
}

.billing-toggle {
  display: flex;
  align-items: center;
  background: var(--slate-200);
  padding: 4px;
  border-radius: var(--radius-full);
  gap: 4px;
}

.billing-btn {
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  border: none;
  background: transparent;
  color: var(--slate-600);
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.billing-btn.active {
  background: #ffffff;
  color: var(--slate-900);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.1);
}

.save-badge {
  background: #ecfdf5;
  color: var(--primary);
  border: 1px solid var(--primary-border);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 800;
}

.currency-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--slate-500);
}

.currency-btn {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 800;
  color: var(--slate-700);
}

.currency-btn.active {
  background: var(--slate-900);
  color: #ffffff;
  border-color: var(--slate-900);
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 920px;
  margin: 0 auto;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border: 2px solid var(--primary);
  box-shadow: 0 20px 40px -10px rgba(5, 150, 105, 0.15);
}

.popular-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.pricing-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.pricing-card p.tier-desc {
  font-size: 0.95rem;
  color: var(--slate-500);
  margin-bottom: 24px;
}

.price-container {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.price-val {
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--slate-900);
  line-height: 1;
}

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

.price-subtext {
  font-size: 0.85rem;
  color: var(--slate-500);
  min-height: 20px;
  margin-bottom: 28px;
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 36px;
  flex-grow: 1;
}

.plan-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--slate-700);
}

.plan-features-list li svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  shrink: 0;
  margin-top: 2px;
}

.plan-features-list li.disabled {
  color: var(--slate-400);
  text-decoration: line-through;
}

.plan-features-list li.disabled svg {
  color: var(--slate-300);
}

/* Mobile App Coming Soon Showcase */
.mobile-app-section {
  padding: 100px 0;
  background: var(--dark-gradient);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.mobile-app-section h2 {
  color: #ffffff;
}

.mobile-app-section p {
  color: var(--slate-300);
}

.mobile-app-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.mobile-perks-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 32px 0 40px;
}

.mobile-perk {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-perk h4 {
  color: #ffffff;
  font-size: 1rem;
}

.mobile-perk p {
  font-size: 0.85rem;
  color: var(--slate-400);
  line-height: 1.4;
}

/* Waitlist Form & Modal */
.waitlist-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: 28px;
  max-width: 520px;
  backdrop-filter: blur(10px);
}

.waitlist-card h4 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.waitlist-card p {
  font-size: 0.88rem;
  color: var(--slate-300);
  margin-bottom: 20px;
  line-height: 1.45;
}

.waitlist-multi-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #cbd5e1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-control-input,
.form-control-select {
  width: 100%;
  padding: 11px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(15, 23, 42, 0.7);
  color: #ffffff;
  font-size: 0.92rem;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.form-control-input:focus,
.form-control-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
}

.phone-input-group {
  display: flex;
  gap: 8px;
}

.phone-country-select {
  width: 115px;
  flex-shrink: 0;
  padding: 11px 10px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0f172a;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  outline: none;
  cursor: pointer;
}

.platform-pill-group {
  display: flex;
  gap: 10px;
}

.platform-pill-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.platform-pill-btn.active,
.platform-pill-btn:hover {
  background: rgba(16, 185, 129, 0.16);
  border-color: var(--primary);
  color: #ffffff;
}

.anti-spam-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: rgba(15, 23, 42, 0.6);
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
}

.anti-spam-label {
  font-size: 0.82rem;
  color: #94a3b8;
  font-weight: 600;
}

.anti-spam-input {
  width: 80px;
  padding: 8px 10px;
  text-align: center;
  font-weight: 800;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: #0f172a;
  color: #ffffff;
  outline: none;
}

.anti-spam-input:focus {
  border-color: var(--primary);
}

/* Honeypot field - strictly hidden from real humans */
.hp-field {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  clip: rect(0 0 0 0) !important;
}

.waitlist-alert-msg {
  display: none;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.4;
}

.waitlist-alert-msg.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #fca5a5;
}

.waitlist-alert-msg.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #a7f3d0;
}

/* VIP Confirmation Ticket Card */
.vip-ticket-card {
  display: none;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(15, 23, 42, 0.95) 100%);
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: left;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.vip-ticket-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #10b981, #06b6d4, #10b981);
}

.vip-ticket-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-ticket-badge {
  font-size: 0.72rem;
  font-weight: 800;
  background: #10b981;
  color: #022c22;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vip-ticket-number {
  font-family: monospace;
  font-size: 1.25rem;
  font-weight: 900;
  color: #34d399;
  letter-spacing: 0.08em;
}

.vip-ticket-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

.vip-detail-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vip-detail-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.vip-detail-val {
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  word-break: break-word;
}

.vip-ticket-perk {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: #a7f3d0;
  line-height: 1.4;
  margin-bottom: 14px;
}

/* Modal Overlay & Dialog */
.waitlist-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.82);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: modalFadeIn 0.2s ease-out;
}

.waitlist-modal-overlay.active {
  display: flex;
}

.waitlist-modal-dialog {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 24px;
  padding: 32px;
  max-width: 490px;
  width: 100%;
  color: #ffffff;
  position: relative;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.85);
  max-height: 92vh;
  overflow-y: auto;
}

.modal-close-btn {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: all 0.2s;
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

@keyframes modalFadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

/* FAQ Accordion */
.faq-section {
  padding: 100px 0;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #ffffff;
  transition: all 0.2s ease;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  background: transparent;
  border: none;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--slate-900);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-toggle-icon {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--slate-400);
  transition: transform 0.2s ease;
}

.faq-item.active .faq-toggle-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--slate-600);
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Footer */
.footer {
  background: #0f172a;
  color: var(--slate-400);
  padding: 70px 0 30px;
  border-top: 1px solid var(--slate-800);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand p {
  color: var(--slate-400);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
}

.footer-col h5 {
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--slate-400);
  font-size: 0.9rem;
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid var(--slate-800);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .store-badges-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .store-badges {
    justify-content: center;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mobile-app-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .mobile-perks-list {
    text-align: left;
  }
  
  .waitlist-card {
    margin: 0 auto;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .mobile-perks-list {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
