/* Finish Logic — shared legal page styles */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:'Montserrat',system-ui,sans-serif;
  background:#040E22;
  color:rgba(255,255,255,0.82);
  -webkit-font-smoothing:antialiased;
  line-height:1.7;
}
:root{ --orange:#EB7820; --navy:#061838; --navy-light:#0C3366; }

.l-nav{
  position:sticky;top:0;z-index:50;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 40px;height:70px;
  background:rgba(4,14,34,0.85);
  backdrop-filter:blur(20px) saturate(160%);
  border-bottom:1px solid rgba(255,255,255,0.06);
}
.l-brand{display:flex;align-items:flex-start;gap:2px;text-decoration:none;}
.l-brand img{height:32px;width:auto;display:block;}
.l-brand sup{font-size:10px;color:rgba(255,255,255,0.4);font-weight:600;}
.l-back{
  color:rgba(255,255,255,0.6);text-decoration:none;font-size:13px;font-weight:600;
  display:flex;align-items:center;gap:7px;transition:color .2s;
}
.l-back:hover{color:var(--orange);}

.l-hero{
  padding:90px 40px 50px;
  max-width:860px;margin:0 auto;
  position:relative;
}
.l-hero::before{
  content:'';position:absolute;top:0;right:0;width:400px;height:400px;border-radius:50%;
  background:radial-gradient(circle,rgba(235,120,32,0.07),transparent 70%);
  pointer-events:none;z-index:-1;
}
.l-eyebrow{
  font-size:11px;font-weight:700;letter-spacing:0.2em;text-transform:uppercase;
  color:var(--orange);margin-bottom:16px;display:flex;align-items:center;gap:10px;
}
.l-eyebrow::before{content:'';width:24px;height:1.5px;background:var(--orange);}
.l-hero h1{
  font-family:'Fraunces',Georgia,serif;
  font-size:clamp(34px,5vw,54px);font-weight:400;line-height:1.08;letter-spacing:-0.02em;
  color:#fff;margin-bottom:14px;
}
.l-hero h1 em{font-style:italic;color:var(--orange);}
.l-updated{font-size:13px;color:rgba(255,255,255,0.45);}

.l-body{max-width:860px;margin:0 auto;padding:20px 40px 100px;}
.l-body section{margin-bottom:40px;}
.l-body h2{
  font-family:'Fraunces',Georgia,serif;
  font-size:24px;font-weight:600;color:#fff;letter-spacing:-0.01em;
  margin-bottom:16px;padding-top:8px;
}
.l-body h3{font-size:16px;font-weight:700;color:#fff;margin:20px 0 8px;}
.l-body p{font-size:15.5px;color:rgba(255,255,255,0.78);margin-bottom:14px;}
.l-body ul{list-style:none;margin:0 0 16px;padding:0;}
.l-body li{
  font-size:15px;color:rgba(255,255,255,0.78);padding:7px 0 7px 22px;position:relative;
}
.l-body li::before{content:'';position:absolute;left:0;top:15px;width:6px;height:6px;border-radius:50%;background:var(--orange);}
.l-body a{color:var(--orange);text-decoration:none;border-bottom:1px solid rgba(235,120,32,0.3);}
.l-body a:hover{border-bottom-color:var(--orange);}
.l-body strong{color:#fff;font-weight:700;}

.l-card{
  background:rgba(255,255,255,0.03);border:1px solid rgba(255,255,255,0.09);
  border-left:3px solid var(--orange);border-radius:12px;padding:22px 26px;margin:18px 0;
}
.l-card p{margin-bottom:6px;}
.l-card p:last-child{margin-bottom:0;}

.l-footer{
  border-top:3px solid var(--orange);background:#020A18;
  padding:40px;text-align:center;
}
.l-footer p{font-size:13px;color:rgba(255,255,255,0.5);margin-bottom:8px;}
.l-footer a{color:rgba(255,255,255,0.7);text-decoration:none;margin:0 12px;font-size:13px;}
.l-footer a:hover{color:var(--orange);}

@media (max-width:640px){
  .l-nav{padding:0 18px;}
  .l-hero{padding:60px 18px 36px;}
  .l-body{padding:16px 18px 70px;}
  .l-footer{padding:32px 18px;}
}
