@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Share+Tech+Mono&display=swap');

:root {
  /* Premium Celestial Theme Colors (from app_theme.dart) */
  --bg: #070B14;
  --bg-deep: #030509;
  --surface: #0C1222;
  --surface-elevated: #101A31;
  
  --primary: #00E5FF; /* Vibrant Crimson */
  --primary-rgb: 0, 229, 255;
  --primary-glow: rgba(0, 229, 255, 0.4);
  --accent: #7C4DFF; /* Luminous Amber */
  --accent-rgb: 124, 77, 255;
  --accent-glow: rgba(124, 77, 255, 0.4);
  
  --ember: #FFB020; /* Gold/Amber */
  --ember-rgb: 255, 176, 32;
  --success: #00E676;
  --error: #FF1744;
  
  --text-heading: #EAF0FF; /* Soft White */
  --text-body: #A7B3D1; /* Silver Slate */
  --text-muted: #5F739C;
  
  --border: rgba(255, 255, 255, 0.05);
  --border-glow: rgba(0, 229, 255, 0.12);
  --border-glow-accent: rgba(124, 77, 255, 0.15);
  
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.6);
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--bg-deep);
}

img, video {
  max-width: 100%;
  height: auto;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: rgba(var(--primary-rgb), 0.2);
  border-radius: 99px;
  border: 2px solid var(--bg-deep);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--primary-rgb), 0.6);
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text-body);
  background-color: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Cosmic Canvas Background */
#cosmic-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  background: 
    radial-gradient(circle at 80% 20%, rgba(124, 77, 255, 0.08), transparent 45%),
    radial-gradient(circle at 15% 75%, rgba(0, 229, 255, 0.06), transparent 40%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header Styling */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(7, 11, 20, 0.75);
  border-bottom: 1px solid rgba(var(--primary-rgb), 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.25);
  transition: var(--transition);
  object-fit: contain;
}

.brand-wrap:hover .brand-logo {
  transform: scale(1.08) rotate(4deg);
  box-shadow: 0 0 25px rgba(var(--primary-rgb), 0.45);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.3px;
}

.brand-sub {
  font-size: 11px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.nav-link {
  color: var(--text-body);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: var(--transition);
  border-radius: 4px;
}

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

.nav-link:hover::after {
  width: 100%;
}

.nav-btn {
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  color: var(--primary);
  padding: 10px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
}

.nav-btn:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--bg-deep);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--primary-rgb), 0.3);
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 99px;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: pulse-border 3s infinite;
}

@keyframes pulse-border {
  0%, 100% { border-color: rgba(var(--primary-rgb), 0.2); box-shadow: 0 0 0 rgba(var(--primary-rgb), 0); }
  50% { border-color: rgba(var(--primary-rgb), 0.5); box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.15); }
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 10px var(--primary);
  position: relative;
}

.eyebrow-dot::after {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  animation: ripple 1.5s infinite;
}

@keyframes ripple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero h1 {
  font-size: 64px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--text-heading);
  margin-bottom: 24px;
}

.text-gradient {
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  -webkit-text-fill-color: #FFFFFF !important;
  color: #FFFFFF !important;
}

.hero-copy {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 620px;
}

.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.playstore-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--bg-deep) !important;
  padding: 14px 28px;
  border-radius: 16px;
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 16px 36px rgba(var(--primary-rgb), 0.3);
  position: relative;
  overflow: hidden;
}

.playstore-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: 0.75s;
}

.playstore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 48px rgba(var(--primary-rgb), 0.45);
}

.playstore-btn:hover::before {
  left: 120%;
}

.playstore-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: var(--text-heading);
  padding: 14px 28px;
  border-radius: 16px;
  font-weight: 700;
  font-size: 16px;
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 600px;
}

