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

:root {
  --obsidian: #09090B;
  --obsidian-2: #111113;
  --obsidian-3: #18181B;
  --obsidian-4: #1C1C1F;
  --surface-1: rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.07);
  --surface-3: rgba(255,255,255,0.10);
  --border-subtle: rgba(255,255,255,0.06);
  --border-mid: rgba(255,255,255,0.10);
  --border-bright: rgba(255,255,255,0.16);
  --violet: #7C3AED;
  --violet-mid: #6D28D9;
  --violet-light: #A78BFA;
  --indigo: #4F46E5;
  --cyan: #06B6D4;
  --cyan-glow: rgba(6,182,212,0.15);
  --violet-glow: rgba(124,58,237,0.18);
  --violet-glow-strong: rgba(124,58,237,0.35);
  --gold: #D4A017;
  --gold-light: #F5CC5A;
  --text-primary: #F4F4F5;
  --text-secondary: #A1A1AA;
  --text-muted: #71717A;
  --white: #FFFFFF;
  --shadow-glow-violet: 0 0 40px rgba(124,58,237,0.25), 0 0 80px rgba(124,58,237,0.10);
  --shadow-glow-cyan: 0 0 40px rgba(6,182,212,0.20);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.4), 0 2px 8px rgba(0,0,0,0.3);
  --shadow-elevated: 0 16px 64px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.4);
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background:
    radial-gradient(ellipse 800px 600px at 20% -10%, rgba(124,58,237,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 80% 100%, rgba(6,182,212,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 400px 300px at 90% 20%, rgba(79,70,229,0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body > * { position: relative; z-index: 1; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--obsidian-3); }
::-webkit-scrollbar-thumb { background: var(--violet-mid); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--violet); }

::selection { background: rgba(124,58,237,0.35); color: var(--white); }

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.8rem, 7vw, 5rem); font-weight: 900; letter-spacing: -0.04em; }
h2 { font-size: clamp(2rem, 5vw, 3.2rem); }
h3 { font-size: 1.25rem; font-weight: 700; letter-spacing: -0.02em; }

p { color: var(--text-secondary); line-height: 1.7; }

a { color: inherit; text-decoration: none; }

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

.gradient-text {
  background: linear-gradient(135deg, var(--violet-light) 0%, var(--cyan) 60%, var(--violet-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: gradient-shift 4s ease infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% center; }
  50% { background-position: 100% center; }
  100% { background-position: 0% center; }
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 1rem;
  background: rgba(124,58,237,0.12);
  border: 1px solid rgba(124,58,237,0.28);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--violet-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(8px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.2s ease, background 0.2s ease;
  -webkit-user-select: none;
  user-select: none;
  letter-spacing: 0.01em;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
}

.btn:hover::before { background: rgba(255,255,255,0.06); }

.btn-primary {
  background: linear-gradient(135deg, var(--violet) 0%, var(--indigo) 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(124,58,237,0.35), 0 1px 4px rgba(0,0,0,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(124,58,237,0.5), 0 2px 8px rgba(0,0,0,0.4);
}

.btn-primary:active { transform: translateY(0) scale(0.99); }

.btn-ghost {
  background: var(--surface-1);
  color: var(--text-secondary);
  border: 1px solid var(--border-mid);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  background: var(--surface-2);
  color: var(--text-primary);
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-full { width: 100%; }

.btn-download {
  padding: 0.9rem 1.4rem;
  gap: 0.85rem;
  text-align: left;
  align-items: center;
}

.btn-download span {
  display: flex;
  flex-direction: column;
}

.btn-download small {
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.75;
  line-height: 1.2;
}

.btn-android {
  background: linear-gradient(135deg, #1C1C1F 0%, #2D2D31 100%);
  color: var(--text-primary);
  border: 1px solid var(--border-mid);
  box-shadow: var(--shadow-card);
}

.btn-android:hover {
  border-color: rgba(61,220,151,0.4);
  box-shadow: 0 8px 32px rgba(61,220,151,0.15), var(--shadow-card);
  transform: translateY(-3px) scale(1.02);
}

.btn-ios {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 100%);
  color: var(--text-primary);
  border: 1px solid var(--border-mid);
  box-shadow: var(--shadow-card);
}

.btn-ios:hover {
  border-color: rgba(167,139,250,0.4);
  box-shadow: 0 8px 32px rgba(167,139,250,0.15), var(--shadow-card);
  transform: translateY(-3px) scale(1.02);
}

.btn-android-light, .btn-ios-light {
  background: var(--surface-2);
  color: var(--text-primary);
  border: 1px solid var(--border-mid);
  backdrop-filter: blur(10px);
}

.btn-android-light:hover, .btn-ios-light:hover {
  background: var(--surface-3);
  border-color: var(--border-bright);
  transform: translateY(-3px) scale(1.02);
}

.highlight {
  border-color: var(--violet) !important;
  box-shadow: 0 0 20px rgba(124,58,237,0.3) !important;
}

.glass-card {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

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

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  background: rgba(24,24,27,0.95);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 640px;
  width: calc(100% - 2rem);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-elevated);
  flex-wrap: wrap;
}

.cookie-banner p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; }
.cookie-banner a { color: var(--violet-light); text-decoration: underline; }

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  background: rgba(9,9,11,0.8);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  z-index: 1000;
  border-bottom: 1px solid var(--border-subtle);
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
  background: rgba(9,9,11,0.95);
  border-bottom-color: var(--border-mid);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}

.logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(124,58,237,0.4));
  transition: filter 0.3s ease;
}

