/* VaultX marketing site — upload this folder to Namecheap (public_html or a subfolder) */

:root {
  --bg: #0a0a12;
  --surface: #14141f;
  --surface2: #1c1c2a;
  --border: #2a2a3d;
  --text: #f4f4f8;
  --muted: #8b8b9e;
  --accent: #6c7cff;
  --accent-hover: #8b96ff;
  --radius: 14px;
  --max: 720px;
  --max-wide: min(1120px, calc(100vw - 44px));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

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

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 22px;
}

.wrap-wide {
  max-width: var(--max-wide);
}

header {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 10, 18, 0.92);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}

.logo.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 22%;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.logo-text {
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--accent);
  text-decoration: none;
}

.logo:hover .logo-text {
  color: var(--accent);
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

nav a {
  color: var(--muted);
}

nav a:hover {
  color: var(--text);
}

.hero {
  padding: 48px 0 40px;
  text-align: center;
}

.hero-icon {
  width: 112px;
  height: 112px;
  border-radius: 22%;
  margin: 0 auto 22px;
  display: block;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.hero-badges {
  list-style: none;
  margin: 0 auto 18px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.hero-badges .badge {
  margin: 0;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.85rem, 5vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.hero .tagline {
  margin: 0 auto 28px;
  max-width: 38ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero .tagline strong {
  color: var(--text);
  font-weight: 600;
}

.pro-card {
  padding: 22px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.pro-lead {
  margin: 0 0 14px;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.55;
}

.pro-lead strong {
  color: var(--text);
}

.pro-perks {
  margin: 0 0 12px;
  padding-left: 1.2rem;
  color: var(--muted);
}

.pro-perks li {
  margin-bottom: 8px;
}

.pro-legal {
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, transform 0.12s ease;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-ghost {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--surface);
  color: var(--text);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 14px;
}

.app-store-note {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto;
}

section {
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

section h2 {
  margin: 0 0 18px;
  font-size: 1.35rem;
  font-weight: 700;
}

.features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.features li {
  padding: 16px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.features strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.features span {
  color: var(--muted);
  font-size: 0.95rem;
}

.screenshots-lead {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 52ch;
}

.screenshot-strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scroll-snap-type: x mandatory;
  scroll-padding: 0 22px;
  -webkit-overflow-scrolling: touch;
}

.screenshot-strip figure {
  flex: 0 0 min(240px, 78vw);
  margin: 0;
  scroll-snap-align: start;
}

.screenshot-strip img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 390 / 844;
  object-fit: contain;
  border-radius: 22px;
  border: 1px solid var(--border);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  background: var(--surface);
}

.screenshot-strip figcaption {
  margin-top: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  text-align: center;
}

@media (min-width: 900px) {
  .screenshot-strip {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px 24px;
    overflow-x: visible;
    scroll-snap-type: none;
    padding-bottom: 0;
  }

  .screenshot-strip figure {
    flex: unset;
    scroll-snap-align: unset;
  }
}

@media (min-width: 1100px) {
  .screenshot-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.support-box {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.support-box p {
  margin: 0 0 12px;
  color: var(--muted);
}

.support-email {
  font-size: 1.1rem;
  font-weight: 600;
}

.fine-print {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 14px;
}

footer {
  padding: 32px 0 48px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

footer .wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer nav {
  margin-top: 4px;
}

/* Privacy page */
.article {
  padding: 40px 0 56px;
}

.article h1 {
  margin: 0 0 8px;
  font-size: 1.75rem;
}

.article .updated {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.article h2 {
  margin: 28px 0 10px;
  font-size: 1.15rem;
}

.article p,
.article ul {
  margin: 0 0 14px;
  color: var(--muted);
}

.article ul {
  padding-left: 1.25rem;
}

.article li {
  margin-bottom: 6px;
}

.back {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 0.95rem;
}

code {
  font-size: 0.9em;
  background: var(--surface2);
  padding: 2px 6px;
  border-radius: 6px;
  border: 1px solid var(--border);
}
