/* ─── Reset & Tokens ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #0a0a0b;
  --surface-1: #111113;
  --surface-2: #18181b;
  --surface-3: #1f1f23;
  --surface-4: #27272a;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.1);
  --primary: #6366f1;
  --primary-dark: #4f46e5;
  --primary-darker: #4338ca;
  --primary-dim: rgba(99,102,241,0.15);
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.15);
  --success: #22c55e;
  --danger: #ef4444;
  --text-1: #f1f5f9;
  --text-2: #94a3b8;
  --text-3: #64748b;
  --text-4: #475569;
  --font: 'DM Sans', system-ui, sans-serif;
  --mono: 'DM Mono', monospace;
}

html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text-1); font-family: var(--font); overflow-x: hidden; line-height: 1.6; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.08); border-radius: 3px; }

/* ─── Navbar ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; gap: 32px;
  background: rgba(10,10,11,0.8); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-left { display: flex; align-items: center; gap: 32px; min-width: 0; }
.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-divider { width: 1px; height: 22px; background: var(--border); }

.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.nav-logo-icon {
  width: 28px; height: 28px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.nav-logo-icon img { width: 100%; height: 100%; object-fit: contain; display: block; }
.nav-dropdown-item-icon img { width: 18px; height: 18px; object-fit: contain; display: block; }
.nav-logo span { font-size: 15px; font-weight: 600; color: var(--text-1); letter-spacing: -0.01em; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > a,
.nav-links .nav-dropdown-btn { font-size: 14px; font-weight: 500; color: var(--text-2); padding: 8px 12px; border-radius: 8px; transition: color 0.15s, background 0.15s; text-decoration: none; }
.nav-links > a:hover,
.nav-links .nav-dropdown-btn:hover { color: var(--text-1); background: var(--surface-2); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary); color: white; font-size: 13px; font-weight: 600;
  padding: 9px 16px; border-radius: 9px; text-decoration: none; border: none; cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
  box-shadow: 0 0 16px rgba(99,102,241,0.3);
  letter-spacing: -0.01em; white-space: nowrap;
}
.nav-cta:hover { background: var(--primary-dark); box-shadow: 0 0 24px rgba(99,102,241,0.5); transform: translateY(-1px); }

/* ─── Products Dropdown ─── */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex; align-items: center; gap: 5px; cursor: pointer;
  color: var(--text-2); font-size: 14px; font-weight: 500;
  padding: 6px 12px; border-radius: 8px; border: none; background: none;
  transition: all 0.15s; font-family: var(--font);
}
.nav-dropdown-btn:hover { color: var(--text-1); background: var(--surface-2); }
.nav-dropdown-btn svg { transition: transform 0.2s; }
.nav-dropdown:hover .nav-dropdown-btn svg,
.nav-dropdown:focus-within .nav-dropdown-btn svg { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 12px; padding: 6px; min-width: 220px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4); z-index: 200;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { display: block; }
.nav-dropdown-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 8px; text-decoration: none;
  color: var(--text-1); font-size: 13px; font-weight: 500;
  transition: background 0.15s; cursor: pointer;
}
.nav-dropdown-item:hover { background: var(--surface-3); }
.nav-dropdown-item.disabled { opacity: 0.45; pointer-events: none; cursor: default; }
.nav-dropdown-item-icon { width: 30px; height: 30px; border-radius: 7px; background: var(--primary-dim); border: 1px solid rgba(99,102,241,0.2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #818cf8; }
.nav-dropdown-item-icon.nav-dropdown-item-icon--accent { background: rgba(245,158,11,0.1); border-color: rgba(245,158,11,0.2); color: var(--accent); }
.nav-dropdown-item-meta { font-size: 11px; color: var(--text-3); margin-top: 1px; }
.soon-badge { font-size: 9px; font-weight: 700; padding: 2px 6px; border-radius: 4px; background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(245,158,11,0.2); margin-left: auto; letter-spacing: 0.04em; text-transform: uppercase; }

/* ─── Language Switcher ─── */
.lang-switcher {
  display: flex; align-items: center; gap: 2px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 8px; padding: 3px; flex-shrink: 0;
}
.lang-btn {
  font-size: 12px; font-weight: 600; padding: 4px 9px; border-radius: 5px;
  border: none; background: none; color: var(--text-3);
  cursor: pointer; transition: all 0.15s; font-family: var(--font);
  letter-spacing: 0.03em;
}
.lang-btn.active { background: var(--surface-4); color: var(--text-1); }
.lang-btn:hover:not(.active) { color: var(--text-2); }

/* ─── Hero ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 40px 80px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 900px 600px at 60% 40%, rgba(99,102,241,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 600px 400px at 80% 80%, rgba(245,158,11,0.04) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}
.hero-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; width: 100%; position: relative; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary-dim); border: 1px solid rgba(99,102,241,0.25);
  color: #818cf8; font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 100px;
  margin-bottom: 24px; letter-spacing: 0.04em; text-transform: uppercase;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: #818cf8; box-shadow: 0 0 8px #818cf8; }
h1 { font-size: clamp(36px, 4vw, 56px); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; color: var(--text-1); margin-bottom: 20px; }
h1 em { font-style: normal; color: var(--primary); }
.hero-sub { font-size: 17px; color: var(--text-2); line-height: 1.7; margin-bottom: 36px; max-width: 460px; font-weight: 400; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--primary); color: white; font-size: 15px; font-weight: 600;
  padding: 13px 24px; border-radius: 10px; text-decoration: none; border: none; cursor: pointer;
  transition: all 0.2s; box-shadow: 0 4px 24px rgba(99,102,241,0.35);
  letter-spacing: -0.01em; font-family: var(--font);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 4px 32px rgba(99,102,241,0.55); transform: translateY(-2px); }
.btn-primary:disabled { opacity: 0.7; cursor: wait; transform: none; }
.btn-primary--lg { font-size: 17px; padding: 16px 32px; gap: 10px; border-radius: 12px; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface-2); color: var(--text-1); font-size: 15px; font-weight: 500;
  padding: 13px 24px; border-radius: 10px; text-decoration: none; border: 1px solid var(--border);
  transition: all 0.2s; cursor: pointer;
}
.btn-secondary:hover { background: var(--surface-3); border-color: var(--border-hover); transform: translateY(-2px); }

/* Hero product pills */
.hero-pills { display: flex; align-items: center; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.product-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 12px;
}
.product-pill span.product-pill-label { font-size: 11px; color: var(--text-2); font-weight: 500; }
.product-pill svg { color: var(--primary); opacity: 0.8; }
.product-pill--muted { opacity: 0.5; }
.product-pill--muted svg { color: var(--accent); opacity: 1; }
.product-pill-soon {
  font-size: 9px; font-weight: 700; padding: 1px 5px; border-radius: 3px;
  background: var(--accent-dim); color: var(--accent); letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-os-row { display: flex; align-items: center; gap: 8px; margin-top: 20px; }
.os-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 8px; padding: 7px 14px;
}
.os-pill svg { color: var(--text-2); }
.os-pill span { font-size: 12px; color: var(--text-2); font-weight: 500; }

/* ─── App Mockup (Hero) ─── */
.mockup-window {
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 60px rgba(99,102,241,0.08);
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
  transition: transform 0.4s ease;
  animation: float 6s ease-in-out infinite;
}
.mockup-window:hover { transform: perspective(1200px) rotateY(-1deg) rotateX(1deg); }
.mockup-titlebar {
  height: 36px; background: var(--surface-2); border-bottom: 1px solid var(--border);
  display: flex; align-items: center; padding: 0 16px; gap: 6px;
}
.mockup-titlebar-title { flex: 1; text-align: center; font-size: 11px; color: var(--text-3); font-family: var(--mono); }
.mock-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.mock-dot--red { background: #ef4444; }
.mock-dot--yellow { background: #f59e0b; }
.mock-dot--green { background: #22c55e; }
.mock-dots { display: flex; gap: 4px; }
.mock-sidebar {
  width: 72px; background: var(--surface-1); border-right: 1px solid var(--border);
  display: flex; flex-direction: column; align-items: center; padding: 12px 0; gap: 8px;
}
.mock-sidebar-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--surface-2); display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; color: var(--text-3); }
.mock-sidebar-icon.active { background: var(--primary-dim); box-shadow: 0 0 12px rgba(99,102,241,0.2); color: var(--primary); }
.mock-sidebar-icon--bottom { margin-top: auto; }
.mock-content { display: flex; flex: 1; overflow: hidden; height: 340px; }
.mock-main { flex: 1; padding: 16px; overflow: hidden; }
.mock-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.mock-title { font-size: 13px; font-weight: 600; color: var(--text-1); }
.mock-title-count { color: var(--text-3); font-weight: 400; font-size: 11px; }
.mock-header-actions { display: flex; align-items: center; gap: 6px; }
.mock-search { background: var(--surface-2); border: 1px solid var(--border); border-radius: 8px; height: 28px; width: 140px; display: flex; align-items: center; padding: 0 10px; gap: 6px; }
.mock-search-icon { width: 10px; height: 10px; border-radius: 50%; background: var(--text-3); flex-shrink: 0; }
.mock-search-text { font-size: 10px; color: var(--text-3); font-family: var(--mono); }
.mock-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mock-card {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px;
  overflow: hidden; padding: 10px 12px; cursor: pointer;
  transition: all 0.15s;
}
.mock-card:hover { background: var(--surface-3); border-color: var(--border-hover); }
.mock-card-accent { height: 2px; margin: -10px -12px 8px; }
.mock-card-accent--indigo { background: #6366f1; }
.mock-card-accent--blue { background: #3b82f6; }
.mock-card-accent--green { background: #22c55e; }
.mock-card-accent--amber { background: #f59e0b; }
.mock-card-head { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.mock-card-platform { width: 16px; height: 16px; border-radius: 3px; }
.mock-card-name { font-size: 11px; font-weight: 600; color: var(--text-1); }
.mock-card-meta { font-size: 9.5px; color: var(--text-3); font-family: var(--mono); margin-bottom: 6px; }
.mock-card-badges { display: flex; gap: 4px; flex-wrap: wrap; }
.mock-card-badge { display: inline-flex; align-items: center; font-size: 9px; font-weight: 600; padding: 2px 6px; border-radius: 4px; }
.mock-card-badge--indigo { background: rgba(99,102,241,0.15); color: #818cf8; }
.mock-card-badge--blue { background: rgba(59,130,246,0.15); color: #60a5fa; }
.mock-card-badge--green { background: rgba(34,197,94,0.1); color: #22c55e; }
.mock-card-badge--amber { background: rgba(245,158,11,0.1); color: #f59e0b; }
.mock-add-btn { width: 26px; height: 26px; border-radius: 8px; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 16px; color: white; box-shadow: 0 0 10px rgba(99,102,241,0.4); }

/* ─── Trust Strip ─── */
.trust-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 24px 40px; background: var(--surface-1);
}
.trust-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--primary-dim); border: 1px solid rgba(99,102,241,0.2); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.trust-label { font-size: 13px; font-weight: 600; color: var(--text-1); }
.trust-sub { font-size: 11px; color: var(--text-3); margin-top: 1px; }
.trust-divider { width: 1px; height: 32px; background: var(--border); }

/* ─── Section Base ─── */
section { padding: 100px 40px; }
.section-inner { max-width: 1300px; margin: 0 auto; }
.section-eyebrow { font-size: 12px; font-weight: 600; color: var(--primary); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 12px; }
.section-eyebrow--center { text-align: center; }
.section-title { font-size: clamp(28px, 3vw, 42px); font-weight: 700; letter-spacing: -0.025em; color: var(--text-1); line-height: 1.15; margin-bottom: 16px; }
.section-title--center { text-align: center; }
.section-sub { font-size: 17px; color: var(--text-2); max-width: 560px; line-height: 1.7; }
.section-sub--center { margin: 0 auto 40px; text-align: center; }
.section-header { margin-bottom: 64px; }
.section-header--narrow { max-width: 500px; }

/* ─── Features ─── */
#features { background: var(--bg); }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feat-card {
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px; cursor: default;
  transition: all 0.2s;
  position: relative; overflow: hidden;
}
.feat-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 14px;
  background: radial-gradient(ellipse 200px 200px at 50% -20%, var(--primary-dim), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.feat-card:hover { border-color: rgba(99,102,241,0.2); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.feat-card:hover::before { opacity: 1; }
.feat-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--primary-dim); border: 1px solid rgba(99,102,241,0.2); display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 16px; position: relative; }
.feat-title { font-size: 14px; font-weight: 600; color: var(--text-1); margin-bottom: 8px; position: relative; }
.feat-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; position: relative; }

/* ─── Product Showcase ─── */
#showcase { background: var(--surface-1); }
.showcase-grid { display: flex; flex-direction: column; gap: 80px; }
.showcase-item { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.showcase-item.reverse { direction: rtl; }
.showcase-item.reverse > * { direction: ltr; }
.showcase-label { font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.showcase-label::before { content: ''; width: 20px; height: 1px; background: var(--accent); }
.showcase-title { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: var(--text-1); margin-bottom: 14px; line-height: 1.2; }
.showcase-desc { font-size: 15px; color: var(--text-2); line-height: 1.7; }
.showcase-mockup { position: relative; }
.showcase-mockup::before {
  content: ''; position: absolute; inset: -20px;
  background: radial-gradient(ellipse 400px 300px at 50% 50%, rgba(99,102,241,0.08), transparent);
  pointer-events: none;
}
.mock-window {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px;
  overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  position: relative;
}
.mock-window--narrow { max-width: 340px; margin: 0 auto; }
.mock-bar { height: 32px; background: var(--surface-1); border-bottom: 1px solid var(--border); display: flex; align-items: center; padding: 0 12px; gap: 5px; }
.mock-bar-title { flex: 1; text-align: center; font-size: 10px; color: var(--text-3); font-family: var(--mono); }
.mock-body { padding: 16px; }

/* Dashboard mockup (showcase 1) */
.dashboard-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.dashboard-title { font-size: 12px; font-weight: 600; color: var(--text-1); }
.dashboard-title-count { color: var(--text-3); font-weight: 400; }
.dashboard-actions { display: flex; gap: 6px; align-items: center; }
.dashboard-search {
  background: var(--surface-1); border: 1px solid var(--border);
  border-radius: 6px; height: 24px; width: 110px;
  display: flex; align-items: center; padding: 0 8px; gap: 4px;
  color: var(--text-3);
}
.dashboard-search-text { font-size: 9px; color: var(--text-3); }
.dashboard-add-btn {
  width: 24px; height: 24px; background: var(--primary); border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: white; box-shadow: 0 0 8px rgba(99,102,241,0.35);
}
.dashboard-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.dashboard-card { background: var(--surface-1); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.dashboard-card-accent { height: 2px; }
.dashboard-card-accent--indigo { background: #6366f1; }
.dashboard-card-accent--blue { background: #3b82f6; }
.dashboard-card-accent--green { background: #22c55e; }
.dashboard-card-accent--amber { background: #f59e0b; }
.dashboard-card-body { padding: 8px 10px; }
.dashboard-card-head { display: flex; align-items: center; gap: 5px; margin-bottom: 4px; }
.dashboard-card-platform { width: 14px; height: 14px; border-radius: 3px; }
.dashboard-card-name { font-size: 10px; font-weight: 600; color: var(--text-1); }
.dashboard-card-email { font-size: 9px; color: var(--text-3); font-family: var(--mono); margin-bottom: 5px; }
.dashboard-card-badges { display: flex; gap: 3px; }
.dashboard-badge { font-size: 8px; font-weight: 600; padding: 2px 5px; border-radius: 4px; }
.dashboard-badge--indigo { background: rgba(99,102,241,0.15); color: #818cf8; }
.dashboard-badge--blue { background: rgba(59,130,246,0.15); color: #60a5fa; }
.dashboard-badge--green { background: rgba(34,197,94,0.1); color: #22c55e; }
.dashboard-badge--amber { background: rgba(245,158,11,0.1); color: #f59e0b; }

/* Detail mockup (showcase 2) */
.detail-header { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.detail-avatar { width: 36px; height: 36px; border-radius: 9px; background: linear-gradient(135deg, #6366f1, #3b82f6); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 700; color: white; flex-shrink: 0; }
.detail-name { font-size: 14px; font-weight: 600; color: var(--text-1); }
.detail-platform { font-size: 11px; color: var(--text-3); display: flex; align-items: center; gap: 5px; }
.detail-platform-icon { width: 11px; height: 11px; border-radius: 2px; }
.detail-status { margin-left: auto; display: flex; gap: 5px; }
.detail-status-badge {
  font-size: 9px; font-weight: 600; padding: 3px 7px; border-radius: 5px;
  background: rgba(34,197,94,0.1); color: #22c55e;
  border: 1px solid rgba(34,197,94,0.2);
}
.detail-fields { display: flex; flex-direction: column; gap: 10px; }
.detail-field { background: var(--surface-1); border: 1px solid var(--border); border-radius: 8px; padding: 10px 12px; }
.field-label { font-size: 10px; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 4px; }
.field-value { font-size: 12px; color: var(--text-1); font-family: var(--mono); }
.field-value--sm { font-size: 11px; }
.field-value--accent { color: #a78bfa; }
.field-hidden { display: flex; align-items: center; gap: 6px; }
.field-dots { display: flex; gap: 3px; }
.field-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--text-3); }
.field-toggle { margin-left: auto; font-size: 9px; color: var(--text-3); cursor: pointer; }
.detail-totp-row { display: flex; align-items: center; gap: 8px; }
.detail-totp-timeleft { font-size: 9px; color: var(--text-3); }
.totp-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.2); color: var(--success); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 6px; font-family: var(--mono); }
.totp-badge-code { font-size: 13px; letter-spacing: 2px; }
.totp-timer { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--success); border-top-color: transparent; display: inline-block; animation: spin 2s linear infinite; }
.detail-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

/* Lock screen mockup (showcase 3) */
.lock-mockup { display: flex; flex-direction: column; align-items: center; padding: 36px 24px; text-align: center; }
.lock-icon { width: 60px; height: 60px; border-radius: 14px; background: linear-gradient(135deg, rgba(99,102,241,0.3), rgba(79,70,229,0.2)); border: 1px solid rgba(99,102,241,0.3); display: flex; align-items: center; justify-content: center; color: var(--primary); margin-bottom: 16px; box-shadow: 0 0 30px rgba(99,102,241,0.2); }
.lock-icon svg { width: 26px; height: 26px; }
.lock-title { font-size: 18px; font-weight: 700; color: var(--text-1); margin-bottom: 6px; }
.lock-sub { font-size: 12px; color: var(--text-3); margin-bottom: 24px; }
.lock-form { width: 100%; }
.lock-input { width: 100%; background: var(--surface-1); border: 1px solid var(--border); border-radius: 8px; height: 40px; display: flex; align-items: center; padding: 0 14px; margin-bottom: 12px; }
.lock-input-dots { display: flex; gap: 6px; }
.lock-input-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--text-3); }
.lock-btn { width: 100%; height: 40px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: white; box-shadow: 0 4px 16px rgba(99,102,241,0.35); }

/* ─── Security ─── */
#security { background: var(--bg); position: relative; overflow: hidden; }
#security::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 800px 600px at 50% 100%, rgba(99,102,241,0.06), transparent);
  pointer-events: none;
}
.security-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.security-list { display: flex; flex-direction: column; gap: 20px; margin-top: 40px; }
.security-item { display: flex; align-items: flex-start; gap: 16px; }
.sec-icon { width: 36px; height: 36px; border-radius: 9px; background: var(--primary-dim); border: 1px solid rgba(99,102,241,0.2); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.sec-title { font-size: 15px; font-weight: 600; color: var(--text-1); margin-bottom: 4px; }
.sec-desc { font-size: 13px; color: var(--text-2); line-height: 1.6; }
.security-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.sec-ring {
  width: 320px; height: 320px; border-radius: 50%; position: relative;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.08), transparent 70%);
  display: flex; align-items: center; justify-content: center;
}
.sec-ring::before {
  content: ''; position: absolute; inset: 20px; border-radius: 50%;
  border: 1px solid rgba(99,102,241,0.12);
  animation: pulse-ring 3s ease-in-out infinite;
}
.sec-ring::after {
  content: ''; position: absolute; inset: 50px; border-radius: 50%;
  border: 1px solid rgba(99,102,241,0.08);
  animation: pulse-ring 3s ease-in-out infinite 1s;
}
.sec-center { width: 90px; height: 90px; border-radius: 50%; background: var(--primary-dim); border: 1px solid rgba(99,102,241,0.3); display: flex; align-items: center; justify-content: center; color: var(--primary); box-shadow: 0 0 40px rgba(99,102,241,0.25); }
.sec-center svg { width: 36px; height: 36px; }
.sec-badge {
  position: absolute; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 12px; font-size: 11px; font-weight: 600; color: var(--text-1);
  display: flex; align-items: center; gap: 8px; box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  white-space: nowrap;
}
.sec-badge--enc { top: 10%; left: -10px; }
.sec-badge--totp { bottom: 15%; right: -20px; }
.sec-badge--local { bottom: 5%; left: 0; }
.sec-badge-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.sec-badge-dot--green { background: #22c55e; box-shadow: 0 0 6px #22c55e; }
.sec-badge-dot--indigo { background: #6366f1; box-shadow: 0 0 6px #6366f1; }
.sec-badge-dot--amber { background: #f59e0b; box-shadow: 0 0 6px #f59e0b; }

/* ─── Download ─── */
#download { background: var(--surface-1); text-align: center; padding: 100px 40px; }
.download-inner { max-width: 600px; margin: 0 auto; }
.download-cta-row { display: flex; justify-content: center; }
.download-version { font-family: var(--mono); font-size: 12px; color: var(--text-3); margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
.download-version span { display: flex; align-items: center; gap: 6px; }
.download-version svg { opacity: 0.5; }

/* ─── FAQ ─── */
#faq { background: var(--bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 56px; }
.faq-item { background: var(--surface-1); border: 1px solid var(--border); border-radius: 12px; padding: 24px; transition: border-color 0.2s; cursor: pointer; }
.faq-item:hover { border-color: var(--border-hover); }
.faq-item:focus-within { border-color: rgba(99,102,241,0.3); outline: none; }
.faq-q {
  font-size: 15px; font-weight: 600; color: var(--text-1); margin-bottom: 10px;
  display: flex; justify-content: space-between; align-items: start; gap: 12px;
  background: none; border: none; text-align: left; width: 100%;
  font-family: var(--font); cursor: pointer; padding: 0;
}
.faq-q:focus { outline: none; }
.faq-q-icon { color: var(--primary); font-size: 18px; flex-shrink: 0; margin-top: 1px; transition: transform 0.2s; font-weight: 400; }
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-a-inner {
  overflow: hidden;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
  min-height: 0;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }

/* ─── Contact ─── */
#contact { background: var(--surface-1); }
.contact-grid { display: grid; grid-template-columns: minmax(0, 480px); justify-content: center; gap: 80px; align-items: start; margin-top: 64px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-group label { display: block; font-size: 12px; font-weight: 600; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; background: var(--surface-2); border: 1px solid var(--border);
  border-radius: 9px; color: var(--text-1); font-family: var(--font); font-size: 14px;
  padding: 11px 14px; outline: none; transition: border-color 0.15s, box-shadow 0.15s;
  resize: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: rgba(99,102,241,0.4); box-shadow: 0 0 0 3px rgba(99,102,241,0.1); }
.form-group textarea { height: 120px; }
.form-submit { width: fit-content; }
.contact-info { display: flex; flex-direction: column; gap: 16px; padding-top: 8px; }
.contact-info-title { font-size: 18px; font-weight: 600; color: var(--text-1); margin-bottom: 6px; }
.contact-info-desc { font-size: 14px; color: var(--text-2); line-height: 1.7; margin-bottom: 24px; }
.contact-link { display: flex; align-items: center; gap: 12px; background: var(--surface-2); border: 1px solid var(--border); border-radius: 10px; padding: 14px 16px; text-decoration: none; color: var(--text-1); font-size: 14px; font-weight: 500; transition: all 0.15s; }
.contact-link:hover { border-color: var(--border-hover); transform: translateX(4px); }
.contact-link-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--primary-dim); border: 1px solid rgba(99,102,241,0.2); display: flex; align-items: center; justify-content: center; color: var(--primary); flex-shrink: 0; }
.contact-link-icon--discord { background: rgba(88,101,242,0.15); border-color: rgba(88,101,242,0.2); }
.contact-link-icon--discord svg { color: #5865f2; }
.contact-link-meta { font-size: 11px; color: var(--text-3); margin-top: 2px; }

/* ─── Footer ─── */
footer {
  background: var(--surface-1); border-top: 1px solid var(--border);
  padding: 40px; text-align: center;
}
.footer-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.footer-brand { display: flex; align-items: center; gap: 10px; }
.footer-brand .nav-logo-icon { width: 22px; height: 22px; }
.footer-brand-name { font-size: 13px; font-weight: 600; color: var(--text-2); }
.footer-copy { font-size: 13px; color: var(--text-3); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--text-3); text-decoration: none; transition: color 0.15s; }
.footer-links a:hover { color: var(--text-1); }

/* ─── Animations ─── */
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulse-ring { 0%,100% { opacity: 0.4; transform: scale(1); } 50% { opacity: 1; transform: scale(1.03); } }
@keyframes float { 0%,100% { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(0); } 50% { transform: perspective(1200px) rotateY(-4deg) rotateX(2deg) translateY(-8px); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── Active nav state ─── */
.nav-links a[aria-current="page"],
.nav-links .nav-dropdown-btn[aria-current="page"] { color: var(--text-1); background: var(--surface-2); }

/* ─── Pricing Hero ─── */
.pricing-hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 140px 40px 80px; text-align: center;
  position: relative; overflow: hidden;
}
.pricing-hero-orb {
  position: absolute; width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none; top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: orb-pulse 6s ease-in-out infinite;
}
.pricing-hero-orb--accent {
  width: 400px; height: 400px; top: 30%; left: 65%; animation: none;
  background: radial-gradient(ellipse at center, rgba(245,158,11,0.06) 0%, transparent 70%);
}
.pricing-hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}
.pricing-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 20px;
  background: var(--primary-dim); border: 1px solid rgba(99,102,241,0.2);
  padding: 5px 14px; border-radius: 100px; position: relative;
}
.pricing-eyebrow::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 6px var(--primary); }
.price-headline {
  font-size: clamp(40px, 5vw, 68px); font-weight: 700;
  letter-spacing: -0.04em; line-height: 1.05;
  color: var(--text-1); margin-bottom: 16px; position: relative;
}
.price-headline em { font-style: normal; color: var(--primary); }
.price-sub { font-size: 18px; color: var(--text-2); max-width: 520px; margin: 0 auto 60px; line-height: 1.7; position: relative; }

/* ─── Price Card ─── */
.card-wrapper { position: relative; margin-bottom: 48px; }
.card-wrapper.float { animation: card-float 5s ease-in-out infinite; }
.card-glow {
  position: absolute; inset: -40px;
  background: radial-gradient(ellipse 300px 300px at 50% 50%, rgba(99,102,241,0.2), transparent);
  pointer-events: none; border-radius: 50%;
  animation: orb-pulse 4s ease-in-out infinite;
}
.price-card {
  position: relative; background: var(--surface-2);
  border: 1px solid rgba(99,102,241,0.25);
  border-radius: 24px; padding: 48px 56px;
  width: 420px; max-width: 100%; text-align: center;
  box-shadow: 0 0 0 1px rgba(99,102,241,0.1), 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
  overflow: hidden;
}
.price-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(99,102,241,0.6), transparent);
}
.plan-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--primary); background: var(--primary-dim); border: 1px solid rgba(99,102,241,0.2);
  display: inline-block; padding: 4px 12px; border-radius: 6px; margin-bottom: 28px;
}
.price-amount { display: flex; align-items: flex-start; justify-content: center; gap: 4px; margin-bottom: 6px; }
.price-currency { font-size: 28px; font-weight: 600; color: var(--text-2); margin-top: 12px; line-height: 1; }
.price-number { font-size: 88px; font-weight: 700; letter-spacing: -0.04em; color: var(--text-1); line-height: 1; }
.price-cents { font-size: 28px; font-weight: 600; color: var(--text-1); margin-top: 12px; line-height: 1; }
.price-period { font-size: 14px; color: var(--text-3); margin-bottom: 32px; }
.price-period strong { color: var(--text-2); font-weight: 600; }
.price-divider { height: 1px; background: var(--border); margin: 0 0 28px; }
.card-features { display: flex; flex-direction: column; gap: 12px; text-align: left; margin-bottom: 32px; }
.card-feat { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--text-2); }
.card-feat-check {
  width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0;
  background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.25);
  display: flex; align-items: center; justify-content: center; color: var(--success);
}
.btn-subscribe {
  display: block; width: 100%; padding: 15px;
  background: var(--primary); color: white; font-family: var(--font);
  font-size: 16px; font-weight: 600; border: none; border-radius: 12px; cursor: pointer;
  letter-spacing: -0.01em; transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(99,102,241,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  text-decoration: none; text-align: center;
}
.btn-subscribe:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(99,102,241,0.55), inset 0 1px 0 rgba(255,255,255,0.1); }
.card-note { font-size: 11px; color: var(--text-3); margin-top: 14px; }

/* ─── Guarantee strip ─── */
.guarantee {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-3); margin: 24px 0 0;
}
.guarantee svg { color: var(--success); flex-shrink: 0; }

/* ─── Pricing features grid ─── */
.pricing-section { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 40px 100px; }
.pricing-section-header { text-align: center; margin-bottom: 56px; }
.pricing-section-title { font-size: clamp(26px, 3vw, 38px); font-weight: 700; letter-spacing: -0.025em; color: var(--text-1); margin-bottom: 12px; }
.pricing-section-sub { font-size: 16px; color: var(--text-2); }
.pfeat-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border-radius: 20px; overflow: hidden; border: 1px solid var(--border);
}
.pfeat-item { background: var(--surface-1); padding: 28px; display: flex; align-items: flex-start; gap: 16px; transition: background 0.15s; }
.pfeat-item:hover { background: var(--surface-2); }
.pfeat-item-icon {
  width: 38px; height: 38px; border-radius: 9px; flex-shrink: 0;
  background: var(--primary-dim); border: 1px solid rgba(99,102,241,0.2);
  display: flex; align-items: center; justify-content: center; color: #818cf8;
}
.pfeat-item-title { font-size: 14px; font-weight: 600; color: var(--text-1); margin-bottom: 5px; }
.pfeat-item-desc { font-size: 12px; color: var(--text-3); line-height: 1.6; }

/* ─── Compare strip ─── */
.compare-wrap { max-width: 700px; margin: 80px auto 0; }
.compare-head { text-align: center; margin-bottom: 32px; }
.compare-head .pricing-section-title { margin-bottom: 8px; }
.compare-strip { background: var(--surface-1); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.compare-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px; border-bottom: 1px solid var(--border); font-size: 14px;
}
.compare-row:last-child { border-bottom: none; }
.compare-row--head { background: var(--surface-2); font-weight: 600; }
.compare-row--head .compare-row-label { color: var(--text-1); }
.compare-row--head .compare-row-val { color: var(--primary); }
.compare-row--total { background: var(--primary-dim); border-color: rgba(99,102,241,0.15); }
.compare-row--total .compare-row-label { font-weight: 700; color: var(--text-1); }
.compare-row--total .compare-row-val { font-weight: 700; color: var(--primary); font-size: 18px; }
.compare-row-label { color: var(--text-2); }
.compare-row-val { display: flex; align-items: center; gap: 6px; font-weight: 600; color: var(--text-1); }
.compare-row-val svg { color: var(--success); flex-shrink: 0; }

/* ─── FAQ mini (Pricing) ─── */
.faq-mini { max-width: 700px; margin: 80px auto 0; }
.faq-mini-title { font-size: 22px; font-weight: 700; letter-spacing: -0.02em; color: var(--text-1); margin-bottom: 8px; text-align: center; }
.faq-mini-item { border-bottom: 1px solid var(--border); }
.faq-mini-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; font-size: 14px; font-weight: 600; color: var(--text-1);
  cursor: pointer; gap: 12px;
  background: none; border: none; text-align: left; width: 100%;
  font-family: var(--font); transition: color 0.15s;
}
.faq-mini-q:hover { color: var(--primary); }
.faq-mini-q:focus { outline: none; color: var(--primary); }
.faq-mini-icon { font-size: 18px; color: var(--primary); flex-shrink: 0; transition: transform 0.2s; font-weight: 300; }
.faq-mini-item.open .faq-mini-icon { transform: rotate(45deg); }
.faq-mini-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-mini-a-inner {
  overflow: hidden;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.7;
  min-height: 0;
}
.faq-mini-item.open .faq-mini-a { grid-template-rows: 1fr; }
.faq-mini-item.open .faq-mini-a-inner { padding-bottom: 16px; }

@media (prefers-reduced-motion: reduce) {
  .faq-a, .faq-mini-a { transition: none; }
}

/* ─── Bottom CTA (Pricing) ─── */
.pricing-cta { text-align: center; margin: 80px auto 0; }
.pricing-cta-label { font-size: 14px; color: var(--text-3); margin-bottom: 20px; }
.pricing-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--primary); color: white; font-size: 16px; font-weight: 600;
  padding: 16px 36px; border-radius: 12px; text-decoration: none;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 4px 24px rgba(99,102,241,0.4);
}
.pricing-cta-btn:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(99,102,241,0.55); }
.pricing-cta-meta {
  font-size: 12px; color: var(--text-3); margin-top: 14px;
  display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap;
}
.pricing-cta-meta-sep { opacity: 0.5; }

@keyframes orb-pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 0.8; }
  50%     { transform: translate(-50%,-50%) scale(1.08); opacity: 1; }
}
@keyframes card-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

/* ─── Responsive ─── */
.nav-hamburger { display: none; }

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner, .showcase-item, .security-grid, .contact-grid, .faq-grid { grid-template-columns: 1fr; }
  .showcase-item.reverse { direction: ltr; }
  .security-visual { display: none; }
  nav { padding: 0 20px; gap: 20px; }
  .nav-left { gap: 20px; }

  .nav-hamburger {
    display: flex; flex-direction: column; justify-content: center; align-items: center;
    gap: 4px; width: 40px; height: 40px; border-radius: 8px;
    background: var(--surface-2); border: 1px solid var(--border);
    cursor: pointer; padding: 0;
  }
  .nav-hamburger span {
    display: block; width: 18px; height: 2px; background: var(--text-1); border-radius: 2px;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  nav.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  nav.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; }
  nav.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .nav-links {
    display: none;
    position: fixed; top: 64px; left: 0; right: 0;
    background: rgba(10,10,11,0.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 16px; gap: 6px;
    flex-direction: column; align-items: stretch;
    max-height: calc(100vh - 64px); overflow-y: auto;
    z-index: 99;
  }
  nav.nav-open .nav-links { display: flex; }
  .nav-links > a,
  .nav-links .nav-dropdown-btn {
    padding: 14px 16px; font-size: 15px; border-radius: 10px;
    min-height: 44px; width: 100%;
  }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    display: block; position: static;
    background: var(--surface-1); box-shadow: none;
    margin-top: 4px; padding: 4px; min-width: 0;
  }

  section { padding: 72px 20px; }
  .hero { padding: 100px 20px 60px; }
  .pfeat-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-section { padding: 0 20px 80px; }
  .pricing-hero { padding: 120px 20px 60px; }
  .price-card { padding: 36px 28px; width: 100%; max-width: 400px; }
}
@media (max-width: 640px) {
  .pfeat-grid { grid-template-columns: 1fr; }
  .pricing-cta-meta-sep { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .faq-grid { margin-top: 40px; }
}

/* ─── Phone (≤ 480px) ─── */
@media (max-width: 480px) {
  /* Navbar — hide logo text so CTA fits */
  nav { padding: 0 14px; gap: 10px; }
  .nav-left { gap: 10px; }
  .nav-logo span { display: none; }
  .nav-right { gap: 8px; }
  .nav-divider { display: none; }
  .nav-cta { font-size: 12px; padding: 8px 12px; }

  /* Tighter section paddings */
  section { padding: 56px 16px; }
  .hero { padding: 88px 16px 48px; min-height: auto; }
  .pricing-hero { padding: 100px 16px 48px; min-height: auto; }
  #download { padding: 64px 16px; }

  /* Hero typography */
  h1 { font-size: 32px; margin-bottom: 16px; }
  .hero-sub { font-size: 15px; margin-bottom: 28px; }
  .hero-badge { margin-bottom: 18px; }
  .hero-inner { gap: 48px; }

  /* Trust strip — tighter wrap */
  .trust-strip { padding: 20px 16px; }
  .trust-inner { gap: 20px; }
  .trust-divider { display: none; }

  /* Section headers */
  .section-header { margin-bottom: 40px; }
  .section-sub { font-size: 15px; }

  /* Download section — badges stack cleanly */
  .download-version { gap: 10px; }

  /* Pricing card — breathe */
  .price-card { padding: 32px 20px; }
  .price-number { font-size: 72px; }

  /* Pricing sections */
  .pricing-section { padding: 0 16px 64px; }
  .compare-wrap, .faq-mini { margin-top: 56px; }
  .compare-row { padding: 12px 16px; font-size: 13px; }

  /* FAQ tap targets */
  .faq-item { padding: 20px; }
  .faq-q { font-size: 14px; min-height: 44px; }

  /* Footer */
  footer { padding: 32px 16px; }
  .footer-inner { justify-content: center; text-align: center; gap: 16px; }
  .footer-links { gap: 18px; justify-content: center; }

  /* Contact */
  .contact-grid { gap: 40px; margin-top: 40px; }

  /* Showcase spacing */
  .showcase-grid { gap: 56px; }
  .showcase-title { font-size: 22px; }
}
