:root {
  --ink: #0a0b0d;
  --muted: #626971;
  --line: #dfe4e8;
  --paper: #f7f8f9;
  --white: #fff;
  --blue: #007aff;
  --green: #34c759;
  --radius: 26px;
  --shadow: 0 24px 80px rgba(17, 24, 39, .11);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; }
.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.skip { position: fixed; left: 16px; top: -100px; z-index: 100; padding: 12px 16px; border-radius: 12px; background: #fff; }
.skip:focus { top: 16px; }
.nav { position: fixed; z-index: 30; top: 14px; left: 50%; transform: translateX(-50%); width: min(1180px, calc(100% - 28px)); display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 10px 12px 10px 14px; border: 1px solid rgba(255,255,255,.8); border-radius: 20px; background: rgba(255,255,255,.76); box-shadow: 0 10px 38px rgba(27,39,51,.09); backdrop-filter: blur(18px) saturate(150%); }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 760; letter-spacing: -.04em; font-size: 20px; }
.brand img { width: 38px; height: 38px; border-radius: 10px; }
.nav-links { display: flex; align-items: center; gap: 27px; }
.nav-links a { text-decoration: none; color: #353a40; font-size: 14px; font-weight: 630; }
.nav-links a:hover { color: var(--blue); }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 22px; border: 0; border-radius: 999px; background: var(--ink); color: #fff; text-decoration: none; font-weight: 720; letter-spacing: -.015em; transition: transform .2s, box-shadow .2s, background .2s; }
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,122,255,.22); background: var(--blue); }
.button.alt { color: var(--ink); background: rgba(255,255,255,.76); border: 1px solid var(--line); }
.button.alt:hover { color: #fff; background: var(--ink); }
.nav .button { min-height: 42px; padding: 0 17px; font-size: 13px; }
.menu { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 13px; background: #fff; }
.hero { min-height: 820px; padding: 150px 0 76px; overflow: hidden; position: relative; background: radial-gradient(circle at 72% 40%, rgba(52,199,89,.14), transparent 28%), radial-gradient(circle at 88% 20%, rgba(0,122,255,.16), transparent 28%), linear-gradient(180deg, #fff 0%, #f3f5f6 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(0,0,0,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.045) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, transparent, #000 22%, #000 75%, transparent); }
.hero-grid { position: relative; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 52px; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 22px; color: #3f464d; font-size: 12px; font-weight: 760; letter-spacing: .12em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 34px; height: 4px; border-radius: 8px; background: var(--green); box-shadow: 0 0 14px rgba(52,199,89,.45); }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 720px; margin-bottom: 24px; font-size: clamp(60px, 7.2vw, 104px); line-height: .91; letter-spacing: -.072em; }
.hero-copy > p { max-width: 610px; color: #444b53; font-size: clamp(19px, 2vw, 25px); line-height: 1.43; letter-spacing: -.025em; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.micro { margin-top: 16px; color: #727980; font-size: 13px; }
.visual { position: relative; min-height: 560px; }
.showcase { position: absolute; top: 50%; right: -11%; width: 108%; transform: translateY(-50%) rotate(2deg); border: 1px solid rgba(255,255,255,.9); border-radius: 30px; box-shadow: var(--shadow); animation: breathe 6s ease-in-out infinite; }
.pulse { position: absolute; border-radius: 50%; filter: blur(2px); animation: float 7s ease-in-out infinite; }
.pulse.one { width: 130px; height: 130px; right: 4%; top: 3%; background: rgba(0,122,255,.18); }
.pulse.two { width: 86px; height: 86px; left: 3%; bottom: 7%; background: rgba(52,199,89,.22); animation-delay: -2s; }
@keyframes breathe { 50% { transform: translateY(-53%) rotate(0deg); } }
@keyframes float { 50% { transform: translateY(-22px) scale(1.08); } }
.strip { overflow: hidden; padding: 15px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.strip-track { display: flex; width: max-content; gap: 42px; animation: ticker 28s linear infinite; color: #30363c; font-size: 13px; font-weight: 720; letter-spacing: .05em; text-transform: uppercase; }
.strip-track span::before { content: "+"; margin-right: 12px; color: var(--green); }
@keyframes ticker { to { transform: translateX(-50%); } }
section { padding: 116px 0; }
.section-head { display: grid; grid-template-columns: 1.35fr .65fr; gap: 40px; align-items: end; margin-bottom: 50px; }
h2 { margin-bottom: 0; font-size: clamp(45px, 6vw, 82px); line-height: .95; letter-spacing: -.065em; }
.section-head p, .lede { margin-bottom: 0; color: var(--muted); font-size: 18px; line-height: 1.55; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.card { position: relative; overflow: hidden; min-height: 330px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.84); box-shadow: 0 14px 44px rgba(18,25,33,.05); }
.card::after { content: ""; position: absolute; width: 190px; height: 190px; right: -80px; bottom: -90px; border-radius: 50%; background: radial-gradient(circle, rgba(0,122,255,.14), transparent 68%); transition: transform .35s; }
.card:hover::after { transform: scale(1.3); }
.number { display: block; margin-bottom: 72px; color: var(--blue); font-size: 13px; font-weight: 760; }
.card h3 { max-width: 280px; margin-bottom: 12px; font-size: 27px; letter-spacing: -.04em; }
.card p { margin: 0; color: var(--muted); line-height: 1.55; }
.dark { color: #fff; background: #0c0f12; }
.dark .section-head p, .dark .lede { color: #aeb5bc; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.feature { min-height: 260px; padding: 32px; border: 1px solid #272d33; border-radius: var(--radius); background: radial-gradient(circle at 100% 0, rgba(0,122,255,.13), transparent 40%), #12161a; }
.feature:nth-child(2), .feature:nth-child(3) { background: radial-gradient(circle at 100% 0, rgba(52,199,89,.12), transparent 40%), #12161a; }
.feature small { color: var(--green); font-weight: 720; text-transform: uppercase; letter-spacing: .1em; }
.feature h3 { margin: 76px 0 12px; font-size: 34px; letter-spacing: -.045em; }
.feature p { color: #aeb5bc; line-height: 1.55; }
.numbers { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.stat { padding: 38px; border-right: 1px solid var(--line); }
.stat:last-child { border: 0; }
.stat strong { display: block; font-size: clamp(48px, 7vw, 82px); letter-spacing: -.07em; }
.stat span { color: var(--muted); font-size: 14px; }
.privacy-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.privacy-list { display: grid; gap: 12px; }
.privacy-item { padding: 20px 22px; border: 1px solid var(--line); border-radius: 18px; background: #fff; font-weight: 650; }
.privacy-item span { color: var(--green); margin-right: 10px; }
.cta { margin: 70px auto; padding: 66px; text-align: center; border-radius: 34px; color: #fff; background: radial-gradient(circle at 70% 10%, rgba(52,199,89,.28), transparent 30%), radial-gradient(circle at 20% 90%, rgba(0,122,255,.35), transparent 35%), #0b0d10; }
.cta h2 { max-width: 850px; margin: 0 auto 20px; }
.cta p { color: #b9c0c7; font-size: 18px; }
.cta .actions { justify-content: center; }
.cta .button { color: #08150c; background: var(--green); }
footer { padding: 40px 0 55px; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; }
.footer-note { grid-column: 1/-1; color: #7c838a; font-size: 12px; line-height: 1.5; }
.legal-hero { padding: 160px 0 65px; background: linear-gradient(160deg, #fff, #eef3f5); }
.legal-hero h1 { max-width: 900px; font-size: clamp(52px, 8vw, 92px); }
.legal-wrap { display: grid; grid-template-columns: 240px minmax(0, 760px); gap: 70px; align-items: start; padding: 72px 0 110px; }
.legal-nav { position: sticky; top: 100px; display: grid; gap: 9px; }
.legal-nav a { color: var(--muted); text-decoration: none; font-size: 14px; }
.prose h2 { margin: 52px 0 15px; font-size: 31px; letter-spacing: -.04em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 30px; }
.prose p, .prose li { color: #454c53; line-height: 1.7; }
.prose li { margin-bottom: 8px; }
.notice { padding: 22px; border-left: 4px solid var(--green); border-radius: 0 16px 16px 0; background: #eef9f1; }
.faq-list details { margin-bottom: 10px; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.faq-list summary { cursor: pointer; padding: 22px; font-weight: 720; list-style: none; }
.faq-list details p { padding: 0 22px 22px; margin: 0; }
@media (max-width: 820px) {
  .shell { width: min(100% - 28px, 680px); }
  .nav-links { display: none; position: absolute; top: 66px; left: 0; right: 0; padding: 16px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.97); box-shadow: var(--shadow); }
  .nav.open .nav-links { display: grid; gap: 0; }
  .nav-links a { padding: 15px 8px; border-bottom: 1px solid var(--line); font-size: 16px; }
  .nav-links .button { margin-top: 10px; }
  .menu { display: grid; place-items: center; }
  .hero { min-height: auto; padding: 132px 0 70px; }
  .hero-grid, .section-head, .privacy-block { grid-template-columns: 1fr; }
  .hero-grid { gap: 26px; }
  h1 { font-size: clamp(54px, 17vw, 82px); }
  .visual { min-height: 390px; }
  .showcase { right: -16%; width: 126%; }
  section { padding: 82px 0; }
  .section-head { gap: 18px; }
  .steps, .feature-grid, .numbers { grid-template-columns: 1fr; }
  .card { min-height: 270px; }
  .number { margin-bottom: 55px; }
  .stat { border-right: 0; border-bottom: 1px solid var(--line); }
  .cta { margin: 35px 14px; padding: 50px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .legal-wrap { grid-template-columns: 1fr; gap: 35px; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition: none !important; } }