.stat-card {
  background: rgba(var(--surface-elevated-rgb, 16, 26, 49), 0.4);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(var(--primary-rgb), 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

.stat-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.5px;
}

.stat-unit {
  font-family: 'Share Tech Mono', monospace;
  font-size: 12px;
  color: var(--primary);
  margin-left: 2px;
  font-weight: 600;
}

/* Section Common Styles */
.section {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-title {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -1.5px;
  color: var(--text-heading);
  margin-bottom: 16px;
}

.section-copy {
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.7;
}

/* Feature Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: linear-gradient(180deg, rgba(16, 26, 49, 0.45) 0%, rgba(12, 18, 34, 0.4) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 30px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.15), transparent);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--primary-rgb), 0.2);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 20px rgba(var(--primary-rgb), 0.03);
}

.card:hover::before {
  background: linear-gradient(90deg, transparent, rgba(var(--primary-rgb), 0.5), transparent);
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  color: var(--primary);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 24px;
  transition: var(--transition);
}

.card:hover .tag {
  background: var(--primary);
  color: var(--bg-deep);
  box-shadow: 0 0 15px var(--primary);
  transform: scale(1.05);
}

.card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.4px;
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* Info Notice / Google Sign-In */
.notice {
  background: linear-gradient(180deg, rgba(16, 26, 49, 0.6) 0%, rgba(12, 18, 34, 0.55) 100%);
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  border-radius: 32px;
  padding: 48px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  position: relative;
}

.notice::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.2), transparent, rgba(var(--accent-rgb), 0.2));
  z-index: -1;
  pointer-events: none;
}

.notice h2 {
  font-size: 38px;
  font-weight: 900;
  color: var(--text-heading);
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.notice-copy {
  font-size: 16px;
  color: var(--text-body);
  max-width: 800px;
  margin-bottom: 32px;
  line-height: 1.75;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.info-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  transition: var(--transition);
}

.info-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.info-item strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--text-heading);
  margin-bottom: 8px;
}

.info-item span {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

/* Grid 2 Column (Billing/Developer info) */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Call to Action Panel */
.cta-panel {
  background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.08) 0%, rgba(var(--accent-rgb), 0.08) 100%);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  border-radius: 32px;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  backdrop-filter: blur(10px);
}

.cta-text h2 {
  font-size: 38px;
  font-weight: 900;
  color: var(--text-heading);
  letter-spacing: -1.2px;
  margin-bottom: 12px;
}

