@charset "UTF-8";

@font-face {
  font-family: "PewCB Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-cyrillic-ext-400-800.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "PewCB Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-cyrillic-400-800.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "PewCB Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/inter-latin-400-800.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "PewCB Roboto Condensed";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/roboto-condensed-cyrillic-ext-400-800.woff2") format("woff2");
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: "PewCB Roboto Condensed";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/roboto-condensed-cyrillic-400-800.woff2") format("woff2");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: "PewCB Roboto Condensed";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("assets/fonts/roboto-condensed-latin-400-800.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --black: #090909;
  --black-soft: #111111;
  --graphite: #1a1a1a;
  --line-dark: rgba(255, 255, 255, 0.14);
  --white: #f8f7f3;
  --warm: #eeebe4;
  --warm-deep: #dfd9cf;
  --ink: #111111;
  --muted-dark: #77746f;
  --muted-light: rgba(248, 247, 243, 0.62);
  --red: #ff3500;
  --red-deep: #d52c00;
  --copper: #a92b16;
  --radius: 22px;
  --shell: min(1440px, calc(100vw - 72px));
  --display: "PewCB Roboto Condensed", "Arial Narrow", sans-serif;
  --text: "PewCB Inter", Inter, "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.45;
  -webkit-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p,
figure,
ol,
ul,
dl,
dd {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 18px;
  color: var(--black);
  background: var(--white);
  border-radius: 8px;
  transform: translateY(-140%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-light {
  color: var(--ink);
  background: var(--warm);
}

.section-warm {
  color: var(--ink);
  background: #dcd7cf;
}

.section-dark {
  color: var(--white);
  background: var(--black);
}

.section-copper {
  color: var(--white);
  background: var(--copper);
}

.eyebrow,
.index-label {
  display: flex;
  align-items: center;
  color: rgba(248, 247, 243, .68);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow b {
  font-weight: 700;
}

.eyebrow--dark,
.index-label {
  color: rgba(17, 17, 17, .54);
}

.index-label--light {
  color: rgba(248, 247, 243, .56);
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .01em;
  line-height: 1;
  text-align: center;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s var(--ease), box-shadow .25s ease;
}

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

.button:focus-visible,
.site-nav a:focus-visible,
.header-secondary:focus-visible,
.field input:focus-visible,
.consent input:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid rgba(255, 53, 0, .42);
  outline-offset: 3px;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.button--primary {
  color: #fff;
  background: var(--red);
  box-shadow: 0 10px 34px rgba(255, 53, 0, .19);
}

.button--primary:hover {
  background: #ff4d1d;
  box-shadow: 0 14px 42px rgba(255, 53, 0, .29);
}

.button--ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, .27);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, .62);
}

.button--small {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 12px;
}

.button--full {
  width: 100%;
}

.play-icon {
  fill: currentColor !important;
  stroke: none !important;
}

.source-note {
  margin-top: 20px;
  color: var(--muted-light);
  font-size: 12px;
}

.source-note--dark {
  color: rgba(17, 17, 17, .52);
}

.fine-print {
  color: var(--muted-light);
  font-size: 13px;
  line-height: 1.55;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 78px;
  border-bottom: 1px solid transparent;
  transition: height .25s ease, background-color .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-color: rgba(255, 255, 255, .12);
  background: rgba(9, 9, 9, .84);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  white-space: nowrap;
}

.brand img {
  width: 118px;
  height: auto;
}

.brand > span {
  padding-left: 13px;
  border-left: 1px solid rgba(255, 255, 255, .22);
  color: rgba(255, 255, 255, .54);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 36px);
}

.site-nav a,
.header-secondary {
  color: rgba(248, 247, 243, .66);
  font-size: 12px;
  font-weight: 650;
  white-space: nowrap;
  transition: color .2s ease;
}

.site-nav a:hover,
.header-secondary:hover {
  color: var(--white);
}

.site-nav .nav-play {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
}

.nav-play svg {
  width: 22px;
  height: 22px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  fill: currentColor;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 1px;
  background: currentColor;
  transition: transform .2s ease, top .2s ease;
}

.menu-toggle span:first-child {
  top: 17px;
}

.menu-toggle span:last-child {
  top: 25px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  padding: 126px 0 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 6%, rgba(255, 53, 0, .12), transparent 31%),
    linear-gradient(180deg, #0b0b0b, #080808);
}

.hero::before {
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .07) 18%, rgba(255, 255, 255, .07) 82%, transparent);
  content: "";
  pointer-events: none;
}

.hero-grid {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
  gap: clamp(42px, 5vw, 88px);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 36px 0;
}

.hero-copy .eyebrow {
  margin-bottom: 34px;
}

.hero h1 {
  max-width: 820px;
  font-family: var(--display);
  font-size: clamp(49px, 5.2vw, 82px);
  font-weight: 690;
  letter-spacing: -.034em;
  line-height: .95;
}

.hero h1 em {
  color: var(--red);
  font-style: normal;
}

.hero-lead {
  max-width: 700px;
  margin-top: 34px;
  color: rgba(248, 247, 243, .72);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.4;
}

.hero-lead strong {
  color: var(--white);
  font-weight: 720;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-facts {
  display: grid;
  max-width: 730px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 46px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.hero-facts > div {
  display: flex;
  min-height: 86px;
  flex-direction: column;
  justify-content: center;
  padding: 12px 18px;
  border-right: 1px solid var(--line-dark);
}

.hero-facts > div:first-child {
  padding-left: 0;
}

.hero-facts > div:last-child {
  border-right: 0;
}

.hero-facts strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.2;
}

.hero-facts span {
  margin-top: 6px;
  color: var(--muted-light);
  font-size: 11px;
}

.hero-media {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  border-radius: 22px 22px 3px 22px;
  background: #171717;
}

.hero-media::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px 12px 2px 12px;
  content: "";
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: 58% center;
  transition: transform 1.2s var(--ease);
}

.hero-media:hover img {
  transform: scale(1.018);
}

.results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.results article {
  position: relative;
  min-height: 244px;
  padding: 30px 32px 34px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, .018);
  transition: background-color .25s ease;
}

.results article:hover {
  background: rgba(255, 255, 255, .045);
}

