:root {
  --psblue: #31a8ff;
  --psblue-dark: #0b5fa0;
  --psblue-light: #63c3ff;
  --bg: #0a0f16;
  --bg2: #0f1824;
  --gray: #7d93ad;
  --white: #ffffff;
  --green: #22c55e;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', system-ui, -apple-system, Roboto, sans-serif;
  color: #dbe7f5; background: var(--bg);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
.container { max-width: 1140px; margin: 0 auto; padding: 0 22px; }
img { max-width: 100%; }
h1, h2, h3 { line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); text-align: center; color: #fff; }
h3 { font-size: 1.08rem; }
.section-sub { text-align: center; color: var(--gray); max-width: 640px; margin: 10px auto 40px; font-size: 1.02rem; }

.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,15,22,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(49,168,255,.1);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo img { border-radius: 9px; }
.logo-text { font-weight: 800; font-size: 1.2rem; color: #fff; }
.logo-text em { color: var(--psblue); font-style: normal; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { color: var(--gray); text-decoration: none; font-weight: 600; font-size: .93rem; }
.nav a:hover { color: var(--psblue); }
.btn-nav { background: var(--psblue); color: #0a0f16 !important; padding: 9px 19px; border-radius: 999px; font-weight: 800; }
.btn-nav:hover { box-shadow: 0 8px 20px rgba(49,168,255,.4); transform: translateY(-1px); }

.hero {
  background:
    radial-gradient(800px 420px at 90% 10%, rgba(49,168,255,.16), transparent 60%),
    radial-gradient(700px 400px at 5% 90%, rgba(99,195,255,.08), transparent 55%),
    linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
  padding: 66px 0 80px;
}
.hero-inner { display: grid; grid-template-columns: 0.62fr 0.38fr; gap: 44px; align-items: center; }
.hero-badge {
  display: inline-block; background: rgba(49,168,255,.12); border: 1px solid rgba(49,168,255,.35);
  color: var(--psblue-light); font-weight: 700; font-size: .82rem;
  padding: 7px 15px; border-radius: 999px; margin-bottom: 18px;
}
.hero h1 { margin-bottom: 14px; color: #fff; }
.hl { color: var(--psblue); }
.hero-sub { color: var(--gray); font-size: 1.08rem; margin-bottom: 26px; }
.hero-ctas { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 20px; }
.btn-dl {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(180deg, var(--psblue-light), var(--psblue));
  color: #0a0f16; text-decoration: none; font-weight: 800;
  padding: 16px 30px; border-radius: 12px; font-size: 1.12rem;
  box-shadow: 0 14px 30px rgba(49,168,255,.38);
  transition: transform .15s, box-shadow .15s;
}
.btn-dl:hover { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(49,168,255,.48); }
.hero-pw { color: var(--gray); font-size: .95rem; }
.hero-pw strong { font-family: 'Cascadia Code', monospace; color: var(--green); font-size: 1.15rem; letter-spacing: 2px; }
.hero-checks { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-checks span { color: var(--gray); font-size: .88rem; }
.hero-right { text-align: center; }
.hero-icon {
  width: 128px; height: 128px; border-radius: 30px;
  box-shadow: 0 22px 55px rgba(49,168,255,.28); margin-bottom: 18px;
}
.hero-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(49,168,255,.22);
  border-radius: var(--radius); padding: 18px 20px; text-align: left;
}
.hero-card-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.hero-card-row:last-child { border-bottom: none; }
.hero-card-row span { color: var(--gray); font-size: .85rem; }
.hero-card-row strong { color: #fff; font-size: .86rem; font-weight: 700; text-align: right; }

.method { padding: 80px 0; background: var(--bg2); }
.method-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 960px; margin: 0 auto; }
.method-item {
  border-radius: var(--radius); padding: 28px 26px;
}
.method-bad { background: rgba(220,38,38,.07); border: 1px solid rgba(220,38,38,.25); }
.method-good { background: rgba(34,197,94,.07); border: 1px solid rgba(34,197,94,.3); }
.method-item h3 { margin-bottom: 14px; }
.method-bad h3 { color: #f87171; }
.method-good h3 { color: #4ade80; }
.method-item ul { list-style: none; }
.method-item li { padding: 6px 0; color: var(--gray); font-size: .93rem; border-bottom: 1px solid rgba(255,255,255,.05); }
.method-item li:last-child { border-bottom: none; }

.steps { padding: 80px 0; }
.steps-list { max-width: 760px; margin: 0 auto; }
.step-row {
  position: relative; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 22px 26px 22px 76px; margin-bottom: 14px;
}
.step-num {
  position: absolute; left: 22px; top: 22px;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--psblue); color: #0a0f16; font-weight: 800; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
}
.step-row h3 { color: #fff; margin-bottom: 6px; }
.step-row p { color: var(--gray); font-size: .93rem; }

.apps { padding: 80px 0; background: var(--bg2); }
.apps-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 820px; margin: 0 auto; }
.app-chip {
  background: rgba(49,168,255,.12); border: 1px solid rgba(49,168,255,.3);
  color: #dbe7f5; font-weight: 700; font-size: .92rem;
  padding: 10px 18px; border-radius: 999px;
  transition: background .2s, transform .2s;
}
.app-chip:hover { background: rgba(49,168,255,.22); transform: translateY(-2px); }

.faq { padding: 80px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; margin-bottom: 11px; overflow: hidden;
}
.faq-item summary {
  padding: 17px 21px; font-weight: 700; cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; font-size: 1rem; color: #fff;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--psblue); font-weight: 800; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--psblue); }
.faq-item p { padding: 0 21px 18px; color: var(--gray); font-size: .93rem; }

.cta-final {
  background: linear-gradient(135deg, var(--psblue-dark), #1478c8 60%, var(--psblue));
  padding: 80px 0; text-align: center; color: #fff;
}
.cta-inner h2 { color: #fff; margin-bottom: 12px; }
.cta-inner p { max-width: 560px; margin: 0 auto 30px; color: rgba(255,255,255,.92); font-size: 1.05rem; }
.btn-dl-lg { display: inline-flex; background: #fff; color: var(--psblue-dark); font-size: 1.2rem; padding: 18px 36px; box-shadow: 0 16px 40px rgba(0,0,0,.3); }
.btn-dl-lg:hover { box-shadow: 0 20px 48px rgba(0,0,0,.38); }
.dl-password-cta { display: inline-flex; margin-top: 18px; background: rgba(255,255,255,.14); border: 1px dashed rgba(255,255,255,.5); border-radius: 10px; padding: 9px 14px; align-items: center; gap: 10px; }
.dl-password-cta .pw-label { color: #fff; font-weight: 600; font-size: .9rem; }
.dl-password-cta .pw-code { font-family: 'Cascadia Code', monospace; font-weight: 800; font-size: 1.2rem; color: #fff; letter-spacing: 2px; background: rgba(255,255,255,.2); padding: 2px 11px; border-radius: 7px; border: 1px solid rgba(255,255,255,.4); }

.footer { background: #060a10; color: #7d93ad; padding: 50px 0 28px; }
.footer-inner { text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 9px; font-weight: 800; font-size: 1.15rem; color: #fff; margin-bottom: 11px; }
.footer-brand img { border-radius: 8px; }
.footer-desc { max-width: 440px; margin: 0 auto 20px; font-size: .92rem; color: #5f7791; }
.footer-copy { font-size: .83rem; color: #43596f; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-ctas, .hero-checks { justify-content: center; }
  .hero-icon { width: 96px; height: 96px; }
  .method-grid { grid-template-columns: 1fr; }
  .nav a:not(.btn-nav) { display: none; }
}
@media (max-width: 560px) {
  .hero { padding: 50px 0 64px; }
  .btn-dl { font-size: 1rem; padding: 14px 22px; }
}
