:root {
  --white: #f5f5f7;
  --white-rgb: 245, 245, 247;
  --layout-gutter: 88px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #000;
  color: var(--white);
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

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

/* NAVBAR */
.navbar {
  --nav-progress: 0;
  --nav-hide: 0px;
  --nav-bg-alpha: 1;
  --submenu-space: 0px;
  --nav-surface: #000000;
  --navbar-height: 92px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: var(--navbar-height);
  padding: 16px var(--layout-gutter) calc(16px + var(--submenu-space));
  font-size: 14px;
  background-color: #000000;
  -webkit-backdrop-filter: blur(5px) saturate(135%);
  backdrop-filter: blur(5px) saturate(135%);
  box-shadow: none;
  color: #fff;
  overflow: hidden;
  transform: translateY(calc(-1 * var(--nav-hide)));
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    box-shadow 0.18s ease,
    padding-bottom 0.18s ease;
}

.navbar.navbar-solid,
.navbar:hover,
.navbar.has-submenu {
  background-color: var(--nav-surface);
  color: #fff;
}

.page-shell {
  --page-opacity: 1;
  --page-blur: 0px;
  --page-blur-duration: 0.18s;
  background: #f5f5f7;
  color: #000000;
  opacity: var(--page-opacity);
  filter: blur(var(--page-blur));
  transition: opacity 0.18s ease, filter var(--page-blur-duration) ease;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: 152px;
  min-width: 152px;
  padding-left: 0;
}

.logo a {
  display: inline-flex;
  align-items: center;
  width: 100%;
}

.logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: brightness(0) saturate(100%) invert(97%) sepia(6%) saturate(145%) hue-rotate(180deg) brightness(103%) contrast(96%);
  transition: filter 0.18s ease;
}

.navbar.navbar-solid .logo img,
.navbar:hover .logo img,
.navbar.has-submenu .logo img {
  filter: brightness(0) saturate(100%) invert(97%) sepia(6%) saturate(145%) hue-rotate(180deg) brightness(103%) contrast(96%);
}

.nav-center {
  display: flex;
  align-items: center;
  gap: 42px;
  font-size: 18px;
}

.nav-link {
  position: relative;
  color: #fff;
  opacity: 0.9;
}

.navbar.navbar-solid .nav-link,
.navbar:hover .nav-link,
.navbar.has-submenu .nav-link {
  color: #fff;
}

.nav-link.is-active,
.nav-link:hover {
  opacity: 1;
}

.nav-center a,
.nav-right a {
  transition: opacity 0.2s ease;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-link-plus {
  display: inline-block;
  line-height: 1;
  transition: transform 0.2s ease;
}

.nav-center a:hover,
.nav-right a:hover {
  opacity: 0.65;
}

.contact-link:hover .contact-link-plus {
  transform: rotate(90deg);
}

.nav-center .nav-link:hover,
.nav-center .nav-link.is-active {
  opacity: 1;
}

.nav-right {
  display: flex;
  gap: 56px;
  align-items: center;
  font-size: 18px;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.menu-toggle-lines {
  display: grid;
  gap: 6px;
}

.menu-toggle-lines span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transform-origin: center;
}

.navbar.menu-open .menu-toggle-lines span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.navbar.menu-open .menu-toggle-lines span:nth-child(2) {
  opacity: 0;
}

.navbar.menu-open .menu-toggle-lines span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.submenu-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.25fr);
  gap: 72px;
  padding: 34px var(--layout-gutter) 36px;
  background-color: #000000;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.navbar.has-submenu .submenu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.submenu-column {
  display: grid;
  align-content: start;
  gap: 22px;
  color: #fff;
}

.submenu-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.submenu-description {
  max-width: 34ch;
  font-size: 14px;
  line-height: 1.34;
  white-space: pre-line;
}

.submenu-action {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  width: fit-content;
  padding: 14px 18px;
  background: transparent;
  border: 1px solid #f5f5f7;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.submenu-panel.has-action .submenu-action {
  display: inline-flex;
}

.submenu-action:hover {
  background: #f5f5f7;
  color: #000000;
  border-color: #f5f5f7;
}

.submenu-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.submenu-item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: fit-content;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: normal;
}