.results article > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .14em;
}

.results h2 {
  max-width: 350px;
  margin-top: 42px;
  font-family: var(--display);
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1.04;
}

.results p {
  max-width: 380px;
  margin-top: 18px;
  color: var(--muted-light);
  font-size: 14px;
  line-height: 1.5;
}

.hero-note {
  margin-top: 18px;
  color: rgba(248, 247, 243, .42);
  font-size: 11px;
  line-height: 1.5;
}

/* Problem */

.problem {
  padding: 126px 0 132px;
}

.section-heading--wide {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .55fr);
  gap: 60px;
  align-items: end;
}

.section-heading--wide .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 6px;
}

.problem-question {
  display: block;
  color: rgba(17, 17, 17, .68);
  font-size: 17px;
  letter-spacing: 0;
  text-transform: none;
}

.problem-question strong {
  color: var(--red);
  font-weight: 780;
}

.section-heading--wide h2 {
  max-width: 940px;
  font-family: var(--display);
  font-size: clamp(54px, 7.7vw, 118px);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: .88;
}

.section-heading--wide h2 em {
  color: var(--red);
  font-style: normal;
}

.section-heading--wide > p:last-child {
  max-width: 470px;
  padding-bottom: 10px;
  color: rgba(17, 17, 17, .64);
  font-size: 18px;
  line-height: 1.55;
}

.section-heading--wide > p:last-child strong {
  color: var(--ink);
  font-weight: 760;
}

.section-heading--wide > p:last-child .problem-impact {
  display: block;
  margin-top: 14px;
  color: var(--red);
  font-size: 21px;
  line-height: 1.2;
}

.education-gap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 84px;
}

.gap-scale {
  position: absolute;
  top: -34px;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
  align-items: center;
  color: rgba(17, 17, 17, .4);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.gap-scale > span:not(.gap-scale__year) {
  height: 1px;
  margin-inline: 10px;
  background: rgba(17, 17, 17, .18);
}

.gap-card {
  display: flex;
  min-height: 340px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 36px 40px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, .18);
}

.gap-card > span {
  font-family: var(--display);
  font-size: clamp(96px, 12vw, 190px);
  font-weight: 680;
  letter-spacing: -.08em;
  line-height: .72;
}

.gap-card p {
  color: rgba(17, 17, 17, .58);
  font-size: 13px;
  line-height: 1.35;
  text-align: right;
}

.gap-card--digital {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, .02), rgba(17, 17, 17, .08)),
    repeating-linear-gradient(0deg, transparent, transparent 27px, rgba(17, 17, 17, .035) 28px);
}

.gap-card--physical {
  color: #fff;
  border-color: var(--red);
  background: var(--red);
}

.gap-card--physical p {
  color: rgba(255, 255, 255, .72);
}

.gap-arrow {
  display: flex;
  width: 110px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.gap-arrow i {
  width: 1px;
  height: 76px;
  background: rgba(17, 17, 17, .24);
}

.gap-arrow b {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.friction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  border-top: 1px solid rgba(17, 17, 17, .18);
  border-left: 1px solid rgba(17, 17, 17, .18);
}

.friction-grid article {
  min-height: 270px;
  padding: 30px 32px;
  border-right: 1px solid rgba(17, 17, 17, .18);
  border-bottom: 1px solid rgba(17, 17, 17, .18);
}

.friction-number {
  color: var(--red);
  font-size: 11px;
  font-weight: 750;
}

.friction-grid h3 {
  max-width: 360px;
  margin-top: 54px;
  font-family: var(--display);
  font-size: clamp(25px, 2.1vw, 34px);
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1;
}

.friction-grid p {
  max-width: 390px;
  margin-top: 18px;
  color: rgba(17, 17, 17, .59);
  font-size: 14px;
  line-height: 1.55;
}

.friction-grid__accent {
  color: #fff;
  background: var(--ink);
}

.friction-grid__accent p {
  color: rgba(255, 255, 255, .6);
}

/* Solution */

.solution {
  position: relative;
  padding: 126px 0 62px;
  overflow: hidden;
}

.solution::before {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(255, 53, 0, .18);
  border-radius: 50%;
  content: "";
}

.solution-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(480px, 1.1fr);
  gap: clamp(58px, 8vw, 130px);
  align-items: center;
}

.solution-copy .eyebrow {
  margin-bottom: 30px;
}

.solution-copy h2 {
  max-width: 720px;
  font-family: var(--display);
  font-size: clamp(46px, 5.3vw, 78px);
  font-weight: 650;
  letter-spacing: -.055em;
  line-height: .94;
}

.solution-lead {
  max-width: 650px;
  margin-top: 30px;
  color: var(--muted-light);
  font-size: 18px;
  line-height: 1.55;
}

.solution-steps {
  max-width: 700px;
  margin: 36px 0;
  border-top: 1px solid var(--line-dark);
}

.solution-steps li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  border-bottom: 1px solid var(--line-dark);
}

.solution-steps li > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 750;
}

.solution-steps strong,
.solution-steps small {
  display: block;
}

.solution-steps strong {
  font-size: 16px;
}

.solution-steps small {
  margin-top: 5px;
  color: var(--muted-light);
  font-size: 12px;
}

.solution-visual {
  position: relative;
  min-height: 740px;
}

.solution-product {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(88%, 700px);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 50px 70px rgba(0, 0, 0, .55));
}

