/* ==========================================================================
   Just Pass Go - global styles (v2, LastPass-inspired)
   Primary brand color: #B9191B
   ========================================================================== */

:root {
  --red: #b9191b;
  --red-dark: #8e1315;
  --red-soft: #fbe9e9;
  --red-tint: #fdf4f4;
  --navy: #22143b;
  --ink: #1a1a2e;
  --muted: #55596a;
  --gray: #8a8f9c;
  --border: #e8eaef;
  --bg: #ffffff;
  --bg-soft: #f7f5f9;
  --bg-tint: #fbf7f4;
  --bg-dark: #1a1329;
  --shadow-sm: 0 2px 8px rgba(26, 19, 41, .06);
  --shadow-md: 0 14px 40px rgba(26, 19, 41, .10);
  --shadow-lg: 0 30px 70px rgba(26, 19, 41, .16);
  --radius: 16px;
  --radius-lg: 28px;
  --maxw: 1200px;
  --font-head: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; margin: 0 0 .5em; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); letter-spacing: -.02em; }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; color: var(--muted); }
a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }
img, svg { max-width: 100%; }
img { display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--tight { padding: 64px 0; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--bg-tint); }
.section--dark { background: var(--bg-dark); color: #fff; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #c9c4d6; }

.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .8rem; font-weight: 700; color: var(--red); margin-bottom: 14px; }
.center { text-align: center; }
.lead { font-size: 1.2rem; color: var(--muted); }
.section-head { max-width: 760px; margin: 0 auto 60px; }
.section-head p { font-size: 1.12rem; }

/* ------- Buttons ------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 14px 30px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: all .18s ease; white-space: nowrap;
}
.btn--primary { background: var(--red); color: #fff; border-color: var(--red); }
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(185,25,27,.28); }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }
.btn--outline { background: transparent; color: var(--red); border-color: var(--red); }
.btn--outline:hover { background: var(--red); color: #fff; }
.btn--light { background: #fff; color: var(--red); border-color: #fff; }
.btn--light:hover { background: #f1f1f1; color: var(--red-dark); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn--outline-light:hover { border-color: #fff; background: rgba(255,255,255,.12); color: #fff; }
.btn--lg { padding: 17px 38px; font-size: 1.08rem; }
.btn--block { width: 100%; }

/* ------- Header / Nav ------- */
.header { position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.92); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--border); }
.nav { display: flex; align-items: center; gap: 28px; height: 78px; }
.nav__logo img { height: 42px; width: auto; }
.nav__menu { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; flex: 1; }
.nav__item { position: relative; }
.nav__link { display: inline-flex; align-items: center; gap: 5px; padding: 10px 14px; color: var(--ink); font-weight: 500; font-size: .97rem; border-radius: 8px; }
.nav__link:hover { color: var(--red); background: var(--bg-soft); }
.nav__item--has-drop > .nav__link::after { content: ""; width: 7px; height: 7px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; transform: rotate(45deg) translateY(-2px); transition: transform .18s ease; }
.nav__item--has-drop:hover > .nav__link::after { transform: rotate(225deg) translateY(0); }
.dropdown { position: absolute; top: calc(100% + 6px); left: 0; min-width: 270px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 10px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .18s ease; }
.nav__item--has-drop:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--ink); font-size: .93rem; }
.dropdown a:hover { background: var(--bg-soft); color: var(--red); }
.dropdown a span { display: block; font-size: .8rem; color: var(--muted); font-weight: 400; }
.dropdown a strong { font-weight: 600; }
.nav__actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav__login { font-weight: 600; color: var(--ink); padding: 8px 6px; }
.nav__login:hover { color: var(--red); }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

