@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@100..900&display=swap');

:root {
  --bg-main: #08090C; /* Sleek matte dark black/grey from the logo background */
  --bg-card: rgba(18, 22, 28, 0.5);
  --bg-card-hover: rgba(28, 33, 43, 0.7);
  
  --accent-gold-rgb: 0, 230, 118; /* Vibrant crystal green */
  --accent-gold: rgb(var(--accent-gold-rgb));
  --accent-gold-light: #69F0AE;
  --accent-gold-dark: #00C853;
  --accent-gold-glow: rgba(var(--accent-gold-rgb), 0.15);
  
  --accent-cyan-rgb: 0, 230, 118; /* Consistent with green */
  --accent-cyan: rgb(var(--accent-cyan-rgb));
  --accent-cyan-light: #69F0AE;
  --accent-cyan-glow: rgba(var(--accent-cyan-rgb), 0.15);
  
  --text-primary: #f8f6f0;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;
  
  --border-light: rgba(255, 255, 255, 0.06);
  --border-gold: rgba(var(--accent-gold-rgb), 0.25);
  --border-cyan: rgba(var(--accent-cyan-rgb), 0.25);
  
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* Compatibility variables for legal pages */
  --gold: var(--accent-gold);
  --white: var(--text-primary);
}

/* Reset and Globals */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Language Toggle Styling */
.lang-toggle {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 100;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.75rem;
  padding: 5px 12px;
  border-radius: 16px;
  cursor: pointer;
  transition: var(--transition-smooth);
  opacity: 0.5;
}

.lang-btn:hover {
  opacity: 0.8;
}

.lang-btn.active {
  background: var(--accent-gold);
  opacity: 1;
  color: var(--bg-main);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(var(--accent-gold-rgb), 0.3);
}

/* Navbar */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 4rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(3, 7, 18, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-decoration: none;
  transition: var(--transition-smooth);
  position: relative;
}

.logo img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 8px;
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold-light);
  transition: var(--transition-smooth);
}

.logo:hover {
  color: var(--accent-gold-light);
  text-shadow: 0 0 15px rgba(var(--accent-gold-rgb), 0.4);
}

.logo:hover::after {
  width: 100%;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.7;
  transition: var(--transition-smooth);
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent-gold);
  transition: var(--transition-smooth);
}

.nav-links a:hover {
  opacity: 1;
}

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

/* Background Glow Effects */
.glow-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}

.glow-1 {
  top: 10%;
  left: 20%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
}

.glow-2 {
  bottom: 10%;
  right: 10%;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--accent-gold-rgb), 0.08);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(var(--accent-gold-rgb), 0.05);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--accent-gold-light);
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 10px var(--accent-gold-light);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.15;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero h1 span {
  color: var(--accent-gold);
  position: relative;
  display: inline-block;
}

.hero h1 span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 8px;
  background: rgba(var(--accent-gold-rgb), 0.15);
  z-index: -1;
  border-radius: 4px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.btn-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  width: 100%;
}

/* Store Button & Coming Soon Wrapper */
.store-wrapper {
  position: relative;
  display: inline-block;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(17, 24, 39, 0.6);
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.8rem 1.6rem;
  border-radius: 14px;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.store-btn svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: var(--transition-smooth);
}

.store-btn-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.store-btn-text span:first-child {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.6;
}

.store-btn-text span:last-child {
  font-size: 1.05rem;
  font-weight: 600;
}

/* Disabled State for Store Button */
.store-btn.disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(10, 15, 30, 0.4);
}

.store-btn.disabled:hover {
  transform: none;
  box-shadow: none;
}

.store-badge-soon {
  position: absolute;
  top: -10px;
  right: -5px;
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  color: #030712;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 30px;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(var(--accent-gold-rgb), 0.4);
  z-index: 10;
  animation: float-badge 3s ease-in-out infinite;
}

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