.cta-text p {
  font-size: 16px;
  color: var(--text-body);
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

/* Premium Social Cards Grid */
.social-card {
  position: relative;
  background: linear-gradient(180deg, rgba(16, 26, 49, 0.45) 0%, rgba(12, 18, 34, 0.4) 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}

.social-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.03;
  pointer-events: none;
  transition: var(--transition);
}

.social-card:hover .social-card-bg {
  opacity: 0.08;
}

.social-card.instagram .social-card-bg {
  background: radial-gradient(circle at top right, #FD1D1D 0%, #C13584 50%, #405DE6 100%);
}

.social-card.facebook .social-card-bg {
  background: radial-gradient(circle at top right, #1877F2 0%, #0056B3 100%);
}

.social-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: var(--transition);
}

.social-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.social-card.instagram:hover {
  border-color: rgba(225, 48, 108, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 20px rgba(225, 48, 108, 0.05);
}

.social-card.facebook:hover {
  border-color: rgba(24, 120, 242, 0.35);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4), 0 0 20px rgba(24, 120, 242, 0.05);
}

.social-card.instagram:hover::before {
  background: linear-gradient(90deg, transparent, rgba(225, 48, 108, 0.5), transparent);
}

.social-card.facebook:hover::before {
  background: linear-gradient(90deg, transparent, rgba(24, 120, 242, 0.5), transparent);
}

.social-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.social-icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.social-icon-wrapper.instagram-glow {
  background: linear-gradient(135deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
  box-shadow: 0 8px 20px rgba(225, 48, 108, 0.25);
}

.social-icon-wrapper.facebook-glow {
  background: linear-gradient(135deg, #1877F2, #0056B3);
  box-shadow: 0 8px 20px rgba(24, 120, 242, 0.25);
}

.social-card:hover .social-icon-wrapper {
  transform: scale(1.05) rotate(2deg);
}

.social-card.instagram:hover .social-icon-wrapper {
  box-shadow: 0 12px 28px rgba(225, 48, 108, 0.45);
}

.social-card.facebook:hover .social-icon-wrapper {
  box-shadow: 0 12px 28px rgba(24, 120, 242, 0.45);
}

.social-icon-wrapper svg {
  width: 26px;
  height: 26px;
}

.social-meta {
  display: flex;
  flex-direction: column;
}

.social-tag {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 2px;
}

.social-card.instagram .social-tag {
  color: #E1306C;
}

.social-card.facebook .social-tag {
  color: #1877F2;
}

.social-meta h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.5px;
}

.social-description {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.65;
  margin: 0;
}

.social-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 16px;
  transition: var(--transition);
  text-decoration: none;
}

.social-action-btn.instagram-btn {
  background: rgba(225, 48, 108, 0.08);
  border: 1px solid rgba(225, 48, 108, 0.25);
  color: #FD1D1D !important;
}

.social-action-btn.instagram-btn:hover {
  background: linear-gradient(135deg, #E1306C, #FD1D1D);
  color: #fff !important;
  box-shadow: 0 10px 25px rgba(225, 48, 108, 0.3);
  transform: translateY(-2px);
}

.social-action-btn.facebook-btn {
  background: rgba(24, 120, 242, 0.08);
  border: 1px solid rgba(24, 120, 242, 0.25);
  color: #1877F2 !important;
}

.social-action-btn.facebook-btn:hover {
  background: linear-gradient(135deg, #1877F2, #0056B3);
  color: #fff !important;
  box-shadow: 0 10px 25px rgba(24, 120, 242, 0.3);
  transform: translateY(-2px);
}

/* Footer Styling */
.site-footer {
  padding: 48px 0;
  background: rgba(3, 5, 9, 0.8);
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 60px;
}

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

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

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

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


/* ==========================================
   INTERACTIVE PHONE MOCKUP SIMULATOR STYLES
   ========================================== */

.phone-mockup-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Glow under phone */
.phone-glow {
  position: absolute;
  width: 110%;
  height: 105%;
  border-radius: 56px;
  background: radial-gradient(circle, rgba(var(--primary-rgb), 0.15) 0%, rgba(var(--accent-rgb), 0.12) 50%, transparent 75%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.phone-container {
  position: relative;
  width: 360px;
  height: 720px;
  border-radius: 46px;
  background: #040810;
  padding: 10px;
  border: 4px solid #1c2538;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.8),
    inset 0 0 20px rgba(255,255,255,0.03),
    0 0 0 1px rgba(255,255,255,0.05);
  z-index: 5;
  user-select: none;
}

/* Phone Screen Frame */
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 38px;
  overflow: hidden;
  background: var(--bg-deep);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,0.02);
}

/* Dynamic Island/Notch */
.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 24px;
  border-radius: 99px;
  background: #000;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.notch-camera {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #111a2e;
  margin-right: 6px;
}

/* Phone Status Bar */
.phone-status-bar {
  height: 38px;
  padding: 12px 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-heading);
  z-index: 100;
}

.status-right {
  display: flex;
  align-items: center;
  gap: 6px;
}

.battery {
  width: 16px;
  height: 9px;
  border: 1px solid var(--text-heading);
  border-radius: 2px;
  padding: 1px;
  display: flex;
  align-items: center;
}

.battery-level {
  width: 80%;
  height: 100%;
  background: var(--text-heading);
  border-radius: 1px;
}

/* Virtual App Content */
.app-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 16px 64px;
}

/* App Header */
.app-header {
  margin: 8px 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.app-date {
  font-family: 'Share Tech Mono', monospace;
  color: rgba(var(--primary-rgb), 0.7);
  font-size: 9px;
  letter-spacing: 1.5px;
}

.app-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--text-heading);
}

.app-actions {
  display: flex;
  gap: 8px;
}

.app-action-btn {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  position: relative;
}

.cart-counter {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--primary);
  color: var(--bg-deep);
  font-size: 8px;
  font-weight: 800;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* App Virtual Screens */
.app-screen-content {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none; /* Hide scrollbar for clean app simulator look */
  padding-bottom: 20px;
}
.app-screen-content::-webkit-scrollbar {
  display: none;
}

/* Virtual Bento Card inside Phone */
.virtual-bento {
  background: rgba(16, 26, 49, 0.5);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
  border-radius: 16px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Welcome User Widget */
.v-profile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.avatar-wrapper {
  position: relative;
  width: 48px;
  height: 48px;
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--surface-elevated);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

/* Glowing customization border inside mockup */
.avatar-wrapper.neon-gold .avatar-img {
  border: 3px solid var(--ember);
  box-shadow: 0 0 14px var(--ember);
}
.avatar-wrapper.neon-blue .avatar-img {
  border: 3px solid var(--primary);
  box-shadow: 0 0 14px var(--primary);
}
.avatar-wrapper.neon-purple .avatar-img {
  border: 3px solid var(--accent);
  box-shadow: 0 0 14px var(--accent);
}

.v-welcome-text {
  flex: 1;
  margin-left: 12px;
}

.v-welcome-sub {
  font-family: 'Share Tech Mono', monospace;
  font-size: 8px;
  color: rgba(var(--primary-rgb), 0.6);
  letter-spacing: 1px;
}

.v-welcome-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-heading);
}

