@media (max-width: 600px) {

:root{
  --blue:#2022d6;
  --blue-hover:#2a2ce5;
  --ink:#0b0b0f;
  --paper:#f5f5f1;
  --white:#fff;
  --muted:#707078;
  --line:rgba(11,11,15,.13);
  --max:760px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family:Inter,Arial,sans-serif;
  overflow-x:hidden;
}

a{
  color:inherit;
  text-decoration:none;
}

h1,h2,h3,p{
  margin-top:0;
}


/* HEADER */

.site-header{
  height:68px;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(245,245,241,.96);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(16px);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-family:Oswald,Arial,sans-serif;
  font-size:9px;
  font-weight:600;
  line-height:1.02;
  letter-spacing:.02em;
}

.brand-mark{
  width:29px;
  height:29px;
  display:grid;
  place-items:center;
  border:4px solid var(--blue);
  flex-shrink:0;
}

.brand-mark i{
  width:10px;
  height:10px;
  display:block;
  background:var(--blue);
}

nav{
  display:none;
}

.nav-cta{
  font-size:8px;
  font-weight:800;
  letter-spacing:.07em;
}

.nav-cta span{
  color:var(--blue);
  font-size:15px;
}


/* COMMON */

.section{
  width:100%;
  max-width:var(--max);
  margin:0 auto;
  padding:76px 22px;
}

.section-label{
  margin-bottom:30px;
  color:var(--blue);
  font-size:9px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}


/* HERO */

.hero{
  min-height:calc(100svh - 68px);
  position:relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:70px 22px 45px;
  background:var(--blue);
  color:#fff;
}

.hero-copy{
  position:relative;
  z-index:2;
}

.hero .eyebrow{
  margin-bottom:22px;
  color:#fff;
  font-size:9px;
  line-height:1.5;
  letter-spacing:.15em;
}

h1{
  margin:0 0 27px;
  font-family:Oswald,Arial,sans-serif;
  font-size:clamp(58px,17vw,86px);
  font-weight:500;
  line-height:.86;
  letter-spacing:-.045em;
}

h1 em{
  color:#fff;
  font-style:normal;
}

.hero-text{
  max-width:570px;
  margin:0;
  color:rgba(255,255,255,.82);
  font-size:14px;
  line-height:1.65;
}

.hero-actions{
  display:flex;
  flex-direction:column;
  gap:9px;
  margin-top:30px;
}

.button{
  width:100%;
  min-height:50px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 17px;
  font-size:9px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:.25s ease;
}

.button:hover{
  transform:translateY(-2px);
}

.button-primary{
  background:#fff;
  color:var(--blue);
}

.button-ghost{
  border:1px solid rgba(255,255,255,.45);
  color:#fff;
}

.button-ghost:hover{
  background:#fff;
  color:var(--blue);
}

.hero-mark{
  position:absolute;
  top:26px;
  right:22px;
  width:42px;
  height:42px;
  border:5px solid rgba(255,255,255,.9);
}

.hero-mark span{
  position:absolute;
  left:7px;
  top:7px;
  width:17px;
  height:17px;
  background:#fff;
}


/* INTRO */

.intro{
  display:block;
}

.intro-main h2{
  margin:0;
  font-family:Oswald,Arial,sans-serif;
  font-size:clamp(42px,12vw,62px);
  font-weight:500;
  line-height:.94;
  letter-spacing:-.035em;
}

.intro-main>p{
  margin:27px 0 0;
  color:#5e5e66;
  font-size:14px;
  line-height:1.7;
}


/* PRINCIPLES */

.principles{
  display:flex;
  flex-direction:column;
  margin-top:45px;
}

.principles article{
  padding:22px 0 25px;
  border-top:2px solid var(--ink);
}

.principles article:last-child{
  border-bottom:1px solid var(--line);
}

.principles span{
  color:var(--blue);
  font-family:Oswald,Arial,sans-serif;
  font-size:32px;
  font-weight:600;
}

.principles h3{
  margin:14px 0 8px;
  font-size:18px;
}

.principles p{
  margin:0;
  color:#696971;
  font-size:13px;
  line-height:1.6;
}


/* STATS */

.stats{
  width:100%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  padding:0;
  background:var(--blue);
  color:#fff;
}

.stat{
  min-height:155px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:24px 18px;
  border-right:1px solid rgba(255,255,255,.25);
  border-bottom:1px solid rgba(255,255,255,.25);
}

.stat:nth-child(2n){
  border-right:0;
}

.stat strong{
  display:block;
  font-family:Oswald,Arial,sans-serif;
  font-size:68px;
  font-weight:500;
  line-height:.75;
  letter-spacing:-.04em;
}

.stat span{
  margin-top:16px;
  font-size:8px;
  line-height:1.4;
  text-transform:uppercase;
  letter-spacing:.1em;
}


/* PROGRAM */

.section-head{
  display:block;
  margin-bottom:45px;
}

.section-head .section-label{
  margin-bottom:22px;
}

.section-head p{
  margin:0;
  color:#66666e;
  font-size:13px;
  line-height:1.65;
}

.schedule{
  border-top:1px solid var(--line);
}

.day{
  display:block;
  padding:35px 0;
  border-bottom:1px solid var(--line);
}

.day-date{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:28px;
}

.day-date b{
  color:var(--blue);
  font-family:Oswald,Arial,sans-serif;
  font-size:70px;
  font-weight:500;
  line-height:.8;
  letter-spacing:-.04em;
}

.day-date span{
  font-size:8px;
  font-weight:800;
  line-height:1.4;
  letter-spacing:.12em;
}

.day-events{
  display:flex;
  flex-direction:column;
}

.event{
  min-height:auto;
  padding:0 0 22px;
  margin-bottom:22px;
  border-right:0;
  border-bottom:1px solid var(--line);
}

.event:last-child{
  padding-bottom:0;
  margin-bottom:0;
  border-bottom:0;
}

.event time{
  color:var(--blue);
  font-size:8px;
  font-weight:800;
  letter-spacing:.15em;
}

.event h3{
  margin:10px 0 8px;
  font-size:16px;
  line-height:1.35;
}

.event p{
  margin:0;
  color:#74747c;
  font-size:12px;
  line-height:1.6;
}

.event.featured{
  padding:20px;
  background:#e9e9e4;
  border:0;
}

.event.featured h3{
  font-size:20px;
}

.event.matrix{
  margin:0;
  padding:24px;
  background:#101016;
  color:#fff;
  border:0;
}

.event.matrix h3{
  margin:10px 0;
  font-family:Oswald,Arial,sans-serif;
  font-size:30px;
  font-weight:500;
}

.event.matrix p{
  color:#aaaab2;
}


/* ABOUT US */

.about-us{
  border-top:1px solid var(--line);
}

.about-layout{
  display:flex;
  flex-direction:column;
  gap:38px;
}

.about-title h2{
  margin:0;
  font-family:Oswald,Arial,sans-serif;
  font-size:clamp(50px,14vw,76px);
  font-weight:500;
  line-height:.91;
  letter-spacing:-.04em;
}

.about-title h2 em{
  color:var(--blue);
  font-style:normal;
}

.about-copy{
  max-width:none;
}

.about-lead{
  margin-bottom:24px;
  color:var(--ink)!important;
  font-size:19px!important;
  line-height:1.45!important;
}

.about-copy p:not(.about-lead){
  margin-bottom:18px;
  color:#62626a;
  font-size:13px;
  line-height:1.75;
}

.button-dark{
  margin-top:10px;
  background:var(--ink);
  color:#fff;
}


/* TIMELINE */

.timeline{
  position:relative;
  margin-top:70px;
}

.timeline:before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  left:17px;
  width:2px;
  background:var(--blue);
}

