@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&display=swap');


/* =========================================================
   BASE
========================================================= */

:root{
  --blue:#0000e6;
  --blue-hover:#292be8;

  --ink:#0b0b0f;
  --paper:#f5f5f1;
  --white:#ffffff;

  --muted:#73737b;
  --line:rgba(11,11,15,.14);

  --max:1240px;
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  background:var(--paper);
  color:var(--ink);

  font-family:Inter,Arial,sans-serif;
}

a{
  color:inherit;
  text-decoration:none;
}

img{
  display:block;
  max-width:100%;
}

h1,
h2,
h3,
p{
  margin-top:0;
}


/* =========================================================
   HEADER
========================================================= */

.site-header{
  height:84px;

  padding:0 4vw;

  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:13px;

  font-family:Oswald,Arial,sans-serif;
  font-size:12px;
  font-weight:600;

  line-height:1.02;
  letter-spacing:.02em;
}

.brand-mark{
  width:34px;
  height:34px;

  display:grid;
  place-items:center;

  border:5px solid var(--blue);

  flex-shrink:0;
}

.brand-mark i{
  display:block;

  width:13px;
  height:13px;

  background:var(--blue);
}

nav{
  display:flex;
  align-items:center;
  gap:34px;

  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
}

nav a{
  opacity:.6;
  transition:.25s ease;
}

nav a:hover{
  opacity:1;
  color:var(--blue);
}

.nav-cta{
  font-size:11px;
  font-weight:800;
  letter-spacing:.08em;
}

.nav-cta span{
  color:var(--blue);
  font-size:18px;
}


/* =========================================================
   GENERAL SECTIONS
========================================================= */

.section{
  width:100%;
  max-width:var(--max);

  margin:0 auto;
  padding:130px 5vw;
}

.section-label{
  color:var(--blue);

  font-size:10px;
  font-weight:800;

  letter-spacing:.18em;
  text-transform:uppercase;
}


/* =========================================================
   HERO
========================================================= */

.hero{
  position:relative;
  overflow:hidden;

  min-height:calc(100vh - 84px);

  display:grid;
  grid-template-columns:1.45fr .55fr;
  align-items:end;

  padding:9vw 6vw 6vw;

  background:var(--blue);
  color:#fff;
}


/* Никакой сетки */

.hero-grid{
  display:none;
}


/* Никакого свечения */

.hero:after{
  display:none;
}

.hero-copy,
.hero-side,
.hero-code{
  position:relative;
  z-index:2;
}


/* Верхняя подпись */

.eyebrow{
  margin:0 0 28px;

  color:var(--blue);

  font-size:11px;
  font-weight:800;

  letter-spacing:.18em;
}

.hero .eyebrow{
  color:#fff;
}


/* Заголовок */

h1{
  margin:0 0 34px;

  font-family:Oswald,Arial,sans-serif;
  font-size:clamp(64px,9vw,150px);
  font-weight:500;

  line-height:.88;
  letter-spacing:-.045em;
}

h1 em{
  color:#fff;
  font-style:normal;
}


/* Текст */

.hero-text{
  max-width:620px;

  color:rgba(255,255,255,.82);

  font-size:16px;
  line-height:1.65;
}


/* Кнопки */

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;

  margin-top:36px;
}

.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:28px;

  padding:16px 20px;

  font-size:11px;
  font-weight:800;

  letter-spacing:.08em;
  text-transform:uppercase;

  transition:
    transform .25s ease,
    background .25s ease,
    color .25s ease;
}

.button:hover{
  transform:translateY(-3px);
}

.button-primary{
  background:#fff;
  color:var(--blue);
}

.button-primary:hover{
  background:#ededed;
}

.button-ghost{
  color:#fff;

  border:1px solid rgba(255,255,255,.45);
}

.button-ghost:hover{
  background:#fff;
  color:var(--blue);
}


/* =========================================================
   HERO — RIGHT SIDE
========================================================= */

.hero-side{
  align-self:end;

  padding-left:32px;

  border-left:1px solid rgba(255,255,255,.35);
}