.v-level-badge {
  padding: 4px 8px;
  border-radius: 6px;
  background: rgba(var(--primary-rgb), 0.08);
  border: 1px solid rgba(var(--primary-rgb), 0.18);
  color: var(--primary);
  font-size: 9px;
  font-weight: 800;
}

/* Custom Level progress bar */
.v-level-xp {
  margin-top: 10px;
}
.v-xp-header {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.v-xp-bar {
  width: 100%;
  height: 5px;
  border-radius: 4px;
  background: rgba(255,255,255,0.04);
  overflow: hidden;
}
.v-xp-fill {
  width: 45%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.6s ease;
}

/* Action Banner/Notification Nudge */
.v-nudge-banner {
  background: rgba(var(--primary-rgb), 0.06);
  border-left: 3px solid var(--primary);
  padding: 8px 12px;
  border-radius: 0 8px 8px 0;
  font-size: 11px;
  color: var(--text-heading);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.v-nudge-banner svg {
  color: var(--primary);
  flex-shrink: 0;
}

/* Live Stats Widgets inside Phone */
.v-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}

.v-stat-card {
  background: rgba(16, 26, 49, 0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  position: relative;
}

.v-stat-label {
  font-size: 8px;
  color: var(--text-muted);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.v-stat-value {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-heading);
  margin: 2px 0;
}

.v-stat-value.glow-orange {
  color: var(--ember);
  text-shadow: 0 0 8px rgba(var(--ember-rgb), 0.4);
}

.v-stat-sub {
  font-size: 8px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Live Hydration / Interactive Goal Card */
.v-goal-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.v-goal-info {
  flex: 1;
}

.v-goal-meta {
  font-size: 9px;
  color: var(--text-muted);
  font-weight: 800;
  letter-spacing: 0.5px;
}

.v-goal-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-heading);
  margin: 1px 0 4px;
}

.v-goal-progress-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.v-goal-bar {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
  overflow: hidden;
}

.v-goal-fill {
  width: 60%;
  height: 100%;
  background: var(--primary);
  border-radius: 4px;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.v-goal-stats {
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px;
  color: var(--text-heading);
  font-weight: bold;
}

.v-goal-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(var(--primary-rgb), 0.1);
  border: 1px solid rgba(var(--primary-rgb), 0.25);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 12px;
  transition: var(--transition);
}

.v-goal-action-btn:hover {
  background: var(--primary);
  color: var(--bg-deep);
  transform: scale(1.05);
}

.v-goal-action-btn:active {
  transform: scale(0.95);
}

/* Weekly Progress Card in Mockup */
.v-weekly-header {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.v-week-row {
  display: flex;
  justify-content: space-between;
}

.v-day-pill {
  width: 32px;
  height: 48px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  gap: 4px;
}

.v-day-pill.active {
  background: rgba(var(--primary-rgb), 0.06);
  border-color: rgba(var(--primary-rgb), 0.25);
  color: var(--primary);
}

.v-day-pill.completed {
  background: rgba(0, 230, 118, 0.08);
  border-color: rgba(0, 230, 118, 0.25);
  color: var(--success);
}

.v-day-icon {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
}

.v-day-pill.completed .v-day-icon {
  background: var(--success);
  color: var(--bg-deep);
}

.v-day-pill.active .v-day-icon {
  background: var(--primary);
  color: var(--bg-deep);
}

/* Quests screen mockup details */
.v-quest-header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.v-quest-reset-timer {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  color: var(--primary);
  padding: 4px 8px;
  border-radius: 4px;
  background: rgba(var(--primary-rgb), 0.06);
  border: 1px solid rgba(var(--primary-rgb), 0.12);
}

.v-quest-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v-quest-card {
  background: rgba(16, 26, 49, 0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

.v-quest-card.completed {
  border-color: rgba(0, 230, 118, 0.15);
  background: rgba(0, 230, 118, 0.02);
}

.v-quest-checkbox {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.v-quest-card.completed .v-quest-checkbox {
  border-color: var(--success);
  background: var(--success);
  color: var(--bg-deep);
}

.v-quest-checkbox svg {
  display: none;
  width: 10px;
  height: 10px;
}

.v-quest-card.completed .v-quest-checkbox svg {
  display: block;
  fill: currentColor;
}

.v-quest-details {
  flex: 1;
}

.v-quest-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-heading);
}

.v-quest-card.completed .v-quest-title {
  color: var(--text-muted);
  text-decoration: line-through;
}

.v-quest-sub {
  font-size: 9px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.v-quest-reward {
  font-family: 'Share Tech Mono', monospace;
  color: var(--primary);
  font-weight: bold;
}

.v-quest-reroll-btn {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.v-quest-reroll-btn:hover {
  border-color: rgba(var(--primary-rgb), 0.3);
  color: var(--primary);
  transform: rotate(45deg);
}

.v-quests-footer {
  text-align: center;
  margin-top: 14px;
}

.v-reroll-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 800;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.06);
  border: 1px solid rgba(var(--primary-rgb), 0.15);
  padding: 6px 14px;
  border-radius: 8px;
  cursor: pointer;
}

.v-reroll-all-btn:hover {
  background: var(--primary);
  color: var(--bg-deep);
}

/* Customization Store screen mockup */
.v-store-subtitle {
  font-size: 10px;
  font-weight: 800;
  color: var(--text-muted);
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.v-store-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.v-store-card {
  background: rgba(16, 26, 49, 0.4);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
}

.v-store-card:hover {
  border-color: rgba(var(--primary-rgb), 0.25);
  background: rgba(16, 26, 49, 0.6);
}

.v-store-card.selected {
  border-color: var(--primary);
  background: rgba(var(--primary-rgb), 0.04);
}

.v-store-preview {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-elevated);
  position: relative;
}

.v-store-preview-img {
  width: 80%;
  height: 80%;
  border-radius: 50%;
  object-fit: cover;
}

/* Border styles inside store */
.v-store-card.selected .v-store-preview {
  box-shadow: 0 0 10px rgba(var(--primary-rgb), 0.2);
}

.v-store-card[data-border="gold"] .v-store-preview {
  border: 3px solid var(--ember);
}
.v-store-card[data-border="blue"] .v-store-preview {
  border: 3px solid var(--primary);
}
.v-store-card[data-border="purple"] .v-store-preview {
  border: 3px solid var(--accent);
}

.v-store-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-heading);
}

.v-store-cost {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px;
  color: var(--primary);
  background: rgba(var(--primary-rgb), 0.06);
  padding: 2px 6px;
  border-radius: 4px;
  margin-top: 6px;
}

.v-store-cost.owned {
  color: var(--success);
  background: rgba(0, 230, 118, 0.06);
}

/* Floating Reward Notification */
.v-floating-reward {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(7, 11, 20, 0.95);
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 12px 20px;
  color: var(--primary);
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.v-floating-reward.active {
  opacity: 1;
  transform: translate(-50%, -70%);
}

/* Phone Bottom Tab Navigator */
.phone-tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 62px;
  background: #050811;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 4px 4px 10px;
  z-index: 150;
  border-radius: 0 0 38px 38px;
}

.phone-tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.42);
  font-size: 8px;
  font-weight: 700;
  cursor: pointer;
  gap: 3px;
  transition: all 0.2s ease;
  flex: 1;
  height: 100%;
  border-radius: 12px;
  padding: 4px 2px;
}