.timeline-item{
  position:relative;
  display:grid;
  grid-template-columns:36px 1fr;
  margin-bottom:52px;
}

.timeline-item:last-child{
  margin-bottom:0;
}

.timeline-dot{
  grid-column:1;
  position:relative;
  z-index:2;
  display:flex;
  justify-content:center;
}

.timeline-dot span{
  width:14px;
  height:14px;
  margin-top:5px;
  background:var(--blue);
  border:4px solid var(--paper);
}

.timeline-year{
  grid-column:2;
  padding:0 0 13px 22px;
}

.timeline-year span{
  color:var(--blue);
  font-family:Oswald,Arial,sans-serif;
  font-size:54px;
  font-weight:500;
  line-height:.85;
  letter-spacing:-.04em;
}

.timeline-content{
  grid-column:2;
  display:flex;
  flex-direction:column;
  gap:24px;
  padding-left:22px;
}

.timeline-text{
  max-width:none;
}

.timeline-label{
  color:var(--blue);
  font-size:8px;
  font-weight:800;
  letter-spacing:.16em;
}

.timeline-text h3{
  margin:13px 0 10px;
  font-family:Oswald,Arial,sans-serif;
  font-size:29px;
  font-weight:500;
  line-height:1.05;
}

.timeline-text p{
  margin:0;
  color:#66666e;
  font-size:12px;
  line-height:1.7;
}

