:root{
  --bg: #07111f;
  --bg2:#0b1830;
  --panel:#0b1730cc;
  --card:#0c1932;
  --card-2:#0f1f3d;
  --text:#eef4ff;
  --muted:#b6c5e3;
  --line:#1f3156;

  --primary:#5b8cff;
  --primary2:#8bb5ff;
  --accent:#7fd2ff;
  --good:#5ee0ff;
  --warn:#ffd166;

  --radius: 18px;
  --shadow: 0 18px 60px rgba(0,0,0,.35);

  --container: 1120px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html,
body{
  width:100%;
  max-width:100%;
  min-height:100%;
  margin:0;
  padding:0;
  overflow-x:hidden;
}

html{
  scroll-behavior:smooth;
  -webkit-text-size-adjust:100%;
}

body{
  font-family:var(--font);
  color:var(--text);
  background: transparent;
  position: relative;
  min-height: 100vh;
  overscroll-behavior-x: none;
  padding-bottom: calc(0px + env(safe-area-inset-bottom, 0px));
}

main{
  overflow-x:clip;
  flex:1
}

body::before{
  content:"";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(91,140,255,.18) 0%, rgba(91,140,255,0) 42%),
    radial-gradient(circle at 88% 16%, rgba(127,210,255,.14) 0%, rgba(127,210,255,0) 34%),
    radial-gradient(circle at 50% 80%, rgba(64,104,190,.10) 0%, rgba(64,104,190,0) 30%),
    linear-gradient(180deg, #07111f 0%, #091528 45%, #0b1830 100%);
  background-repeat:no-repeat;
  background-size:cover;
}

a{
  color:inherit;
  text-decoration:none;
}

img,
video,
svg,
canvas{
  display:block;
  max-width:100%;
}

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

.section{
  padding:84px 0;
}

.section.sm{
  padding:56px 0;
}

h1,h2,h3{
  margin:0 0 14px;
}

h1{
  font-size:clamp(34px, 4.2vw, 56px);
  letter-spacing:-.02em;
  line-height:1.05;
}

h2{
  font-size:clamp(26px, 3vw, 36px);
  letter-spacing:-.015em;
}

h3{
  font-size:20px;
}

p{
  margin:0 0 14px;
  line-height:1.6;
}

.muted{
  color:var(--muted);
}

.kicker{
  color:var(--primary2);
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
  font-size:12px;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background:var(--card);
  padding:10px 12px;
  border-radius:12px;
}

.skip-link:focus{
  left:10px;
  z-index:9999;
}

.progress{
  position:fixed;
  top:0;
  left:0;
  height:3px;
  width:0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index:1000;
}

@media (max-width: 520px){
  .container{
    width:min(var(--container), calc(100% - 28px));
  }

  body{
    padding-bottom: calc(26px + env(safe-area-inset-bottom, 0px));
  }
}