.submenu-item::before {
  content: "+";
  font-size: 30px;
  line-height: 0.8;
  font-weight: 400;
  transition: transform 0.2s ease;
}

.submenu-item:hover::before {
  transform: rotate(90deg);
}

/* HERO */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(320px, 1fr);
  align-items: center;
  column-gap: 56px;
  padding: 96px var(--layout-gutter) 48px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.hero-product-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.hero-product-text {
  margin-top: 20px;
  font-size: 20px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.82);
}

.hero-product-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  margin-top: 32px;
  padding: 14px 18px;
  background: transparent;
  border: 1px solid #000000;
  color: #000000;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.hero-product-action:hover {
  background: #000000;
  color: #fff;
  border-color: #000000;
}

.hero-visual {
  position: relative;
  top: 24px;
  z-index: 0;
  width: min(100%, 640px);
  align-self: center;
  justify-self: center;
  pointer-events: none;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero h1 {
  font-size: 120px;
  font-weight: 700;
  letter-spacing: -2px;
}

.hero-subtitle {
  --hero-subtitle-max-size: 56px;
  --hero-subtitle-size: var(--hero-subtitle-max-size);
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: baseline;
  column-gap: 14px;
  margin-top: 40px;
  width: 100%;
  justify-self: start;
  text-align: left;
  color: #000000;
  min-height: 1.2em;
}

.hero-subtitle-static {
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--hero-subtitle-size);
  font-weight: 700;
  font-style: normal;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: none;
  white-space: nowrap;
  flex: 0 0 auto;
}

.hero-subtitle-dynamic {
  display: block;
  font-family: Arial, Helvetica, sans-serif;
  font-size: var(--hero-subtitle-size);
  font-weight: 400;
  font-style: normal;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-transform: none;
  min-width: 0;
  white-space: nowrap;
}

.hero-subtitle-dynamic::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 0.9em;
  margin-left: 8px;
  background-color: #000000;
  vertical-align: -0.08em;
  animation: blink 0.8s steps(1) infinite;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(280px, 1fr) minmax(280px, 1fr);
    column-gap: 36px;
    padding: 132px var(--layout-gutter) 48px;
  }

  .hero-content {
    max-width: 440px;
  }

  .hero-product-title {
    font-size: 44px;
  }

  .hero-product-text {
    font-size: 20px;
  }

  .hero-visual {
    top: 20px;
    width: min(100%, 480px);
    justify-self: start;
  }

  .hero-subtitle {
    --hero-subtitle-max-size: 44px;
    margin-top: 40px;
    column-gap: 12px;
  }

  .hero-subtitle-static {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
  }

  .hero-subtitle-dynamic {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    line-height: 0.98;
    letter-spacing: -0.05em;
  }

  .stats-section {
    padding: 12px var(--layout-gutter) 0;
  }
}

@media (max-width: 720px) {
  .hero {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 200px var(--layout-gutter) 48px;
    justify-content: flex-start;
    overflow: hidden;
    gap: 32px;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 0;
  }

  .hero-product-title {
    font-size: 34px;
    line-height: 1.02;
  }

  .hero-product-text {
    margin-top: 14px;
    max-width: 92%;
    font-size: 18px;
  }

  .hero-product-action {
    margin-top: 24px;
    min-width: 132px;
    padding: 12px 16px;
    font-size: 17px;
  }

  .hero-subtitle {
    --hero-subtitle-max-size: 34px;
    margin-top: 32px;
    align-items: baseline;
    column-gap: 10px;
    max-width: 100%;
  }

  .hero-visual {
    position: relative;
    top: 12px;
    left: auto;
    bottom: auto;
    width: min(100%, 380px);
    align-self: flex-start;
    justify-self: start;
    transform: none;
  }

  .hero-subtitle-static {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    line-height: 1.02;
  }

  .hero-subtitle-dynamic {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    line-height: 1.02;
    letter-spacing: -0.05em;
  }

  .hero-subtitle-dynamic::after {
    width: 6px;
    margin-left: 6px;
  }
}

/* HERO PANEL */
.hero-panel-heading {
  color: #fff;
  padding: 0 var(--layout-gutter);
  margin-top: 22px;
}

.hero-panel-headline {
  display: block;
  max-width: 1400px;
}