.signal{
  display:grid;
  grid-template-columns:35px 1fr;
  gap:6px;

  padding:22px 0;

  border-bottom:1px solid rgba(255,255,255,.25);
}

.signal span{
  color:#fff;

  font-family:Oswald,Arial,sans-serif;
  font-size:16px;
}

.signal b{
  font-size:11px;
  letter-spacing:.1em;
}

.signal small{
  grid-column:2;

  color:rgba(255,255,255,.65);

  line-height:1.5;
}


/* =========================================================
   HERO — CODE
========================================================= */

.hero-code{
  position:absolute;

  top:8vw;
  right:5vw;

  max-width:300px;

  color:rgba(255,255,255,.11);

  font:11px/1.8 monospace;
}


/* =========================================================
   HERO — ONE LOGO MARK ONLY
========================================================= */

.hero-decoration{
  position:absolute;
  inset:0;

  pointer-events:none;
}

.deco-square{
  position:absolute;

  right:8%;
  bottom:13%;

  width:48px;
  height:48px;

  border:6px solid rgba(255,255,255,.9);
}

.deco-square:after{
  content:"";

  position:absolute;

  top:9px;
  left:9px;

  width:18px;
  height:18px;

  background:#fff;
}


/* =========================================================
   INTRO
========================================================= */

.intro{
  display:grid;
  grid-template-columns:.35fr 1fr;
  gap:70px;
}

.intro-main h2{
  max-width:850px;

  margin:0;

  font-family:Oswald,Arial,sans-serif;
  font-size:clamp(42px,5vw,76px);
  font-weight:500;

  line-height:.98;
  letter-spacing:-.03em;
}

.intro-main>p{
  max-width:760px;

  margin-top:36px;

  color:#57575f;

  font-size:17px;
  line-height:1.7;
}


/* =========================================================
   PRINCIPLES
========================================================= */

.principles{
  grid-column:2;

  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;

  margin-top:30px;
}

.principles article{
  padding:20px 0;

  border-top:2px solid var(--ink);
}

.principles span{
  color:var(--blue);

  font-family:Oswald,Arial,sans-serif;
  font-size:24px;
  font-weight:700;
}

.principles h3{
  margin:25px 0 10px;

  font-size:17px;
}

.principles p{
  margin:0;

  color:#6b6b73;

  font-size:13px;
  line-height:1.6;
}


/* =========================================================
   STATS
========================================================= */

.stats{
  width:100%;
  max-width:none;

  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;

  padding:75px 8vw;

  background:var(--blue);
  color:#fff;
}

.stat{
  display:flex;
  align-items:flex-end;
  gap:18px;

  min-height:115px;

  padding-left:25px;

  border-left:1px solid rgba(255,255,255,.4);
}

.stat strong{
  font-family:Oswald,Arial,sans-serif;
  font-size:clamp(72px,8vw,120px);
  font-weight:500;

  line-height:.75;
  letter-spacing:-.04em;
}

.stat span{
  padding-bottom:5px;

  font-size:10px;
  line-height:1.4;

  text-transform:uppercase;
  letter-spacing:.12em;
}


/* =========================================================
   PROGRAM
========================================================= */

.section-head{
  display:grid;
  grid-template-columns:.4fr 1fr;
  gap:70px;

  margin-bottom:65px;
}

.section-head p{
  max-width:650px;

  margin:0;

  color:#66666e;

  font-size:14px;
  line-height:1.6;
}

.schedule{
  border-top:1px solid var(--line);
}

.day{
  display:grid;
  grid-template-columns:180px 1fr;

  padding:42px 0;

  border-bottom:1px solid var(--line);
}

.day-date{
  display:flex;
  align-items:flex-start;
  gap:15px;
}

.day-date b{
  color:var(--blue);

  font-family:Oswald,Arial,sans-serif;
  font-size:78px;
  font-weight:500;

  line-height:.82;
  letter-spacing:-.04em;
}

