:root{
  --bg:#080808;
  --panel:#0d0d0d;
  --text:#f3f3ee;
  --muted:#92928c;
  --soft:#666660;
  --line:rgba(255,255,255,.09);
  --yellow:#ffd100;
  --max:1320px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:
    radial-gradient(circle at 82% 7%,rgba(255,209,0,.055),transparent 24%),
    var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}

a{color:inherit}

.site-header{
  width:min(calc(100% - 64px),var(--max));
  height:116px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
}

.brand,.footer-brand{
  display:block;
  width:340px;
}

.brand img,.footer-brand img{
  display:block;
  width:100%;
  height:auto;
}

.back-link{
  display:flex;
  align-items:center;
  gap:9px;
  color:#9b9b95;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
  transition:.2s ease;
}

.back-link span{color:var(--yellow)}

.back-link:hover{
  color:var(--yellow);
  gap:13px;
}

main{
  width:min(calc(100% - 64px),var(--max));
  margin:0 auto;
}

.hero{
  min-height:590px;
  padding:110px 0 85px;
  display:grid;
  grid-template-columns:minmax(0,1.25fr) minmax(340px,.75fr);
  align-items:end;
  gap:clamp(60px,9vw,150px);
  border-bottom:1px solid var(--line);
  position:relative;
}

.hero::after{
  content:"";
  width:480px;
  height:480px;
  position:absolute;
  right:-180px;
  top:15px;
  border:1px solid rgba(255,209,0,.08);
  border-radius:50%;
  box-shadow:0 0 0 90px rgba(255,209,0,.012);
  pointer-events:none;
}

.hero-inner,.scope-card{position:relative;z-index:1}

.eyebrow{
  margin:0 0 28px;
  display:flex;
  align-items:center;
  gap:12px;
  color:#8c8c86;
  font-size:11px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.eyebrow span{
  width:34px;
  height:2px;
  background:var(--yellow);
  box-shadow:0 0 12px rgba(255,209,0,.2);
}

h1{
  margin:0 0 32px;
  font-size:clamp(76px,9vw,140px);
  line-height:.84;
  letter-spacing:-.075em;
}

h1 span{color:var(--yellow)}

.brandline{
  max-width:760px;
  margin:0;
  color:#888882;
  font-size:17px;
  line-height:1.65;
}

.scope-card{
  padding:28px 30px;
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(145deg,rgba(255,255,255,.034),rgba(255,255,255,.012));
}

.scope-card>span,
.aside-inner>span{
  color:var(--yellow);
  font-size:10px;
  font-weight:850;
  letter-spacing:.15em;
  text-transform:uppercase;
}

.scope-card p{
  margin:20px 0 0;
  color:#aaa9a3;
  font-size:14px;
  line-height:1.72;
}

.scope-card strong{
  display:block;
  margin-top:24px;
  padding-top:18px;
  border-top:1px solid var(--line);
  color:#666660;
  font-size:10px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.privacy-layout{
  padding:85px 0 145px;
  display:grid;
  grid-template-columns:270px minmax(0,1fr);
  gap:clamp(60px,8vw,120px);
}

.aside-inner{
  position:sticky;
  top:40px;
  padding-top:8px;
}

.aside-inner p{
  margin:20px 0 0;
  color:#686862;
  font-size:12px;
  line-height:1.7;
}

.aside-inner a{
  width:fit-content;
  margin-top:24px;
  padding-bottom:7px;
  display:flex;
  gap:8px;
  border-bottom:1px solid rgba(255,209,0,.25);
  color:#b9b9b3;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
}

.aside-inner a span{color:var(--yellow)}

.privacy-content{border-top:1px solid var(--line)}

.privacy-section{
  padding:52px 0 57px;
  display:grid;
  grid-template-columns:70px minmax(0,1fr);
  gap:28px;
  border-bottom:1px solid var(--line);
}

.section-number{
  padding-top:8px;
  color:var(--yellow);
  font-size:11px;
  font-weight:850;
  letter-spacing:.1em;
}

.section-content{max-width:930px}

h2{
  margin:0 0 28px;
  font-size:clamp(27px,2.1vw,36px);
  line-height:1.08;
  letter-spacing:-.045em;
}

.section-content p{
  margin:16px 0 0;
  color:var(--muted);
  font-size:15px;
  line-height:1.78;
}

.section-content p:first-of-type{margin-top:0}

.section-content strong{
  color:#d8d8d2;
  font-weight:720;
}

.fact{margin-top:8px!important}

.section-content ul{
  margin:20px 0 8px;
  padding:0;
  display:grid;
  gap:10px;
  list-style:none;
}

.section-content li{
  padding-left:20px;
  position:relative;
  color:var(--muted);
  font-size:15px;
  line-height:1.66;
}

.section-content li::before{
  content:"";
  width:6px;
  height:6px;
  position:absolute;
  left:0;
  top:.72em;
  border-radius:50%;
  background:var(--yellow);
  box-shadow:0 0 11px rgba(255,209,0,.22);
}





.footer{
  width:min(calc(100% - 64px),var(--max));
  min-height:230px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:38px;
  border-top:1px solid var(--line);
}

.footer-brand{
  justify-self:start;
  width:340px;
  overflow:visible;
  text-decoration:none;
}

.footer-brand img{
  width:340px;
  height:auto;
}

.footer-legal{
  justify-self:center;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:8px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:999px;
  background:rgba(255,255,255,0.025);
}

.footer-legal a{
  padding:12px 18px;
  border-radius:999px;
  color:#b9b9b4;
  font-size:15px;
  font-weight:720;
  letter-spacing:-0.015em;
  text-decoration:none;
  white-space:nowrap;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    transform 0.25s ease;
}

.footer-legal a:hover{
  color:#090909;
  background:var(--yellow);
  transform:translateY(-1px);
}

.footer-copy{
  justify-self:end;
  color:#666;
  font-size:11px;
  text-align:right;
}

@media(max-width:980px){
  .hero{
    min-height:auto;
    grid-template-columns:1fr;
    padding-top:90px;
    gap:45px;
  }

  .scope-card{max-width:720px}

  .privacy-layout{
    grid-template-columns:1fr;
    gap:28px;
  }

  .aside-inner{position:static}
}

@media(max-width:760px){
  .site-header,
  main,
  footer{width:min(calc(100% - 36px),var(--max))}

  .site-header{height:92px}

  .brand,.footer-brand{width:225px}

  .back-link{font-size:0}

  .back-link span{font-size:16px}

  .hero{
    padding:76px 0 58px;
    gap:34px;
  }

  h1{font-size:clamp(60px,18vw,88px)}

  .brandline{font-size:14px}

  .scope-card{
    padding:23px 21px;
    border-radius:18px;
  }

  .privacy-layout{padding:58px 0 92px}

  .privacy-section{
    padding:40px 0 44px;
    grid-template-columns:1fr;
    gap:12px;
  }

  h2{
    margin-bottom:22px;
    font-size:27px;
  }

  .section-content p,
  .section-content li{font-size:14px}


  .footer{
    padding:58px 0;
    min-height:auto;
    grid-template-columns:1fr;
    justify-items:center;
    align-items:center;
    gap:30px;
  }

  .footer-brand{
    justify-self:center;
    width:225px;
  }

  .footer-brand img{
    width:225px;
  }

  .footer-legal{
    justify-self:center;
    max-width:100%;
    padding:7px;
    gap:5px;
    flex-wrap:wrap;
  }

  .footer-legal a{
    padding:10px 13px;
    font-size:13px;
  }

  .footer-copy{
    justify-self:center;
    text-align:center;
  }

}