.logo:hover img { filter: drop-shadow(0 0 14px rgba(124,58,237,0.7)); }

.logo-text {
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--violet-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s ease, background 0.2s ease;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: var(--surface-1);
}

.nav-cta {}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#cursor-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear;
  will-change: transform;
}

.hero {
  padding: 10rem 0 7rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 70% 50%, rgba(124,58,237,0.10) 0%, transparent 65%),
    radial-gradient(ellipse 400px 300px at 10% 80%, rgba(6,182,212,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 15%; right: -5%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  filter: blur(60px);
  animation: float-orb 8s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 10%; left: 5%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.08) 0%, transparent 70%);
  filter: blur(60px);
  animation: float-orb 10s ease-in-out infinite reverse;
}

@keyframes float-orb {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text { animation: fade-up 0.9s cubic-bezier(0.16,1,0.3,1) both; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.animate-fade-up { animation: fade-up 0.9s cubic-bezier(0.16,1,0.3,1) both; }
.animate-fade-in { animation: fade-in 1.1s cubic-bezier(0.16,1,0.3,1) 0.2s both; }

.animate-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 560px;
  line-height: 1.75;
}

.download-btns {
  display: flex;
  gap: 0.9rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.download-note {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.download-note svg { flex-shrink: 0; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in 1.1s cubic-bezier(0.16,1,0.3,1) 0.2s both;
}

.phone-mockup {
  position: relative;
  width: 290px;
  height: 600px;
  background: linear-gradient(145deg, #1e1e24 0%, #141418 100%);
  border-radius: 2.8rem;
  padding: 0.85rem;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 32px 80px rgba(0,0,0,0.7),
    0 8px 24px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.12);
  margin: 0 auto;
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 2.9rem;
  background: linear-gradient(145deg, rgba(124,58,237,0.3), rgba(6,182,212,0.15), transparent);
  z-index: -1;
  filter: blur(2px);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--obsidian);
  border-radius: 2.1rem;
  overflow: hidden;
  position: relative;
}

.mockup-content {
  padding: 1rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mockup-header {
  height: 28px;
  background: linear-gradient(90deg, rgba(124,58,237,0.3), rgba(6,182,212,0.2));
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

.mockup-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.mockup-video {
  flex: 1;
  background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(6,182,212,0.08) 100%);
  border-radius: 0.75rem;
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.mockup-video::after {
  content: '▶';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.3);
  font-size: 1.2rem;
}

.hero-stat {
  position: absolute;
  background: rgba(18,18,22,0.90);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 100px;
  animation: float-card 6s ease-in-out infinite;
}

.stat-1 { top: 12%; right: -8%; animation-delay: 0s; }
.stat-2 { top: 48%; right: -12%; animation-delay: 2s; }
.stat-3 { bottom: 15%; left: -10%; animation-delay: 4s; }

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

.stat-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, var(--violet-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-wave { display: none; }

.stats-bar {
  padding: 3rem 0;
  background: var(--obsidian-2);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(124,58,237,0.04), transparent);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid var(--border-subtle);
}

.stat-item:last-child { border-right: none; }

.stat-big {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
  background: linear-gradient(135deg, var(--text-primary), var(--violet-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.features {
  padding: 8rem 0;
  background: var(--obsidian);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

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

.feature-card {
  padding: 2.5rem;
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: default;
}

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

.feature-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.10) 0%, transparent 70%);
  transition: opacity 0.3s ease;
  opacity: 0;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 0 1px var(--border-mid);
  border-color: rgba(124,58,237,0.25);
}

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

.feature-icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
  display: block;
  line-height: 1;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.preview {
  padding: 8rem 0;
  background: var(--obsidian-2);
  position: relative;
  overflow: hidden;
}

.preview::before {
  content: '';
  position: absolute;
  top: 50%; left: -10%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.06) 0%, transparent 70%);
  filter: blur(60px);
  transform: translateY(-50%);
}

.preview-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
  position: relative;
  z-index: 1;
}

.preview-text h2 { margin-bottom: 1.5rem; }

.preview-list {
  list-style: none;
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

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

.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--indigo));
  color: white;
  font-size: 0.7rem;
  flex-shrink: 0;
  font-style: normal;
  box-shadow: 0 0 10px rgba(124,58,237,0.4);
}

