/* ============================================================
   Vault Media | vaultmedia.com
   Hand-built static site (no WordPress)
   ============================================================ */

:root {
  --bg: #0b0f14;
  --bg-raised: #10161e;
  --bg-card: #131a24;
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: #e9edf2;
  --text-muted: #9aa6b2;
  --text-faint: #6b7683;
  --gold: #c9a24b;
  --gold-bright: #e0bc6a;
  --gold-dim: rgba(201, 162, 75, 0.14);
  --steel: #aab6c3;
  --radius: 14px;
  --radius-sm: 10px;
  --container: 1160px;
  --font-head: "Archivo", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, video { max-width: 100%; display: block; }

a { color: var(--gold-bright); text-decoration: none; }
a:hover { text-decoration: underline; }

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

/* ---------- Typography ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }

.lead {
  font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  color: var(--text-muted);
  max-width: 46em;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head p { color: var(--text-muted); margin-top: 14px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-gold {
  background: var(--gold);
  color: #14100a;
}
.btn-gold:hover { background: var(--gold-bright); color: #14100a; }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 15, 20, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled {
  background: rgba(11, 15, 20, 0.92);
  border-bottom-color: var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}

.logo img { height: 40px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-muted);
}
.main-nav a:hover { color: var(--text); text-decoration: none; }
.main-nav a.active { color: var(--text); }
.main-nav a.active::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 3px;
  background: var(--gold);
  border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 10px 20px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  padding: 9px 11px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 2px;
  background: var(--text);
  margin: 4px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 90px;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,15,20,0.55) 0%, rgba(11,15,20,0.35) 45%, var(--bg) 100%),
    radial-gradient(ellipse at 25% 40%, rgba(11,15,20,0.15), rgba(11,15,20,0.72) 75%);
}

.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero-content h1 { margin: 0 0 22px; }
.hero-content .lead { margin-bottom: 34px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 34px;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  color: var(--text-faint);
  font-family: var(--font-head);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.hero-trust strong { color: var(--steel); font-weight: 600; }

/* Small page hero (inner pages) */
.page-hero {
  padding: 168px 0 72px;
  background:
    radial-gradient(ellipse 900px 420px at 70% -10%, rgba(201,162,75,0.09), transparent),
    var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { max-width: 800px; margin-bottom: 16px; }
.page-hero .lead { margin-bottom: 0; }

/* ---------- Sections ---------- */

.section { padding: 96px 0; }
.section.raised { background: var(--bg-raised); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse > .split-media { order: 2; }
.split-media img {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  width: 100%;
  object-fit: cover;
}
.split-body h2 { margin-bottom: 18px; }
.split-body p { color: var(--text-muted); margin-bottom: 16px; }
.split-body .btn-row { margin-top: 26px; }

/* Feature checklist */
.checklist { list-style: none; margin: 22px 0 0; }
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 11px;
  color: var(--text-muted);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 15px; height: 8px;
  border-left: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg);
}
.checklist li strong { color: var(--text); }

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card:hover { border-color: rgba(201, 162, 75, 0.45); transform: translateY(-3px); }
.card h3 { margin: 18px 0 10px; }
.card p { color: var(--text-muted); font-size: 0.97rem; }
.card .card-link {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.card-icon {
  width: 46px; height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--gold-dim);
  border: 1px solid rgba(201, 162, 75, 0.3);
}
.card-icon svg { width: 22px; height: 22px; stroke: var(--gold-bright); }

/* Vertical / industry mini-cards */
.vertical-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.vertical {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 22px 16px;
  text-align: center;
  transition: border-color 0.2s ease;
}
.vertical:hover { border-color: rgba(201, 162, 75, 0.4); }
.vertical svg { width: 24px; height: 24px; stroke: var(--gold); margin: 0 auto 10px; }
.vertical span {
  display: block;
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ---------- Stats band ---------- */

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  text-align: center;
}
.stat .stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 800;
  color: var(--gold-bright);
  letter-spacing: -0.02em;
}
.stat .stat-label {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 6px;
}

/* ---------- Process steps ---------- */

