:root {
  --bg: #050505;
  --bg-alt: #090a12;
  --surface: #121218;
  --surface-strong: #0d1116;
  --border: rgba(31, 235, 248, 0.18);
  --border-muted: rgba(255, 255, 255, 0.1);
  --text: #ffffff;
  --text-muted: #9ca3af;
  --cyan: #00f5ff;
  --cyan-soft: rgba(0, 245, 255, 0.12);
  --purple: #8b2ff8;
  --blue: #3b82f6;
  --shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  --radius: 28px;
  --container: min(1180px, calc(100vw - 64px));
  --header-height: 92px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 15%, rgba(120, 39, 214, 0.18), transparent 28%),
    radial-gradient(circle at 54% 32%, rgba(0, 194, 255, 0.08), transparent 22%),
    var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.85;
}

.site-shell {
  position: relative;
}

.construction-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  padding: 24px;
  pointer-events: auto;
}

.construction-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 12, 0.14);
  backdrop-filter: blur(3px) saturate(0.95) brightness(0.82);
  -webkit-backdrop-filter: blur(3px) saturate(0.95) brightness(0.82);
}

.construction-overlay__panel {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(720px, calc(100vw - 40px));
  max-width: calc(100vw - 40px);
  padding: 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
    rgba(7, 9, 14, 0.42);
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
  transform: translate(-50%, -50%);
}

.construction-overlay__eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.construction-overlay__panel h1 {
  margin: 0;
  display: grid;
  justify-items: center;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--text);
  text-wrap: balance;
}

.construction-overlay__panel h1 span {
  display: block;
  width: 100%;
  text-align: center;
}

.construction-overlay__panel p {
  max-width: 52ch;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.08rem);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 18px 0;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease, border-color 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

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

.brand {
  width: 42px;
}

.brand img {
  width: 100%;
  filter: drop-shadow(0 0 24px rgba(0, 245, 255, 0.16));
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2vw, 42px);
}

.desktop-nav a,
.header-cta,
.mobile-menu a,
.scroll-indicator,
.btn,
.inline-link,
.footer-links a,
.footer-domain {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.desktop-nav a,
.mobile-menu a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.92rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.mobile-menu a:hover,
.footer-links a:hover,
.footer-domain:hover {
  color: var(--cyan);
}

.header-cta,
.mobile-menu__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  background: var(--cyan);
  color: #040606;
  font-size: 0.88rem;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.mobile-menu {
  display: none;
}

.section {
  position: relative;
  padding: 124px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section--compact {
  padding-top: 108px;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: calc(var(--header-height) + 54px);
}

.hero__aurora {
  position: absolute;
  inset: 10% 14% auto;
  height: 48vh;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 40%, rgba(87, 28, 194, 0.18), transparent 35%),
    radial-gradient(circle at 62% 75%, rgba(0, 214, 255, 0.12), transparent 28%);
  filter: blur(18px);
  pointer-events: none;
}

.hero__spark {
  position: absolute;
  top: 0;
  width: 4px;
  height: 140px;
  border-radius: 999px;
  opacity: 0.8;
}

.hero__spark::before,
.hero__spark::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0 7%,
      currentColor 7% 11%,
      transparent 11% 17%
    );
  filter: blur(1px);
}

.hero__spark::after {
  filter: blur(10px);
  opacity: 0.5;
}

.hero__spark--left {
  left: 16%;
  color: var(--cyan);
  transform: rotate(14deg);
}

.hero__spark--right {
  right: 18%;
  color: var(--purple);
  transform: rotate(-14deg);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  gap: 26px;
  padding: 60px 0 130px;
  text-align: center;
}

.hero__logo {
  width: min(180px, 24vw);
  filter: drop-shadow(0 0 42px rgba(0, 245, 255, 0.16));
}

.hero__title,
.section-heading h2,
.step-card h3,
.solution-panel h3,
.info-card h3,
.mini-card h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