.timeline-image{
  position:relative;
  width:100%;
  height:175px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#e9e9e4;
  border:1px solid var(--line);
}

.timeline-image:before{
  content:"";
  position:absolute;
  width:55px;
  height:55px;
  border:5px solid var(--blue);
  opacity:.55;
}

.timeline-image:after{
  content:"";
  position:absolute;
  width:17px;
  height:17px;
  background:var(--blue);
  opacity:.55;
}

.timeline-image span{
  position:relative;
  z-index:2;
  max-width:100px;
  color:#777780;
  font-size:8px;
  font-weight:800;
  line-height:1.5;
  text-align:center;
  letter-spacing:.14em;
}

.about-line{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:30px;
  padding-top:17px;
  border-top:1px solid var(--line);
  color:#777780;
  font-size:8px;
  font-weight:800;
  letter-spacing:.16em;
}


/* RISK */

.risk{
  width:100%;
  max-width:none;
  display:flex;
  flex-direction:column;
  gap:45px;
  padding:76px 22px;
  background:var(--ink);
  color:#fff;
}

.risk h2{
  margin:22px 0 0;
  font-family:Oswald,Arial,sans-serif;
  font-size:clamp(46px,13vw,70px);
  font-weight:500;
  line-height:.94;
  letter-spacing:-.04em;
}

.risk h2 em{
  color:var(--blue);
  font-style:normal;
}

.risk-card{
  width:100%;
  padding:27px;
  border:1px solid rgba(255,255,255,.2);
}

.lock{
  display:block;
  color:var(--blue);
  font-size:28px;
}

.risk-card p{
  margin:22px 0 0;
  color:#bdbdc4;
  font-size:12px;
  line-height:1.65;
}

.risk-card strong{
  display:block;
  margin-top:32px;
  font-family:Oswald,Arial,sans-serif;
  font-size:58px;
  font-weight:500;
  line-height:.9;
  letter-spacing:-.04em;
}

.risk-card small{
  display:block;
  max-width:280px;
  margin-top:13px;
  color:#777780;
  font-size:9px;
  line-height:1.55;
}


/* FINAL CTA */

.final-cta{
  min-height:590px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding:80px 22px;
  background:var(--blue);
  color:#fff;
  text-align:center;
}

.final-cta .eyebrow{
  color:#fff;
  font-size:9px;
}

.final-cta h2{
  margin:0 0 25px;
  font-family:Oswald,Arial,sans-serif;
  font-size:clamp(70px,19vw,105px);
  font-weight:500;
  line-height:.82;
  letter-spacing:-.05em;
}

.final-cta h2 span{
  color:#fff;
}

.final-cta>p:not(.eyebrow){
  max-width:330px;
  margin:0 auto 28px;
  color:rgba(255,255,255,.74);
  font-size:13px;
  line-height:1.6;
}


/* FOOTER */

footer{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:28px;
  padding:32px 22px;
  background:#08080b;
  color:#fff;
  border-top:1px solid #24242a;
}

footer .brand{
  color:#fff;
}

.footer-links{
  width:100%;
  display:flex;
  flex-direction:column;
  border-top:1px solid #27272d;
}

.footer-links a{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:17px 0;
  color:#c7c7cc;
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  border-bottom:1px solid #27272d;
}

.footer-links b{
  color:var(--blue);
  font-size:15px;
}

.footer-copy{
  color:#777780;
  font-size:9px;
  letter-spacing:.1em;
}

.footer-top{
  color:#aaaab2;
  font-size:9px;
  font-weight:700;
  letter-spacing:.1em;
}


/* SMALL PHONES */

@media(max-width:360px){

  .site-header{
    padding:0 16px;
  }

  .hero{
    padding-left:18px;
    padding-right:18px;
  }

  .section{
    padding-left:18px;
    padding-right:18px;
  }

  h1{
    font-size:58px;
  }

  .stat strong{
    font-size:60px;
  }

  .day-date b{
    font-size:62px;
  }

  .risk{
    padding-left:18px;
    padding-right:18px;
  }

}

  /* Elements that exist only in the wide composition are folded into the
     compact composition instead of producing a second document. */
  .hero-side,
  .hero-code,
  .title-marker {
    display:none;
  }

  .hero-decoration {
    position:absolute;
    inset:0;
    pointer-events:none;
  }

  .deco-square {
    display:none;
  }

  .deco-square:first-child {
    display:block;
    top:26px;
    right:22px;
    bottom:auto;
    width:42px;
    height:42px;
    border:5px solid rgba(255,255,255,.9);
  }

  .deco-square:first-child:after {
    top:7px;
    left:7px;
    width:17px;
    height:17px;
  }
}