.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step {
  counter-increment: step;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.step::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 14px;
}
.step h3 { font-size: 1.1rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.93rem; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-q .faq-arrow {
  flex: 0 0 auto;
  width: 10px; height: 10px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.22s ease;
}
.faq-item.open .faq-arrow { transform: rotate(225deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}
.faq-a-inner { padding: 0 24px 22px; color: var(--text-muted); font-size: 0.98rem; }

/* ---------- Pricing ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.price-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 30px;
  position: relative;
}
.price-card.featured {
  border-color: rgba(201, 162, 75, 0.55);
  background: linear-gradient(180deg, rgba(201,162,75,0.07), var(--bg-card) 45%);
}
.price-flag {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #14100a;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.price-card .plan-name { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; }
.price-card .plan-for { color: var(--text-faint); font-size: 0.88rem; margin: 8px 0 20px; min-height: 2.6em; }
.price-card .plan-price {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.price-card .plan-price span { font-size: 1rem; font-weight: 500; color: var(--text-muted); letter-spacing: 0; }
.price-card .plan-note { color: var(--text-faint); font-size: 0.85rem; margin-top: 4px; }
.price-card .checklist { flex: 1; margin: 24px 0 28px; }
.price-card .checklist li { font-size: 0.94rem; margin-bottom: 9px; }
.price-card .btn { width: 100%; text-align: center; }

.pricing-note {
  max-width: 820px;
  margin: 40px auto 0;
  text-align: center;
  color: var(--text-faint);
  font-size: 0.92rem;
}

/* ---------- Team / About ---------- */

.founder-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px;
}
.founder-card .founder-photo {
  background: radial-gradient(ellipse at 50% 90%, rgba(201,162,75,0.18), transparent 70%), var(--bg-raised);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 18px 18px 0;
}
.founder-card h2 { margin-bottom: 6px; }
.founder-card .founder-role {
  font-family: var(--font-head);
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.founder-card p { color: var(--text-muted); margin-bottom: 14px; }

/* ---------- CTA band ---------- */

.cta-band {
  border-top: 1px solid var(--border);
  background:
    radial-gradient(ellipse 800px 400px at 50% 120%, rgba(201,162,75,0.13), transparent),
    var(--bg-raised);
  text-align: center;
  padding: 100px 0;
}
.cta-band h2 { max-width: 640px; margin: 0 auto 16px; }
.cta-band p { color: var(--text-muted); max-width: 540px; margin: 0 auto 34px; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Forms ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 7px;
  color: var(--steel);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: 8px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 13px 14px;
  transition: border-color 0.18s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 140px; }

.info-block { margin-bottom: 30px; }
.info-block h3 { margin-bottom: 8px; font-size: 1.05rem; }
.info-block p { color: var(--text-muted); font-size: 0.97rem; }

.form-status { margin-top: 16px; font-size: 0.95rem; }
.form-status.ok { color: #7fc98b; }
.form-status.err { color: #d98282; }

/* ---------- Currency toggle ---------- */

.currency-toggle {
  display: inline-flex;
  margin-top: 28px;
  border: 1px solid var(--border-strong);
  border-radius: 99px;
  overflow: hidden;
}
.currency-toggle button {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  padding: 9px 22px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.currency-toggle button.active {
  background: var(--gold);
  color: #14100a;
}
.money { font-weight: inherit; font-style: normal; }

/* ---------- Legal ---------- */

.legal-body { max-width: 820px; }
.legal-body h2 { font-size: 1.5rem; margin: 44px 0 14px; }
.legal-body h3 { font-size: 1.1rem; margin: 28px 0 10px; }
.legal-body p, .legal-body li { color: var(--text-muted); margin-bottom: 12px; }
.legal-body ul { padding-left: 22px; }

/* ---------- Footer ---------- */

.site-footer {
  border-top: 1px solid var(--border);
  background: #080b0f;
  padding: 70px 0 36px;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}
.footer-brand img { height: 36px; margin-bottom: 18px; }
.footer-brand p { color: var(--text-faint); max-width: 300px; font-size: 0.9rem; }
.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-size: 0.93rem;
}
.footer-col a:hover { color: var(--gold-bright); text-decoration: none; }
.footer-col p { color: var(--text-faint); font-size: 0.9rem; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-faint);
  font-size: 0.85rem;
}

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .vertical-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .founder-card { grid-template-columns: 1fr; padding: 36px; }
  .founder-card .founder-photo { max-width: 320px; }
}

@media (max-width: 860px) {
  .main-nav {
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(11, 15, 20, 0.98);
    border-bottom: 1px solid var(--border);
    padding: 10px 24px 22px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; font-size: 1.05rem; width: 100%; }
  .nav-toggle { display: block; }
  .header-cta .btn-ghost { display: none; }

  .split, .split.reverse { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse > .split-media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .section { padding: 72px 0; }
  .hero { min-height: 78vh; padding-top: 130px; }
}

@media (max-width: 560px) {
  .card-grid, .card-grid.cols-2 { grid-template-columns: 1fr; }
  .vertical-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
