@import url('https://fonts.googleapis.com/css2?family=DM+Mono:wght@400;500&family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  --ink:#091a3d;
  --navy:#071433;
  --blue:#2364e8;
  --orange:#ff6f1a;
  --line:#d5dff1;
  --muted:#647593;
  --paper:#f7fbff;
  --white:#ffffff;
  --container:min(930px,calc(100% - 40px));
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Manrope,Arial,sans-serif;
  color:var(--ink);
  background:linear-gradient(180deg,#f7fbff 0%,#eaf3ff 48%,#f7fbff 100%);
  min-height:100vh;
}
a{color:var(--blue);font-weight:800;text-decoration:none}
a:hover{color:var(--orange)}
.road-background{position:fixed;inset:0;z-index:-1;pointer-events:none;overflow:hidden}
.road-background:before{
  content:"";
  position:absolute;
  width:430px;
  height:180vh;
  left:-90px;
  top:-40vh;
  transform:rotate(28deg);
  background:#071433;
  opacity:.045;
}
.road-line{
  position:absolute;
  height:2px;
  width:115vw;
  background:repeating-linear-gradient(90deg,rgba(35,100,232,.17) 0 22px,transparent 22px 44px);
  transform:rotate(-18deg);
  animation:drift 16s linear infinite;
}
.line-one{top:22%;left:-10%}
.line-two{bottom:14%;right:-12%;animation-direction:reverse;animation-duration:19s}
.fuel-dot{
  position:absolute;
  width:20px;
  height:20px;
  border-radius:50% 50% 50% 0;
  transform:rotate(-45deg);
  background:var(--orange);
  opacity:.15;
}
.dot-one{top:18%;right:9%}.dot-two{bottom:22%;left:8%;background:var(--blue)}
.site-header{
  position:sticky;
  top:0;
  z-index:20;
  border-bottom:1px solid rgba(213,223,241,.9);
  background:rgba(247,251,255,.86);
  backdrop-filter:blur(18px);
}
.header-inner{
  width:min(1200px,calc(100% - 44px));
  margin:0 auto;
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.brand{display:flex;align-items:center;gap:12px;color:var(--ink)}
.brand img{width:48px;height:48px;border-radius:15px;box-shadow:0 12px 26px rgba(7,20,51,.15)}
.brand strong{display:block;font-size:15px;letter-spacing:-.02em}
.brand span{display:block;font-size:12px;color:var(--muted);margin-top:3px}
.header-meta{display:flex;gap:8px;align-items:center;flex-wrap:wrap;justify-content:flex-end}
.header-meta span,.header-meta b{font-family:"DM Mono",monospace;font-size:11px;font-weight:500;padding:8px 10px;border-radius:9px;background:#fff;border:1px solid var(--line);color:var(--muted)}
.header-meta b{color:white;background:var(--navy);border-color:var(--navy)}
.policy-page{width:var(--container);margin:0 auto;padding:76px 0 90px}
.article-intro{margin:0 0 42px}
.eyebrow{display:flex;align-items:center;gap:10px;color:var(--blue);font-family:"DM Mono",monospace;font-size:11px;letter-spacing:.1em;text-transform:uppercase}
.eyebrow:before{content:"";width:30px;height:2px;background:var(--orange)}
h1{font-size:clamp(46px,7vw,88px);line-height:.9;letter-spacing:-.085em;margin:18px 0}
.intro-copy{max-width:650px;font-size:18px;line-height:1.7;color:var(--muted)}
.policy-article{
  font-size:16px;
  line-height:1.82;
  color:#31415e;
  padding:0;
  max-width:780px;
}
.policy-article p{margin:0 0 21px}
.policy-article h2{
  position:relative;
  margin:46px 0 14px;
  color:var(--ink);
  font-size:clamp(24px,3vw,32px);
  line-height:1.1;
  letter-spacing:-.045em;
}
.policy-article h2:before{
  content:"";
  display:block;
  width:46px;
  height:3px;
  border-radius:99px;
  background:linear-gradient(90deg,var(--orange),var(--blue));
  margin-bottom:14px;
}
.effective-date{
  margin-top:50px!important;
  padding-top:18px;
  border-top:1px solid var(--line);
  font-family:"DM Mono",monospace;
  color:var(--muted);
  font-size:13px;
}
.site-footer{
  width:min(1200px,calc(100% - 44px));
  margin:0 auto;
  padding:28px 0 44px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.site-footer strong,.site-footer span,.site-footer a{display:block}
.site-footer strong{font-size:14px}.site-footer span,.site-footer a{font-size:12px;color:var(--muted);margin-top:4px}.site-footer a{color:var(--blue)}
@keyframes drift{to{translate:90px 0}}
@media(max-width:720px){
  .header-inner{width:min(100% - 24px,1200px);padding:13px 0;align-items:flex-start;flex-direction:column}
  .header-meta{justify-content:flex-start}
  .policy-page{width:min(100% - 24px,930px);padding:48px 0 64px}
  h1{font-size:52px}
  .site-footer{width:min(100% - 24px,1200px)}
}