.hero-panel-title {
  display: inline;
  font-size: 58px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #000000;
}

.hero-panel-heading .hero-subtitle {
  display: inline;
  margin-top: 0;
  min-height: 0;
  font-size: 58px;
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #000000;
}

.hero-panel-heading .hero-subtitle::after {
  width: 2px;
  height: 0.82em;
  margin-left: 10px;
  background-color: #000000;
  vertical-align: -0.04em;
}

.hero-panel-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 34px;
  margin-top: 54px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  position: relative;
}

.hero-panel-tab {
  position: relative;
  padding-bottom: 2px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.58);
  text-decoration: none;
  transition: color 0.18s ease;
}

.hero-panel-tab.is-active {
  color: rgba(0, 0, 0, 0.58);
}

.hero-panel-tab.is-emphasis {
  color: #000000;
}

.hero-panel-tab-indicator {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  background: #000000;
  transform: translateX(0);
  transition: transform 0.22s ease, width 0.22s ease, opacity 0.18s ease;
  opacity: 1;
  pointer-events: none;
}

.hero-panel-tab.is-active::after {
  content: none;
}

.hero-panel-tabs:not(.is-ready) .hero-panel-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -23px;
  height: 2px;
  background: #f5f5f7;
}

.hero-panel {
  background: #f5f5f7;
  color: #000000;
  padding: 56px var(--layout-gutter) 72px;
  margin-top: 28px;
}

.hero-panel-inner {
  max-width: 2048px;
  margin: 0 auto;
}

.hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 38px;
}

.hero-panel-card {
  background: #f5f5f7;
  color: #000000;
  border: 0px solid rgba(0, 0, 0, 1);
  min-height: 660px;
  padding: 22px 20px 22px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
}

.hero-panel-number {
  font-size: 74px;
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: -0.05em;
  transition: font-weight 0.18s ease, opacity 0.18s ease;
}

.hero-panel-number.is-emphasis {
  font-weight: 700;
}

.hero-panel-visual {
  position: relative;
  min-height: 310px;
  overflow: hidden;
}

.hero-panel-visual.is-image {
  height: 400px;
  min-height: 320px;
}

.hero-panel-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.hero-panel-visual img.is-white-linework {
  filter: brightness(0) invert(0) grayscale(1) contrast(1.08);
  opacity: 0.88;
}

.hero-panel-visual.is-vignette img {
  object-fit: cover;
  object-position: center 46%;
}

.hero-panel-visual.is-vignette::after {
  background:
    radial-gradient(circle at center, transparent 28%, rgba(0, 0, 0, 0.14) 56%, rgba(0, 0, 0, 0.78) 100%);
  z-index: 1;
}

.hero-panel-visual::before,
.hero-panel-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-panel-visual.ring::before {
  inset: 18% 18% 22%;
  border-radius: 50%;
  border: 1px solid rgba(245, 245, 247, 0.18);
  box-shadow:
    0 0 0 22px rgba(245, 245, 247, 0.04),
    0 0 0 52px rgba(245, 245, 247, 0.02);
  transform: perspective(900px) rotateX(68deg);
}

.hero-panel-visual.ring::after {
  inset: 12% 8%;
  background:
    radial-gradient(circle at 50% 50%, rgba(245, 245, 247, 0.88) 0 1px, transparent 1.5px),
    radial-gradient(circle at 48% 52%, rgba(245, 245, 247, 0.3) 0 1px, transparent 1.4px);
  background-size: 18px 18px, 26px 26px;
  background-position: center center, 8px 12px;
  filter: blur(0.2px);
  opacity: 0.42;
  transform: perspective(900px) rotateX(68deg);
  border-radius: 50%;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 0 40%, transparent 41% 100%);
}

.hero-panel-visual.layers::before {
  inset: 16% 18% 16%;
  background:
    radial-gradient(circle at center, rgba(245, 245, 247, 0.82) 0 1px, transparent 1.4px);
  background-size: 14px 14px;
  opacity: 0.28;
  transform: perspective(900px) rotateX(70deg);
  border-radius: 50%;
}

