/* The final polish layer for the public site (loaded after site.css and sections.css).
   - a dark header, like the program itself, for contrast
   - no grid lines anywhere: soft light instead
   - wider pages that use the screen
   - the legal pages: contents on the left, the text in the middle, help on the right */

/* ------------------------------------------------------------ dark header */
.nav { background: rgba(9, 13, 27, .9); -webkit-backdrop-filter: saturate(1.5) blur(16px); backdrop-filter: saturate(1.5) blur(16px); border-bottom: 1px solid rgba(255, 255, 255, .07); }
.nav.scrolled { background: rgba(9, 13, 27, .96); border-bottom-color: rgba(255, 255, 255, .1); box-shadow: 0 14px 34px -22px rgba(0, 0, 12, .8); }
.nav .wordmark { color: #fff; }
.nav .wordmark b { background: linear-gradient(135deg, #7ea6ff 0%, #b197ff 100%); -webkit-background-clip: text; background-clip: text; }
.nav-links a { color: #c4cdea; }
.nav-links a:hover, .nav-links a[aria-current="page"] { background: rgba(255, 255, 255, .1); color: #fff; }
.nav-signin { color: #d3daf2; }
.nav-signin:hover { color: #fff; }
.nav .nav-demo, .site .nav .btn.nav-demo { background: transparent; border-color: rgba(255, 255, 255, .34); color: #fff; }
.nav .nav-demo:hover { background: rgba(255, 255, 255, .1); border-color: #fff; color: #fff; }
.nav .btn-primary { box-shadow: 0 8px 24px -8px rgba(105, 92, 255, .75), inset 0 1px 0 rgba(255, 255, 255, .28); }
.nav-toggle { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .24); }
.nav-toggle span { background: #fff; }
.mobile-menu { background: #0a0f1f; border-top-color: rgba(255, 255, 255, .08); }
.mobile-menu a:not(.btn) { color: #e8edfc; border-bottom-color: rgba(255, 255, 255, .09); }
.mobile-menu .btn:not(.btn-primary) { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .34); }
.nav-min .secure { color: #b5c0e3; }
@media (max-width: 960px) { .site .nav .btn.nav-demo-m { background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .24); color: #fff; } }
:target { scroll-margin-top: 90px; }

/* ------------------------------------------------- no grid lines: the compass, a radar sweep and drifting light */
.chart-bg { background: none; overflow: hidden; -webkit-mask-image: linear-gradient(180deg, #000 0, #000 58%, transparent 97%); mask-image: linear-gradient(180deg, #000 0, #000 58%, transparent 97%); }
.chart-bg::before, .chart-bg::after { content: ''; position: absolute; border-radius: 50%; pointer-events: none; }
.chart-bg::before { width: min(56vw, 900px); aspect-ratio: 1; right: -4%; top: -22%; background: radial-gradient(closest-side, rgba(122, 92, 255, .30), rgba(122, 92, 255, 0) 72%); animation: orb-a 26s ease-in-out infinite alternate; }
.chart-bg::after { width: min(48vw, 760px); aspect-ratio: 1; left: -10%; bottom: -34%; background: radial-gradient(closest-side, rgba(61, 123, 255, .22), rgba(61, 123, 255, 0) 72%); animation: orb-b 32s ease-in-out infinite alternate; }
.compass circle, .compass path { stroke: rgba(61, 92, 170, .25); }
.chart-bg svg { animation-duration: 150s; }
.sweep { transform-box: view-box; transform-origin: 400px 400px; animation: sweep 16s linear infinite; }
.blips circle { fill: #6f8dff; opacity: 0; animation: blip 5.2s ease-in-out infinite; }
.blips circle:nth-child(2) { animation-delay: 1s; } .blips circle:nth-child(3) { animation-delay: 2.1s; } .blips circle:nth-child(4) { animation-delay: 3.2s; } .blips circle:nth-child(5) { animation-delay: 4.1s; }
@keyframes sweep { to { transform: rotate(360deg); } }
@keyframes blip { 0%, 100% { opacity: 0; } 18% { opacity: .9; } 55% { opacity: .15; } }
@keyframes orb-a { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(-8%, 10%, 0) scale(1.12); } }
@keyframes orb-b { from { transform: translate3d(0, 0, 0) scale(1); } to { transform: translate3d(12%, -8%, 0) scale(1.15); } }
@media (prefers-reduced-motion: reduce) { .chart-bg::before, .chart-bg::after, .chart-bg svg, .sweep, .blips circle { animation: none; } .blips circle { opacity: .5; } }
.page-hero::before { background-image: radial-gradient(ellipse 60% 130% at 50% -30%, rgba(105, 92, 255, .15), transparent 70%), radial-gradient(ellipse 40% 90% at 100% 0%, rgba(61, 123, 255, .1), transparent 70%);
  background-size: auto; -webkit-mask-image: none; mask-image: none; }

/* the home hero ends with a clear edge: the four facts sit in a raised card that overlaps it */
.hero { padding-bottom: clamp(110px, 12vw, 190px); }
.proof { position: relative; z-index: 3; margin-top: calc(-1 * clamp(64px, 7vw, 104px)); padding: 0 0 clamp(20px, 3vw, 44px); background: transparent; border: 0; }
.proof .proof-grid { width: min(calc(100% - 2 * var(--gutter)), calc(var(--max) - 2 * var(--gutter))); margin-inline: auto; gap: 0; background: #fff; border: 1px solid var(--line); border-radius: 30px; box-shadow: 0 40px 90px -50px rgba(20, 30, 110, .55), 0 1px 0 rgba(255, 255, 255, .8) inset; padding: 14px clamp(8px, 1.4vw, 20px); }
.proof-item { padding: clamp(20px, 2.4vw, 32px) clamp(20px, 2.6vw, 40px); border-left: 1px solid var(--line); }
.proof-item:first-child { border-left: 0; padding-left: clamp(20px, 2.6vw, 40px); }
@media (max-width: 900px) { .proof-item, .proof-item:nth-child(3) { padding-left: clamp(20px, 2.6vw, 40px); } .proof-item:nth-child(3) { border-left: 0; } .proof-item { border-top: 1px solid var(--line); } .proof-item:nth-child(-n+2) { border-top: 0; } }
@media (max-width: 520px) { .proof-item { border-left: 0; border-top: 1px solid var(--line); } .proof-item:first-child { border-top: 0; } .proof-grid { border-radius: 24px; } }

/* --------------------------------------------------------------- wider pages */
.wrap.mid { max-width: 1520px; }
.wrap.narrow { max-width: 1080px; }
.sec-head { max-width: 860px; }

/* ------------------------------------------- the homepage "built to last" band */
.sturdy { border-radius: clamp(36px, 5vw, 88px); margin: 0 clamp(0px, 1vw, 16px); overflow: hidden; padding: clamp(60px, 7vw, 112px) 0; background: radial-gradient(ellipse 60% 70% at 88% 0%, rgba(105, 92, 255, .28), transparent 70%), radial-gradient(ellipse 50% 60% at 0% 100%, rgba(61, 123, 255, .18), transparent 70%), #080c1a; color: #cfd8f3; }
.sturdy .eyebrow { color: #8fb0ff; }
.sturdy h2 { color: #fff; max-width: 30ch; }
.bento { padding-bottom: clamp(24px, 3vw, 48px); }
.sturdy-head { margin-bottom: clamp(32px, 4.5vw, 60px); }
.sturdy-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: clamp(20px, 2.4vw, 36px); }
.sturdy-card { padding: clamp(26px, 3vw, 44px); border-radius: 30px; background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .11); box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06); }
.sturdy-card h3 { color: #fff; font-size: clamp(22px, 2vw, 30px); font-weight: 640; letter-spacing: -.03em; line-height: 1.15; max-width: 24ch; }
.sturdy-card > p { margin: 14px 0 0; color: #b6c2e6; font-size: 17px; max-width: 58ch; }
.routes { display: grid; gap: 14px; margin-top: 30px; }
.route { padding: 20px 22px; border-radius: 20px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); }
.route.alt { background: linear-gradient(135deg, rgba(61, 123, 255, .3), rgba(122, 60, 245, .32)); border-color: rgba(160, 150, 255, .4); }
.route-tag { display: block; font: 500 12px var(--mono); letter-spacing: .12em; text-transform: uppercase; color: #9db3ee; }
.route.alt .route-tag { color: #d5ddff; }
.route-path { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin: 12px 0 10px; }
.route-path i { font-style: normal; font-weight: 650; color: #fff; padding: 8px 16px; border-radius: 999px; background: rgba(255, 255, 255, .11); border: 1px solid rgba(255, 255, 255, .16); }
.route-path em { font-style: normal; color: #8fb0ff; font-size: 22px; }
.route p { margin: 0; color: #c1cbec; font-size: 15.5px; }
.safe-grid { list-style: none; margin: 28px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.safe-grid li { padding: 20px; border-radius: 20px; background: rgba(255, 255, 255, .06); border: 1px solid rgba(255, 255, 255, .1); }
.safe-grid svg { width: 26px; height: 26px; color: #9fb8ff; margin-bottom: 12px; }
.safe-grid b { display: block; color: #fff; font-size: 17px; font-weight: 650; }
.safe-grid span { display: block; margin-top: 4px; color: #b3bfe3; font-size: 15px; line-height: 1.45; }
@media (max-width: 1000px) { .sturdy-grid { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 520px) { .safe-grid { grid-template-columns: minmax(0, 1fr); } .sturdy-card { border-radius: 24px; } }

/* ------------------------------------------------------------- legal pages */
.legal-page .page-hero { padding-bottom: clamp(20px, 3vw, 36px); }
.legal-page .page-hero .wrap { max-width: var(--max); }
.legal-page .page-hero h1 { max-width: 20ch; }
.legal-page .page-hero .lede { max-width: 70ch; }
.legal { padding: clamp(8px, 2vw, 24px) 0 clamp(56px, 7vw, 100px); }
.legal-grid { display: grid; grid-template-columns: 250px minmax(0, 1fr) 300px; gap: clamp(28px, 4vw, 72px); align-items: start; max-width: var(--max); }
.legal-body { max-width: 940px; padding-bottom: 0; }
.legal-body p, .legal-body li { max-width: none; font-size: 17px; line-height: 1.7; color: #262f47; }
.legal-body h2 { font-size: clamp(24px, 2.2vw, 30px); margin: 52px 0 14px; padding-top: 30px; border-top: 1px solid var(--line-2); }
.legal-body h2:first-child, .legal-body .key-box + h2 { margin-top: 44px; }
.legal-body .key-box h2 { border: 0; padding: 0; margin: 0 0 14px !important; }
.legal-body .key-box { border-radius: 26px; padding: clamp(24px, 3vw, 40px); background: linear-gradient(180deg, #fff, #f5f8ff); }
.legal-body .key-box li { font-size: 17px; }
.legal-body .key-box li b { color: #0f1729; }
.legal-body ul, .legal-body ol { padding-left: 24px; }
.legal-body li { margin-bottom: 10px; }
.legal-toc, .legal-side { position: sticky; top: 92px; max-height: calc(100vh - 116px); overflow-y: auto; }
.toc-title { font: 500 12px var(--mono); letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
.legal-toc nav { display: grid; gap: 1px; border-left: 1px solid var(--line-2); }
.legal-toc a { display: block; padding: 7px 14px; margin-left: -1px; border-left: 2px solid transparent; color: var(--muted); text-decoration: none; font-size: 14.5px; line-height: 1.35; }
.legal-toc a:hover { color: var(--text); }
.legal-toc a[aria-current="true"] { color: var(--blue); border-left-color: var(--blue); font-weight: 600; background: linear-gradient(90deg, rgba(37, 87, 214, .07), transparent); }
.legal-side { display: grid; gap: 18px; }
.side-card { padding: 22px; border-radius: 22px; background: #fff; border: 1px solid var(--line); box-shadow: 0 24px 56px -42px rgba(20, 40, 110, .45); }
.side-card h2 { font: 600 17px/1.3 var(--font-display); letter-spacing: -.01em; margin: 0 0 8px; }
.side-card p { margin: 0 0 12px; font-size: 15px; color: var(--muted); }
.side-card .btn { width: 100%; }
.side-card.dark { background: #0a0f1f; border-color: #1a2242; color: #c8d1ee; }
.side-card.dark h2 { color: #fff; } .side-card.dark p { color: #aeb9dc; }
.side-links { display: grid; gap: 4px; }
.side-links a { display: flex; justify-content: space-between; align-items: center; padding: 9px 12px; border-radius: 10px; text-decoration: none; color: var(--text); font-weight: 550; font-size: 15px; }
.side-links a:hover { background: var(--blue-bg); }
.side-links a[aria-current="page"] { background: var(--blue-bg); color: var(--blue); }
.notice { margin: 26px 0; padding: clamp(20px, 2.6vw, 32px); border-radius: 22px; background: #fff8e6; border: 1px solid #f0d58c; }
.notice h3 { margin: 0 0 8px; font-size: 20px; letter-spacing: -.02em; color: #4a3200; }
.notice p { color: #4a3a12 !important; margin: 0 0 10px; }
.notice p:last-child { margin-bottom: 0; }
@media (max-width: 1440px) { .legal-grid { grid-template-columns: 240px minmax(0, 1fr); } .legal-side { display: none; } }
@media (max-width: 960px) { .legal-grid { grid-template-columns: minmax(0, 1fr); } .legal-toc { position: static; max-height: none; padding: 16px 18px; border-radius: 18px; background: #fff; border: 1px solid var(--line); } .legal-toc nav { border-left: 0; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); max-height: 190px; overflow-y: auto; } .legal-toc a { border-left: 0; margin: 0; padding: 6px 4px; } }
@media print { .nav, .foot, .legal-toc, .legal-side, .cta-band { display: none !important; } .legal-grid { display: block; } .legal-body p, .legal-body li { font-size: 12pt; } }
@media (min-width: 1441px) { .article .related { display: none; } }
.article-page .page-hero h1 { max-width: 26ch; }
.article-page .page-hero .lede { max-width: 84ch; }
.legal-body .callout, .legal-body blockquote { max-width: none; }

/* the guides index: cards across the page, not one narrow column */
.guides-index .guide-cards { grid-template-columns: repeat(auto-fill, minmax(min(100%, 400px), 1fr)); gap: 20px; margin: 8px 0 30px; }
.guides-index .guide-cards a { height: 100%; align-content: start; gap: 8px; padding: 26px 28px; border-radius: 22px; }
.guides-index .guide-cards b { font-size: 21px; }
.guides-index .guide-cards span { font-size: 16.5px; line-height: 1.5; }
.guides-index .fine { max-width: 90ch; }

/* the "not found" and error pages: centred, with room */
.plain-page { text-align: center; }
.plain-page .lede { margin-inline: auto; }
.plain-page h1 { margin-inline: auto; max-width: 18ch; }
.plain-page .row { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }

/* ------------------------------------------------ the "quiet leak" section under the hero */
.proof + .problem { padding-top: clamp(28px, 4vw, 60px); }
.problem .sec-head { max-width: none; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 0 clamp(32px, 6vw, 120px); align-items: end; margin-bottom: clamp(32px, 4vw, 56px); }
.problem .sec-head .eyebrow { grid-column: 1 / -1; }
.problem .sec-head h2 { max-width: 16ch; }
.problem .sec-head h2 + .lede { margin: 0; padding-bottom: 6px; max-width: 52ch; }
.problem-grid { align-items: stretch; gap: clamp(20px, 2.4vw, 32px); }
.problem-grid .pcol-chart { display: flex; flex-direction: column; }
.problem-grid .pcol-chart .chart-card { flex: 1; }
.problem .pcol { border: 1px solid var(--line); border-radius: 28px; background: #fff; padding: clamp(24px, 2.6vw, 38px); box-shadow: 0 30px 70px -52px rgba(20, 40, 110, .5); }
.problem .pcol p { max-width: none; }
.pstack { display: grid; gap: clamp(16px, 1.8vw, 24px); align-content: stretch; grid-auto-rows: 1fr; }
.pstack .pcol { display: flex; flex-direction: column; justify-content: center; }
.pstack .pcol h3 { display: flex; align-items: center; gap: 14px; }
.pstack .pcol h3::before { content: ''; flex: none; width: 10px; height: 34px; border-radius: 6px; background: var(--grad); }
.problem .pcol-chart .chart-card { border: 0; padding: 0; box-shadow: none; background: transparent; }
.problem-punch { display: flex; align-items: center; justify-content: space-between; gap: clamp(20px, 4vw, 64px); flex-wrap: wrap; max-width: none; margin-top: clamp(24px, 3vw, 40px); padding: clamp(30px, 4vw, 56px) clamp(28px, 4vw, 64px); border-radius: 32px;
  background: radial-gradient(ellipse 60% 120% at 100% 0%, rgba(160, 130, 255, .5), transparent 70%), linear-gradient(120deg, #172a86 0%, #3f3ddb 55%, #6d43ec 100%); box-shadow: 0 40px 90px -50px rgba(50, 40, 200, .8); }
.problem-punch p { margin: 0; max-width: 40ch; font: 600 clamp(24px, 2.8vw, 40px)/1.2 var(--font-display); letter-spacing: -.03em; color: #e4e8ff; }
.problem-punch b { background: none; -webkit-background-clip: border-box; background-clip: border-box; color: #fff; }
.problem-punch .btn { flex: none; background: #fff; border-color: transparent; color: #1f2fa0; font-weight: 650; }
.problem-punch .btn:hover { background: #eef1ff; color: #1f2fa0; }
@media (max-width: 960px) { .problem .sec-head { grid-template-columns: minmax(0, 1fr); gap: 16px; } .problem .sec-head h2 { max-width: none; } }

/* ------------------------------------------------ the home hero fills the screen under the header */
@media (min-width: 961px) {
  .hero { min-height: calc(100vh - 69px); min-height: calc(100svh - 69px); display: flex; flex-direction: column; justify-content: center;
    padding: clamp(64px, 11vh, 140px) 0 clamp(110px, 14vh, 190px); }
  .hero > .wrap { width: 100%; }
}

/* ------------------------------------------------ one spacing value for the whole hero: above the content, below it, and after the facts card */
:root { --hero-space: clamp(56px, 9vh, 120px); --peek: clamp(56px, 6vw, 96px); }
.hero { padding: var(--hero-space) 0 calc(var(--hero-space) + var(--peek)); }
@media (min-width: 961px) { .hero { padding: var(--hero-space) 0 calc(var(--hero-space) + var(--peek)); } }
.proof { margin-top: calc(-1 * var(--peek)); padding-bottom: 0; }
.proof + .problem { padding-top: var(--hero-space); }

/* ------------------------------------------------ the desktop header scales smoothly to the screen width; only tablets and phones (under 1024px) use the menu button */
.nav-links a { white-space: nowrap; }
@media (min-width: 1024px) {
  .nav-in { gap: clamp(10px, 1.7vw, 32px); }
  .nav-links { gap: clamp(0px, .2vw, 6px); }
  .nav-links a { padding: 8px clamp(6px, .85vw, 14px); font-size: clamp(13px, 1.13vw, 15.5px); }
  .nav-cta { gap: clamp(8px, .9vw, 14px); }
  .nav-signin { font-size: clamp(13px, 1.13vw, 15.5px); padding: 8px clamp(2px, .4vw, 6px); white-space: nowrap; }
  .nav .btn-sm { padding-inline: clamp(11px, 1.05vw, 16px); font-size: clamp(13px, 1.1vw, 15px); white-space: nowrap; }
  .nav .brand { gap: clamp(8px, .9vw, 12px); flex: none; }
  .nav .brand .wordmark { font-size: clamp(23px, 2.05vw, 30px); }
  .nav .brand .logo-mark { width: clamp(32px, 2.7vw, 40px); height: clamp(32px, 2.7vw, 40px); }
  .nav-in { height: clamp(64px, 5.2vw, 74px); }
}
@media (max-width: 1023px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; margin-left: 0; }
  .mobile-menu:not([hidden]) { display: block; }
  .nav-in { height: 64px; gap: 14px; }
  .site .nav .btn.nav-demo-m { display: inline-flex; align-items: center; margin-left: auto; margin-right: 0; padding: 0 16px; height: 44px; border-radius: 11px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .24); color: #fff; box-shadow: none; font-size: 15px; }
}

/* ------------------------------------------------ the thank-you page: left-aligned, with the next steps as numbered cards */
.thanks-page { text-align: left; }
.thanks-page .wrap.narrow { max-width: 1180px; }
.thanks-page .lede { margin-inline: 0; }
.thanks-page h1 { margin-inline: 0; max-width: 22ch; }
.thanks-page .thanks-card { max-width: 640px; }
.next-h { margin: 40px 0 18px; font-size: clamp(22px, 2.2vw, 28px); }
.next-steps { list-style: none; counter-reset: next; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.next-steps li { counter-increment: next; padding: 26px 24px; border: 1px solid var(--line); border-radius: 22px; background: #fff; box-shadow: 0 24px 56px -44px rgba(20, 40, 110, .5); color: var(--muted); font-size: 16.5px; line-height: 1.6; }
.next-steps li::before { content: counter(next); display: grid; place-items: center; width: 38px; height: 38px; margin-bottom: 14px; border-radius: 50%; background: var(--grad); color: #fff; font-weight: 700; }
.next-steps b { color: var(--text); }
.next-fine { margin-top: 20px; max-width: 70ch; }
@media (max-width: 900px) { .next-steps { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------ step-by-step guides (the Chrome extension page, and the eBay keys guide to come) */
.gk-steps { list-style: none; margin: 34px 0 10px; padding: 0; display: grid; gap: 22px; counter-reset: gk; }
.gk-step { display: grid; grid-template-columns: 52px minmax(0, 1fr); gap: 20px; padding: clamp(22px, 2.6vw, 34px); border: 1px solid var(--line); border-radius: 26px; background: #fff; box-shadow: 0 30px 70px -54px rgba(20, 40, 110, .55); scroll-margin-top: 92px; }
.gk-n { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--grad); color: #fff; font: 700 21px/1 var(--font-display); box-shadow: 0 10px 24px -10px rgba(89, 80, 245, .7); }
.gk-body { min-width: 0; }
.legal-body .gk-body h2, .gk-body h2 { margin: 2px 0 12px; padding: 0; border: 0; font-size: clamp(21px, 2vw, 26px); }
.gk-body p { margin: 0 0 12px; }
.gk-tip { padding: 10px 14px; border-radius: 12px; background: var(--blue-bg); color: #1a3fa0 !important; font-size: 15.5px !important; }
.gk-path { padding: 14px 16px; border-radius: 14px; background: #0a0f1f; overflow-x: auto; }
.gk-path code { color: #dfe7ff; font-size: 15px; white-space: nowrap; }
.gk-mini { margin: 4px 0 14px; padding-left: 22px; }
.gk-shot { margin: 18px 0 4px; }
.gk-shot img { display: block; width: 100%; height: auto; max-width: 900px; border-radius: 16px; border: 1px solid var(--line-2); box-shadow: 0 24px 60px -40px rgba(20, 30, 90, .6); }
.gk-shot figcaption { margin-top: 8px; font-size: 14px; color: var(--muted); }
.gk-shots { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin: 16px 0 6px; }
.gk-shots .gk-shot { margin: 0; }
@media (max-width: 720px) { .gk-step { grid-template-columns: minmax(0, 1fr); gap: 12px; } .gk-shots { grid-template-columns: minmax(0, 1fr); } }
.legal-body .notice h2 { margin: 0 0 8px; padding: 0; border: 0; font-size: 20px; letter-spacing: -.02em; color: #4a3200; }
.notice.tip { background: #eef3ff; border-color: #cddcfb; }
.notice.tip p { color: #1c2b52 !important; }
.legal-body .notice.tip h2 { color: #1a3fa0; }
.gk-small { font-size: 15px !important; color: var(--muted) !important; }

/* pictures that belong to a whole step (the Windows warning) use the full width of the step, so the small print is readable */
.gstep-body > .gafter { grid-column: 1 / -1; margin-top: 8px; }
.gafter .gk-shots { grid-template-columns: repeat(2, minmax(0, 560px)); justify-content: start; gap: 22px; }
@media (max-width: 720px) { .gafter .gk-shots { grid-template-columns: minmax(0, 1fr); } }
.gstep-body:has(.gafter) .gvis { position: static; }

/* the step cards line up with the text above them: the article's list indent does not apply to them */
.legal-body ol.gk-steps { padding-left: 0; margin-left: 0; }
.legal-body ol.gk-steps > li.gk-step { margin: 0; max-width: none; }
.legal-body .gk-mini { padding-left: 22px; }
.legal-body .gk-mini li { margin-bottom: 6px; }
@media (max-width: 720px) { .gk-step { padding: 20px 18px; border-radius: 22px; } .gk-n { width: 42px; height: 42px; font-size: 19px; } }
@media (max-width: 720px) { .gk-path code { white-space: normal; word-break: break-all; font-size: 14px; } }
.gk-more { margin: 6px 0 14px; padding: 4px 18px; border: 1px solid var(--line-2); border-radius: 14px; background: var(--paper); }
.gk-more summary { cursor: pointer; padding: 12px 0; font-weight: 650; color: var(--blue); }
.gk-more[open] summary { border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.gtext code, .gk-body code { overflow-wrap: anywhere; }

/* "Keep reading" at the foot of an article: the last question's own rule is the only line above it */
.legal-body .related { border-top: 0; margin-top: 40px; padding-top: 0; }
.legal-body .related h2 { border-top: 0; padding-top: 0; margin: 0 0 16px; }
.legal-body .faq-list + .related { margin-top: 44px; }
/* the same heading rule must not draw a line inside boxes and cards */
.legal-body .notice h2, .legal-body .key-box h2, .legal-body .gk-body h2 { border-top: 0; padding-top: 0; }

/* the footer: the brand and all four link columns on one row */
@media (min-width: 801px) { .foot-in { grid-template-columns: minmax(0, 1.5fr) repeat(4, minmax(0, 1fr)); gap: clamp(24px, 3vw, 64px); } }

/* ------------------------------------------------ the band after the packs: savings calculator and guarantee as two matching cards */
.pricing:has(+ .assure) { padding-bottom: clamp(36px, 4vw, 64px); }
.assure { padding: 0 0 var(--band-gap); }
.assure-grid { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr); gap: clamp(18px, 2vw, 28px); align-items: stretch; }
.assure .calc-in { display: block; padding: clamp(28px, 3.4vw, 52px); border-radius: clamp(28px, 3vw, 44px); background: linear-gradient(135deg, #e4ecff 0%, #efe9ff 100%); border: 1px solid #d6def7; box-shadow: none; }
.assure .calc-in .eyebrow { margin-bottom: 12px; }
.assure .calc-in h2 { font-size: clamp(26px, 2.6vw, 38px); max-width: none; margin-bottom: 10px; }
.assure .calc-in .lede { margin: 0 0 clamp(20px, 2.4vw, 32px); font-size: 17px; max-width: 52ch; }
.assure .calc-box { padding: clamp(18px, 2vw, 26px); border-radius: 22px; background: rgba(255, 255, 255, .7); border: 1px solid rgba(255, 255, 255, .9); }
.assure .calc-out { margin-top: 20px; }
.assure .g-in { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 0; padding: clamp(28px, 3.4vw, 52px); border-radius: clamp(28px, 3vw, 44px); color: #cfd8f3;
  background: radial-gradient(ellipse 80% 70% at 100% 0%, rgba(122, 92, 255, .4), transparent 70%), #0a1024; }
.assure .g-seal { margin-bottom: clamp(18px, 2vw, 28px); width: clamp(84px, 7vw, 112px); font-size: clamp(34px, 3.2vw, 46px); }
.assure .g-in h2 { color: #fff; font-size: clamp(24px, 2.3vw, 34px); margin-bottom: 12px; }
.assure .g-in p { color: #b9c5e8; font-size: 17px; margin: 0; max-width: 46ch; }
.assure .g-link { margin-top: 20px; color: #fff; font-weight: 650; text-decoration: none; border-bottom: 2px solid #6d7cff; padding-bottom: 2px; }
.assure .g-link:hover { border-color: #fff; }
@media (max-width: 960px) { .assure-grid { grid-template-columns: minmax(0, 1fr); } }

/* ================================================ one vertical rhythm for the whole site
   --gap      the padding above and below an ordinary section (two of them side by side leave 2 x --gap between their content)
   --band-pad the padding inside a dark or rounded band, which needs a little more room
   Every section on every page follows these, so no page has gaps that are bigger or smaller than another's. */
:root { --gap: clamp(48px, 5.2vw, 84px); --band-pad: clamp(56px, 6vw, 100px); --band-gap: var(--gap); --space-section: var(--gap); }
.site main > section:not(.hero):not(.proof):not(.assure):not(.page-hero):not(.cta-band):not(.legal):not(.request):not(.plain-page):not(.own):not(.sturdy):not(.stuck):not(.band):not(.contact):not(.demo-stage):not(.release-notes):not(.learn-band):not(.loop) { padding-block: var(--gap); }
.own, .sturdy, .stuck, .feature.band, .loop, .site .cta-band { padding-block: var(--band-pad); }
.site .cta-band { margin-top: 0; }
.feature.band { margin-block: 0; }
.assure { padding-bottom: var(--gap); }
.learn-band { padding-block: var(--gap); margin: 0; }
.request { padding-block: var(--gap); }
.release-notes { padding: var(--gap) 0; }
.contact { padding-block: var(--gap); }
.legal { padding-bottom: var(--gap); }

/* the "quiet leak" chart card fills its height: the chart is centred in the space, the three figures sit at the foot */
.problem .pcol-chart .chart-card { display: flex; flex-direction: column; flex: 1; }
.problem .pcol-chart .chart-card .chart { flex: 1; display: flex; align-items: center; margin: 12px 0; }
.problem .pcol-chart .chart-card .chart svg { width: 100%; }
.problem .pcol-chart .chart-facts { margin-top: auto; }
/* the blue closing band: text and button on one row, the text wrapping beside the button */
@media (min-width: 760px) { .problem-punch { flex-wrap: nowrap; } .problem-punch p { flex: 1; max-width: none; } }
.pstack { grid-auto-rows: auto; gap: clamp(14px, 1.6vw, 20px); }
.problem .pstack .pcol { padding: clamp(22px, 2.2vw, 30px) clamp(24px, 2.6vw, 38px); }

/* ------------------------------------------------ phones: comfortable tap targets, and the FAQ search on its own row */
@media (max-width: 760px) {
  .foot-cta, .g-link, .related li a, .side-links a, .helm .seg button, .seg button { display: inline-flex; align-items: center; min-height: 44px; }
  .related li a { display: flex; }
  .related ul { gap: 4px; }
  .faq-search input[type=search] { flex: 1 1 100%; }
  .faq-search .btn { flex: 1 1 100%; }
  .seg button { padding-inline: 18px; }
}