.phone-tab-btn svg {
  width: 17px;
  height: 17px;
  transition: all 0.2s ease;
}

.phone-tab-btn svg[fill="currentColor"] {
  fill: currentColor;
  stroke: none;
}

.phone-tab-btn.active {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  padding: 6px 2px;
}

.phone-tab-btn:hover {
  color: #ffffff;
}


/* ==========================================
   PAGE-SPECIFIC POLISH FOR SUB-PAGES
   ========================================== */

.page-hero {
  padding: 60px 0 24px;
  position: relative;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.meta-pill {
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  color: var(--text-body);
  font-size: 13px;
  font-weight: 500;
}

.content-wrap {
  padding: 20px 0 80px;
}

.content-card {
  border-radius: 32px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(16, 26, 49, 0.45) 0%, rgba(12, 18, 34, 0.4) 100%);
  box-shadow: var(--shadow);
  padding: 40px;
  backdrop-filter: blur(10px);
}

.policy-section {
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.policy-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.policy-section h2 {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-heading);
  letter-spacing: -0.6px;
}

.policy-section h3 {
  margin: 24px 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-heading);
}

.policy-section p, 
.policy-section li {
  color: var(--text-body);
  font-size: 15px;
  line-height: 1.8;
}

.policy-section p {
  margin: 0 0 16px;
}