.preview-screens {
  position: relative;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  justify-content: center;
}

.screen-card {
  background: var(--obsidian-3);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-elevated);
  position: relative;
}

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

.screen-main {
  width: 220px;
  transform: translateY(0);
  z-index: 2;
}

.screen-side {
  width: 170px;
  transform: translateY(40px);
  z-index: 1;
  opacity: 0.8;
}

.screen-inner { padding: 1rem; height: 100%; }

.screen-top-bar {
  height: 24px;
  background: linear-gradient(90deg, rgba(124,58,237,0.25), rgba(6,182,212,0.15));
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
}

.screen-video-player {
  height: 120px;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(6,182,212,0.10));
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border-subtle);
}

.play-icon {
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
}

.screen-info { margin-bottom: 0.75rem; }

.screen-title-bar {
  height: 12px;
  background: var(--surface-2);
  border-radius: 0.25rem;
  margin-bottom: 0.4rem;
  width: 80%;
}

.screen-sub-bar {
  height: 10px;
  background: var(--surface-1);
  border-radius: 0.25rem;
  width: 55%;
}

.screen-suggestions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.screen-thumb {
  height: 48px;
  background: var(--surface-1);
  border-radius: 0.5rem;
  border: 1px solid var(--border-subtle);
}

.screen-short {
  height: 80px;
  background: linear-gradient(135deg, rgba(79,70,229,0.15), rgba(6,182,212,0.08));
  border-radius: 0.5rem;
  border: 1px solid var(--border-subtle);
  margin-bottom: 0.5rem;
}

.testimonials {
  padding: 8rem 0;
  background: var(--obsidian);
  position: relative;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 50%; right: -5%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.05) 0%, transparent 70%);
  filter: blur(80px);
  transform: translateY(-50%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.testimonial-card {
  padding: 2rem;
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), border-color 0.35s ease;
  position: relative;
  overflow: hidden;
}

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

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124,58,237,0.2);
}

.featured-testimonial {
  border-color: rgba(124,58,237,0.22);
  background: rgba(124,58,237,0.06);
  box-shadow: 0 8px 40px rgba(124,58,237,0.12), var(--shadow-card);
}

.stars {
  color: var(--gold-light);
  margin-bottom: 1rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  filter: drop-shadow(0 0 4px rgba(245,204,90,0.5));
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--violet), var(--indigo));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(124,58,237,0.4);
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  font-size: 0.9rem;
}

.testimonial-card footer p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px);
}