.product-orbit,
.product-orbit span {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.product-orbit {
  width: 640px;
  height: 640px;
  border-color: rgba(255, 53, 0, .32);
  background: radial-gradient(circle, rgba(255, 53, 0, .12), transparent 60%);
}

.product-orbit span:nth-child(1) {
  width: 82%;
  height: 82%;
}

.product-orbit span:nth-child(2) {
  width: 60%;
  height: 60%;
}

.product-orbit span:nth-child(3) {
  width: 28%;
  height: 28%;
}

.solution-spec {
  position: absolute;
  z-index: 3;
  display: flex;
  min-width: 150px;
  flex-direction: column;
  padding: 15px 18px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 10px;
  background: rgba(12, 12, 12, .78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.solution-spec strong {
  font-family: var(--display);
  font-size: 25px;
  letter-spacing: -.035em;
}

.solution-spec span {
  margin-top: 4px;
  color: var(--muted-light);
  font-size: 10px;
}

.solution-spec--a {
  top: 19%;
  left: 0;
}

.solution-spec--b {
  right: 1%;
  bottom: 28%;
}

.solution-spec--c {
  bottom: 11%;
  left: 7%;
}

.practice-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.practice-strip article {
  min-height: 210px;
  padding: 28px 26px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.practice-strip span {
  display: block;
  color: var(--white);
  font-size: 15px;
  font-weight: 720;
}

.practice-strip p {
  margin-top: 62px;
  color: var(--muted-light);
  font-size: 13px;
  line-height: 1.55;
}

/* Speed and lead form */

.speed {
  padding: 118px 0 104px;
}

.legacy-heading {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 38px;
  align-items: end;
}

.legacy-heading h2,
.legacy-copy h2,
.safety-head h2,
.russia-copy h2,
.specs-heading h2 {
  font-family: var(--display);
  font-size: clamp(52px, 7vw, 104px);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: .9;
}

.speed-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  gap: clamp(54px, 7vw, 110px);
  align-items: center;
  margin-top: 74px;
}

.speed-copy {
  border-top: 1px solid rgba(17, 17, 17, .22);
}

.speed-step {
  display: grid;
  min-height: 130px;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid rgba(17, 17, 17, .22);
}

.speed-step > span {
  color: var(--red);
  font-size: 11px;
  font-weight: 750;
}

.speed-step p {
  max-width: 590px;
  color: rgba(17, 17, 17, .7);
  font-size: 18px;
  line-height: 1.5;
}

.speed-step strong {
  color: var(--red);
  font-weight: 650;
}

.video-card {
  overflow: hidden;
  border-radius: 16px;
  background: var(--black);
  box-shadow: 0 24px 70px rgba(28, 25, 21, .2);
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #111;
}

.video-caption {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.video-caption > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.video-caption i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 5px rgba(255, 53, 0, .12);
}

.presentation-form {
  position: relative;
}

.presentation-form--inline {
  display: grid;
  grid-template-columns: minmax(230px, .85fr) minmax(190px, .7fr) minmax(190px, .7fr) auto;
  gap: 14px;
  align-items: end;
  margin-top: 76px;
  padding: 26px;
  border: 1px solid rgba(17, 17, 17, .2);
  border-radius: 14px;
  background: rgba(255, 255, 255, .22);
}

.inline-form-title span,
.card-form-heading span {
  display: block;
  color: var(--red);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.inline-form-title strong,
.card-form-heading strong {
  display: block;
  margin-top: 7px;
  font-family: var(--display);
  font-size: 20px;
  letter-spacing: -.025em;
  line-height: 1.1;
}

.field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.field > span {
  color: rgba(17, 17, 17, .58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.field i,
.consent i {
  color: var(--red);
  font-style: normal;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-width: 0;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid rgba(17, 17, 17, .2);
  border-radius: 7px;
  outline: 0;
  color: var(--ink);
  background: rgba(255, 255, 255, .66);
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(17, 17, 17, .38);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 53, 0, .09);
}

.field input[aria-invalid="true"],
.consent input[aria-invalid="true"] {
  border-color: #c11616;
  box-shadow: 0 0 0 3px rgba(193, 22, 22, .09);
}

.presentation-form--inline .form-submit {
  min-height: 54px;
  white-space: nowrap;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(17, 17, 17, .5);
  font-size: 10px;
  line-height: 1.45;
}

.presentation-form--inline .consent {
  grid-column: 2 / -1;
}

.consent input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  accent-color: var(--red);
}

.consent a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-status {
  grid-column: 1 / -1;
  padding: 12px 14px;
  border-radius: 7px;
  color: #115322;
  background: #d9f4df;
  font-size: 12px;
}

.form-status.is-error {
  color: #7a1414;
  background: #f7dede;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

/* Educational scenarios */

.tasks {
  padding: 122px 0 130px;
  border-top: 1px solid var(--line-dark);
}

.tasks-heading > div h2 {
  max-width: 1040px;
  color: var(--white);
}

.tasks-heading > p {
  color: var(--muted-light);
}

.tasks-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 74px;
}

.tasks-grid article {
  position: relative;
  min-height: 610px;
  padding: 26px 28px 32px;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 14px;
  background: #111;
}

.tasks-grid figure {
  position: relative;
  height: 340px;
  margin: -26px -28px 28px;
  overflow: hidden;
  background: #1a1a1a;
}

.tasks-grid figure::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(9, 9, 9, .34));
  content: "";
  pointer-events: none;
}

.tasks-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.78) contrast(1.05);
  transition: transform .8s var(--ease), filter .5s ease;
}

.tasks-grid article:hover figure img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.02);
}

.tasks-grid article > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .12em;
}

.tasks-grid h3 {
  margin-top: 18px;
  font-family: var(--display);
  font-size: clamp(35px, 3.6vw, 54px);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: .95;
}

.tasks-grid ul {
  margin-top: 26px;
  border-top: 1px solid var(--line-dark);
}

.tasks-grid li {
  position: relative;
  padding: 12px 0 12px 20px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--muted-light);
  font-size: 13px;
  line-height: 1.45;
}

.tasks-grid li::before {
  position: absolute;
  top: 19px;
  left: 2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

/* Methodical package */

.method {
  padding: 122px 0 130px;
}

.method-heading {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) minmax(300px, .46fr);
  gap: 38px;
  align-items: end;
}

.method-heading h2 {
  max-width: 900px;
  font-family: var(--display);
  font-size: clamp(47px, 5.7vw, 84px);
  font-weight: 650;
  letter-spacing: -.06em;
  line-height: .91;
}

.method-heading > p:last-child {
  max-width: 460px;
  padding-bottom: 7px;
  color: rgba(17, 17, 17, .58);
  font-size: 16px;
  line-height: 1.55;
}

.method-cards {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr .8fr;
  gap: 12px;
  margin-top: 72px;
}

.method-card {
  position: relative;
  min-height: 600px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .28);
}

