:root{
  --am-color-ink:#070e24;
  --am-color-ink-deep:#040a1d;
  --am-color-surface:#171d3e;
  --am-color-surface-raised:#202750;
  --am-color-surface-soft:#29214a;
  --am-color-primary:#a612f4;
  --am-color-primary-dark:#8616c3;
  --am-color-accent:#e15bff;
  --am-color-violet:#7c3cff;
  --am-color-white:#ffffff;
  --am-color-light:#f8f3fc;
  --am-color-muted:#aeb4ca;
  --am-color-muted-dark:#7f87a5;
  --am-color-success:#ccffda;
  --am-color-danger:#ff9ec3;
  --am-color-line:rgba(255,255,255,.12);
  --am-color-line-strong:rgba(255,255,255,.22);
  --am-color-line-dark:rgba(7,14,36,.14);
  --am-gradient-brand:linear-gradient(110deg,var(--am-color-violet),var(--am-color-primary) 55%,var(--am-color-accent));
  --am-gradient-surface:linear-gradient(145deg,var(--am-color-surface-raised),var(--am-color-surface));
  --am-font-heading:"Outfit",-apple-system,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
  --am-font-body:"IBM Plex Sans",-apple-system,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC","Hiragino Kaku Gothic ProN","Yu Gothic","Apple SD Gothic Neo","Malgun Gothic",sans-serif;
  --am-font-mono:"SFMono-Regular","Cascadia Code","IBM Plex Mono",Consolas,monospace;
  --am-text-xs:.75rem;
  --am-text-sm:.875rem;
  --am-text-base:1rem;
  --am-text-lg:1.125rem;
  --am-text-xl:1.4375rem;
  --am-text-2xl:2rem;
  --am-text-3xl:2.625rem;
  --am-text-hero:3.5rem;
  --am-leading-tight:1.14;
  --am-leading-heading:1.22;
  --am-leading-body:1.65;
  --am-space-1:.5rem;
  --am-space-2:1rem;
  --am-space-3:1.5rem;
  --am-space-4:2rem;
  --am-space-5:2.5rem;
  --am-space-6:3rem;
  --am-space-8:4rem;
  --am-space-10:5rem;
  --am-space-12:6rem;
  --am-space-18:9rem;
  --am-radius-sm:.5rem;
  --am-radius-md:.875rem;
  --am-radius-lg:1.25rem;
  --am-radius-pill:999px;
  --am-shadow-focus:0 0 0 3px rgba(225,91,255,.24);
  --am-shadow-float:0 24px 70px rgba(2,5,20,.24);
  --am-container-narrow:760px;
  --am-container-standard:1240px;
  --am-container-wide:1440px;
  --am-gutter:clamp(1.25rem,4vw,3rem);
  --am-duration-fast:180ms;
  --am-duration-base:240ms;
  --am-ease:cubic-bezier(.2,.7,.2,1);
  --am-header-height:68px;
}
*,
*::before,
*::after{box-sizing:border-box}
html{scroll-behavior:auto;background:var(--am-color-ink)}
body{
  margin:0;
  min-width:0;
  overflow-x:hidden;
  background:var(--am-color-ink);
  color:var(--am-color-white);
  font-family:var(--am-font-body);
  font-size:var(--am-text-base);
  line-height:var(--am-leading-body);
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
main{display:block}
img,svg,video,canvas{display:block;max-width:100%}
img{height:auto}
button,input,select,textarea{font:inherit}
button{color:inherit}
a{color:inherit;text-decoration:none}
p,h1,h2,h3,h4,h5,h6,ul,ol,dl,dd,figure,blockquote{margin:0}
ul,ol{padding:0}
h1,h2,h3,h4,h5,h6{
  font-family:var(--am-font-heading);
  font-weight:700;
  overflow-wrap:anywhere;
}
h1{
  font-size:clamp(2.65rem,5vw,var(--am-text-hero));
  line-height:1.18;
  letter-spacing:-.03em;
}
h2{
  font-size:clamp(2rem,4vw,var(--am-text-3xl));
  line-height:var(--am-leading-tight);
  letter-spacing:-.026em;
}
h3{
  font-size:var(--am-text-xl);
  line-height:var(--am-leading-heading);
  letter-spacing:-.015em;
}
h4{font-size:var(--am-text-lg);line-height:var(--am-leading-heading)}
small{font-size:var(--am-text-sm)}
strong{font-weight:700}
table{border-collapse:collapse}
pre,code,kbd,samp{font-family:var(--am-font-mono)}
pre{
  max-width:100%;
  overflow-x:auto;
  padding:var(--am-space-3);
  border:1px solid var(--am-color-line);
  border-radius:var(--am-radius-md);
  background:var(--am-color-ink-deep);
  tab-size:2;
}
code{overflow-wrap:anywhere}
pre code{overflow-wrap:normal}
:focus-visible{
  outline:2px solid var(--am-color-accent);
  outline-offset:3px;
}
::selection{background:var(--am-color-primary);color:var(--am-color-white)}
.am-shell,.am-shell-narrow,.am-shell-wide{
  width:100%;
  margin-inline:auto;
  padding-inline:var(--am-gutter);
}
.am-shell{max-width:calc(var(--am-container-standard) + var(--am-gutter) * 2)}
.am-shell-narrow{max-width:calc(var(--am-container-narrow) + var(--am-gutter) * 2)}
.am-shell-wide{max-width:calc(var(--am-container-wide) + var(--am-gutter) * 2)}
.am-grid{display:grid;gap:var(--am-space-3)}
.am-grid>*{min-width:0}
.am-grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.am-grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.am-grid-4{grid-template-columns:repeat(4,minmax(0,1fr))}
.am-stack{display:flex;flex-direction:column}
.am-cluster{display:flex;flex-wrap:wrap;align-items:center}
.am-mono{font-family:var(--am-font-mono);font-variant-numeric:tabular-nums}
.am-muted{color:var(--am-color-muted)}
.am-soft{color:var(--am-color-light)}
.am-center{text-align:center}
.am-max-copy{max-width:650px}
.am-sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
.am-mt-1{margin-top:var(--am-space-1)}
.am-mt-2{margin-top:var(--am-space-2)}
.am-mt-3{margin-top:var(--am-space-3)}
.am-mt-4{margin-top:var(--am-space-4)}
.am-mt-6{margin-top:var(--am-space-6)}
.am-mt-8{margin-top:var(--am-space-8)}
.am-gap-1{gap:var(--am-space-1)}
.am-gap-2{gap:var(--am-space-2)}
.am-gap-3{gap:var(--am-space-3)}
.am-gap-4{gap:var(--am-space-4)}
.am-gap-6{gap:var(--am-space-6)}
.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .65s var(--am-ease),transform .65s var(--am-ease);
}
.reveal.is-visible{opacity:1;transform:none}
.reveal-stagger>*{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .55s var(--am-ease),transform .55s var(--am-ease);
}
.reveal-stagger.is-visible>*{opacity:1;transform:none}
.reveal-stagger.is-visible>*:nth-child(2){transition-delay:70ms}
.reveal-stagger.is-visible>*:nth-child(3){transition-delay:140ms}
.reveal-stagger.is-visible>*:nth-child(4){transition-delay:210ms}
.reveal-stagger.is-visible>*:nth-child(5){transition-delay:280ms}
.reveal-stagger.is-visible>*:nth-child(6){transition-delay:350ms}
@media(max-width:900px){
  .am-grid-3,.am-grid-4{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:680px){
  :root{
    --am-text-hero:2.75rem;
    --am-text-3xl:2.15rem;
    --am-space-18:6rem;
  }
  .am-grid-2,.am-grid-3,.am-grid-4{grid-template-columns:1fr}
}
@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
  }
  .reveal,.reveal-stagger>*{opacity:1;transform:none}
}
main{overflow-x:clip}
