/* ScreenShotty – marketing pages. No web fonts, no scripts, no third-party requests. */
:root {
  color-scheme: light dark;
  --bg: #f7f9fb;
  --surface: #ffffff;
  --surface-2: #eef3f6;
  --ink: #0f1a24;
  --ink-2: #4a5866;
  --line: #dde5ec;
  --teal: #13978b;
  --teal-strong: #0c7a70;
  --blue: #154f8f;
  --accent-soft: #e2f4f1;
  --shadow: 0 1px 2px rgba(15, 26, 36, .06), 0 12px 32px rgba(15, 26, 36, .08);
  --radius: 18px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0b1117;
    --surface: #121a22;
    --surface-2: #17212b;
    --ink: #e8eef3;
    --ink-2: #9aa9b6;
    --line: #243140;
    --teal: #3cc4b6;
    --teal-strong: #5fd6c9;
    --blue: #6aa8ec;
    --accent-soft: #10302d;
    --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 16px 40px rgba(0, 0, 0, .35);
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-strong); text-decoration-thickness: 1px; text-underline-offset: 3px; }
.wrap { width: min(1120px, 100% - 32px); margin-inline: auto; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
}
.site-header .wrap { display: flex; align-items: center; gap: 16px; height: 60px; }
.brand { display: flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 650; letter-spacing: -.01em; }
.brand img { width: 30px; height: 30px; }
.nav { margin-left: auto; display: flex; align-items: center; gap: 22px; font-size: 15px; }
.nav a { color: var(--ink-2); text-decoration: none; }
.nav a:hover { color: var(--ink); }
.nav .lang { border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; font-size: 13px; font-weight: 600; letter-spacing: .04em; }
@media (max-width: 640px) { .nav .hide-sm { display: none; } .nav { gap: 14px; } }

/* Hero */
.hero { padding: 72px 0 28px; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; letter-spacing: .02em;
  color: var(--teal-strong); background: var(--accent-soft);
  padding: 5px 12px; border-radius: 999px;
}
.hero h1 {
  font-size: clamp(40px, 7vw, 76px); line-height: 1.02; letter-spacing: -.035em;
  margin: 22px auto 18px; max-width: 12ch; font-weight: 750;
}
.hero h1 span { color: var(--teal); }
.lead { font-size: clamp(18px, 2.2vw, 21px); color: var(--ink-2); max-width: 40rem; margin: 0 auto; }
.cta { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px 22px; margin-top: 30px; }
.button {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: var(--bg); text-decoration: none;
  font-weight: 600; font-size: 16px; padding: 13px 22px; border-radius: 14px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.button svg { width: 18px; height: 18px; }
.price-note { color: var(--ink-2); font-size: 15px; }
.price-note strong { color: var(--ink); }

.shot {
  margin: 48px auto 0; width: 100%; max-width: 1080px;
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow), 0 40px 120px -30px color-mix(in srgb, var(--teal) 45%, transparent);
}

/* Sections */
section { padding: 88px 0 0; }
.section-head { max-width: 44rem; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); line-height: 1.08; letter-spacing: -.025em; margin: 0 0 12px; font-weight: 720; }
.section-head p { color: var(--ink-2); margin: 0; font-size: 19px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; counter-reset: step; }
.step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.step::before {
  counter-increment: step; content: counter(step);
  display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  background: #e5484d; color: #fff; font-weight: 700; font-size: 16px; margin-bottom: 16px;
  box-shadow: 0 3px 8px rgba(229, 72, 77, .35);
}
.step h3 { margin: 0 0 6px; font-size: 19px; letter-spacing: -.01em; }
.step p { margin: 0; color: var(--ink-2); font-size: 16px; }

kbd {
  font: 600 14px/1 -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  display: inline-block; min-width: 1.9em; text-align: center;
  padding: 5px 7px; border-radius: 7px;
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--line); border-bottom-width: 2px;
}

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.feature svg { width: 28px; height: 28px; color: var(--teal); margin-bottom: 14px; }
.feature h3 { margin: 0 0 6px; font-size: 18px; letter-spacing: -.01em; }
.feature p { margin: 0; color: var(--ink-2); font-size: 15.5px; }

.split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: center; }
.split > * { min-width: 0; }
.split .shot { margin: 0; box-shadow: var(--shadow); width: 100%; }
picture { display: block; }
.keys { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.keys li { display: flex; align-items: center; gap: 14px; color: var(--ink-2); }
.keys li span.k { display: inline-flex; gap: 4px; min-width: 96px; }

.tools { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tools span { font-size: 14px; background: var(--surface-2); border: 1px solid var(--line); border-radius: 999px; padding: 5px 12px; color: var(--ink-2); }
.tools b { color: var(--ink); font-weight: 650; margin-right: 4px; }

.privacy {
  margin-top: 88px; padding: 56px; border-radius: 28px; color: #fff;
  background: linear-gradient(135deg, #16a394 0%, #12637e 55%, #163f7c 100%);
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center;
}
.privacy h2 { font-size: clamp(28px, 3.6vw, 40px); line-height: 1.1; letter-spacing: -.02em; margin: 0 0 12px; }
.privacy p { margin: 0; opacity: .9; font-size: 18px; }
.privacy ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.privacy li { display: flex; gap: 12px; align-items: center; font-weight: 550; }
.privacy li::before { content: ""; width: 22px; height: 22px; flex: none; border-radius: 50%; background: rgba(255, 255, 255, .18) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 12.5l4 4 8-9'/%3E%3C/svg%3E") center / 14px no-repeat; }
.privacy a { color: #fff; }

.pricing { text-align: center; }
.price-card {
  display: inline-block; text-align: left; margin-top: 8px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 24px;
  padding: 34px 38px; box-shadow: var(--shadow); max-width: 420px; width: 100%;
}
.price-card .amount { font-size: 56px; font-weight: 760; letter-spacing: -.03em; line-height: 1; }
.price-card .amount small { font-size: 18px; font-weight: 550; color: var(--ink-2); letter-spacing: 0; margin-left: 6px; }
.price-card ul { padding-left: 1.1em; color: var(--ink-2); margin: 20px 0 26px; }
.price-card li { margin: 6px 0; }
.price-card .button { width: 100%; justify-content: center; }

.faq { max-width: 46rem; }
.faq details { border-top: 1px solid var(--line); padding: 18px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 620; font-size: 18px; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::after { content: "+"; color: var(--teal); font-weight: 400; font-size: 24px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq summary::-webkit-details-marker { display: none; }
.faq p { color: var(--ink-2); margin: 10px 0 0; }

.site-footer { margin-top: 100px; padding: 36px 0 48px; border-top: 1px solid var(--line); color: var(--ink-2); font-size: 14.5px; }
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 12px 28px; align-items: center; }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-left: auto; }
.site-footer a { color: var(--ink-2); text-decoration: none; }
.site-footer a:hover { color: var(--ink); }

@media (max-width: 900px) {
  .steps, .features { grid-template-columns: 1fr 1fr; }
  .split, .privacy { grid-template-columns: 1fr; }
  .privacy { padding: 36px 26px; }
}
@media (max-width: 600px) {
  .steps, .features { grid-template-columns: 1fr; }
  .hero { padding-top: 48px; }
  section { padding-top: 64px; }
}
@media (prefers-reduced-motion: reduce) { .button { transition: none; } }