.hero-panel-visual.layers::after {
  inset: 10% 18% 12%;
  background:
    radial-gradient(ellipse at center, transparent 52%, rgba(245, 245, 247, 0.38) 53%, transparent 54%) center 12% / 100% 23% no-repeat,
    radial-gradient(ellipse at center, transparent 52%, rgba(245, 245, 247, 0.32) 53%, transparent 54%) center 32% / 100% 23% no-repeat,
    radial-gradient(ellipse at center, transparent 52%, rgba(245, 245, 247, 0.28) 53%, transparent 54%) center 52% / 100% 23% no-repeat,
    linear-gradient(to bottom, rgba(245, 245, 247, 0.14), rgba(245, 245, 247, 0.02));
  border-radius: 50% 50% 20% 20% / 22% 22% 18% 18%;
  opacity: 0.88;
}

.hero-panel-visual.tunnel::before {
  inset: 8% 4% 12%;
  background:
    radial-gradient(circle at center, rgba(245, 245, 247, 0.9) 0 1px, transparent 1.4px);
  background-size: 12px 12px;
  opacity: 0.32;
  clip-path: polygon(0 20%, 68% 40%, 100% 50%, 68% 60%, 0 80%);
}

.hero-panel-visual.tunnel::after {
  inset: 16% 6% 18%;
  background:
    linear-gradient(12deg, transparent 48%, rgba(245, 245, 247, 0.32) 49%, transparent 50%) left center / 100% 22% no-repeat,
    linear-gradient(-12deg, transparent 48%, rgba(245, 245, 247, 0.24) 49%, transparent 50%) left center / 100% 24% no-repeat,
    radial-gradient(circle at 88% 50%, rgba(245, 245, 247, 0.95) 0 1px, transparent 2px);
  opacity: 0.8;
}

.hero-panel-body {
  align-self: end;
}

.hero-panel-card-title {
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.hero-panel-divider {
  width: 100%;
  height: 1px;
  margin: 18px 0 18px;
  background: rgba(0, 0, 0, 0.18);
}

.hero-panel-text {
  font-size: 16px;
  line-height: 1.28;
  color: rgba(0, 0, 0, 0.78);
  max-width: 94%;
}

.feature-highlight {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(420px, 1.4fr);
  gap: 72px;
  padding: 96px var(--layout-gutter) 110px;
  background: #000000;
  color: #f5f5f7;
  align-items: start;
}

.feature-highlight-meta {
  display: grid;
  gap: 26px;
  align-content: start;
}

.feature-highlight-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-highlight-tag {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 245, 247, 0.82);
}

.feature-highlight-content {
  max-width: 980px;
}

.feature-highlight-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.feature-highlight-text {
  max-width: 900px;
  margin-top: 24px;
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: rgba(245, 245, 247, 0.96);
}

.feature-highlight-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  margin-top: 40px;
  padding: 14px 18px;
  background: #f5f5f7;
  color: #000000;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
}

.page-intro {
  padding: 188px var(--layout-gutter) 96px;
  background: #f5f5f7;
  color: #000000;
}

.page-intro-inner {
  width: 100%;
  max-width: none;
}

.page-intro-eyebrow {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.52);
}

.page-intro-title {
  font-size: 64px;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.page-intro-text {
  width: 100%;
  max-width: none;
  margin-top: 24px;
  font-size: 20px;
  line-height: 1.28;
  color: rgba(0, 0, 0, 0.82);
}

.page-intro-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  width: fit-content;
  margin-top: 28px;
  padding: 14px 18px;
  border: 1px solid #000000;
  background: transparent;
  color: #000000;
  font-size: 18px;
  line-height: 1;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.page-intro-action:hover {
  background: #000000;
  color: #f5f5f7;
  border-color: #000000;
}

.page-intro-sections {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  column-gap: clamp(20px, 3vw, 40px);
  row-gap: 32px;
  margin-top: 64px;
  width: 100%;
  align-items: stretch;
}

.page-intro-section {
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  padding: 28px 24px 26px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #f5f5f7;
}

.page-section-title {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.page-section-text {
  margin-top: 14px;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.72);
}

.page-section-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding-left: 22px;
  font-size: 18px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.9);
}

.stats-section {
  background: #f5f5f7;
  color: #000000;
  padding: 12px var(--layout-gutter) 0;
}