.method-card > div:first-child {
  position: relative;
  z-index: 2;
}

.method-card span {
  color: var(--red);
  font-size: 10px;
  font-weight: 750;
}

.method-card h3 {
  max-width: 360px;
  margin-top: 22px;
  font-family: var(--display);
  font-size: clamp(31px, 3vw, 44px);
  font-weight: 650;
  letter-spacing: -.045em;
  line-height: .97;
}

.method-card p {
  max-width: 330px;
  margin-top: 15px;
  color: rgba(17, 17, 17, .56);
  font-size: 13px;
  line-height: 1.45;
}

.method-card > img {
  position: absolute;
  right: 8%;
  bottom: -8%;
  width: 70%;
  max-height: 65%;
  object-fit: contain;
  object-position: bottom right;
  filter: drop-shadow(0 24px 24px rgba(17, 17, 17, .16));
  transition: transform .7s var(--ease);
}

.method-card:hover > img {
  transform: translateY(-8px) rotate(-1deg);
}

.method-card--slides > img {
  right: -2%;
  bottom: -2%;
  width: 88%;
  max-height: 61%;
}

.method-card--guide {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

.method-card--guide p {
  color: var(--muted-light);
}

.method-sheet {
  position: absolute !important;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: grid;
  height: 300px;
  grid-template-columns: 1fr auto;
  align-content: center;
  gap: 18px 30px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .16);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .06), transparent),
    repeating-linear-gradient(0deg, transparent, transparent 35px, rgba(255, 255, 255, .055) 36px);
}

.method-sheet i {
  height: 2px;
  background: rgba(255, 255, 255, .26);
}

.method-sheet b {
  display: none;
}

.method-sheet i:nth-child(2) {
  width: 70%;
}

.method-sheet i:nth-child(3) {
  width: 86%;
}

.method-note {
  margin-top: 18px;
  color: rgba(17, 17, 17, .48);
  font-size: 11px;
  line-height: 1.5;
}

/* Learning result */

.learning-result {
  padding: 116px 0;
}

.learning-result-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(430px, 1.1fr);
  gap: clamp(56px, 8vw, 130px);
  align-items: center;
}

.learning-result-copy .index-label {
  margin-bottom: 34px;
}

.learning-result-copy h2 {
  font-family: var(--display);
  font-size: clamp(58px, 7.5vw, 108px);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: .88;
}

.learning-result-copy ul {
  margin-top: 54px;
  border-top: 1px solid rgba(255, 255, 255, .24);
}

.learning-result-copy li {
  display: grid;
  min-height: 102px;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .24);
  color: rgba(255, 255, 255, .78);
  font-size: 15px;
  line-height: 1.5;
}

.learning-result-copy li span {
  color: rgba(255, 255, 255, .5);
  font-size: 10px;
  font-weight: 750;
}

.learning-result-final {
  margin-top: 42px;
  padding-left: 24px;
  border-left: 3px solid #fff;
  font-family: var(--display);
  font-size: clamp(24px, 2.6vw, 38px);
  font-weight: 620;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.learning-result-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 12px;
  background: #8b210f;
}

.learning-result-visual img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* Legacy content */

.consumables {
  padding: 122px 0 126px;
}

.legacy-split {
  display: grid;
  grid-template-columns: minmax(360px, .7fr) minmax(0, 1.3fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.legacy-copy .index-label {
  margin-bottom: 34px;
}

.legacy-copy h2 {
  max-width: 650px;
}

.legacy-lead {
  max-width: 610px;
  margin-top: 34px;
  color: var(--white);
  font-size: 21px;
  line-height: 1.45;
}

.legacy-list {
  max-width: 650px;
  margin: 36px 0 28px;
  border-top: 1px solid var(--line-dark);
}

.legacy-list li {
  position: relative;
  padding: 20px 0 20px 34px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--muted-light);
  font-size: 14px;
  line-height: 1.55;
}

.legacy-list li::before {
  position: absolute;
  top: 26px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.material-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.material-gallery figure {
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  background: #171717;
}

.material-gallery__large {
  grid-column: 1 / -1;
  min-height: 440px !important;
}

.material-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

.material-gallery figure:hover img,
.quality-gallery figure:hover img {
  transform: scale(1.035);
}

.material-gallery__large img {
  object-fit: contain;
  padding: 30px;
}

.precision {
  padding: 122px 0 130px;
}

.legacy-heading--split {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .5fr);
  align-items: end;
}

.legacy-heading--split > div .index-label {
  margin-bottom: 34px;
}

.legacy-heading--split h2 {
  max-width: 930px;
  font-size: clamp(48px, 6vw, 88px);
}

.legacy-heading--split > p {
  max-width: 470px;
  padding-bottom: 8px;
  color: rgba(17, 17, 17, .58);
  font-size: 17px;
  line-height: 1.55;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 74px;
  border-top: 1px solid rgba(17, 17, 17, .2);
  border-left: 1px solid rgba(17, 17, 17, .2);
}

.metric-grid article {
  min-height: 230px;
  padding: 28px 30px;
  border-right: 1px solid rgba(17, 17, 17, .2);
  border-bottom: 1px solid rgba(17, 17, 17, .2);
}

.metric-grid strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(45px, 5vw, 75px);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: .9;
}

.metric-grid span {
  display: block;
  max-width: 300px;
  margin-top: 66px;
  color: rgba(17, 17, 17, .56);
  font-size: 13px;
  line-height: 1.45;
}

.quality-gallery {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  grid-template-rows: repeat(2, 290px);
  gap: 12px;
  margin-top: 28px;
}

.quality-gallery figure {
  overflow: hidden;
  border-radius: 12px;
  background: #ccc;
}

.quality-gallery figure:first-child {
  grid-row: 1 / 3;
}

.quality-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
}

/* Safety */

.safety {
  padding: 118px 0 130px;
}

.safety-head {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) minmax(300px, .5fr);
  gap: 40px;
  align-items: end;
}

.safety-head h2 {
  max-width: 800px;
}

.safety-head > p:last-child {
  max-width: 480px;
  padding-bottom: 8px;
  color: rgba(255, 255, 255, .7);
  font-size: 17px;
  line-height: 1.55;
}