/* Hero Visual Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 450px;
}

.mockup-container {
  position: relative;
  width: 320px;
  height: 450px;
}

.phone-outline {
  position: absolute;
  inset: 0;
  border: 4px solid var(--border-gold);
  background: rgba(17, 24, 39, 0.8);
  border-radius: 40px;
  box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.8),
              inset 0 0 20px rgba(var(--accent-gold-rgb), 0.15);
  overflow: hidden;
  z-index: 2;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.phone-screen {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 1rem;
}

.phone-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.phone-logo img {
  height: 22px;
  width: 22px;
  object-fit: contain;
  border-radius: 4px;
}

.phone-status {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.mock-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 1rem;
  margin-bottom: 1rem;
  transform: translateY(20px);
  opacity: 0;
  animation: card-appear 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mock-card-1 {
  animation-delay: 0.3s;
}

.mock-card-2 {
  animation-delay: 0.9s;
  border-color: var(--border-gold);
  background: rgba(var(--accent-gold-rgb), 0.03);
}

@keyframes card-appear {
  to { transform: translateY(0); opacity: 1; }
}

.mock-user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.5rem;
}

.mock-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}

.mock-avatar.gold {
  background: var(--accent-gold);
  color: var(--bg-main);
}

.mock-username {
  font-size: 0.8rem;
  font-weight: 500;
}

.mock-time {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-left: auto;
}

.mock-body {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.mock-body strong {
  color: var(--text-primary);
}

.mock-tag {
  display: inline-block;
  background: rgba(var(--accent-gold-rgb), 0.15);
  color: var(--accent-gold-light);
  font-size: 0.65rem;
  padding: 2px 8px;
  border-radius: 6px;
  margin-top: 0.5rem;
  font-weight: 500;
}

.mock-badge-check {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  color: var(--accent-gold-light);
  margin-top: 0.5rem;
  font-weight: 600;
}

.glow-mockup-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, var(--accent-gold-glow) 0%, transparent 60%);
  z-index: 1;
  filter: blur(40px);
}

/* Sections Styling */
.section {
  padding: 8rem 4rem;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.section-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  text-align: center;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.section-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 4.5rem;
  line-height: 1.7;
}

.divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 0 auto;
}

/* Process (How it Works) Timeline */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
}

.how-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.how-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(var(--accent-gold-rgb), 0.03) 0%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.how-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
              0 0 20px var(--accent-gold-glow);
}

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

.how-num {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(var(--accent-gold-rgb), 0.08);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
  transition: var(--transition-smooth);
}

.how-card:hover .how-num {
  color: rgba(var(--accent-gold-rgb), 0.16);
  transform: scale(1.1);
}

.how-icon {
  width: 56px;
  height: 56px;
  background: rgba(var(--accent-gold-rgb), 0.08);
  border: 1px solid var(--border-gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  transition: var(--transition-smooth);
}

.how-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--accent-gold-light);
  fill: none;
  stroke-width: 1.5;
  transition: var(--transition-smooth);
}

.how-card:hover .how-icon {
  background: var(--accent-gold);
  box-shadow: 0 0 15px rgba(var(--accent-gold-rgb), 0.4);
}

.how-card:hover .how-icon svg {
  stroke: var(--bg-main);
  transform: scale(1.1);
}

.how-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 2;
}

.how-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.feat {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 24px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
}

.feat:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feat-icon {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.feat h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.feat p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Pricing Section */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.plan {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: 28px;
  padding: 3.5rem 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.plan.featured {
  border: 2px solid var(--accent-gold);
  background: rgba(var(--accent-gold-rgb), 0.05);
  box-shadow: 0 20px 50px rgba(var(--accent-gold-rgb), 0.05);
}

.plan.featured::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 28px;
  border: 2px solid transparent;
  background: linear-gradient(180deg, var(--accent-gold-light), transparent) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  pointer-events: none;
}

.plan-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--accent-gold);
  color: var(--bg-main);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(var(--accent-gold-rgb), 0.3);
}

.plan h3 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.plan .price {
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--accent-gold-light);
  margin: 1rem 0 1.5rem;
  display: flex;
  align-items: baseline;
}

.plan .price span {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-left: 0.5rem;
}

