/* SecuremeVPN landing pages — shared styles. Light default, navy hero. */
:root {
  --blue: #1E63E9;
  --blue-dark: #1450C4;
  --navy: #0F1E3D;
  --navy-2: #16294D;
  --gold: #F0B429;
  --ink: #101E38;
  --muted: #56678A;
  --paper: #F6F8FC;
  --card: #FFFFFF;
  --line: #DCE4F2;
  --ok: #178A50;
  --err: #C0392B;
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Sora", -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; }
a { color: var(--blue); }
.wrap { max-width: 1040px; margin: 0 auto; padding: 0 20px; }
.hidden { display: none !important; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font: inherit;
  font-weight: 600;
  border: 0;
  border-radius: 14px;
  padding: 16px 32px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background .15s, transform .1s;
}
.btn-primary { background: var(--blue); color: #fff; }
.btn-primary:hover { background: var(--blue-dark); }
.btn-primary:active { transform: scale(.98); }
.btn-primary:disabled { background: #9FB4DE; cursor: default; transform: none; }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-block { display: block; width: 100%; }
.btn.busy { opacity: .8; }

/* ── Header / nav ── */
.nav { display: flex; align-items: center; gap: 12px; padding: 18px 0; }
.nav img { width: 40px; height: 40px; }
.nav .brand { font-weight: 700; font-size: 19px; color: inherit; text-decoration: none; letter-spacing: .01em; }
.nav .spacer { flex: 1; }
.nav a.cta { font-weight: 600; text-decoration: none; }

/* ── Hero ── */
.hero { background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 70%, #1B3A75 100%); color: #fff; padding-bottom: 72px; }
.hero .nav { color: #fff; }
.hero .nav .brand { color: #fff; }
.hero-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: center; padding-top: 48px; }
.hero h1 { font-size: clamp(34px, 5vw, 54px); line-height: 1.12; letter-spacing: -0.01em; text-wrap: balance; }
.hero p.sub { margin-top: 18px; font-size: 19px; color: #C6D4F0; max-width: 46ch; }
.hero .actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero .tag { font-size: 14px; color: #9FB4DE; }
.hero-wolf { text-align: center; }
.hero-wolf img { width: min(300px, 70%); filter: drop-shadow(0 24px 48px rgba(0,0,0,.35)); }
@media (max-width: 760px) { .hero-grid { grid-template-columns: 1fr; text-align: center; } .hero .actions { justify-content: center; } .hero p.sub { margin-inline: auto; } }

/* ── Sections ── */
section.block { padding: 72px 0; }
section.block.alt { background: var(--card); border-block: 1px solid var(--line); }
.block h2 { font-size: clamp(26px, 3.4vw, 36px); text-wrap: balance; text-align: center; }
.block .lead { text-align: center; color: var(--muted); margin-top: 10px; max-width: 60ch; margin-inline: auto; }

/* benefit tiles */
.tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 44px; }
.tile { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 26px; }
.tile .ico { font-size: 30px; }
.tile h3 { margin-top: 12px; font-size: 18px; }
.tile p { margin-top: 8px; color: var(--muted); font-size: 15px; }

/* locations strip */
.flags { display: flex; flex-wrap: wrap; gap: 12px 18px; justify-content: center; margin-top: 36px; }
.flag { background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; font-size: 15px; white-space: nowrap; }
.flag .e { margin-right: 8px; }

/* pricing teaser */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 320px)); gap: 22px; justify-content: center; margin-top: 44px; }
.plan-card { background: var(--card); border: 2px solid var(--line); border-radius: 18px; padding: 30px; text-align: center; position: relative; }
.plan-card.featured { border-color: var(--blue); box-shadow: 0 12px 36px rgba(30, 99, 233, .12); }
.plan-card .badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-size: 12.5px; font-weight: 700; border-radius: 999px; padding: 3px 14px; white-space: nowrap; }
.plan-card .name { font-weight: 600; color: var(--muted); }
.plan-card .price { font-size: 40px; font-weight: 700; margin-top: 8px; }
.plan-card .per { font-size: 15px; color: var(--muted); font-weight: 400; }
.plan-card .note { margin-top: 6px; font-size: 14px; color: var(--muted); }
.plan-card .btn { margin-top: 22px; }

/* FAQ */
.faq { max-width: 720px; margin: 40px auto 0; }
.faq details { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 4px 20px; margin-bottom: 12px; }
.faq summary { font-weight: 600; padding: 14px 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq summary::after { content: "+"; font-size: 20px; color: var(--blue); }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding: 0 0 16px; color: var(--muted); }

/* footer */
footer { background: var(--navy); color: #9FB4DE; padding: 40px 0; font-size: 14px; }
footer .cols { display: flex; gap: 24px; flex-wrap: wrap; justify-content: space-between; align-items: center; }
footer a { color: #C6D4F0; }

/* ── Checkout page ── */
.co-shell { max-width: 520px; margin: 0 auto; padding: 24px 20px 80px; }
.co-card { background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 28px; margin-top: 18px; }
.co-title { font-size: 24px; text-align: center; }
.plan-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.plan-opt { border: 2px solid var(--line); border-radius: 14px; padding: 14px 16px; cursor: pointer; text-align: left; background: var(--card); font: inherit; }
.plan-opt.selected { border-color: var(--blue); background: #EDF3FE; }
.plan-opt .t { font-weight: 700; font-size: 15px; }
.plan-opt .p { color: var(--muted); font-size: 14px; }
.summary { margin-top: 18px; border-top: 1px dashed var(--line); padding-top: 16px; display: flex; justify-content: space-between; align-items: baseline; }
.summary .lbl { color: var(--muted); font-size: 15px; }
.summary .amt { font-size: 26px; font-weight: 700; }
#trial-line { margin-top: 6px; font-size: 13.5px; color: var(--muted); }

.field-label { display: block; font-size: 13.5px; font-weight: 600; margin: 18px 0 6px; }
input[type=email], input[type=text], select {
  width: 100%; font: inherit; padding: 13px 14px; border: 1.5px solid var(--line);
  border-radius: 10px; background: var(--card); color: var(--ink);
}
input:focus, select:focus { outline: 2px solid var(--blue); outline-offset: 0; border-color: var(--blue); }
.sdk-field { height: 48px; border: 1.5px solid var(--line); border-radius: 10px; padding: 8px 14px; background: var(--card); }
.sdk-field.invalid { border-color: var(--err); }
.sdk-field-loading { background: linear-gradient(90deg, #EDF1F9 25%, #F7FAFF 50%, #EDF1F9 75%); background-size: 200% 100%; animation: shimmer 1.4s infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
.co-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.msg { display: none; color: var(--err); font-size: 13px; margin-top: 5px; }
.msg.show { display: block; }

.alt { margin-top: 18px; display: grid; gap: 10px; }
.wallet-btn { min-height: 48px; border-radius: 10px; overflow: hidden; }
.or-divider { display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: 13px; margin-top: 18px; }
.or-divider::before, .or-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.status-line { display: none; margin-top: 14px; padding: 11px 14px; border-radius: 10px; font-size: 14px; }
.status-line.show { display: block; }
.status-line.info { background: #EDF3FE; color: var(--blue-dark); }
.status-line.error { background: #FBECEA; color: var(--err); }

.trust { display: flex; gap: 8px; align-items: center; justify-content: center; margin-top: 16px; color: var(--muted); font-size: 13px; }
.sandbox { margin-top: 16px; background: var(--gold); color: var(--navy); border-radius: 10px; padding: 12px 14px; font-size: 14px; font-weight: 600; }

.success { text-align: center; padding: 44px 20px; }
.success .mark { font-size: 56px; }
.success h2 { margin-top: 10px; }
.success p { color: var(--muted); margin-top: 8px; }

/* ── Download page ── */
.dl-shell { max-width: 560px; margin: 0 auto; padding: 40px 20px 80px; text-align: center; }
.dl-shell img.logo { width: 96px; }
.dl-shell h1 { font-size: 28px; margin-top: 18px; text-wrap: balance; }
.dl-email { font-weight: 700; color: var(--blue-dark); }
.steps { text-align: left; margin: 28px auto 0; max-width: 420px; counter-reset: step; }
.steps li { list-style: none; display: flex; gap: 14px; margin-bottom: 16px; align-items: baseline; }
.steps li::before { counter-increment: step; content: counter(step); flex: 0 0 28px; height: 28px; border-radius: 50%; background: var(--blue); color: #fff; font-weight: 700; font-size: 14px; display: inline-flex; align-items: center; justify-content: center; }
.stores { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.store-badge { border: 1.5px solid var(--line); background: var(--card); border-radius: 12px; padding: 12px 20px; font-weight: 600; text-decoration: none; color: var(--ink); }