/* ------- Hero ------- */
.hero { padding: 40px 0 90px; background: linear-gradient(180deg, #fff 0%, var(--bg-tint) 100%); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 40px; }
.hero__toggle { display: inline-flex; gap: 4px; background: #fff; border: 1px solid var(--border); border-radius: 999px; padding: 5px; margin-bottom: 26px; box-shadow: var(--shadow-sm); }
.hero__toggle a { padding: 9px 24px; border-radius: 999px; font-family: var(--font-head); font-weight: 600; font-size: .92rem; color: var(--muted); }
.hero__toggle a.is-active { background: var(--red); color: #fff; }
.hero__rating { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero__rating img { height: 54px; width: auto; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: var(--red-soft); color: var(--red); font-weight: 600; font-size: .85rem; padding: 8px 16px; border-radius: 999px; margin-bottom: 22px; }
.hero h1 { margin-bottom: 20px; }
.hero__rotate { color: var(--red); }
.hero p { font-size: 1.2rem; max-width: 540px; margin-bottom: 30px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__note { margin-top: 18px; font-size: .88rem; color: var(--gray); }
.hero__media { position: relative; text-align: center; }
.hero__media img, .hero__media svg { margin: 0 auto; width: 100%; max-width: 560px; height: auto; }
.hero__media--box img { max-width: 420px; filter: drop-shadow(0 30px 55px rgba(34,20,59,.3)); }

/* ------- Metrics band ------- */
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.metric__num { font-family: var(--font-head); font-size: clamp(2.6rem, 5vw, 3.6rem); font-weight: 800; color: var(--red); line-height: 1; }
.metric__num small { font-size: 1.3rem; font-weight: 700; }
.metric p { margin: 14px auto 0; max-width: 300px; }

/* ------- Bento security cards ------- */
.bento { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.bento__card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: .2s; }
.bento__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bento__card--media { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 20px; }
.bento__card--wide { grid-column: 1 / -1; background: var(--red-tint); border-color: var(--red-soft); }
.bento__card--wide .bento__inner { display: grid; grid-template-columns: 1fr .7fr; align-items: center; gap: 24px; }
.bento__tag { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red); background: var(--red-soft); padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; width: max-content; }
.bento__card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.bento__card p { margin-bottom: 16px; }
.bento__card a { font-weight: 600; margin-top: auto; }
.bento__card img { max-height: 150px; width: auto; margin: 0 auto; }

/* ------- Split sections ------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media img, .split__media svg { width: 100%; height: auto; }
.split__media--photo img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); aspect-ratio: 3/2; object-fit: cover; }
.split ul { list-style: none; padding: 0; margin: 0 0 26px; }
.split li { position: relative; padding-left: 36px; margin-bottom: 16px; color: var(--ink); }
.split li::before { content: ""; position: absolute; left: 0; top: 2px; width: 24px; height: 24px; background: var(--red-soft); border-radius: 50%; }
.split li::after { content: ""; position: absolute; left: 8px; top: 9px; width: 9px; height: 5px; border-left: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(-45deg); }

/* ------- Sync / centered media block ------- */
.mediablock { text-align: center; }
.mediablock img, .mediablock svg { max-width: 820px; width: 100%; height: auto; margin: 34px auto 0; }

/* ------- Feature grid (icon list) ------- */
.featgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 34px 30px; }
.featgrid__item { text-align: left; }
.featgrid__icon { width: 56px; height: 56px; margin-bottom: 16px; }
.featgrid__icon img, .featgrid__icon svg { width: 56px; height: 56px; }
.featgrid h3 { font-size: 1.08rem; margin-bottom: 8px; }
.featgrid p { font-size: .93rem; margin: 0 0 10px; }
.featgrid a { font-size: .9rem; font-weight: 600; }

/* legacy feature blocks (used on some pages) */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.feature__icon { width: 62px; height: 62px; display: grid; place-items: center; border-radius: 16px; background: var(--red-soft); color: var(--red); margin-bottom: 18px; }
.feature__icon svg { width: 32px; height: 32px; }
.feature__icon img { width: 44px; height: 44px; }
.feature h3 { font-size: 1.12rem; margin-bottom: 8px; }
.feature p { font-size: .96rem; margin: 0; }

/* ------- Split cards (business/personal pintos) ------- */
.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pinto { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 8px; }
.pinto h3 { font-size: 1.4rem; }
.pinto .btn { align-self: flex-start; margin-top: 12px; }

/* ------- Tabs (audience) ------- */
.tabs { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 46px; }
.tab { padding: 11px 22px; border-radius: 999px; border: 1px solid var(--border); background: #fff; cursor: pointer; font-family: var(--font-head); font-weight: 500; font-size: .95rem; color: var(--muted); transition: .18s; }
.tab:hover { border-color: var(--red); color: var(--red); }
.tab.is-active { background: var(--red); border-color: var(--red); color: #fff; }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fade .3s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px);} to {opacity:1; transform:none;} }

.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.audience__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); width: 100%; object-fit: cover; aspect-ratio: 3/2; }
.audience ul { list-style: none; padding: 0; margin: 0 0 24px; }
.audience li { position: relative; padding-left: 34px; margin-bottom: 14px; color: var(--ink); }
.audience li::before { content: ""; position: absolute; left: 0; top: 3px; width: 22px; height: 22px; background: var(--red-soft); border-radius: 50%; }
.audience li::after { content: ""; position: absolute; left: 7px; top: 9px; width: 9px; height: 5px; border-left: 2px solid var(--red); border-bottom: 2px solid var(--red); transform: rotate(-45deg); }

/* ------- Stats / trust ------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
.stat__num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 800; color: var(--red); }
.stat p { margin: 4px 0 0; }
.logos-strip { display: flex; flex-wrap: wrap; gap: 40px; justify-content: center; align-items: center; margin-top: 44px; opacity: .7; }
.logos-strip span { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--gray); letter-spacing: -.02em; }

/* ------- Testimonials ------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.quote__stars { color: #f5a623; margin-bottom: 14px; letter-spacing: 2px; }
.quote p { color: var(--ink); font-size: .98rem; flex: 1; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.quote__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--red-soft); color: var(--red); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.quote__who strong { display: block; font-size: .95rem; color: var(--ink); }
.quote__who span { font-size: .82rem; color: var(--muted); }

/* ------- Pricing ------- */
.pricing-toggle { display: flex; justify-content: center; gap: 6px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 999px; padding: 5px; width: max-content; margin: 0 auto 46px; }
.pricing-toggle button { border: 0; background: none; cursor: pointer; padding: 11px 26px; border-radius: 999px; font-family: var(--font-head); font-weight: 600; font-size: .95rem; color: var(--muted); }
.pricing-toggle button.is-active { background: var(--red); color: #fff; }
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plans--group { display: none; }
.plans--group.is-active { display: grid; animation: fade .3s ease; }
.plan { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px 28px; display: flex; flex-direction: column; position: relative; }
.plan--featured { border-color: var(--red); box-shadow: var(--shadow-md); }
.plan__tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-size: .75rem; font-weight: 700; padding: 6px 14px; border-radius: 999px; text-transform: uppercase; letter-spacing: .05em; white-space: nowrap; }
.plan h3 { font-size: 1.4rem; margin-bottom: 6px; }
.plan__desc { font-size: .92rem; min-height: 60px; }
.plan__price { font-family: var(--font-head); margin: 8px 0 2px; }
.plan__price b { font-size: 2.6rem; color: var(--ink); font-weight: 800; }
.plan__price small { color: var(--muted); font-weight: 500; font-size: .9rem; }
.plan__billed { font-size: .82rem; color: var(--gray); margin-bottom: 20px; }
.plan .btn { margin-bottom: 22px; }
.plan__features { list-style: none; padding: 0; margin: 0; }
.plan__features li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: .92rem; color: var(--ink); }
.plan__features li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 800; }
.plan__section-title { font-size: .85rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin: 4px 0 14px; }

/* ------- Resources ------- */
.resources { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.rcard { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); transition: .2s; }
.rcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rcard h3 { font-size: 1.15rem; }
.rcard a { font-weight: 600; }

/* ------- FAQ ------- */
.faq { max-width: 840px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--border); }
.faq__q { width: 100%; text-align: left; background: none; border: 0; cursor: pointer; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; color: var(--ink); padding: 24px 40px 24px 0; position: relative; }
.faq__q::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--red); font-weight: 400; transition: .2s; }
.faq__item.is-open .faq__q::after { content: "\2212"; }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .28s ease; }
.faq__a p { padding-bottom: 22px; margin: 0; }