.policy-section ul, 
.policy-section ol {
  margin: 0 0 16px;
  padding-left: 20px;
}

.policy-section li + li {
  margin-top: 8px;
}

.warning-box {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(var(--ember-rgb), 0.25);
  background: rgba(var(--ember-rgb), 0.06);
  color: var(--text-heading);
  margin-top: 16px;
  font-size: 14px;
}

.warning-box strong {
  color: var(--ember);
  display: block;
  margin-bottom: 6px;
}


/* ==========================================
   RESPONSIVE DESIGN AND MOBILE OPTIMIZATIONS
   ========================================== */

@media (max-width: 1080px) {
  .hero h1 {
    font-size: 52px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .hero-copy {
    margin-left: auto;
    margin-right: auto;
  }
  
  .button-row {
    justify-content: center;
  }
  
  .hero-stats {
    margin-left: auto;
    margin-right: auto;
  }
  
  .phone-mockup-wrapper {
    order: -1; /* Display simulator above text on tablet/mobile for visual impact */
  }
  
  .cta-panel {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }
  
  .cta-buttons {
    width: 100%;
    justify-content: center;
  }
  
  .social-card {
    padding: 30px;
    gap: 20px;
  }
  
  .info-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
  }
  
  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
  
  .grid-3, .grid-2 {
    grid-template-columns: 1fr;
  }
  
  .notice {
    padding: 24px;
  }
  
  .notice h2 {
    font-size: 28px;
  }
  
  .content-card {
    padding: 24px;
  }
  
  .policy-section h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 36px;
    letter-spacing: -1px;
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .site-header {
    padding: 4px 0;
  }
  
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .playstore-btn {
    width: 100%;
    justify-content: center;
  }
  
  /* Scale down simulator slightly for very small screens */
  .phone-container {
    transform: scale(0.9);
    margin: -30px 0;
  }

  .social-card {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .social-meta h3 {
    font-size: 20px;
  }
}

/* Blog Styles */
.tag-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.tag-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.tag-btn.active {
  background: rgba(129, 140, 248, 0.2);
  border-color: #818cf8;
  color: #fff;
}
.blog-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #a5b4fc;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.blog-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* --- FAQ Page Styles --- */

    body { display: flex; flex-direction: column; min-height: 100vh; }
    main { flex: 1 0 auto; }
    .site-footer { flex-shrink: 0; }

    /* Page hero */
    .faq-page-hero {
      padding: 120px 0 72px;
      text-align: center;
    }
    .faq-page-hero h1 {
      font-size: clamp(2.2rem, 4.5vw, 3.5rem);
      font-weight: 900;
      letter-spacing: -1.5px;
      color: var(--text-heading);
      margin-bottom: 16px;
      line-height: 1.1;
    }
    .faq-page-hero p {
      font-size: 1.1rem;
      color: var(--text-body);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* FAQ layout */
    .faq-wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px 100px;
    }
    .faq-layout {
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 28px;
      align-items: start;
    }

    /* Sidebar menu */
    .faq-menu {
      position: sticky;
      top: 100px;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 22px;
      padding: 20px;
    }
    .faq-menu-title {
      font-size: 0.72rem;
      font-weight: 800;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--text-muted);
      margin: 0 0 16px 4px;
    }
    .faq-filter {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      border: 0;
      border-radius: 12px;
      padding: 11px 14px;
      margin-bottom: 4px;
      color: var(--text-body);
      cursor: pointer;
      text-align: left;
      font-family: 'Outfit', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      transition: background 0.2s, color 0.2s, transform 0.2s;
    }
    .faq-filter:hover {
      background: rgba(255,255,255,0.06);
      color: var(--text-heading);
      transform: translateX(3px);
    }
    .faq-filter.active {
      background: rgba(0, 229, 255,0.1);
      border: 1px solid rgba(0, 229, 255,0.2);
      color: var(--primary);
      transform: translateX(4px);
    }
    .faq-filter .faq-filter-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: currentColor;
      opacity: 0.5;
      flex-shrink: 0;
    }
    .faq-filter.active .faq-filter-dot { opacity: 1; }

    /* Content area */
    .faq-content { min-width: 0; }

    /* Search */
    .faq-search-box {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 18px;
      padding: 18px;
      margin-bottom: 16px;
    }
    .faq-search-inner {
      position: relative;
    }
    .faq-search-inner svg {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      pointer-events: none;
    }
    .faq-search-input {
      width: 100%;
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 999px;
      padding: 13px 18px 13px 46px;
      outline: none;
      background: rgba(255,255,255,0.04);
      color: var(--text-heading);
      font-family: 'Outfit', sans-serif;
      font-size: 0.95rem;
      transition: border-color 0.25s, background 0.25s;
    }
    .faq-search-input:focus {
      border-color: rgba(0, 229, 255,0.3);
      background: rgba(0, 229, 255,0.04);
    }
    .faq-search-input::placeholder { color: var(--text-muted); }

    /* FAQ list */
    .faq-list { display: grid; gap: 10px; }

    /* FAQ item */
    .faq-item {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      overflow: hidden;
      transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    }
    .faq-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.4);
      border-color: rgba(255,255,255,0.12);
    }
    .faq-item.active {
      border-color: rgba(0, 229, 255,0.2);
    }

    .faq-question {
      width: 100%;
      border: 0;
      background: transparent;
      color: var(--text-heading);
      padding: 18px 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      text-align: left;
      font-family: 'Outfit', sans-serif;
    }
    .faq-question-text {
      font-size: 0.97rem;
      font-weight: 700;
      line-height: 1.5;
    }

    .faq-icon {
      width: 32px;
      height: 32px;
      min-width: 32px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      font-weight: 300;
      line-height: 1;
      transition: transform 0.25s, background 0.25s, border-color 0.25s;
    }
    .faq-item.active .faq-icon {
      background: rgba(0, 229, 255,0.12);
      border-color: rgba(0, 229, 255,0.3);
      transform: rotate(45deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease;
    }
    .faq-answer-inner {
      padding: 0 20px 20px;
      color: var(--text-body);
      font-size: 0.93rem;
      line-height: 1.75;
    }
    .faq-answer-inner p { margin: 0; }
    .faq-answer-inner ul {
      margin: 8px 0 0;
      padding-left: 18px;
    }
    .faq-answer-inner ul li { margin-bottom: 5px; }
    .faq-answer-inner a { color: var(--primary); text-decoration: underline; }

    /* Empty state */
    .faq-empty {
      display: none;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      padding: 32px;
      text-align: center;
      color: var(--text-muted);
    }

    /* CTA */
    .faq-cta {
      margin-top: 28px;
      background: linear-gradient(135deg, rgba(0, 229, 255,0.12) 0%, rgba(124, 77, 255,0.12) 100%);
      border: 1px solid rgba(0, 229, 255,0.2);
      border-radius: 22px;
      padding: 36px;
      text-align: center;
    }
    .faq-cta h4 {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--text-heading);
      margin: 0 0 10px;
    }
    .faq-cta p {
      color: var(--text-body);
      margin: 0 0 24px;
      font-size: 0.97rem;
    }
    .faq-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--primary);
      color: var(--bg-deep);
      font-family: 'Outfit', sans-serif;
      font-weight: 800;
      font-size: 0.95rem;
      padding: 13px 28px;
      border-radius: 999px;
      text-decoration: none;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .faq-cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(0, 229, 255,0.3);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .faq-layout { grid-template-columns: 1fr; }
      .faq-menu { position: static; }
      .faq-menu-buttons { display: grid; grid-template-columns: repeat(2,1fr); gap: 6px; }
      .faq-filter { margin-bottom: 0; }
    }
    @media (max-width: 580px) {
      .faq-menu-buttons { grid-template-columns: 1fr; }
      .faq-page-hero { padding: 100px 0 56px; }
      .faq-cta { padding: 28px 20px; }
    }
  