.day-date span{
  padding-top:8px;

  font-size:9px;
  font-weight:800;

  line-height:1.4;
  letter-spacing:.12em;
}

.day-events{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.event{
  min-height:100px;

  padding-right:20px;

  border-right:1px solid var(--line);
}

.event:last-child{
  border-right:0;
}

.event time{
  color:var(--blue);

  font-size:9px;
  font-weight:800;

  letter-spacing:.15em;
}

.event h3{
  margin:12px 0;

  font-size:16px;
  line-height:1.3;
}

.event p{
  margin:0;

  color:#777780;

  font-size:12px;
  line-height:1.55;
}

.event.featured h3{
  font-size:20px;
}

.event.matrix{
  margin:-8px 0;

  padding:28px;

  background:#101016;
  color:#fff;

  border:0;
}

.event.matrix h3{
  margin-top:14px;

  font-family:Oswald,Arial,sans-serif;
  font-size:32px;
  font-weight:500;
}

.event.matrix p{
  color:#aaaab2;
}


/* =========================================================
   ABOUT US
========================================================= */

.about-us{
  border-top:1px solid var(--line);
}

.about-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10vw;

  margin-top:58px;

  align-items:start;
}

.about-title h2{
  margin:0;

  font-family:Oswald,Arial,sans-serif;
  font-size:clamp(52px,6vw,92px);
  font-weight:500;

  line-height:.94;
  letter-spacing:-.04em;
}

.about-title h2 em{
  color:var(--blue);
  font-style:normal;
}

.about-copy{
  max-width:610px;
}

.about-lead{
  margin-bottom:28px;

  color:var(--ink)!important;

  font-size:22px!important;
  line-height:1.45!important;
}

.about-copy p:not(.about-lead){
  margin-bottom:20px;

  color:#62626a;

  font-size:14px;
  line-height:1.75;
}

.button-dark{
  margin-top:22px;

  background:var(--ink);
  color:#fff;
}

.button-dark:hover{
  background:#24242b;
}


/* =========================================================
   TIMELINE
========================================================= */

.timeline{
  position:relative;

  margin-top:110px;
}


/* Вертикальная линия */

.timeline:before{
  content:"";

  position:absolute;

  top:0;
  bottom:0;
  left:180px;

  width:2px;

  background:var(--blue);
}


/* Элемент timeline */

.timeline-item{
  position:relative;

  display:grid;
  grid-template-columns:150px 60px 1fr;

  min-height:250px;
}


/* Год */

.timeline-year{
  padding-right:28px;

  text-align:right;
}

.timeline-year span{
  display:block;

  color:#b3b3ba;

  font-family:Oswald,Arial,sans-serif;
  font-size:clamp(48px,5vw,74px);
  font-weight:500;

  line-height:.88;
  letter-spacing:-.04em;

  transition:color .25s ease;
}

.timeline-item:hover .timeline-year span,
.timeline-current .timeline-year span{
  color:var(--blue);
}


/* Точка */

.timeline-dot{
  position:relative;

  display:flex;
  justify-content:center;

  z-index:3;
}

.timeline-dot span{
  width:18px;
  height:18px;

  margin-top:3px;

  background:var(--blue);

  border:5px solid var(--paper);
}


/* Контент */

.timeline-content{
  display:grid;
  grid-template-columns:1fr 300px;
  gap:50px;

  padding:0 0 70px 35px;
}

.timeline-text{
  max-width:520px;
}

.timeline-label{
  color:var(--blue);

  font-size:9px;
  font-weight:800;

  letter-spacing:.16em;
}

.timeline-text h3{
  margin:17px 0 14px;

  font-family:Oswald,Arial,sans-serif;
  font-size:36px;
  font-weight:500;

  line-height:1.05;
}

.timeline-text p{
  max-width:480px;

  margin:0;

  color:#66666e;

  font-size:13px;
  line-height:1.7;
}


/* Фото */

.timeline-image{
  position:relative;

  height:185px;

  display:flex;
  align-items:center;
  justify-content:center;

  overflow:hidden;

  background:#e9e9e4;

  border:1px solid var(--line);
}