.hero__title {
  max-width: 920px;
  font-size: clamp(3.2rem, 7vw, 4.5rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero__title span {
  display: block;
}

.gradient-text {
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gradient-text--cyan {
  background: linear-gradient(90deg, #6f6bff, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__subtitle {
  max-width: 700px;
  margin: 0;
  color: var(--text-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.12rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border: 1px solid transparent;
  font-size: 0.9rem;
  font-weight: 800;
}

.btn--primary,
.btn--submit {
  background: var(--cyan);
  color: #030607;
}

.btn--outline {
  border-color: rgba(0, 245, 255, 0.7);
  color: var(--cyan);
  background: transparent;
}

.btn--submit {
  gap: 10px;
  justify-self: start;
  min-width: 250px;
}

.btn--submit svg {
  width: 18px;
  height: 18px;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 38px;
  z-index: 1;
  display: inline-grid;
  justify-items: center;
  gap: 6px;
  transform: translateX(-50%);
  color: rgba(156, 163, 175, 0.82);
  font-size: 0.7rem;
}

.scroll-indicator svg {
  width: 18px;
  height: 18px;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading--narrow {
  max-width: 860px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--cyan);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.section-heading h2 {
  font-size: clamp(2.35rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading p,
.about-copy p,
.info-card p,
.solution-panel p,
.contact-note p,
.contact-info p,
.step-card p,
.mini-card p {
  color: var(--text-muted);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.about-copy {
  display: grid;
  gap: 28px;
  font-size: 1.08rem;
}

.text-accent {
  color: var(--cyan);
}

.about-visual {
  position: relative;
  min-height: 420px;
}

.about-visual__halo {
  position: absolute;
  inset: 22px 0 0 14%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(111, 63, 255, 0.16), transparent 36%),
    radial-gradient(circle at 65% 50%, rgba(0, 245, 255, 0.11), transparent 42%);
}

.about-visual__orb {
  position: absolute;
  top: 74px;
  right: 82px;
  width: 258px;
  aspect-ratio: 1;
  border: 1px solid rgba(0, 245, 255, 0.18);
  border-radius: 50%;
  background: rgba(18, 30, 40, 0.62);
  display: grid;
  place-items: center;
  color: var(--cyan);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.about-visual__orb svg {
  width: 64px;
  height: 64px;
}

.about-visual__node {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(0, 245, 255, 0.16);
  background: rgba(11, 20, 29, 0.72);
  display: grid;
  place-items: center;
}

.about-visual__node svg {
  width: 26px;
  height: 26px;
}

.about-visual__node--chip {
  top: 268px;
  right: 300px;
  color: var(--cyan);
}

.about-visual__node--shield {
  top: 30px;
  right: 28px;
  color: var(--purple);
}

.stats-grid,
.cards-grid {
  display: grid;
  gap: 22px;
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 44px;
}

.stat-card,
.info-card,
.solution-panel,
.mini-card,
.step-card,
.contact-form,
.contact-note {
  border: 1px solid var(--border);
  background: rgba(11, 11, 14, 0.78);
}

.stat-card {
  padding: 30px 28px 22px;
  text-align: center;
}

.stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, var(--purple), var(--blue), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat-card span {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

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

.info-card {
  padding: 32px;
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 245, 255, 0.24);
  background: rgba(0, 245, 255, 0.08);
  color: var(--cyan);
}

.icon-box svg,
.mini-card__icon svg {
  width: 28px;
  height: 28px;
}

.icon-box--large {
  width: 64px;
  height: 64px;
}

.info-card h3,
.solution-panel h3,
.mini-card h3,
.step-card h3 {
  margin-top: 28px;
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
}

.info-card p {
  margin: 0;
  font-size: 1.05rem;
}

.highlight-panel {
  margin-top: 46px;
  padding: 34px 54px;
  border: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--purple), var(--cyan)) 1;
  background: linear-gradient(90deg, rgba(49, 20, 78, 0.22), rgba(0, 245, 255, 0.06));
}

.highlight-panel p {
  margin: 0;
  font-size: clamp(1.1rem, 1.5vw, 1.22rem);
}

.solutions-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 38px;
}

.tab-button {
  min-width: 112px;
  min-height: 46px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.72);
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tab-button.is-active {
  background: var(--cyan);
  color: #020506;
  border-color: var(--cyan);
}

.solution-panel {
  padding: 40px;
}

.solution-panel__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 26px;
}

.solution-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--cyan);
  color: #020607;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.solution-panel p {
  margin: 0 0 18px;
  font-size: 1.05rem;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-size: 0.92rem;
  font-weight: 800;
}

.inline-link::after {
  content: "→";
  font-size: 1.1rem;
}

.map-visual {
  position: relative;
  width: min(450px, 100%);
  height: 680px;
  margin: 12px auto 48px;
}

.map-blob,
.map-island {
  position: absolute;
  border: 2px solid rgba(0, 245, 255, 0.18);
  background: rgba(0, 245, 255, 0.04);
}

.map-blob {
  top: 40px;
  left: 98px;
  width: 238px;
  height: 534px;
  border-radius: 42% 52% 46% 44% / 16% 18% 34% 30%;
  transform: rotate(-17deg);
}

.map-island {
  top: 328px;
  left: 112px;
  width: 74px;
  height: 124px;
  border-radius: 47%;
}

.map-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(0, 245, 255, 0.08), 0 0 24px rgba(0, 245, 255, 0.42);
}

.map-dot--1 {
  top: 150px;
  left: 234px;
}

.map-dot--2 {
  top: 182px;
  left: 314px;
}

.map-dot--3 {
  top: 216px;
  left: 284px;
}

.map-dot--4 {
  top: 264px;
  left: 214px;
}

.map-dot--5 {
  top: 298px;
  left: 250px;
}

.map-dot--6 {
  top: 332px;
  left: 266px;
}

.map-dot--7 {
  top: 380px;
  left: 298px;
}

.map-dot--8 {
  top: 435px;
  left: 234px;
}

.map-dot--9 {
  top: 500px;
  left: 280px;
}

.mini-card,
.step-card {
  position: relative;
  padding: 32px;
}

.mini-card {
  display: grid;
  place-items: center;
  min-height: 142px;
  text-align: center;
}

.mini-card__icon {
  margin-bottom: 18px;
  color: #7b8090;
}

.mini-card h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.18rem;
  line-height: 1.15;
}

.step-card {
  min-height: 240px;
}

.step-card__number {
  position: absolute;
  top: 18px;
  right: 24px;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.4rem, 7vw, 5rem);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
}

