@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #121512;
  --ink-2: #1e1e1e;
  --blue: #155DFC;
  --blue-dark: #0a44c9;
  --body: #52525b;
  --muted: #71717a;
  --line: #e4e4e7;
  --tint: #fafafa;
  --tint-2: #f4f4f5;
  --dark: #09090b;
  --white: #fff;
  --font: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--blue-dark); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font); color: var(--ink); font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
p { margin-bottom: 1rem; }
section { position: relative; }

.sw-wrap { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.sw-pad { padding: 104px 0; }
.sw-pad-sm { padding: 56px 0; }

.sw-eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 18px;
}
.sw-eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--blue); }
.sw-h2 { font-size: clamp(28px, 3.7vw, 44px); font-weight: 700; letter-spacing: -.03em; }
.sw-h2 .mark { color: var(--blue); }
.sw-lead { font-size: 17px; color: var(--body); max-width: 640px; }
.sw-center { text-align: center; }
.sw-center .sw-eyebrow { justify-content: center; }
.sw-center .sw-lead { margin-left: auto; margin-right: auto; }

.sw-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 15px;
  padding: 13px 26px; border-radius: 8px; border: 1px solid transparent; cursor: pointer;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.sw-btn-spark { background: var(--ink); color: #fff; }
.sw-btn-spark:hover { background: var(--blue); color: #fff; transform: translateY(-1px); }
.sw-btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.sw-btn-ghost:hover { border-color: var(--ink); transform: translateY(-1px); }
.sw-btn-light { background: #fff; color: var(--ink); }
.sw-btn-light:hover { background: var(--blue); color: #fff; transform: translateY(-1px); }

.sw-nav { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.85); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.sw-nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.sw-logo { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 20px; color: var(--ink); letter-spacing: -.03em; }
.sw-logo__bolt { width: 30px; height: 30px; background: var(--ink); border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; }
.sw-logo__bolt svg { width: 15px; height: 15px; }
.sw-nav__links { display: flex; align-items: center; gap: 30px; list-style: none; }
.sw-nav__links a { color: var(--body); font-weight: 500; font-size: 14.5px; }
.sw-nav__links a:hover { color: var(--ink); }
.sw-nav__cta { display: flex; align-items: center; gap: 14px; }
.sw-burger { display: none; background: none; border: none; color: var(--ink); font-size: 24px; cursor: pointer; }
@media (max-width: 940px) {
  .sw-nav__links { display: none; }
  .sw-nav__links.open { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; position: absolute; top: 70px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 14px 24px; }
  .sw-nav__links.open a { padding: 8px 0; width: 100%; }
  .sw-burger { display: block; }
  .sw-nav__cta .sw-btn { display: none; }
}

.sw-hero { border-bottom: 1px solid var(--line); }
.sw-hero__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; padding: 96px 0 100px; }
.sw-hero h1 { font-size: clamp(38px, 5.4vw, 64px); font-weight: 800; color: var(--ink); margin-bottom: 24px; letter-spacing: -.04em; line-height: 1.05; }
.sw-hero h1 .mark { color: var(--blue); }
.sw-hero__lead { font-size: 18px; color: var(--body); max-width: 500px; margin-bottom: 32px; }
.sw-hero__btns { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.sw-hero__meta { display: flex; flex-wrap: wrap; gap: 0; border-top: 1px solid var(--line); }
.sw-hero__meta span { font-size: 13px; font-weight: 500; color: var(--muted); padding: 16px 24px 0 0; }
.sw-hero__meta span b { display: block; font-size: 24px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.sw-hero__media { position: relative; }
.sw-hero__media img { width: 100%; border-radius: 12px; border: 1px solid var(--line); }
@media (max-width: 860px) { .sw-hero__grid { grid-template-columns: 1fr; gap: 40px; padding: 56px 0 60px; } .sw-hero__media { order: -1; } }

.sw-tint { background: var(--tint); }
.sw-logos { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sw-logos__row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 24px; padding: 28px 0; }
.sw-logos__row span { font-size: 13px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.sw-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.sw-split__media img { border-radius: 12px; border: 1px solid var(--line); }
@media (max-width: 860px) { .sw-split { grid-template-columns: 1fr; gap: 36px; } .sw-split.rev .sw-split__media { order: -1; } }

.sw-ticks { list-style: none; margin-top: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 20px; }
.sw-ticks li { display: flex; align-items: flex-start; gap: 10px; font-weight: 500; color: var(--ink); font-size: 15px; }
.sw-ticks li::before { content: ""; flex-shrink: 0; width: 18px; height: 18px; margin-top: 2px; background: var(--blue); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/18px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/18px no-repeat; }

.sw-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 56px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
@media (max-width: 860px) { .sw-feat-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .sw-feat-grid { grid-template-columns: 1fr; } }
.sw-feat { background: #fff; padding: 36px 30px; transition: background .2s ease; }
.sw-feat:hover { background: var(--tint); }
.sw-feat__ic { width: 44px; height: 44px; border-radius: 9px; background: var(--tint-2); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.sw-feat__ic svg { width: 22px; height: 22px; stroke: var(--ink); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.sw-feat h3 { font-size: 18px; margin-bottom: 10px; letter-spacing: -.01em; }
.sw-feat p { font-size: 14.5px; margin: 0; color: var(--body); }

.sw-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 56px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
@media (max-width: 800px) { .sw-steps { grid-template-columns: 1fr; } }
.sw-step { background: #fff; padding: 36px 32px; border-right: 1px solid var(--line); }
.sw-step:last-child { border-right: none; }
@media (max-width: 800px) { .sw-step { border-right: none; border-bottom: 1px solid var(--line); } .sw-step:last-child { border-bottom: none; } }
.sw-step__n { font-size: 13px; font-weight: 700; color: var(--blue); letter-spacing: .08em; }
.sw-step h3 { font-size: 19px; margin: 10px 0 10px; }
.sw-step p { font-size: 14.5px; margin: 0; }

.sw-counter { background: var(--dark); border-radius: 14px; }
.sw-counter__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: left; }
@media (max-width: 720px) { .sw-counter__grid { grid-template-columns: 1fr 1fr; } }
.sw-counter__grid > div { padding: 36px 32px; border-right: 1px solid rgba(255,255,255,.1); }
.sw-counter__grid > div:last-child { border-right: none; }
.sw-counter b { font-weight: 800; font-size: clamp(32px, 5vw, 46px); color: #fff; line-height: 1; display: block; letter-spacing: -.03em; }
.sw-counter span { color: rgba(255,255,255,.6); font-size: 13.5px; display: block; margin-top: 10px; }

.sw-show-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
@media (max-width: 820px) { .sw-show-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; } }
.sw-show { border-radius: 12px; overflow: hidden; position: relative; border: 1px solid var(--line); }
.sw-show img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.sw-show__cap { padding: 18px 20px; font-weight: 500; font-size: 14.5px; color: var(--ink); background: #fff; }

.sw-specs { width: 100%; border-collapse: collapse; margin-top: 24px; }
.sw-specs td { padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 15px; vertical-align: top; }
.sw-specs td:first-child { font-weight: 600; color: var(--ink); width: 34%; padding-right: 16px; }

.sw-rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
@media (max-width: 820px) { .sw-rev-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; } }
.sw-rev { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 30px 28px; }
.sw-rev__stars { color: var(--blue); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.sw-rev p { font-size: 15px; color: var(--ink-2); margin-bottom: 18px; }
.sw-rev__who { font-weight: 600; color: var(--ink); font-size: 14px; }

.sw-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; align-items: stretch; }
@media (max-width: 860px) { .sw-price-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }
.sw-plan { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 34px 30px; display: flex; flex-direction: column; position: relative; }
.sw-plan--pop { border: 1px solid var(--ink); }
.sw-plan__tag { position: absolute; top: 24px; right: 24px; background: var(--blue); color: #fff; font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; padding: 4px 10px; border-radius: 6px; }
.sw-plan h3 { font-size: 20px; margin-bottom: 6px; }
.sw-plan__sub { font-size: 14px; color: var(--body); min-height: 44px; }
.sw-plan__qty { font-weight: 800; font-size: 44px; color: var(--ink); line-height: 1; margin: 16px 0 4px; letter-spacing: -.03em; }
.sw-plan__qty small { font-size: 14px; font-weight: 600; color: var(--muted); }
.sw-plan ul { list-style: none; margin: 18px 0 26px; }
.sw-plan ul li { display: flex; gap: 9px; align-items: flex-start; font-size: 14.5px; color: var(--ink-2); padding: 6px 0; }
.sw-plan ul li::before { content: ""; flex-shrink: 0; width: 17px; height: 17px; margin-top: 3px; background: var(--blue); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/13px no-repeat; }
.sw-plan .sw-btn { margin-top: auto; justify-content: center; }

.sw-faq { margin-top: 56px; border-top: 1px solid var(--line); }
.sw-faq__item { border-bottom: 1px solid var(--line); padding: 26px 0; display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; }
@media (max-width: 700px) { .sw-faq__item { grid-template-columns: 1fr; gap: 8px; } }
.sw-faq__item h3 { font-size: 18px; }
.sw-faq__item p { font-size: 15px; margin: 0; }

.sw-cta { background: var(--dark); border-radius: 16px; text-align: center; }
.sw-cta h2 { color: #fff; font-size: clamp(28px, 4vw, 46px); font-weight: 800; letter-spacing: -.03em; }
.sw-cta h2 .mark { color: #6ea8fe; }
.sw-cta p { color: rgba(255,255,255,.66); max-width: 560px; margin: 18px auto 30px; }

.sw-disclaimer { background: var(--tint); border-top: 1px solid var(--line); }
.sw-disclaimer p { font-size: 12.5px; color: var(--muted); max-width: 1000px; margin: 0 auto; text-align: center; }

.sw-footer { background: var(--ink); color: rgba(255,255,255,.6); padding: 70px 0 30px; }
.sw-footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.4fr; gap: 38px; }
@media (max-width: 820px) { .sw-footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 480px) { .sw-footer__grid { grid-template-columns: 1fr; } }
.sw-footer .sw-logo { color: #fff; margin-bottom: 16px; }
.sw-footer__grid p { font-size: 14px; }
.sw-footer h5 { color: #fff; font-size: 14px; margin-bottom: 16px; letter-spacing: .02em; }
.sw-footer ul { list-style: none; }
.sw-footer ul li { margin-bottom: 9px; }
.sw-footer ul li a { color: rgba(255,255,255,.6); font-weight: 400; font-size: 14px; }
.sw-footer ul li a:hover { color: #fff; }
.sw-footer__bar { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 22px; font-size: 13px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; color: rgba(255,255,255,.45); }

.sw-cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; background: var(--ink); color: rgba(255,255,255,.85); border-radius: 12px; padding: 16px 22px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; box-shadow: 0 16px 50px rgba(0,0,0,.3); max-width: 1140px; margin: 0 auto; }
.sw-cookie.hide { display: none; }
.sw-cookie span { font-size: 13.5px; }
.sw-cookie a { color: #6ea8fe; }

.sw-page-head { background: var(--tint); border-bottom: 1px solid var(--line); padding: 64px 0; }
.sw-page-head h1 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -.03em; }
.sw-page-head .crumb { font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.sw-doc { padding: 70px 0; }
.sw-doc .sw-wrap { max-width: 860px; }
.sw-doc h2 { font-size: 22px; margin: 36px 0 12px; letter-spacing: -.02em; }
.sw-doc h2:first-child { margin-top: 0; }
.sw-doc p, .sw-doc li { font-size: 15.5px; color: var(--body); }
.sw-doc ul { padding-left: 22px; margin-bottom: 14px; }
.sw-doc li { margin-bottom: 8px; }
.sw-doc .updated { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.sw-card-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 30px 0; }
@media (max-width: 640px) { .sw-card-row { grid-template-columns: 1fr; } }
.sw-info-card { background: var(--tint); border: 1px solid var(--line); border-radius: 12px; padding: 28px; }
.sw-info-card h3 { font-size: 18px; margin-bottom: 8px; }
.sw-info-card p { margin: 0; font-size: 14.5px; }