.timeline-image:before{
  content:"";

  position:absolute;

  width:58px;
  height:58px;

  border:5px solid var(--blue);

  opacity:.6;
}

.timeline-image:after{
  content:"";

  position:absolute;

  width:18px;
  height:18px;

  background:var(--blue);

  opacity:.6;
}

.timeline-image span{
  position:relative;
  z-index:2;

  color:#777780;

  font-size:8px;
  font-weight:800;

  line-height:1.5;
  letter-spacing:.16em;

  text-align:center;
}


/* Нижняя строка */

.about-line{
  display:flex;
  justify-content:space-between;

  margin-top:30px;
  padding-top:18px;

  border-top:1px solid var(--line);

  color:#777780;

  font-size:9px;
  font-weight:800;

  letter-spacing:.18em;
}


/* =========================================================
   RISK
========================================================= */

.risk{
  width:100%;
  max-width:none;

  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10vw;

  padding-left:10vw;
  padding-right:10vw;

  background:var(--ink);
  color:#fff;
}

.risk .section-label{
  color:var(--blue);
}

.risk h2{
  margin-top:25px;

  font-family:Oswald,Arial,sans-serif;
  font-size:clamp(45px,5vw,78px);
  font-weight:500;

  line-height:.98;
  letter-spacing:-.03em;
}

.risk h2 em{
  color:var(--blue);
  font-style:normal;
}

.risk-card{
  align-self:center;

  padding:42px;

  border:1px solid rgba(255,255,255,.18);
}

.risk-card p{
  margin-top:28px;

  color:#bbb;

  font-size:14px;
  line-height:1.6;
}

.risk-card strong{
  display:block;

  margin-top:35px;

  font-family:Oswald,Arial,sans-serif;
  font-size:72px;
  font-weight:500;

  line-height:.9;
  letter-spacing:-.04em;
}

.risk-card small{
  display:block;

  max-width:300px;

  margin-top:15px;

  color:#777;

  font-size:10px;
  line-height:1.5;
}


/* =========================================================
   FINAL CTA
========================================================= */

.final-cta{
  position:relative;
  overflow:hidden;

  min-height:650px;

  display:grid;
  place-items:center;

  padding:100px 20px;

  background:var(--blue);
  color:#fff;

  text-align:center;
}


/* Сетка отключена */

.final-grid{
  display:none;
}

.final-cta:after{
  display:none;
}

.final-cta>*:not(.final-grid){
  position:relative;
  z-index:2;
}

.final-cta .eyebrow{
  color:#fff;
}

.final-cta h2{
  margin:0 0 30px;

  font-family:Oswald,Arial,sans-serif;
  font-size:clamp(70px,11vw,170px);
  font-weight:500;

  line-height:.83;
  letter-spacing:-.05em;
}

.final-cta h2 span{
  color:#fff;
}

.final-cta>p:not(.eyebrow){
  max-width:450px;

  margin:0 auto 30px;

  color:rgba(255,255,255,.72);

  line-height:1.6;
}


/* =========================================================
   FOOTER
========================================================= */

footer{
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:60px;
  align-items:center;

  padding:32px 5vw;

  background:#08080b;
  color:#fff;

  border-top:1px solid #24242a;
}

footer .brand{
  color:#fff;
}

footer .brand-mark{
  border-color:var(--blue);
}

footer .brand-mark i{
  background:var(--blue);
}

.footer-links{
  display:flex;
  gap:30px;
}

.footer-links a{
  color:#aaaab2;

  font-size:10px;
  font-weight:700;

  letter-spacing:.08em;
  text-transform:uppercase;

  transition:.25s ease;
}

.footer-links a:hover{
  color:#fff;
}

.footer-links span{
  margin-left:5px;

  color:var(--blue);

  font-size:14px;
}

.footer-top{
  color:#999;

  font-size:10px;
  font-weight:700;

  letter-spacing:.1em;
}


/* =========================================================
   TABLET
========================================================= */