.stats-row {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(340px, 0.9fr);
  gap: 48px;
  align-items: start;
  padding: 56px 0 94px;
  border-top: 1px solid rgba(0, 0, 0, 0.72);
}

.stats-figure {
  display: grid;
  gap: 12px;
}

.stats-value {
  font-size: clamp(76px, 9vw, 108px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.stats-label {
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.stats-copy {
  max-width: 680px;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

@media (max-width: 1024px) {
  .page-intro {
    padding-top: 220px;
  }

  .page-intro-sections {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 36px;
  }

  .page-intro-title {
    font-size: 50px;
  }

  .page-intro-text {
    max-width: 100%;
    font-size: 18px;
  }

  .page-section-title {
    font-size: 28px;
  }

  .hero-panel-title {
    font-size: 46px;
  }

  .hero-panel-heading .hero-subtitle {
    font-size: 46px;
  }

  .hero-panel-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel-card {
    min-height: 520px;
  }

  .feature-highlight {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .feature-highlight-title {
    font-size: 44px;
  }

  .feature-highlight-text {
    font-size: 20px;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

@media (max-width: 720px) {
  .page-intro-sections {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .page-intro {
    padding: 170px 16px 56px;
  }

  .page-intro-title {
    font-size: 38px;
    line-height: 1;
  }

  .page-intro-text {
    margin-top: 18px;
    font-size: 17px;
  }

  .page-intro-sections {
    gap: 32px;
    margin-top: 44px;
  }

  .page-intro-section {
    padding-top: 22px;
  }

  .page-section-title {
    font-size: 24px;
  }

  .page-section-text,
  .page-section-list {
    font-size: 16px;
  }

  .hero-panel {
    padding: 42px 16px 56px;
    margin-top: 20px;
  }

  .hero-panel-heading {
    padding: 0 16px;
    margin-top: 14px;
  }

  .hero-panel-title {
    font-size: 34px;
    line-height: 1.02;
  }

  .hero-panel-heading .hero-subtitle {
    font-size: 34px;
    line-height: 1.02;
  }

  .hero-panel-tabs {
    gap: 14px 18px;
    margin-top: 28px;
    padding-bottom: 18px;
  }

  .hero-panel-tab {
    font-size: 15px;
  }

  .hero-panel-tab.is-active::after {
    content: none;
  }

  .hero-panel-tabs:not(.is-ready) .hero-panel-tab.is-active::after {
    content: "";
    bottom: -19px;
  }

  .hero-panel-grid {
    gap: 14px;
    margin-top: 24px;
  }

  .hero-panel-card {
    min-height: 460px;
    padding: 18px 16px 18px;
  }

  .hero-panel-number {
    font-size: 58px;
  }

  .hero-panel-card-title {
    font-size: 22px;
  }

  .hero-panel-text {
    font-size: 15px;
    max-width: 100%;
  }

  .feature-highlight {
    gap: 24px;
    padding: 64px 32px 80px;
  }

  .feature-highlight-title {
    font-size: 34px;
    line-height: 1.02;
  }

  .feature-highlight-text {
    margin-top: 16px;
    font-size: 18px;
  }

  .feature-highlight-action {
    margin-top: 28px;
    min-width: 132px;
    padding: 12px 16px;
    font-size: 17px;
  }

  .stats-section {
    padding: 8px 32px 0;
  }

  .stats-row {
    gap: 18px;
    padding: 40px 0 64px;
  }

  .stats-value {
    font-size: 72px;
  }

  .stats-label {
    font-size: 16px;
  }

  .stats-copy {
    font-size: 16px;
  }
}

/* FOOTER */
.footer {
  background: #000000;
  padding: 110px var(--layout-gutter) 28px;
  border-top: 1px solid rgba(var(--white-rgb), 0.08);
}

.footer-top {
  display: block;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: 100%;
  gap: 50px;
}

.footer-nav .footer-column:nth-child(2) {
  padding-left: 0;
}

.footer-heading {
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #7d7d7d;
  text-transform: uppercase;
}

.footer-links,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a,
.footer-contact a {
  font-size: 18px;
  line-height: 1;
  color: #fff;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  opacity: 1;
}

.footer-legal a,
.footer-legal p,
.footer-copy {
  font-size: 14px;
  line-height: 1.35;
  color: #9b9b9b;
}

.footer-bottom {
  margin-top: 72px;
}

.footer-copy {
  margin-bottom: 14px;
  font-size: 15px;
  color: #fff;
  text-transform: uppercase;
}

.footer-copy-inline {
  margin-bottom: 0;
  align-self: end;
}

.footer-bottom-nav {
  display: flex;
  justify-content: flex-start;
}

.footer-contact-details {
  display: grid;
  gap: 6px;
}

.footer-contact-details,
.footer-contact-details a {
  font-size: 14px;
  line-height: 1.35;
  color: #fff;
}

.page-intro .footer-contact-details,
.page-intro .footer-contact-details a {
  color: #000000;
}

.contact-page-sections {
  display: block;
  margin-top: 32px;
  width: auto;
}

.contact-page-section {
  display: block;
  height: auto;
  min-width: auto;
  max-width: none;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.contact-page-details {
  display: grid;
  gap: 4px;
  margin-top: 18px;
}

.contact-page-details .page-section-text {
  margin-top: 0;
}

.contact-page-details a {
  color: #000000;
}

@media (max-width: 1380px) {
  :root {
    --layout-gutter: 56px;
  }

  .nav-center,
  .nav-right {
    gap: 28px;
    font-size: 16px;
  }
}

@media (max-width: 1180px) {
  :root {
    --layout-gutter: 40px;
  }

  .nav-center,
  .nav-right {
    gap: 18px;
    font-size: 15px;
  }
}

@media (max-width: 960px) {
  :root {
    --layout-gutter: 48px;
  }

  .navbar {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
  }

  .logo {
    width: 132px;
    min-width: 132px;
  }

  .nav-center,
  .nav-right {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .submenu-panel {
    display: none;
  }

  .mobile-menu {
    display: grid;
    grid-column: 1 / -1;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    padding-top: 0;
    transition: max-height 0.28s ease, opacity 0.2s ease, padding-top 0.2s ease;
  }

  .navbar.menu-open .mobile-menu {
    max-height: 520px;
    opacity: 1;
    pointer-events: auto;
    padding-top: 10px;
  }

  .mobile-menu-section {
    display: grid;
    gap: 12px;
    padding: 18px 0;
    border-top: 1px solid rgba(var(--white-rgb), 0.12);
  }

  .mobile-menu a {
    font-size: 15px;
  }

  .mobile-menu .mobile-featured-link,
  .mobile-menu-section:last-child a {
    font-size: 22px;
    line-height: 1;
  }

  .mobile-featured-link,
  .mobile-contact-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
  }

  .mobile-submenu-trigger,
  .mobile-contact-link::after {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    width: 28px;
    font-size: 28px;
    line-height: 1;
    margin-left: auto;
    transition: transform 0.2s ease;
  }

  .mobile-contact-link::after {
    content: none;
  }

  .mobile-contact-link .contact-link-plus {
    display: none;
  }

  .mobile-featured-link.is-open .mobile-submenu-trigger,
  .mobile-contact-link.is-open::after {
    transform: rotate(45deg);
  }

  .mobile-submenu-details {
    display: grid;
    gap: 14px;
    padding: 10px 0 2px 14px;
  }

  .mobile-submenu-description {
    font-size: 14px;
    line-height: 1.4;
    color: #fff;
    white-space: pre-line;
  }

  .mobile-submenu-link,
  .mobile-submenu-action {
    font-size: 15px;
    line-height: 1.3;
    color: #fff;
    opacity: 0.9;
  }

  .mobile-submenu-action {
    display: inline-flex;
    width: fit-content;
    margin-top: 2px;
    padding: 10px 14px;
    border: 1px solid rgba(245, 245, 247, 0.3);
    transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  }

  .mobile-submenu-action:hover {
    background: #f5f5f7;
    color: #000000;
    border-color: #f5f5f7;
  }

  .hero-panel-heading .hero-subtitle::after {
    width: 12px;
    margin-left: 6px;
  }

  .footer {
    padding-top: 80px;
  }

  .footer-top,
  .footer-bottom {
    gap: 48px;
  }
}

@media (max-width: 720px) {
  :root {
    --layout-gutter: 32px;
  }

  .logo {
    width: 148px;
    min-width: 148px;
  }
}