.safety-grid {
  display: grid;
  grid-template-columns: repeat(3, .55fr) 1.35fr;
  margin-top: 72px;
  border-top: 1px solid rgba(255, 255, 255, .22);
  border-left: 1px solid rgba(255, 255, 255, .22);
}

.safety-grid article,
.safety-grid figure {
  min-height: 420px;
  border-right: 1px solid rgba(255, 255, 255, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.safety-grid article {
  padding: 28px 24px;
}

.safety-grid article img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.safety-grid h3 {
  margin-top: 150px;
  font-family: var(--display);
  font-size: 26px;
  font-weight: 650;
  letter-spacing: -.035em;
  line-height: 1.02;
}

.safety-grid p {
  margin-top: 14px;
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
  line-height: 1.5;
}

.safety-grid figure {
  overflow: hidden;
}

.safety-grid figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Russia */

.russia {
  padding: 126px 0;
}

.russia-grid {
  display: grid;
  grid-template-columns: minmax(430px, 1.05fr) minmax(0, .95fr);
  gap: clamp(54px, 7vw, 110px);
  align-items: center;
}

.russia-visual {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border-radius: 14px;
}

.russia-visual > img {
  width: 100%;
  height: 650px;
  object-fit: cover;
}

.russia-mark {
  position: absolute;
  right: 22px;
  bottom: 22px;
  display: flex;
  width: 112px;
  height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--red);
  font-family: var(--display);
  font-size: 36px;
  font-weight: 680;
  letter-spacing: -.04em;
  line-height: .7;
}

.russia-mark span {
  margin-top: 12px;
  font-family: var(--text);
  font-size: 9px;
  letter-spacing: .12em;
}

.russia-copy .index-label {
  margin-bottom: 34px;
}

.russia-points {
  margin-top: 52px;
  border-top: 1px solid var(--line-dark);
}

.russia-points article {
  display: grid;
  min-height: 138px;
  grid-template-columns: 76px 1fr;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
}

.russia-points img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.russia-points h3 {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 650;
  letter-spacing: -.025em;
}

.russia-points p {
  margin-top: 7px;
  color: var(--muted-light);
  font-size: 13px;
}

/* Specs */

.specs {
  padding: 122px 0 130px;
}

.specs-layout {
  display: grid;
  grid-template-columns: minmax(360px, .72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: start;
}

.specs-heading {
  position: sticky;
  top: 100px;
}

.specs-heading .index-label {
  margin-bottom: 34px;
}

.specs-heading > p {
  max-width: 510px;
  margin-top: 28px;
  color: rgba(17, 17, 17, .58);
  font-size: 16px;
  line-height: 1.55;
}

.specs-heading > img {
  width: min(100%, 430px);
  margin-top: 36px;
  mix-blend-mode: multiply;
}

.spec-table {
  border-top: 1px solid rgba(17, 17, 17, .22);
}

.spec-table > div {
  display: grid;
  min-height: 82px;
  grid-template-columns: minmax(220px, .8fr) minmax(260px, 1.2fr);
  gap: 34px;
  align-items: center;
  border-bottom: 1px solid rgba(17, 17, 17, .22);
}

.spec-table dt {
  color: rgba(17, 17, 17, .5);
  font-size: 13px;
}

.spec-table dd {
  font-size: 16px;
  font-weight: 650;
}

/* Contact and footer */

.contact {
  padding: 124px 0 110px;
  border-top: 1px solid var(--line-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, .72fr);
  gap: clamp(60px, 9vw, 145px);
  align-items: start;
}

.contact-copy .index-label {
  margin-bottom: 34px;
}

.contact-copy h2 {
  max-width: 800px;
  font-family: var(--display);
  font-size: clamp(54px, 6.4vw, 96px);
  font-weight: 650;
  letter-spacing: -.065em;
  line-height: .9;
}

.contact-copy > p {
  max-width: 620px;
  margin-top: 30px;
  color: var(--muted-light);
  font-size: 18px;
  line-height: 1.55;
}

.contact-list {
  display: flex;
  flex-direction: column;
  margin-top: 56px;
  border-top: 1px solid var(--line-dark);
}

.contact-list a,
.contact-list span {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-dark);
  color: var(--muted-light);
  font-size: 13px;
}

.contact-list a {
  color: var(--white);
  font-size: 20px;
  font-weight: 650;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-socials a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid var(--line-dark);
  border-radius: 7px;
  color: var(--white);
  font-size: 11px;
  font-weight: 650;
  transition: border-color .2s ease, background-color .2s ease;
}

.contact-socials a:hover {
  border-color: var(--red);
  background: rgba(255, 53, 0, .08);
}

.presentation-form--card {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  background: #131313;
}

.card-form-heading {
  margin-bottom: 30px;
}

.card-form-heading strong {
  color: var(--white);
  font-size: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 12px;
}

.presentation-form--card .field > span {
  color: rgba(255, 255, 255, .52);
}

.presentation-form--card .field input {
  color: var(--white);
  border-color: rgba(255, 255, 255, .16);
  background: #0c0c0c;
}

.presentation-form--card .field input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.presentation-form--card .field input:focus {
  border-color: var(--red);
  background: #0c0c0c;
}

.presentation-form--card .consent {
  margin-top: 24px;
  color: rgba(255, 255, 255, .46);
}

.presentation-form--card .form-submit {
  margin-top: 22px;
}

.form-microcopy {
  margin-top: 14px;
  color: rgba(255, 255, 255, .34);
  font-size: 10px;
  text-align: center;
}

.presentation-form--card .form-status {
  margin-top: 14px;
}

.site-footer {
  padding: 0 0 24px;
  color: var(--white);
  background: var(--black);
}

.footer-top {
  display: grid;
  min-height: 110px;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

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

.footer-top > p {
  max-width: 520px;
  justify-self: center;
  color: var(--muted-light);
  font-size: 12px;
}

.footer-tech {
  color: var(--white);
  font-size: 12px;
  font-weight: 650;
}

.footer-tech span {
  color: var(--red);
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  padding-top: 22px;
  color: rgba(255, 255, 255, .35);
  font-size: 10px;
}

.footer-bottom a {
  justify-self: center;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.mobile-cta {
  position: fixed;
  z-index: 95;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
  min-height: 54px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .32);
  transition: opacity .2s ease, transform .2s ease;
}

.mobile-cta.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(120%);
}

.noscript {
  position: fixed;
  z-index: 200;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px;
  color: #111;
  background: #fff;
  border-radius: 8px;
  font-size: 12px;
  text-align: center;
}

/* Motion */

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Tablet */

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 48px, 1120px);
  }

  .site-nav {
    gap: 18px;
  }

  .site-nav a:nth-child(3) {
    display: none;
  }

  .header-secondary {
    display: none;
  }

  .hero-grid {
    min-height: 620px;
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
    gap: 38px;
  }

  .hero-media,
  .hero-media img {
    min-height: 560px;
  }

  .solution-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .solution-visual {
    min-height: 640px;
  }

  .product-orbit {
    width: 520px;
    height: 520px;
  }

  .presentation-form--inline {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .inline-form-title {
    grid-column: 1 / -1;
  }

  .presentation-form--inline .consent {
    grid-column: 1 / -1;
  }

  .safety-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .safety-grid figure {
    grid-column: 1 / -1;
    min-height: 500px;
  }

  .safety-grid article {
    min-height: 330px;
  }

  .safety-grid h3 {
    margin-top: 90px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 40px, 840px);
  }

  .site-header,
  .site-header.is-scrolled {
    height: 68px;
    background: rgba(9, 9, 9, .94);
    border-bottom-color: rgba(255, 255, 255, .12);
  }

  .header-inner {
    grid-template-columns: auto 1fr auto;
    gap: 16px;
  }

  .menu-toggle {
    position: relative;
    display: block;
    grid-column: 3;
  }

  .header-actions {
    display: none;
  }

  .site-nav {
    position: absolute;
    inset: 68px 0 auto;
    display: flex;
    height: calc(100dvh - 68px);
    padding: 36px 20px 100px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    background: rgba(9, 9, 9, .98);
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .site-nav a,
  .site-nav a:nth-child(3) {
    display: flex;
    min-height: 64px;
    align-items: center;
    border-bottom: 1px solid var(--line-dark);
    color: var(--white);
    font-size: 18px;
  }

  .site-nav .nav-play {
    margin-top: 24px;
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    justify-content: center;
  }

  .hero {
    padding-top: 106px;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
    padding-bottom: 0;
  }

  .hero h1 {
    max-width: 780px;
    font-size: clamp(52px, 9vw, 76px);
  }

  .hero-media,
  .hero-media img {
    min-height: 510px;
  }

  .hero-media img {
    object-position: center;
  }

  .results {
    grid-template-columns: 1fr;
  }

  .results article {
    min-height: 190px;
  }

  .results h2 {
    margin-top: 25px;
  }

  .section-heading--wide {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading--wide > p:last-child {
    max-width: 680px;
  }

  .education-gap {
    grid-template-columns: 1fr 64px 1fr;
  }

  .gap-arrow {
    width: 64px;
  }

  .gap-card {
    min-height: 270px;
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
  }

  .gap-card p {
    text-align: left;
  }

  .friction-grid {
    grid-template-columns: 1fr;
  }

  .friction-grid article {
    min-height: 220px;
  }

  .friction-grid h3 {
    margin-top: 34px;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .solution-copy h2 {
    max-width: 790px;
  }

  .solution-visual {
    min-height: 700px;
  }

  .practice-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .legacy-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .speed-layout {
    grid-template-columns: 1fr;
  }

  .presentation-form--inline {
    grid-template-columns: repeat(2, 1fr);
  }

  .inline-form-title {
    grid-column: 1 / -1;
  }

  .presentation-form--inline .form-submit {
    grid-column: 1 / -1;
  }

  .legacy-split,
  .learning-result-grid,
  .russia-grid,
  .specs-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .tasks-grid {
    grid-template-columns: 1fr;
  }

  .tasks-grid article {
    min-height: 570px;
  }

  .method-heading {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .method-heading > p:last-child {
    max-width: 700px;
  }

  .method-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-card--guide {
    grid-column: 1 / -1;
    min-height: 440px;
  }

  .learning-result-grid {
    gap: 56px;
  }

  .learning-result-visual {
    min-height: 620px;
  }

  .legacy-copy h2 {
    max-width: 790px;
  }

  .material-gallery__large {
    min-height: 360px !important;
  }

  .legacy-heading--split {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .legacy-heading--split > p {
    max-width: 700px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .metric-grid article {
    min-height: 170px;
  }

  .metric-grid span {
    margin-top: 34px;
  }

  .safety-head {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .safety-head > p:last-child {
    max-width: 700px;
  }

  .russia-visual,
  .russia-visual > img {
    min-height: 540px;
    height: 540px;
  }

  .specs-heading {
    position: static;
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 24px;
  }

  .specs-heading .index-label,
  .specs-heading h2 {
    grid-column: 1;
  }

  .specs-heading > p {
    grid-column: 1;
  }

  .specs-heading > img {
    grid-row: 1 / 4;
    grid-column: 2;
    margin: 0;
    align-self: center;
  }

  .contact-grid {
    gap: 70px;
  }

  .mobile-cta {
    display: inline-flex;
  }
}

/* Phone */

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
    --radius: 14px;
  }

  html {
    scroll-padding-top: 78px;
  }

  body {
    font-size: 15px;
  }

  .brand img {
    width: 104px;
  }

  .brand > span {
    display: none;
  }

  .hero {
    padding: 92px 0 34px;
  }

  .hero-copy {
    padding-top: 22px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 24px;
  }

  .hero h1 {
    font-size: clamp(42px, 11.2vw, 56px);
    line-height: .94;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .hero-facts > div,
  .hero-facts > div:first-child {
    min-height: 68px;
    padding: 12px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-facts > div:last-child {
    border-bottom: 0;
  }

  .hero-media,
  .hero-media img {
    min-height: 400px;
  }

  .hero-media {
    border-radius: 14px;
  }

  .hero-media::after {
    inset: 9px;
  }

  .results {
    margin-top: 38px;
  }

  .results article {
    min-height: 200px;
    padding: 24px 22px;
  }

  .results h2 {
    font-size: 29px;
  }

  .problem,
  .tasks,
  .method,
  .learning-result,
  .consumables,
  .precision,
  .safety,
  .russia,
  .specs,
  .contact {
    padding-top: 86px;
    padding-bottom: 90px;
  }

  .solution {
    padding-top: 86px;
  }

  .speed {
    padding: 86px 0;
  }

  .section-heading--wide h2 {
    font-size: clamp(52px, 18vw, 76px);
  }

  .problem .section-heading--wide h2 {
    font-size: clamp(43px, 13vw, 54px);
    letter-spacing: -.045em;
    line-height: .98;
  }

  .section-heading--wide > p:last-child {
    font-size: 16px;
  }

  .education-gap {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 82px;
  }

  .gap-scale {
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
  }

  .gap-scale > span:not(.gap-scale__year) {
    display: none;
  }

  .gap-card {
    min-height: 230px;
  }

  .gap-card > span {
    font-size: 120px;
  }

  .gap-arrow {
    width: 100%;
    height: 64px;
    flex-direction: row;
  }

  .gap-arrow i {
    width: 100%;
    height: 1px;
  }

  .gap-arrow b {
    writing-mode: horizontal-tb;
  }

  .friction-grid article {
    padding: 24px 22px;
  }

  .solution-copy h2,
  .legacy-heading h2,
  .legacy-copy h2,
  .method-heading h2,
  .learning-result-copy h2,
  .safety-head h2,
  .russia-copy h2,
  .specs-heading h2,
  .contact-copy h2 {
    font-size: clamp(46px, 15vw, 66px);
  }

  .legacy-heading,
  .legacy-heading h2 {
    min-width: 0;
  }

  .legacy-heading h2 {
    font-size: clamp(40px, 12.5vw, 52px);
  }

  .solution-lead,
  .legacy-lead {
    font-size: 16px;
  }

  .solution-steps li {
    grid-template-columns: 34px 1fr;
  }

  .solution-visual {
    min-height: 520px;
  }

  .product-orbit {
    width: min(420px, calc(100vw - 36px));
    height: min(420px, calc(100vw - 36px));
  }

  .solution-product {
    width: 105%;
  }

  .solution-spec {
    min-width: 124px;
    padding: 11px 12px;
  }

  .solution-spec strong {
    font-size: 21px;
  }

  .solution-spec--a {
    top: 14%;
  }

  .solution-spec--b {
    bottom: 20%;
  }

  .solution-spec--c {
    bottom: 5%;
    left: 0;
  }

  .practice-strip {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .practice-strip article {
    min-height: 160px;
  }

  .practice-strip p {
    margin-top: 38px;
  }

  .speed-layout {
    gap: 40px;
    margin-top: 46px;
  }

  .speed-step {
    min-height: 120px;
    grid-template-columns: 36px 1fr;
    gap: 14px;
  }

  .speed-step p {
    font-size: 15px;
  }

  .presentation-form--inline {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 46px;
    padding: 20px;
  }

  .inline-form-title,
  .presentation-form--inline .form-submit,
  .presentation-form--inline .consent {
    grid-column: 1;
  }

  .legacy-split,
  .learning-result-grid,
  .russia-grid,
  .specs-layout,
  .contact-grid {
    gap: 50px;
  }

  .tasks-grid {
    gap: 10px;
    margin-top: 46px;
  }

  .tasks-grid article {
    min-height: 520px;
    padding: 22px;
  }

  .tasks-grid figure {
    height: 280px;
    margin: -22px -22px 24px;
  }

  .tasks-grid h3 {
    font-size: 38px;
  }

  .method-cards {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .method-card,
  .method-card--guide {
    min-height: 500px;
    grid-column: 1;
    padding: 24px;
  }

  .method-sheet {
    right: 22px;
    bottom: 22px;
    left: 22px;
    height: 250px;
  }

  .learning-result-copy ul {
    margin-top: 38px;
  }

  .learning-result-copy li {
    grid-template-columns: 34px 1fr;
  }

  .learning-result-visual {
    min-height: 430px;
  }

  .material-gallery {
    grid-template-columns: 1fr;
  }

  .material-gallery__large {
    grid-column: 1;
    min-height: 300px !important;
  }

  .material-gallery figure {
    min-height: 230px;
  }

  .quality-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 240px);
  }

  .quality-gallery figure:first-child {
    grid-row: auto;
  }

  .safety-grid {
    grid-template-columns: 1fr;
  }

  .safety-grid article,
  .safety-grid figure {
    min-height: 270px;
  }

  .safety-grid figure {
    grid-column: 1;
  }

  .safety-grid h3 {
    margin-top: 60px;
  }

  .russia-visual,
  .russia-visual > img {
    min-height: 400px;
    height: 400px;
  }

  .russia-points article {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .russia-points img {
    width: 44px;
    height: 44px;
  }

  .specs-heading {
    display: block;
  }

  .specs-heading > img {
    width: 78%;
    margin: 28px auto 0;
  }

  .spec-table > div {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 18px 0;
  }

  .contact-list a {
    font-size: 17px;
  }

  .presentation-form--card {
    padding: 22px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .footer-top {
    display: flex;
    padding: 26px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }

  .footer-top > p {
    justify-self: start;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 76px;
  }

  .footer-bottom a {
    justify-self: start;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 40px;
  }

  .solution-visual {
    min-height: 470px;
  }

  .product-orbit {
    width: 350px;
    height: 350px;
  }
}

/* Compact desktop density */

@media (min-width: 901px) {
  .hero {
    padding: 94px 0 30px;
  }

  .hero-grid {
    min-height: 590px;
    gap: clamp(34px, 4vw, 64px);
  }

  .hero-copy {
    max-width: 760px;
    padding: 20px 0;
  }

  .hero-copy .eyebrow {
    margin-bottom: 22px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(46px, 4.55vw, 70px);
    line-height: .94;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: clamp(16px, 1.3vw, 20px);
  }

  .hero-actions {
    margin-top: 26px;
  }

  .hero-facts {
    margin-top: 30px;
  }

  .hero-facts > div {
    min-height: 70px;
    padding: 10px 14px;
  }

  .hero-media,
  .hero-media img {
    min-height: 540px;
  }

  .results {
    margin-top: 34px;
  }

  .results article {
    min-height: 184px;
    padding: 22px 24px 24px;
  }

  .results h2 {
    margin-top: 22px;
    font-size: clamp(21px, 1.75vw, 28px);
  }

  .results p {
    margin-top: 12px;
    font-size: 13px;
  }

  .hero-note {
    margin-top: 14px;
  }

  .problem,
  .solution,
  .speed,
  .tasks,
  .method,
  .learning-result,
  .consumables,
  .precision,
  .safety,
  .russia,
  .specs,
  .contact {
    padding-top: 92px;
    padding-bottom: 96px;
  }

  .section-heading--wide {
    gap: 42px;
  }

  .problem .section-heading--wide h2 {
    max-width: 900px;
    font-size: clamp(44px, 4.8vw, 72px);
    letter-spacing: -.05em;
    line-height: .95;
  }

  .section-heading--wide > p:last-child {
    font-size: 16px;
  }

  .education-gap {
    gap: 20px;
    margin-top: 58px;
  }

  .gap-card {
    min-height: 280px;
    padding: 28px 32px;
  }

  .gap-card > span {
    font-size: clamp(82px, 9vw, 145px);
  }

  .gap-arrow {
    width: 84px;
  }

  .gap-arrow i {
    height: 58px;
  }

  .friction-grid {
    margin-top: 28px;
  }

  .friction-grid article {
    min-height: 230px;
    padding: 24px 26px;
  }

  .friction-grid h3 {
    margin-top: 34px;
    font-size: clamp(23px, 1.8vw, 30px);
  }

  .solution-grid {
    gap: clamp(42px, 5vw, 78px);
  }

  .solution-copy h2 {
    font-size: clamp(42px, 4.6vw, 68px);
  }

  .solution-steps li {
    min-height: 72px;
  }

  .solution-visual {
    min-height: 620px;
  }

  .product-orbit {
    width: 560px;
    height: 560px;
  }

  .practice-strip {
    margin-top: 48px;
  }

  .practice-strip article {
    min-height: 168px;
    padding: 22px;
  }

  .practice-strip p {
    margin-top: 36px;
  }

  .legacy-heading h2,
  .legacy-copy h2,
  .safety-head h2,
  .russia-copy h2,
  .specs-heading h2 {
    font-size: clamp(46px, 5.8vw, 86px);
  }

  .speed-layout {
    gap: clamp(42px, 5vw, 76px);
    margin-top: 52px;
  }

  .speed-step {
    min-height: 105px;
  }

  .speed-step p {
    font-size: 16px;
  }

  .presentation-form--inline {
    margin-top: 52px;
    padding: 22px;
  }

  .tasks-grid {
    margin-top: 52px;
  }

  .tasks-grid article {
    min-height: 500px;
    padding: 22px 24px 26px;
  }

  .tasks-grid figure {
    height: 260px;
    margin: -22px -24px 24px;
  }

  .tasks-grid h3 {
    font-size: clamp(32px, 3vw, 46px);
  }

  .tasks-grid ul {
    margin-top: 18px;
  }

  .method-heading h2 {
    font-size: clamp(44px, 5vw, 74px);
  }

  .method-cards {
    margin-top: 52px;
  }

  .method-card {
    min-height: 500px;
    padding: 26px;
  }

  .method-card h3 {
    margin-top: 18px;
    font-size: clamp(29px, 2.6vw, 38px);
  }

  .method-sheet {
    right: 24px;
    bottom: 24px;
    left: 24px;
    height: 240px;
    padding: 28px;
  }

  .learning-result-grid {
    gap: clamp(42px, 6vw, 90px);
  }

  .learning-result-copy h2 {
    font-size: clamp(48px, 6vw, 88px);
  }

  .learning-result-copy ul {
    margin-top: 38px;
  }

  .learning-result-copy li {
    min-height: 84px;
  }

  .learning-result-final {
    margin-top: 32px;
    font-size: clamp(22px, 2.2vw, 32px);
  }

  .learning-result-visual {
    min-height: 540px;
  }

  .legacy-split {
    gap: clamp(42px, 6vw, 90px);
  }

  .material-gallery figure {
    min-height: 220px;
  }

  .material-gallery__large {
    min-height: 360px !important;
  }

  .legacy-heading--split h2 {
    font-size: clamp(44px, 5.2vw, 76px);
  }

  .metric-grid {
    margin-top: 52px;
  }

  .metric-grid article {
    min-height: 180px;
    padding: 24px;
  }

  .metric-grid span {
    margin-top: 38px;
  }

  .quality-gallery {
    grid-template-rows: repeat(2, 240px);
    margin-top: 24px;
  }

  .safety-head {
    gap: 32px;
  }

  .safety-grid {
    margin-top: 52px;
  }

  .safety-grid article,
  .safety-grid figure {
    min-height: 340px;
  }

  .safety-grid h3 {
    margin-top: 96px;
  }

  .russia-grid {
    gap: clamp(42px, 5vw, 76px);
  }

  .russia-visual,
  .russia-visual > img {
    min-height: 520px;
    height: 520px;
  }

  .russia-points {
    margin-top: 38px;
  }

  .russia-points article {
    min-height: 108px;
  }

  .specs-layout {
    gap: clamp(42px, 6vw, 90px);
  }

  .specs-heading .index-label {
    margin-bottom: 24px;
  }

  .specs-heading > p {
    margin-top: 22px;
  }

  .specs-heading > img {
    width: min(100%, 360px);
    margin-top: 26px;
  }

  .spec-table > div {
    min-height: 68px;
  }

  .contact-grid {
    gap: clamp(44px, 6vw, 92px);
  }

  .contact-copy h2 {
    font-size: clamp(48px, 5.4vw, 78px);
  }

  .contact-copy > p {
    margin-top: 22px;
    font-size: 16px;
  }

  .contact-list {
    margin-top: 38px;
  }

  .presentation-form--card {
    padding: 28px;
  }
}