.rating-num {
  font-size: 3.5rem;
  font-weight: 900;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--text-primary), var(--violet-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rating-stars {
  font-size: 1.5rem;
  color: var(--gold-light);
  filter: drop-shadow(0 0 6px rgba(245,204,90,0.5));
}

.rating-count {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.download-cta {
  padding: 8rem 0;
  background: var(--obsidian-2);
  position: relative;
  overflow: hidden;
}

.download-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 50% 50%, rgba(124,58,237,0.10) 0%, transparent 65%);
}

.download-cta-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 4rem 3rem;
  background: var(--surface-1);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-elevated);
}

.download-cta-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.download-cta-inner h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

.download-cta-inner p {
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.download-cta-inner .download-btns {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.sha-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.faq {
  padding: 8rem 0;
  background: var(--obsidian);
}

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

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}

.faq-item:first-child { border-top: 1px solid var(--border-subtle); }

.faq-q {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  transition: color 0.2s ease;
}

.faq-q:hover { color: var(--violet-light); }

.faq-arrow {
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), color 0.2s ease;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-q[aria-expanded="true"] .faq-arrow {
  transform: rotate(90deg);
  color: var(--violet-light);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16,1,0.3,1);
}

.faq-a p {
  padding-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact {
  padding: 8rem 0;
  background: var(--obsidian-2);
}

.contact-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: start;
}

.contact-text h2 { margin-bottom: 1.25rem; }
.contact-text > p { margin-bottom: 2rem; }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  transition: color 0.2s ease;
  padding: 0.5rem 0;
}

.contact-link:hover { color: var(--violet-light); }

.contact-link svg { flex-shrink: 0; }

.contact-form {
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.10), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-group label span[aria-hidden="true"] { color: var(--violet-light); }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(124,58,237,0.5);
  background: rgba(124,58,237,0.04);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.12);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2371717A' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: var(--obsidian-3);
  color: var(--text-primary);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-error {
  display: block;
  font-size: 0.8rem;
  color: #f87171;
  margin-top: 0.35rem;
  min-height: 1rem;
}

.form-honeypot { display: none !important; }

.form-success {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-md);
  color: #4ade80;
  font-size: 0.9rem;
  display: none;
}

.form-success.visible { display: block; }

.footer {
  padding: 6rem 0 2rem;
  background: var(--obsidian-2);
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand > p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin: 1.25rem 0 1.75rem;
  max-width: 280px;
}

.footer h3 {
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.65rem; }

.footer-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

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

.social-links {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: var(--surface-1);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.social-links a:hover {
  color: var(--text-primary);
  background: var(--surface-2);
  border-color: var(--border-mid);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p { font-size: 0.82rem; color: var(--text-muted); }

.exit-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 10001;
  width: 90%;
  max-width: 460px;
  background: var(--obsidian-3);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-xl);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-elevated), 0 0 60px rgba(124,58,237,0.15);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}

.exit-popup.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: all;
}

.exit-popup h2 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.exit-popup p {
  margin-bottom: 1.75rem;
  color: var(--text-secondary);
}

.popup-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-sm);
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: color 0.2s ease, background 0.2s ease;
}

.popup-close:hover { color: var(--text-primary); background: var(--surface-3); }

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}

.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; gap: 4rem; }
  .hero-text { order: 1; }
  .hero-visual { order: 2; }
  .hero-desc { margin: 0 auto 2.5rem; }
  .download-btns { justify-content: center; }
  .download-note { justify-content: center; }
  .stat-1, .stat-2, .stat-3 { display: none; }
  .preview-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .hero { padding: 8rem 0 5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .stat-item:nth-child(odd) { border-right: 1px solid var(--border-subtle); }
  .stat-item:last-child { border-bottom: none; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand > p { max-width: 100%; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .download-cta-inner { padding: 2.5rem 1.5rem; }
  .screen-side { display: none; }
  .preview-screens { justify-content: center; }
  .rating-summary { flex-direction: column; text-align: center; }
  .cookie-banner { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 72px; left: 0; right: 0; background: rgba(9,9,11,0.97); border-bottom: 1px solid var(--border-subtle); padding: 1rem; backdrop-filter: blur(20px); gap: 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .download-btns { flex-direction: column; align-items: center; }
  .phone-mockup { width: 240px; height: 490px; }
}