.store-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 184px;
  min-height: 62px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.store-button svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
  stroke: none;
}

.store-button span {
  display: grid;
  gap: 2px;
  font-weight: 800;
}

.store-button small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.78fr);
  gap: 48px;
  align-items: start;
}

.contact-form {
  padding: 38px 40px 40px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.contact-form label {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-form label span,
.contact-info__item span,
.footer-links h3,
.footer-social h3 {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 16px 18px;
  outline: 0;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(156, 163, 175, 0.66);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 245, 255, 0.45);
  box-shadow: 0 0 0 4px rgba(0, 245, 255, 0.06);
}

.checkbox-field {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 0;
}

.checkbox-field span {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
}

.form-feedback {
  min-height: 24px;
  margin: 14px 0 0;
  color: var(--cyan);
}

.contact-info h3 {
  margin: 0 0 26px;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-info__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 22px;
}

.contact-info__item a,
.contact-info__item p {
  margin: 6px 0 0;
  font-size: 1.2rem;
  font-weight: 700;
}

.contact-note {
  margin-top: 36px;
  padding: 28px 24px;
}

.site-footer {
  padding: 54px 0 22px;
  background: #040404;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 0.85fr;
  gap: 42px;
  align-items: start;
}

.footer-brand img {
  width: 44px;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-links a,
.footer-bottom p {
  color: var(--text-muted);
}

.footer-links,
.footer-social {
  display: grid;
  gap: 14px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
}

.social-links svg {
  width: 20px;
  height: 20px;
}

.footer-domain {
  color: var(--cyan);
  font-weight: 800;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  :root {
    --container: min(100vw - 36px, 1024px);
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

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

  .mobile-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 18px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: rgba(8, 8, 12, 0.96);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu__cta {
    width: 100%;
  }

  .about-grid,
  .contact-layout,
  .footer-grid,
  .cards-grid--four {
    grid-template-columns: 1fr;
  }

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

  .map-visual {
    margin-top: 30px;
  }

  .section-heading h2 {
    max-width: 12ch;
  }
}

@media (max-width: 760px) {
  :root {
    --container: calc(100vw - 28px);
  }

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

  .brand {
    width: 34px;
  }

  .construction-overlay {
    padding: 16px;
  }

  .construction-overlay__panel {
    width: min(420px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    padding: 22px 18px;
    border-radius: 22px;
  }

  .construction-overlay__panel p {
    margin-top: 14px;
    font-size: 0.96rem;
  }

  .hero {
    min-height: auto;
    padding-top: 124px;
    padding-bottom: 94px;
  }

  .hero__content {
    padding: 68px 0 92px;
  }

  .hero__logo {
    width: 116px;
  }

  .hero__actions,
  .solutions-tabs,
  .store-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .store-button,
  .tab-button {
    width: 100%;
  }

  .section {
    padding: 92px 0;
  }

  .section-heading,
  .section-heading--narrow {
    margin-bottom: 34px;
  }

  .about-visual {
    min-height: 290px;
  }

  .about-visual__orb {
    top: 72px;
    right: 36px;
    width: 188px;
  }

  .about-visual__node--chip {
    top: 210px;
    right: 204px;
  }

  .about-visual__node--shield {
    right: 8px;
  }

  .cards-grid--three,
  .stats-grid,
  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .solution-panel {
    padding: 28px 22px;
  }

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

  .solution-badge {
    justify-self: start;
  }

  .map-visual {
    height: 520px;
  }

  .map-blob {
    top: 18px;
    left: 50%;
    width: 180px;
    height: 406px;
    transform: translateX(-50%) rotate(-16deg);
  }

  .map-island {
    top: 262px;
    left: calc(50% - 118px);
    width: 58px;
    height: 106px;
  }

  .map-dot--1 {
    top: 98px;
    left: calc(50% - 8px);
  }

  .map-dot--2 {
    top: 127px;
    left: calc(50% + 56px);
  }

  .map-dot--3 {
    top: 160px;
    left: calc(50% + 26px);
  }

  .map-dot--4 {
    top: 205px;
    left: calc(50% - 30px);
  }

  .map-dot--5 {
    top: 238px;
    left: calc(50% + 2px);
  }

  .map-dot--6 {
    top: 270px;
    left: calc(50% + 16px);
  }

  .map-dot--7 {
    top: 316px;
    left: calc(50% + 44px);
  }

  .map-dot--8 {
    top: 370px;
    left: calc(50% - 12px);
  }

  .map-dot--9 {
    top: 430px;
    left: calc(50% + 30px);
  }

  .contact-form,
  .contact-note,
  .info-card,
  .mini-card,
  .step-card {
    padding: 24px 18px;
  }

  .btn--submit {
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }

  .footer-grid {
    gap: 26px;
  }
}