.plan ul {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.plan ul li {
  font-size: 0.95rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.plan ul li::before {
  content: "✓";
  color: var(--accent-gold-light);
  font-weight: 700;
  font-size: 1rem;
}

.btn-outline {
  display: block;
  text-align: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  margin-top: auto;
}

.btn-outline:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
  box-shadow: 0 0 15px rgba(var(--accent-gold-rgb), 0.15);
}

.btn-primary-action {
  display: block;
  text-align: center;
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  color: var(--bg-main);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
  margin-top: auto;
  box-shadow: 0 10px 20px rgba(var(--accent-gold-rgb), 0.15);
}

.btn-primary-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(var(--accent-gold-rgb), 0.3);
  filter: brightness(1.1);
}

/* QUBLE AI Section */
.quble-section {
  background: radial-gradient(circle at 80% 50%, rgba(14, 165, 233, 0.06) 0%, transparent 60%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 8rem 4rem;
  position: relative;
}

.quble-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.quble-content {
  position: relative;
  z-index: 10;
}

.quble-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid var(--border-cyan);
  color: var(--accent-cyan-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  margin-bottom: 2rem;
}

.quble-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--accent-cyan-light);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--accent-cyan-light);
}

.quble-inner h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.quble-inner p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

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

.qf {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.qf-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-cyan);
  box-shadow: 0 0 8px var(--accent-cyan);
  flex-shrink: 0;
}

.quble-card {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid var(--border-cyan);
  border-radius: 28px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5),
              0 0 30px rgba(14, 165, 233, 0.05);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.quble-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.quble-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 1rem;
}

.quble-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--accent-cyan-light), #0369a1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #030712;
  box-shadow: 0 5px 15px rgba(14, 165, 233, 0.3);
}

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

.quble-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.quble-status {
  font-size: 0.75rem;
  color: var(--accent-cyan-light);
  font-weight: 500;
}

.chat-bubble {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 85%;
  align-self: flex-start;
  position: relative;
}

.chat-bubble.ai {
  background: rgba(14, 165, 233, 0.04);
  border-color: var(--border-cyan);
  max-width: 90%;
  align-self: flex-start;
}

.chat-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.chat-bubble.ai .chat-label {
  color: var(--accent-cyan-light);
}

/* Store Call To Action Section */
.cta-section {
  padding: 8rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 10;
}

.cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.store-btns-footer {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Platform Disclaimer Banner */
.platform-disclaimer {
  background: rgba(var(--accent-gold-rgb), 0.03);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 2rem 4rem;
  position: relative;
  z-index: 10;
}

.disclaimer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.disclaimer-icon {
  font-size: 1.5rem;
  background: rgba(var(--accent-gold-rgb), 0.08);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-gold);
  flex-shrink: 0;
}

.platform-disclaimer p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Footer styling */
footer {
  padding: 4rem 4rem 3rem;
  border-top: 1px solid var(--border-light);
  position: relative;
  z-index: 10;
  background: #060709;
}

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

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  letter-spacing: 2px;
  text-decoration: none;
}

.footer-logo img {
  height: 32px;
  width: 32px;
  object-fit: contain;
  border-radius: 6px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--accent-gold-light);
}

.footer-bottom {
  max-width: 1280px;
  margin: 2rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
  nav {
    padding: 1.25rem 2rem;
  }
  .hero {
    padding: 8rem 2rem 4rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  .hero-content {
    align-items: center;
  }
  .btn-group {
    justify-content: center;
  }
  .hero-visual {
    height: 400px;
  }
  .quble-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .quble-inner h2, .quble-inner p {
    text-align: center;
  }
  .quble-features {
    align-items: center;
  }
  .quble-card {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }
  .section {
    padding: 6rem 2rem;
  }
  .cta-section {
    padding: 6rem 2rem;
  }
  .platform-disclaimer {
    padding: 2rem;
  }
  footer {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* simple mobile drawer toggle could be added, but keeping it clean */
  }
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
    gap: 1.5rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .btn-group {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .store-wrapper, .store-btn {
    width: 100%;
    justify-content: center;
  }
  .store-badge-soon {
    right: 15px;
  }
  .mockup-container {
    width: 280px;
    height: 400px;
  }
  .phone-screen {
    padding: 1rem;
  }
}

/* Animations and localization utilities */
[data-tr], [data-en] {
  transition: opacity 0.25s ease-in-out;
}

.fade-out {
  opacity: 0 !important;
}