@media(max-width:900px){

  nav{
    display:none;
  }


  /* HERO */

  .hero{
    grid-template-columns:1fr;

    min-height:760px;

    padding:120px 7vw 70px;
  }

  .hero-side{
    display:none;
  }

  .hero-code{
    display:none;
  }


  /* INTRO */

  .intro{
    grid-template-columns:1fr;
    gap:40px;
  }

  .principles{
    grid-column:auto;
  }


  /* STATS */

  .stats{
    grid-template-columns:repeat(2,1fr);
  }


  /* PROGRAM */

  .section-head{
    grid-template-columns:1fr;
    gap:20px;
  }

  .day{
    grid-template-columns:110px 1fr;
  }

  .day-events{
    grid-template-columns:1fr;
  }

  .event{
    padding-bottom:22px;

    border-right:0;
    border-bottom:1px solid var(--line);
  }

  .event:last-child{
    border-bottom:0;
  }


  /* ABOUT */

  .about-layout{
    grid-template-columns:1fr;
    gap:40px;
  }


  /* TIMELINE */

  .timeline:before{
    left:20px;
  }

  .timeline-item{
    grid-template-columns:40px 1fr;
  }

  .timeline-year{
    grid-column:2;
    grid-row:1;

    padding:0 0 12px 30px;

    text-align:left;
  }

  .timeline-dot{
    grid-column:1;
    grid-row:1 / span 2;
  }

  .timeline-content{
    grid-column:2;
    grid-row:2;

    grid-template-columns:1fr;

    gap:30px;

    padding-left:30px;
  }


  /* RISK */

  .risk{
    grid-template-columns:1fr;
    gap:50px;
  }


  /* FOOTER */

  footer{
    grid-template-columns:1fr;
    gap:28px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media(max-width:600px){

  .site-header{
    height:72px;

    padding:0 5vw;
  }

  .brand{
    font-size:10px;
  }

  .brand-mark{
    width:30px;
    height:30px;

    border-width:4px;
  }

  .brand-mark i{
    width:11px;
    height:11px;
  }

  .nav-cta{
    font-size:9px;
  }


  /* HERO */

  .hero{
    min-height:700px;

    padding:90px 7vw 60px;
  }

  h1{
    font-size:65px;
  }

  .hero-text{
    font-size:14px;
  }

  .hero-actions{
    flex-direction:column;
    align-items:stretch;
  }

  .button{
    justify-content:space-between;
  }

  .deco-square{
    right:7%;
    bottom:8%;

    width:38px;
    height:38px;

    border-width:5px;
  }

  .deco-square:after{
    top:7px;
    left:7px;

    width:14px;
    height:14px;
  }


  /* SECTIONS */

  .section{
    padding:85px 7vw;
  }


  /* PRINCIPLES */

  .principles{
    grid-template-columns:1fr;
  }


  /* STATS */

  .stats{
    grid-template-columns:1fr;

    padding:55px 10vw;
  }

  .stat{
    min-height:100px;
  }

  .stat strong{
    font-size:82px;
  }


  /* PROGRAM */

  .day{
    grid-template-columns:1fr;
    gap:25px;
  }

  .day-date b{
    font-size:58px;
  }


  /* ABOUT */

  .about-lead{
    font-size:19px!important;
  }

  .timeline{
    margin-top:75px;
  }

  .timeline-year span{
    font-size:52px;
  }

  .timeline-content{
    padding-bottom:55px;
  }

  .timeline-text h3{
    font-size:30px;
  }

  .timeline-image{
    height:150px;
  }

  .about-line{
    gap:15px;

    flex-wrap:wrap;
  }


  /* RISK */

  .risk{
    padding-left:7vw;
    padding-right:7vw;
  }

  .risk-card{
    padding:28px;
  }

  .risk-card strong{
    font-size:58px;
  }


  /* FINAL */

  .final-cta{
    min-height:600px;

    padding:80px 7vw;
  }


  /* FOOTER */

  footer{
    padding:30px 7vw;
  }

  .footer-links{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
  }

}
