
:root {
  --bg: #f7f8fc;
  --surface: #ffffff;
  --surface-soft: #f0f2ff;
  --text: #171928;
  --muted: #62677a;
  --border: #e4e6ef;
  --accent: #5d55e8;
  --accent-dark: #4940cf;
  --accent-soft: #ecebff;
  --success: #16825d;
  --shadow: 0 18px 55px rgba(42, 38, 102, .10);
  --radius: 24px;
  --container: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
.skip-link {
  position: absolute; left: -9999px; top: 10px; z-index: 9999;
  padding: .75rem 1rem; border-radius: 12px; background: var(--text); color: #fff;
}
.skip-link:focus { left: 10px; }
.container { width: min(calc(100% - 32px), var(--container)); margin-inline: auto; }
.site-header {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(16px);
  background: rgba(247,248,252,.86);
  border-bottom: 1px solid rgba(228,230,239,.8);
}
.header-inner { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; }
.brand-mark {
  width: 40px; height: 40px; display: grid; place-items: center;
  border-radius: 14px; color: white; background: var(--accent);
  box-shadow: 0 8px 22px rgba(93,85,232,.25);
}
.brand small { display: block; color: var(--muted); font-size: .75rem; font-weight: 600; line-height: 1.1; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav a { color: var(--muted); text-decoration: none; font-weight: 650; font-size: .95rem; }
.nav a:hover, .nav a:focus-visible { color: var(--text); }
.mobile-nav { display: none; }
.btn {
  display: inline-flex; justify-content: center; align-items: center; gap: 10px;
  min-height: 48px; padding: 12px 20px; border-radius: 15px;
  border: 1px solid transparent; text-decoration: none; font-weight: 760;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
a.btn.btn-primary.btn-small {color: white}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--accent); color: white; box-shadow: 0 12px 26px rgba(93,85,232,.23); }
.btn-primary:hover { background: var(--accent-dark); }
.btn-secondary { background: var(--surface); border-color: var(--border); }
.btn-small { min-height: 42px; padding: 9px 15px; border-radius: 13px; }
.hero { position: relative; overflow: hidden; padding: 76px 0 64px; }
.hero::before {
  content: ""; position: absolute; inset: -20% auto auto 58%; width: 520px; height: 520px;
  border-radius: 50%; background: rgba(93,85,232,.09); filter: blur(3px); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.07fr .93fr; gap: 62px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 9px; padding: 7px 12px; border-radius: 999px; background: var(--accent-soft); color: var(--accent-dark); font-weight: 750; font-size: .9rem; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -.035em; margin-top: 0; }
h1 { margin: 20px 0 20px; font-size: clamp(2.55rem, 5.8vw, 3rem); max-width: 760px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 18px; }
h3 { font-size: 1.3rem; }
.lead { font-size: clamp(1.08rem, 2vw, 1.3rem); color: var(--muted); max-width: 690px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 30px 0 22px; }
.hero-note { display: flex; flex-wrap: wrap; gap: 16px; color: var(--muted); font-size: .92rem; }
.hero-note span { display: inline-flex; align-items: center; gap: 7px; }
.visual-shell { position: relative; min-height: 520px; }
.visual-card {
  position: absolute; inset: 20px 12px 20px 42px; border-radius: 34px;
  background: linear-gradient(155deg, #1a1c31, #323061 68%, #5d55e8);
  box-shadow: var(--shadow); overflow: hidden;
}
.visual-card::before {
  content: ""; position: absolute; inset: auto -70px -120px auto; width: 360px; height: 360px;
  border-radius: 50%; background: rgba(255,255,255,.08);
}
.city-line { position: absolute; inset: auto 0 0; height: 42%; opacity: .9; }
.profile-mock {
  position: absolute; width: min(330px, 80%); right: 0; top: 52px; z-index: 2;
  padding: 18px; border-radius: 26px; background: rgba(255,255,255,.96); box-shadow: var(--shadow);
}
.profile-photo { height: 220px; border-radius: 20px; background: linear-gradient(145deg, #e8e8ff, #c7c3ff); position: relative; overflow: hidden; }
.profile-photo::before { content: ""; position: absolute; width: 105px; height: 105px; border-radius: 50%; background: #fff; top: 34px; left: 50%; transform: translateX(-50%); }
.profile-photo::after { content: ""; position: absolute; width: 190px; height: 130px; border-radius: 100px 100px 22px 22px; background: rgba(255,255,255,.88); bottom: -35px; left: 50%; transform: translateX(-50%); }
.profile-meta { display: flex; justify-content: space-between; gap: 12px; align-items: start; padding-top: 15px; }
.profile-meta strong { font-size: 1.15rem; }
.profile-meta small { color: var(--muted); }
.status-chip { padding: 6px 9px; border-radius: 999px; background: #e7f8f1; color: var(--success); font-size: .78rem; font-weight: 800; }
.chat-mock {
  position: absolute; left: 0; bottom: 34px; width: 245px; z-index: 3;
  padding: 16px; border-radius: 22px; background: var(--surface); box-shadow: var(--shadow);
}
.chat-row { display: flex; gap: 10px; align-items: center; }
.avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--accent-soft); display: grid; place-items: center; font-weight: 800; color: var(--accent); }
.chat-row p { margin: 0; font-size: .88rem; }
.chat-row small { color: var(--muted); }
.section { padding: 88px 0; }
.section-soft { background: var(--surface-soft); }
.section-head { max-width: 760px; margin-bottom: 38px; }
.section-head p { color: var(--muted); font-size: 1.08rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px;
}
.card-icon { width: 48px; height: 48px; border-radius: 15px; display: grid; place-items: center; background: var(--accent-soft); color: var(--accent); font-size: 1.35rem; margin-bottom: 18px; }
.card p { color: var(--muted); margin-bottom: 0; }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.step { counter-increment: step; padding: 24px; border-top: 3px solid var(--accent); background: var(--surface); border-radius: 0 0 var(--radius) var(--radius); }
.step::before { content: counter(step, decimal-leading-zero); display: block; color: var(--accent); font-weight: 900; font-size: 1.4rem; margin-bottom: 12px; }
.local-copy { display: grid; grid-template-columns: .82fr 1.18fr; gap: 38px; align-items: start; }
.local-aside { position: sticky; top: 100px; padding: 26px; border-radius: var(--radius); background: #1a1c31; color: white; }
.local-aside p { color: rgba(255,255,255,.72); }
.local-text p { color: var(--muted); font-size: 1.05rem; }
.local-list { display: grid; gap: 12px; margin-top: 24px; }
.local-list div { display: flex; gap: 12px; align-items: start; padding: 14px 0; border-top: 1px solid var(--border); }
.local-list strong { min-width: 28px; color: var(--accent); }
.faq { display: grid; gap: 12px; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 0 20px; }
.faq summary { cursor: pointer; font-weight: 760; padding: 19px 32px 19px 0; position: relative; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 0; font-size: 1.35rem; color: var(--accent); }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--muted); padding: 0 0 18px; margin: 0; }
.cta-box {
  position: relative; overflow: hidden; padding: 48px; border-radius: 32px; color: white;
  background: linear-gradient(135deg, #242643, #5d55e8);
}
.cta-box::after { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; right: -80px; top: -120px; background: rgba(255,255,255,.10); }
.cta-box > * { position: relative; z-index: 1; }
.cta-box p { color: rgba(255,255,255,.78); max-width: 690px; }
.site-footer { padding: 38px 0 28px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; justify-content: flex-end; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-note { color: var(--muted); font-size: .88rem; margin-top: 22px; }
.breadcrumbs { padding-top: 28px; color: var(--muted); font-size: .9rem; }
.breadcrumbs a { text-decoration: none; }
.page-hero { padding: 44px 0 52px; }
.page-hero h1 { max-width: 900px; font-size: clamp(2.35rem, 5vw, 4rem); }
.prose { max-width: 820px; }
.prose h2 { margin-top: 2.6rem; font-size: clamp(1.75rem, 3vw, 2.45rem); }
.prose h3 { margin-top: 2rem; }
.prose p, .prose li { color: var(--muted); font-size: 1.05rem; }
.prose a { color: white; }
.notice { border-left: 4px solid var(--accent); background: var(--accent-soft); padding: 18px 20px; border-radius: 0 16px 16px 0; }
.pill-list { display: flex; flex-wrap: wrap; gap: 9px; padding: 0; list-style: none; }
.pill-list li { background: var(--surface); border: 1px solid var(--border); padding: 7px 11px; border-radius: 999px; color: var(--text); font-size: .9rem; }
.legal { font-size: .88rem; color: var(--muted); }
@media (max-width: 900px) {
  .nav { display: none; }
  .mobile-nav { display: block; }
  .mobile-nav summary { cursor: pointer; list-style: none; font-weight: 760; padding: 10px 12px; border: 1px solid var(--border); border-radius: 12px; background: var(--surface); }
  .mobile-nav summary::-webkit-details-marker { display: none; }
  .mobile-nav[open] nav { position: absolute; right: 16px; top: 62px; width: min(280px, calc(100vw - 32px)); padding: 12px; display: grid; gap: 5px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow); }
  .mobile-nav nav a { padding: 10px 12px; text-decoration: none; border-radius: 10px; }
  .mobile-nav nav a:hover { background: var(--surface-soft); }
  .hero { padding-top: 52px; }
  .hero-grid, .local-copy, .footer-grid { grid-template-columns: 1fr; }
  .visual-shell { min-height: 500px; max-width: 620px; width: 100%; margin-inline: auto; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .local-aside { position: static; }
  .footer-links { justify-content: flex-start; }
}
@media (max-width: 600px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .brand small { display: none; }
  h1 { font-size: 2.55rem; }
  .hero-actions .btn { width: 100%; }
  .hero-note { display: grid; gap: 8px; }
  .visual-shell { min-height: 435px; }
  .visual-card { inset: 12px 0 12px 20px; }
  .profile-mock { width: 84%; top: 34px; }
  .profile-photo { height: 178px; }
  .chat-mock { width: 215px; bottom: 18px; }
  .section { padding: 64px 0; }
  .grid-3, .grid-2, .steps { grid-template-columns: 1fr; }
  .card, .step { padding: 22px; }
  .cta-box { padding: 30px 22px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

.nav a[aria-current="page"]{color:var(--primary);font-weight:700}