/* ------- CTA band ------- */
.cta-band { background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%); color: #fff; border-radius: var(--radius-lg); padding: 64px; text-align: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.92); max-width: 580px; margin: 0 auto 28px; }
.cta-band .btn { margin: 0 6px 8px; }

/* ------- Footer ------- */
.footer { background: var(--bg-dark); color: #b6b2c6; padding: 76px 0 32px; }
.footer a { color: #b6b2c6; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; }
.footer__brand img { height: 44px; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer__brand p { color: #8a86a0; font-size: .92rem; max-width: 300px; }
.footer__col h4 { color: #fff; font-size: .95rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 16px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; }
.footer__col li { margin-bottom: 10px; font-size: .92rem; }
.footer__social { display: flex; gap: 12px; margin-top: 20px; }
.footer__social a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08); display: grid; place-items: center; }
.footer__social a:hover { background: var(--red); }
.footer__social svg { width: 18px; height: 18px; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: #8a86a0; }
.footer__bottom nav { display: flex; gap: 20px; flex-wrap: wrap; }

/* ------- Page hero (interior) ------- */
.page-hero { padding: 80px 0 52px; background: linear-gradient(180deg, var(--bg-tint), #fff); text-align: center; }
.page-hero p { max-width: 640px; margin: 0 auto; font-size: 1.14rem; }

/* ------- Auth / forms ------- */
.auth { min-height: 78vh; display: grid; place-items: center; background: var(--bg-soft); padding: 60px 20px; }
.auth__card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 42px; width: 100%; max-width: 430px; }
.auth__card img { height: 44px; margin: 0 auto 22px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea, .field select { width: 100%; padding: 13px 15px; border: 1px solid var(--border); border-radius: 10px; font-family: var(--font-body); font-size: 1rem; background: #fff; color: var(--ink); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-soft); }
.auth__alt { text-align: center; margin-top: 18px; font-size: .92rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-info { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-info li { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-info svg { width: 22px; height: 22px; color: var(--red); flex-shrink: 0; margin-top: 3px; }
.contact-info strong { display: block; color: var(--ink); }
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field__error { display: block; color: var(--red); font-size: .82rem; margin-top: 6px; }
.field input.has-error, .field select.has-error { border-color: var(--red); }
.alert { border-radius: 12px; padding: 14px 18px; margin-bottom: 20px; font-size: .95rem; }
.alert strong { display: block; margin-bottom: 2px; }
.alert p { margin: 0; }
.alert--success { background: #e9f7ef; border: 1px solid #b7e4c7; color: #1e7a44; }
.alert--success strong, .alert--success p { color: #1e7a44; }
.alert--error { background: var(--red-soft); border: 1px solid #f3c2c2; color: var(--red-dark); }

/* Password generator */
.pw-tool { max-width: 720px; margin: 0 auto; }
.pw-output { display: flex; align-items: center; gap: 12px; background: #fff; border: 2px solid var(--border); border-radius: 14px; padding: 14px 18px; margin-bottom: 24px; }
.pw-output input { flex: 1; border: 0; font-family: "SFMono-Regular", ui-monospace, Menlo, monospace; font-size: 1.3rem; color: var(--ink); background: none; letter-spacing: .5px; }
.pw-output input:focus { outline: none; }
.pw-iconbtn { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 10px; width: 44px; height: 44px; display: grid; place-items: center; cursor: pointer; color: var(--ink); transition: .15s; }
.pw-iconbtn:hover { background: var(--red-soft); color: var(--red); border-color: var(--red-soft); }
.pw-strength { height: 8px; border-radius: 999px; background: var(--border); overflow: hidden; margin-bottom: 8px; }
.pw-strength__bar { height: 100%; width: 20%; background: var(--red); border-radius: 999px; transition: width .2s, background .2s; }
.pw-strength__label { font-size: .85rem; font-weight: 600; color: var(--muted); margin-bottom: 26px; }
.pw-controls { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.pw-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.pw-row:last-child { border-bottom: 0; }
.pw-row label { font-weight: 600; color: var(--ink); }
.pw-range { display: flex; align-items: center; gap: 16px; flex: 1; max-width: 380px; }
.pw-range input[type=range] { flex: 1; accent-color: var(--red); }
.pw-range output { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; color: var(--red); min-width: 34px; text-align: right; }
.switch { position: relative; width: 46px; height: 26px; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch span { position: absolute; inset: 0; background: var(--gray); border-radius: 999px; cursor: pointer; transition: .2s; }
.switch span::before { content: ""; position: absolute; height: 20px; width: 20px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: .2s; }
.switch input:checked + span { background: var(--red); }
.switch input:checked + span::before { transform: translateX(20px); }

/* Blog / cards list */
.postgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.post { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: .2s; display: flex; flex-direction: column; }
.post:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post__thumb { height: 160px; background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%); display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; text-align: center; padding: 20px; }
.post__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post__tag { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--red); margin-bottom: 10px; }
.post__body h3 { font-size: 1.12rem; margin-bottom: 8px; }
.post__body a { margin-top: auto; font-weight: 600; }
.post__meta { font-size: .82rem; color: var(--gray); margin-bottom: 12px; }

/* Download platforms */
.dl-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 780px; margin: 0 auto; }
.dl-card { display: flex; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); }
.dl-card svg { width: 40px; height: 40px; color: var(--ink); flex-shrink: 0; }
.dl-card strong { display: block; color: var(--ink); font-family: var(--font-head); }
.dl-card span { font-size: .88rem; color: var(--muted); }
@media (max-width: 720px) { .postgrid { grid-template-columns: 1fr; } .dl-grid { grid-template-columns: 1fr; } }

/* ------- Legal / prose ------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.5rem; margin-top: 42px; }
.prose p, .prose li { color: var(--muted); }
.prose ul { padding-left: 20px; }

/* ------- 404 ------- */
.notfound { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 60px 20px; }
.notfound h1 { font-size: clamp(4rem, 14vw, 9rem); color: var(--red); margin-bottom: 0; }

/* ------- Responsive ------- */
@media (max-width: 980px) {
  .hero__grid, .os, .audience, .contact-grid, .split, .bento__card--media, .bento__card--wide .bento__inner { grid-template-columns: 1fr; }
  .hero__media, .split--reverse .split__media { order: -1; }
  .features, .featgrid { grid-template-columns: repeat(2, 1fr); }
  .metrics, .stats, .testimonials, .plans, .plans--group.is-active, .resources, .bento { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .split-cards { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav__menu, .nav__actions .btn--ghost { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__menu { display: flex; flex-direction: column; align-items: stretch; position: absolute; top: 78px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); padding: 14px 24px; gap: 2px; box-shadow: var(--shadow-md); }
  .nav.is-open .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; padding: 4px 0 4px 12px; }
  .section { padding: 60px 0; }
  .features, .featgrid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-band { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
}
