:root {
  --navy: #1A3A5C;
  --navy-2: #2d4d78;
  --gold: #c9a24b;
  --gold-2: #d8b461;
  --bg: #ffffff;
  --bg-alt: #f4f6fa;
  --text: #2b2f38;
  --muted: #5c6470;
  --line: #e3e8f0;
  --max: 1100px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.narrow { max-width: 760px; }
.center { text-align: center; }

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

h1, h2, h3 { line-height: 1.2; }

/* ---------- Header ---------- */
.site-header {
  background: rgba(26, 58, 92, 0.97);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(160%) blur(8px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { color: #fff; font-weight: 800; font-size: 1.15rem; letter-spacing: 0.2px; }
.brand:hover { text-decoration: none; }
.nav { display: flex; align-items: center; flex-wrap: wrap; }
.nav a { color: #cbd3e2; margin-left: 1.4rem; font-size: 0.92rem; }
.nav a:hover { color: #fff; text-decoration: none; }
.nav-cta { color: var(--gold-2) !important; font-weight: 600; }

/* Mobile menu toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 9px;
  margin-right: -9px;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gold-2);
  margin-bottom: 1rem;
}
.eyebrow-dark { color: var(--gold); }

.hero {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
  padding: 6.5rem 0;
  text-align: center;
}
.hero-logo {
  display: block;
  width: 162px;
  height: 162px;
  margin: 0 auto 1.5rem;
}
.hero h1 { font-size: 2.85rem; margin-bottom: 1.1rem; max-width: 820px; margin-inline: auto; }
.lede { font-size: 1.3rem; color: #d6dcea; max-width: 700px; margin: 0 auto 1rem; }
.sub { color: #aab3c7; max-width: 620px; margin: 0 auto 2rem; }

.store-badges { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }
.badge {
  display: inline-block;
  background: #fff;
  color: var(--navy);
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.15);
}
.badge:hover { background: #eef1f7; text-decoration: none; }
.badge-sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }

/* ---------- Sections ---------- */
.section { padding: 5rem 0; }
.section-alt { background: var(--bg-alt); }
.section h2 { font-size: 2.1rem; color: var(--navy); margin-bottom: 1rem; max-width: 760px; }
.center h2 { margin-inline: auto; }
.section-intro { font-size: 1.15rem; color: var(--muted); max-width: 760px; margin-bottom: 2.5rem; }
.center .section-intro { margin-inline: auto; }
.section p { color: var(--muted); }

/* ---------- Screenshot row ---------- */
.shots {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  padding: 0.5rem 0 1.75rem;
  margin-bottom: 1.5rem;
  scroll-snap-type: x mandatory;
}
.phone {
  flex: 0 0 auto;
  width: 281px;
  padding: 12px;
  background: #0e1830;
  border-radius: 26px;
  box-shadow: 0 12px 30px rgba(21,35,63,0.18);
  scroll-snap-align: start;
  position: relative;
}
.phone .shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  background: #fff;
}

/* ---------- Feature grid ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem 2rem;
}
.feature h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 0.35rem; }
.feature h3::before { content: ""; display: block; width: 34px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 0.7rem; }
.feature p { color: var(--muted); font-size: 0.97rem; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin: 2.5rem 0;
}
.step {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-2);
  font-weight: 800;
  margin-bottom: 0.9rem;
}
.step h3 { color: var(--navy); font-size: 1.1rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  padding: 0.85rem 1.9rem;
  border-radius: 8px;
  font-weight: 600;
}
.btn:hover { background: var(--navy-2); text-decoration: none; }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); padding: calc(0.85rem - 2px) calc(1.9rem - 2px); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-gold { background: var(--gold); color: #1a1a1a; }
.btn-gold:hover { background: var(--gold-2); }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; justify-content: center; }
.center .btn { margin-top: 1rem; }

/* ---------- Includes list ---------- */
.incl-title { color: var(--navy); margin: 2rem 0 1rem; }
.includes {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0.6rem 1.5rem;
}
.includes li { position: relative; padding-left: 1.6rem; color: var(--text); }
.includes li::before {
  content: "✓";
  position: absolute; left: 0;
  color: var(--gold); font-weight: 800;
}

/* ---------- About / quote ---------- */
blockquote {
  margin: 2rem auto 0;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--navy);
  max-width: 520px;
}
blockquote cite { display: block; font-size: 1rem; font-style: normal; color: var(--muted); margin-top: 0.5rem; }

/* ---------- Support ---------- */
.support {
  background: linear-gradient(150deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff;
}
.support h2 { color: #fff; }
.support .lede { margin-bottom: 1rem; }
.support .btn-gold { margin-top: 1.5rem; }
.bmc-link { display: inline-block; margin-top: 1.5rem; line-height: 0; }
.bmc-link:hover { text-decoration: none; opacity: 0.92; }
.tiers { color: #aab3c7 !important; margin-top: 1.75rem; line-height: 1.9; }
.tiers small { color: #8b95ab; }

/* ---------- Footer ---------- */
.site-footer { background: #0e1830; color: #9aa4ba; text-align: center; padding: 3rem 0; }
.foot-brand { color: #fff; font-weight: 700; font-size: 1.1rem; }
.foot-tag { margin-bottom: 1.5rem; }
.site-footer .store-badges { margin-bottom: 1.5rem; }
.foot-links { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.foot-links a { color: #cbd3e2; font-size: 0.9rem; }
.copyright { font-size: 0.85rem; color: #6f7a91; }

/* ---------- Legal pages ---------- */
.legal h1 { font-size: 2.2rem; color: var(--navy); margin-bottom: 0.5rem; }
.legal .effective { color: var(--muted); font-size: 0.95rem; margin-bottom: 2rem; }
.legal h2 { font-size: 1.35rem; color: var(--navy); margin: 2.25rem 0 0.75rem; max-width: none; }
.legal h3 { font-size: 1.05rem; color: var(--navy-2); margin: 1.25rem 0 0.4rem; }
.legal p { color: var(--text); margin-bottom: 0.9rem; }
.legal ul { margin: 0 0 1rem 1.25rem; }
.legal li { color: var(--text); margin-bottom: 0.35rem; }
.legal .contact-block { background: var(--bg-alt); border-left: 4px solid var(--gold); padding: 1rem 1.25rem; border-radius: 4px; line-height: 1.9; }
.legal .legal-foot { color: var(--muted); margin-top: 2rem; }

/* Deletion request form */
.del-form { display: flex; flex-direction: column; gap: 1.1rem; margin: 1.75rem 0; max-width: 520px; }
.del-form label { display: flex; flex-direction: column; gap: 0.4rem; font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.del-form input, .del-form textarea {
  font: inherit;
  font-weight: 400;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.del-form input:focus, .del-form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.del-form .btn { align-self: flex-start; border: none; cursor: pointer; }
.del-form .btn:disabled { opacity: 0.6; cursor: default; }
.form-status { font-weight: 600; margin: 0; }
.form-status.ok { color: #1d7a3d; }
.form-status.err { color: #b3261e; }

/* ---------- Support / FAQ ---------- */
.faq-cat { font-size: 1.3rem; color: var(--navy); margin: 2.5rem 0 1rem; padding-bottom: 0.5rem; border-bottom: 2px solid var(--gold); }
.faq-item { border: 1px solid var(--line); border-radius: 10px; margin-bottom: 0.75rem; background: #fff; overflow: hidden; }
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  position: relative;
  padding-right: 2.75rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem; top: 50%; transform: translateY(-50%);
  font-size: 1.4rem; font-weight: 400; color: var(--gold);
  line-height: 1;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item summary:hover { background: var(--bg-alt); }
.faq-item .answer { padding: 0 1.25rem 1.1rem; color: var(--muted); }
.faq-item .answer p { color: var(--muted); margin-bottom: 0.6rem; }
.support-contact { background: var(--bg-alt); border-left: 4px solid var(--gold); padding: 1.25rem 1.5rem; border-radius: 4px; margin-top: 1rem; }
.support-contact p { color: var(--text); margin-bottom: 0.5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 720px) {
  .hero { padding: 4.5rem 0; }
  .hero h1 { font-size: 2.1rem; }
  .lede { font-size: 1.1rem; }
  .section { padding: 3.5rem 0; }
  .section h2 { font-size: 1.7rem; }

  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    background: rgba(26, 58, 92, 0.98);
    padding: 0.25rem 1.5rem 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  }
  .nav.open { display: flex; }
  .nav a {
    margin-left: 0;
    padding: 0.9rem 0.25rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .nav a:last-child { border-bottom: none; }
}