/* --- Blogs Page Styles --- */

    body {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }
    main {
      flex: 1 0 auto;
    }
    .site-footer {
      flex-shrink: 0;
    }

    /* ── Blog Hero ── */
    .blog-hero {
      padding: 120px 0 80px;
      text-align: center;
    }
    .blog-hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 18px;
      border-radius: 99px;
      color: var(--primary);
      background: rgba(0, 229, 255,0.08);
      border: 1px solid rgba(0, 229, 255,0.2);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 28px;
    }
    .blog-hero h1 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 900;
      color: var(--text-heading);
      letter-spacing: -1.5px;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .blog-hero-sub {
      font-size: 1.15rem;
      color: var(--text-body);
      max-width: 500px;
      margin: 0 auto 48px;
      line-height: 1.7;
    }

    /* ── Search ── */
    .blog-search-outer {
      max-width: 580px;
      margin: 0 auto;
      position: relative;
    }
    .blog-search-outer svg {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--text-muted);
      pointer-events: none;
    }
    #blog-search {
      width: 100%;
      padding: 16px 20px 16px 52px;
      border-radius: 60px;
      border: 1px solid rgba(255,255,255,0.1);
      background: rgba(255,255,255,0.04);
      color: #fff;
      font-family: 'Outfit', sans-serif;
      font-size: 1rem;
      outline: none;
      transition: border-color .3s, background .3s;
    }
    #blog-search:focus {
      border-color: rgba(0, 229, 255,.4);
      background: rgba(255,255,255,0.06);
    }
    #blog-search::placeholder { color: var(--text-muted); }

    /* ── Filter Tabs ── */
    .blog-filters {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
      margin: 28px 0 64px;
    }
    .filter-pill {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.09);
      color: var(--text-muted);
      padding: 9px 22px;
      border-radius: 60px;
      cursor: pointer;
      font-size: .875rem;
      font-weight: 600;
      font-family: 'Outfit', sans-serif;
      transition: all .22s;
    }
    .filter-pill:hover {
      color: var(--text-heading);
      border-color: rgba(255,255,255,0.2);
      background: rgba(255,255,255,0.08);
    }
    .filter-pill.active {
      background: rgba(0, 229, 255,0.12);
      border-color: rgba(0, 229, 255,0.35);
      color: var(--primary);
    }

    /* ── Grid ── */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    /* ── Card ── */
    .blog-card {
      display: flex;
      flex-direction: column;
      background: rgba(255,255,255,0.025);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 22px;
      overflow: hidden;
      text-decoration: none;
      color: inherit;
      transition: transform .3s, box-shadow .3s, border-color .3s;
    }
    .blog-card:hover {
      transform: translateY(-7px);
      box-shadow: 0 24px 60px rgba(0,0,0,.55);
      border-color: rgba(0, 229, 255,0.18);
    }
    .blog-card-thumb {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }
    .blog-card-thumb-placeholder {
      width: 100%;
      height: 220px;
      background: linear-gradient(135deg, rgba(124, 77, 255,0.15), rgba(0, 229, 255,0.08));
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .blog-card-body {
      padding: 26px 26px 22px;
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: 10px;
    }
    .blog-card-cats {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .blog-cat-chip {
      font-size: .7rem;
      font-weight: 800;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--primary);
      background: rgba(0, 229, 255,0.08);
      border: 1px solid rgba(0, 229, 255,0.15);
      padding: 3px 10px;
      border-radius: 20px;
    }
    .blog-card-title {
      font-size: 1.12rem;
      font-weight: 800;
      color: var(--text-heading);
      line-height: 1.45;
    }
    .blog-card-excerpt {
      font-size: .91rem;
      color: var(--text-body);
      line-height: 1.7;
      flex: 1;
    }
    .blog-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 14px;
      border-top: 1px solid rgba(255,255,255,0.05);
      margin-top: 4px;
    }
    .blog-card-meta {
      font-size: .78rem;
      color: var(--text-muted);
      font-weight: 500;
    }
    .blog-card-tags {
      display: flex;
      gap: 6px;
    }
    .blog-tag-chip {
      font-size: .7rem;
      font-weight: 600;
      color: var(--text-muted);
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 2px 8px;
      border-radius: 20px;
    }
    .blog-read-arrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: .82rem;
      font-weight: 700;
      color: var(--primary);
      transition: gap .2s;
    }
    .blog-card:hover .blog-read-arrow { gap: 10px; }

    /* ── Empty ── */
    .blog-empty {
      grid-column: 1 / -1;
      text-align: center;
      padding: 80px 20px;
      color: var(--text-muted);
    }

    /* ── Responsive ── */
    @media (max-width: 960px) {
      .blog-grid { grid-template-columns: repeat(2,1fr); }
    }
    @media (max-width: 620px) {
      .blog-grid { grid-template-columns: 1fr; }
      .blog-hero { padding: 100px 0 60px; }
      .blog-hero h1 { font-size: 2rem; }
    }
  
