:root {
  color-scheme: light;
  --paper: #fcfcfd;
  --surface: #f3f3f7;
  --ink: #24232c;
  --muted: #62616d;
  --line: #e3e2e9;
  --accent: #624bce;
  --accent-hover: #4a369e;
  --scroll-thumb: #aaa7b6;
  --scroll-track: #f3f3f7;
  --scroll-hover: #777181;
  --scroll-active: #624bce;
  font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
  font-synthesis: none;
  scrollbar-color: var(--scroll-thumb) var(--scroll-track);
  scrollbar-width: auto;
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: var(--paper); font-size: 1rem; line-height: 1.65; }
a { color: var(--accent); text-underline-offset: .24em; cursor: pointer; }
a:hover { color: var(--accent-hover); }
a:active { opacity: .8; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 5px; border-radius: 3px; }
::selection { background: #e1dafa; color: var(--ink); }
::-webkit-scrollbar { width: 12px; height: 12px; }
::-webkit-scrollbar-track { background: var(--scroll-track); }
::-webkit-scrollbar-thumb { background: var(--scroll-thumb); border: 3px solid var(--scroll-track); border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--scroll-hover); }
::-webkit-scrollbar-thumb:active { background: var(--scroll-active); }
.wrap { width: min(1100px, calc(100% - 96px)); margin-inline: auto; }
.skip { position: absolute; z-index: 5; left: 16px; top: -100px; padding: 10px 18px; background: white; }
.skip:focus { top: 12px; }
.header { height: 104px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 1.15rem; font-weight: 650; letter-spacing: -.025em; color: var(--ink); text-decoration: none; }
.brand img { display: block; width: 144px; height: 54px; }
nav { display: flex; align-items: center; gap: 30px; font-size: .9rem; }
nav a { color: var(--muted); text-decoration: none; padding-block: 10px; }
nav a:hover { color: var(--accent); }
nav .nav-download { color: var(--ink); border-bottom: 1px solid var(--line); }
.hero { padding: 68px 0 86px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 65px; align-items: center; }
.eyebrow { color: var(--muted); display: flex; gap: 10px; align-items: center; font-size: .86rem; margin: 0 0 18px; }
.eyebrow svg { width: 15px; height: 15px; }
h1,h2,h3,p { margin-top: 0; }
h1 { font-size: clamp(4.5rem, 7vw, 6.8rem); line-height: 1.02; letter-spacing: -.065em; font-weight: 600; margin-bottom: 26px; }
.hero-line { font-size: clamp(1.65rem, 2.3vw, 2rem); letter-spacing: -.035em; line-height: 1.28; font-weight: 500; max-width: 430px; margin-bottom: 19px; }
.intro { color: var(--muted); line-height: 1.7; max-width: 410px; margin-bottom: 29px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 52px; padding: 13px 22px; border: 1px solid transparent; border-radius: 7px; color: #fff; background: var(--accent); font-size: .96rem; font-weight: 600; text-decoration: none; transition: background .18s ease, transform .18s ease, box-shadow .18s ease; }
.button:hover { color: white; background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 5px 13px #624bce18; }
.button:active { transform: translateY(0); opacity: 1; }
.button svg { width: 19px; height: 19px; }
.download-meta { margin: 12px 0 0; color: var(--muted); font-size: .82rem; }
.download-meta a { color: inherit; }
.hero-visual { margin: 0; position: relative; }
.app-shot { display: block; width: 100%; height: auto; border-radius: 10px; box-shadow: 0 15px 45px #24232c0e, 0 2px 8px #24232c0b; border: 1px solid var(--line); }
.hero-visual figcaption { font-size: .78rem; color: var(--muted); margin-top: 15px; text-align: center; }
.hero-copy { animation: arrive .6s ease both; }
.hero-visual { animation: arrive .7s .1s ease both; }
@keyframes arrive { from { opacity: 0; transform: translateY(9px); } to { opacity: 1; transform: translateY(0); } }
.features { border-top: 1px solid var(--line); padding: 39px 0 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 54px; }
.feature h2 { font-size: 1.05rem; font-weight: 600; letter-spacing: -.02em; margin-bottom: 9px; }
.feature p { color: var(--muted); font-size: .93rem; line-height: 1.75; margin-bottom: 0; }
.setup-section { background: var(--surface); border-block: 1px solid var(--line); padding-block: 61px; }
.setup-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; }
.section-title { font-size: 1.85rem; line-height: 1.25; letter-spacing: -.04em; font-weight: 550; margin-bottom: 13px; }
.setup-intro { max-width: 370px; color: var(--muted); font-size: .95rem; }
.requirements { margin: 24px 0 0; color: var(--muted); font-size: .85rem; }
.steps { list-style: none; margin: 0; padding: 0; counter-reset: steps; }
.steps li { counter-increment: steps; display: grid; grid-template-columns: 24px 1fr; gap: 17px; padding-block: 14px; border-bottom: 1px solid var(--line); }
.steps li:first-child { padding-top: 0; }
.steps li:last-child { border: 0; padding-bottom: 0; }
.steps li::before { content: counter(steps, decimal-leading-zero); font-family: "Cascadia Code", Consolas, monospace; font-size: .8rem; color: var(--accent); padding-top: 4px; }
.steps strong { font-weight: 600; }
.steps p { margin: 3px 0 0; color: var(--muted); font-size: .91rem; }
.questions { display: grid; grid-template-columns: .9fr 1.1fr; gap: 85px; padding-block: 66px 74px; }
.questions .section-title { max-width: 270px; }
details { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; padding: 18px 36px 18px 0; position: relative; font-weight: 500; line-height: 1.45; transition: color .18s ease; }
details:first-child summary { padding-top: 2px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 4px; top: 17px; font-size: 1.2rem; color: var(--muted); font-weight: 400; }
details:first-child summary::after { top: 0; }
details[open] summary::after { content: "−"; }
summary:hover { color: var(--accent); }
details p { margin-bottom: 18px; color: var(--muted); font-size: .93rem; }
kbd { font-family: "Cascadia Code", Consolas, monospace; font-size: .85em; white-space: nowrap; }
.footer { border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 25px 32px; font-size: .83rem; color: var(--muted); }
.footer p { margin: 0; }
.footer-links { display: flex; flex-wrap: wrap; gap: 25px; }
.footer a { color: var(--muted); text-decoration: none; padding-block: 8px; }
.footer a:hover { color: var(--accent); }
.legal { max-width: 760px; padding-block: 48px 80px; min-height: 65vh; }
.legal h1 { font-size: clamp(2.5rem, 6vw, 3.5rem); letter-spacing: -.05em; margin-bottom: 22px; overflow-wrap: anywhere; }
.legal h2 { font-size: 1.18rem; letter-spacing: -.02em; line-height: 1.4; margin: 32px 0 12px; }
.legal p,.legal li { color: var(--muted); }
.legal address { font-style: normal; line-height: 1.9; }
.legal .back { display: inline-block; margin-bottom: 32px; font-size: .88rem; }
.legal a { overflow-wrap: anywhere; }
.legal .date { font-size: .85rem; }
@media (min-width: 1500px) { .hero { padding-block: 95px 105px; } }
@media (max-width: 1000px) {
  .wrap { width: calc(100% - 64px); }
  .hero { padding-block: 44px 65px; }
  .hero-grid { gap: 38px; }
  .hero-line { font-size: 1.6rem; }
  .features { gap: 32px; }
  .setup-grid,.questions { gap: 42px; }
}
@media (max-width: 700px) {
  .wrap { width: calc(100% - 40px); }
  .header { height: 80px; gap: 15px; }
  nav { gap: 21px; font-size: .85rem; }
  .brand img { width: 128px; height: 48px; }
  .hero { padding-block: 29px 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  h1 { font-size: 5rem; margin-bottom: 20px; }
  .hero-line { font-size: 1.75rem; max-width: 360px; }
  .intro { max-width: 450px; margin-bottom: 23px; }
  .hero-visual { width: min(100%, 480px); margin-inline: auto; }
  .features { grid-template-columns: 1fr; padding-block: 32px 39px; gap: 25px; }
  .feature p { max-width: 480px; }
  .setup-section { padding-block: 39px; }
  .setup-grid,.questions { grid-template-columns: 1fr; gap: 28px; }
  .requirements { margin-top: 16px; }
  .questions { padding-block: 42px 50px; }
  .questions .section-title { max-width: none; margin-bottom: 0; }
  .footer { align-items: flex-start; flex-direction: column; gap: 11px; padding-block: 22px; }
  .legal { padding-block: 28px 55px; }
}
@media (max-width: 360px) { nav { gap: 14px; } .button { width: 100%; } h1 { font-size: 4.5rem; } }
@media (prefers-reduced-motion: reduce) {
  :root { scroll-behavior: auto; }
  *,*::before,*::after { animation: none !important; transition: none !important; }
}
@media (forced-colors: active) {
  :root { scrollbar-color: auto; }
  .button { border: 1px solid ButtonText; }
}
