  :root{
    --navy:#12233F; --navy-2:#1C2A44; --orange:#FF6B35; --orange-soft:#FFF3ED; --orange-line:#FFD9C7;
    --bg:#F7F8FA; --white:#FFFFFF; --border:#E7E9EE; --line:#D7DBE4;
    --body:#5B6B85; --muted:#64708C; --on-navy:#B9C2D4; --footer:#8D97AF;
    --ease:cubic-bezier(.2,.7,.2,1);
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;scroll-padding-top:96px;}
  html,body{margin:0;padding:0;}
  body{font-family:'Manrope',sans-serif;color:var(--navy);background:var(--white);-webkit-font-smoothing:antialiased;line-height:1.6;}
  a{color:inherit;text-decoration:none;}
  img{max-width:100%;display:block;}
  h1,h2,h3{font-family:'Archivo',sans-serif;margin:0;letter-spacing:-0.015em;}
  p{margin:0;}
  .container{max-width:1312px;margin:0 auto;padding:0 64px;}
  .btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;border:none;border-radius:10px;font-weight:700;cursor:pointer;height:44px;padding:0 22px;font-size:14.5px;white-space:nowrap;}
  .btn-orange{background:var(--orange);color:#fff;}
  .btn-orange:hover{filter:brightness(.94);}

  /* header */
  header.site{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.92);backdrop-filter:blur(10px);border-bottom:1px solid var(--border);}
  header.site .container{display:flex;align-items:center;justify-content:space-between;height:76px;}
  .brand{display:flex;align-items:center;gap:12px;}
  .brand img{width:44px;height:44px;border-radius:11px;}
  .brand .word{font-family:'Archivo',sans-serif;font-weight:900;font-size:22px;letter-spacing:-.02em;line-height:1;}
  .brand .word span{color:var(--orange);}
  nav.main{display:flex;align-items:center;gap:32px;}
  nav.main a{font-size:15px;font-weight:600;}
  nav.main a:hover{color:var(--orange);}

  /* page head */
  .page-head{background:var(--bg);border-bottom:1px solid var(--border);padding:48px 0;}
  .crumbs{display:flex;align-items:center;gap:8px;font-size:13px;font-weight:600;color:var(--muted);margin-bottom:14px;}
  .crumbs a:hover{color:var(--orange);}
  .page-head h1{font-weight:900;font-size:40px;line-height:1.1;}
  .page-head p{margin-top:10px;font-size:15.5px;color:var(--body);font-weight:500;max-width:640px;}

  /* layout */
  .legal{display:grid;grid-template-columns:260px 1fr;gap:80px;padding:64px 0 96px;align-items:start;}
  .toc{position:sticky;top:104px;display:flex;flex-direction:column;gap:4px;}
  .toc .label{font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--muted);margin-bottom:8px;}
  .toc a{font-size:14.5px;font-weight:600;color:var(--body);padding:9px 12px;border-radius:8px;border-left:2px solid transparent;transition:all .15s;}
  .toc a:hover{background:var(--bg);color:var(--navy);}
  .toc a.active{color:var(--navy);border-left-color:var(--orange);background:var(--bg);}
  .toc .sep{height:1px;background:var(--border);margin:10px 0;}
  .toc .help{margin-top:14px;padding:16px;background:var(--orange-soft);border:1px solid var(--orange-line);border-radius:12px;font-size:13px;color:var(--navy);font-weight:500;line-height:1.5;}
  .toc .help a{padding:0;border:none;color:var(--orange);font-weight:700;background:none;}

  .doc{max-width:760px;}
  .doc section{padding:0 0 56px;margin-bottom:56px;border-bottom:1px solid var(--border);}
  .doc section:last-child{border-bottom:none;margin-bottom:0;}
  .doc h2{font-weight:800;font-size:30px;line-height:1.15;margin-bottom:6px;}
  .doc .meta{font-size:13px;color:var(--muted);font-weight:600;margin-bottom:28px;}
  .doc h3{font-weight:800;font-size:18px;margin:32px 0 10px;}
  .doc p,.doc li{font-size:15.5px;color:var(--body);font-weight:500;}
  .doc p+p{margin-top:12px;}
  .doc ul{margin:10px 0 0;padding-left:22px;}
  .doc li{margin-bottom:6px;}
  .doc strong{color:var(--navy);font-weight:700;}
  .doc a{color:var(--navy);text-decoration:underline;text-underline-offset:2px;}
  .doc .ph{background:var(--orange-soft);border:1px dashed var(--orange-line);border-radius:6px;padding:1px 7px;color:#B94A1B;font-weight:700;font-size:.95em;white-space:nowrap;}
  .doc table{width:100%;border-collapse:collapse;margin-top:14px;font-size:14.5px;}
  .doc th,.doc td{text-align:left;padding:12px 14px;border-bottom:1px solid var(--border);vertical-align:top;color:var(--body);font-weight:500;}
  .doc th{font-weight:800;color:var(--navy);background:var(--bg);font-size:12.5px;letter-spacing:.06em;text-transform:uppercase;}
  .doc .rights{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:14px;}
  .doc .right{padding:16px;background:var(--bg);border-radius:12px;}
  .doc .right strong{display:block;margin-bottom:4px;}
  .doc .right span{font-size:14px;color:var(--body);}
  .note{margin-top:32px;padding:18px 20px;background:var(--bg);border-left:3px solid var(--orange);border-radius:0 12px 12px 0;font-size:14px;color:var(--body);font-weight:500;}

  /* footer (shared) */
  footer.site{padding:72px 0 0;background:var(--navy);color:#fff;}
  .footer-grid{display:grid;grid-template-columns:2.2fr 1fr 1fr 1fr 1.2fr;gap:48px;padding-bottom:56px;border-bottom:1px solid rgba(255,255,255,.12);}
  .footer-brand{display:flex;flex-direction:column;gap:18px;max-width:320px;}
  footer .brand .iconbox{width:40px;height:40px;border-radius:10px;background:#fff;display:flex;align-items:center;justify-content:center;}
  footer .brand .iconbox img{width:30px;height:30px;border-radius:7px;}
  footer .brand .word{font-size:18px;}
  .footer-brand p{font-size:14px;line-height:1.65;color:var(--on-navy);font-weight:500;}
  .footer-brand .btn{align-self:flex-start;height:46px;padding:0 20px;font-size:14px;border-radius:10px;}
  .footer-col{display:flex;flex-direction:column;gap:12px;}
  .footer-col .label{font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase;color:var(--footer);margin-bottom:6px;}
  .footer-col a{font-size:14.5px;font-weight:600;color:#DCE1EB;transition:color .15s;width:fit-content;}
  .footer-col a:hover{color:var(--orange);}
  .footer-col .contact{display:flex;align-items:flex-start;gap:10px;font-size:14px;color:#DCE1EB;font-weight:600;line-height:1.5;}
  .footer-col .contact svg{flex-shrink:0;margin-top:3px;color:var(--orange);}
  .footer-bottom{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:22px 0;flex-wrap:wrap;}
  .footer-bottom span,.footer-bottom a{font-size:12.5px;font-weight:600;color:var(--footer);}
  .footer-bottom a:hover{color:#fff;}
  .footer-bottom .legal-links{display:flex;gap:20px;flex-wrap:wrap;}
  .social{display:flex;gap:10px;}
  .social a{width:40px;height:40px;border-radius:10px;background:rgba(255,255,255,.08);display:flex;align-items:center;justify-content:center;}
  .social a:hover{background:var(--orange);}

  @media (max-width:980px){
    .container{padding:0 20px;}
    header.site .container{height:68px;}
    nav.main{display:none;}
    .brand img{width:36px;height:36px;}
    .brand .word{font-size:16.5px;}
    .page-head{padding:32px 0;}
    .page-head h1{font-size:28px;}
    .legal{grid-template-columns:1fr;gap:28px;padding:32px 0 56px;}
    .toc{position:static;flex-direction:row;flex-wrap:wrap;gap:8px;}
    .toc .label,.toc .sep,.toc .help{display:none;}
    .toc a{border:1px solid var(--line);border-radius:999px;padding:8px 14px;font-size:13.5px;}
    .toc a.active{border-color:var(--orange);background:var(--orange-soft);}
    .doc h2{font-size:24px;}
    .doc .rights{grid-template-columns:1fr;}
    footer.site{padding-top:48px;}
    .footer-grid{grid-template-columns:1fr 1fr;gap:32px 24px;padding-bottom:36px;}
    .footer-brand{grid-column:1 / -1;}
    .footer-bottom{flex-direction:column;align-items:flex-start;gap:10px;}
  }
