:root {
  --bg: #0b0121;
  --card: #20124c;
  --accent: #baf742;
  --white: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.8);
  --text-muted: rgba(255, 255, 255, 0.6);
  --text-card: rgba(255, 255, 255, 0.7);
  --stroke: rgba(255, 255, 255, 0.05);
  --pink-stroke: rgba(248, 164, 255, 0.3);
  --shell: 1160px;
  --side: max(20px, calc((100vw - var(--shell)) / 2));
  --radius-lg: 32px;
}

@font-face {
  font-family: "Muller";
  src: url("../fonts/muller-light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Muller";
  src: url("../fonts/muller-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Muller";
  src: url("../fonts/muller-medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: "Muller", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.45;
  font-variant-ligatures: none;
  font-feature-settings: "liga" 0, "clig" 0;
  text-rendering: geometricPrecision;
}

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

.glyph-plus,
.glyph-safe,
.glyph-symbol {
  font-family: Arial, Helvetica, sans-serif;
}

.glyph-plus {
  margin-right: 0.12em;
}

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

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-72px);
  border-radius: 100px;
  background: var(--accent);
  color: #000;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  transition: transform 160ms ease;
}

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

.section {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 100px;
  background: var(--accent);
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  padding: 14px 24px;
  text-align: center;
  transition:
    background-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: #d6ff62;
  box-shadow: 0 0 34px rgba(186, 247, 66, 0.22);
  transform: translateY(-1px);
}

.button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

body.modal-open {
  overflow: hidden;
}

.hero-section {
  isolation: isolate;
  min-height: 710px;
  background: var(--bg);
}

.hero-section::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  width: 1440px;
  height: 710px;
  transform: translateX(-50%);
  background: url("../images/hero.webp") center top / 1440px 710px no-repeat;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 180px, #000 calc(100% - 180px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 180px, #000 calc(100% - 180px), transparent 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--bg) 0,
    rgba(11, 1, 33, 0.66) 34px,
    rgba(11, 1, 33, 0) 116px,
    rgba(11, 1, 33, 0) calc(100% - 160px),
    var(--bg) 100%
  );
  pointer-events: none;
}

.hero-shell {
  min-height: 710px;
}

.hero-brand {
  position: absolute;
  left: 0;
  top: 80px;
}

.hero-copy {
  position: absolute;
  left: 0;
  top: 192px;
  width: 583px;
}

.hero-copy h1 {
  color: var(--accent);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 64px;
}

.hero-copy h1 strong {
  color: var(--white);
  font-weight: 500;
}

.hero-copy h1 br {
  display: block;
}

.hero-copy p {
  width: 569px;
  margin-top: 16px;
  color: var(--text-soft);
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.hero-button {
  position: absolute;
  left: 0;
  top: 574px;
  width: 200px;
}

.hero-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  border: 1px solid var(--pink-stroke);
  border-radius: 140px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  padding: 12px 24px;
  text-align: center;
  backdrop-filter: blur(11.645px);
  white-space: nowrap;
}

.chip-skus {
  left: 702px;
  top: 69px;
}

.chip-fast {
  left: 580px;
  top: 178px;
  min-width: 134px;
  opacity: 0.7;
  font-size: 16px;
  line-height: 17px;
}

.chip-capex {
  right: 20px;
  top: 281px;
  opacity: 0.7;
  font-size: 16.5px;
  line-height: 17px;
}

.chip-record {
  left: 618px;
  top: 411px;
  opacity: 0.7;
  font-size: 12px;
  line-height: 12px;
  padding-inline: 20px;
}

.chip-api {
  right: 135px;
  top: 388px;
}

.monetization-section {
  padding: 40px 0 38px;
}

h2 {
  color: var(--white);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 52px;
}

.monetization-section h2 {
  max-width: 620px;
}

.monetization-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 60px;
}

.feature-card {
  position: relative;
  isolation: isolate;
  min-height: 429px;
  overflow: hidden;
  border: 1.26px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(520px 380px at 98% 106%, rgba(98, 46, 204, 0.34), transparent 70%),
    radial-gradient(360px 300px at 20% 0%, rgba(78, 34, 168, 0.16), transparent 66%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.008)),
    rgba(9, 1, 29, 0.74);
  padding: 38px;
  backdrop-filter: blur(11.645px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    inset 0 -82px 130px rgba(79, 38, 164, 0.1);
}

.feature-card::before,
.feature-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  filter: blur(52px);
  transform: rotate(-73.87deg);
}

.feature-card::before {
  width: 360px;
  height: 680px;
  right: -285px;
  bottom: -345px;
  background: rgba(112, 48, 224, 0.2);
}

.feature-card::after {
  width: 280px;
  height: 520px;
  left: -225px;
  top: -225px;
  background: rgba(92, 32, 221, 0.12);
}

.feature-card-2 {
  background:
    radial-gradient(500px 320px at 90% -7%, rgba(95, 44, 200, 0.25), transparent 70%),
    radial-gradient(520px 360px at 55% 116%, rgba(92, 46, 189, 0.3), transparent 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.008)),
    rgba(9, 1, 29, 0.74);
}

.feature-card-3 {
  background:
    radial-gradient(520px 380px at 96% 106%, rgba(98, 46, 204, 0.3), transparent 72%),
    radial-gradient(380px 320px at -8% 2%, rgba(82, 36, 178, 0.18), transparent 70%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.008)),
    rgba(9, 1, 29, 0.74);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 48px;
}

h3 {
  color: var(--white);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 32px;
}

.feature-card p,
.scenario-card p,
.bullet p,
.cta-card p {
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}

.feature-card p,
.scenario-card p {
  margin-top: 20px;
}

.scenarios-section {
  padding: 60px 0 36px;
}

.scenarios-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
  margin-top: 60px;
}

.scenario-card {
  position: relative;
  overflow: hidden;
  min-height: 398px;
  border-radius: var(--radius-lg);
  background: var(--card);
  padding: 40px;
  backdrop-filter: blur(11.645px);
}

.scenario-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, #14073d 16%, rgba(25, 10, 73, 0.6) 68%, rgba(32, 18, 76, 0) 100%);
  pointer-events: none;
}

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

.scenario-card p {
  color: var(--text-card);
  max-width: 484px;
}

.lifestyle-card::after {
  content: "";
  position: absolute;
  inset: auto 2px -276px;
  height: 552px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(121, 61, 255, 0.42), transparent 36%),
    radial-gradient(circle at 50% 50%, rgba(186, 247, 66, 0.12), transparent 58%);
}

.lifestyle-icon {
  position: absolute;
  z-index: 1;
}

.icon-a {
  left: 48px;
  bottom: 57px;
  width: 63px;
}

.icon-b {
  left: 157px;
  top: 187px;
  width: 54px;
}

.icon-c {
  right: 101px;
  top: 187px;
  width: 54px;
}

.icon-d {
  right: 101px;
  bottom: 24px;
  width: 77px;
}

.icon-main {
  left: 50%;
  top: 220px;
  width: 124px;
  transform: translateX(-50%);
}

.traffic-card {
  background:
    linear-gradient(180deg, rgba(20, 7, 61, 0.98) 14%, rgba(23, 9, 68, 0.82) 46%, rgba(32, 18, 76, 0) 96%),
    image-set(url("../images/traffic-card-bg-680.webp") 1x, url("../images/traffic-card-bg.webp") 2x) center bottom / cover no-repeat,
    var(--card);
}

.traffic-card::before {
  display: none;
}

.loyalty-card {
  grid-column: 1 / -1;
  min-height: 240px;
}

.loyalty-card .scenario-copy {
  max-width: 100%;
}

.loyalty-card p {
  max-width: none;
}

.loyalty-icons {
  position: absolute;
  left: 40px;
  bottom: 35px;
  z-index: 2;
  width: 87px;
}

.reliability-section {
  height: 596px;
  padding: 60px 0 0;
}

.reliability-layout {
  min-height: 536px;
}

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

.bullet-list {
  display: grid;
  gap: 28px;
  margin-top: 60px;
  max-width: 548px;
}

.bullet-title {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.bullet-title img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.bullet-title h3 {
  line-height: 32px;
}

.bullet p {
  margin-top: 20px;
}

.reliability-art {
  position: absolute;
  left: 510px;
  top: 50%;
  width: 680px;
  max-width: none;
  transform: translateY(-50%) rotate(-20.9deg);
  transform-origin: center;
}

.reliability-section::after {
  content: "";
  position: absolute;
  right: 1%;
  top: 36px;
  width: 460px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(132, 70, 255, 0.25), transparent 65%);
  filter: blur(28px);
}

.cta-section {
  padding: 60px 0 40px;
}

.cta-card {
  position: relative;
  min-height: 307px;
  overflow: hidden;
  border: 1px solid var(--accent);
  border-radius: var(--radius-lg);
  background: rgba(11, 1, 33, 0.82);
  padding: 39px;
  backdrop-filter: blur(11.645px);
}

.cta-card::before,
.cta-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-card::before {
  left: -277px;
  top: -157px;
  width: 526px;
  height: 275px;
  background: radial-gradient(circle, rgba(186, 247, 66, 0.18), transparent 66%);
  filter: blur(34px);
}

.cta-card::after {
  right: -205px;
  bottom: -154px;
  width: 744px;
  height: 230px;
  background: radial-gradient(ellipse, rgba(93, 45, 197, 0.72), transparent 68%);
  filter: blur(18px);
  transform: rotate(3.93deg);
}

.cta-copy {
  position: relative;
  z-index: 1;
  max-width: 1080px;
}

.cta-card h2 {
  color: var(--accent);
  line-height: 48px;
}

.cta-card p {
  margin-top: 20px;
  color: var(--white);
}

.cta-card .button {
  position: relative;
  z-index: 1;
  width: 220px;
  margin-top: 45px;
}

.site-footer {
  position: relative;
  min-height: 284px;
  overflow: hidden;
  background: var(--bg);
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -433px;
  width: 1616px;
  height: 515px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(64, 19, 151, 0.56), transparent 68%);
  filter: blur(28px);
}

.footer-shell {
  position: relative;
  z-index: 1;
  padding-top: 60px;
}

.footer-top {
  display: grid;
  grid-template-columns: 224px auto 1fr;
  align-items: center;
  gap: 76px;
}

.footer-logo {
  width: 224px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
}

.footer-social img {
  width: 32px;
  height: 32px;
}

.footer-email {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.footer-line {
  width: 100%;
  height: 1px;
  margin-top: 64px;
  background: rgba(255, 255, 255, 0.18);
}

.copyright {
  position: absolute;
  right: 0;
  top: 202px;
  width: 121px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 16px;
  font-weight: 300;
  line-height: 22px;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(680px 480px at 64% 24%, rgba(103, 49, 210, 0.28), transparent 70%),
    rgba(6, 0, 19, 0.78);
  backdrop-filter: blur(12px);
}

.contact-modal__panel {
  position: relative;
  width: min(600px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(520px 360px at 100% 100%, rgba(98, 46, 204, 0.32), transparent 72%),
    radial-gradient(360px 300px at 8% 0%, rgba(82, 36, 178, 0.18), transparent 66%),
    rgba(11, 1, 33, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 28px 90px rgba(0, 0, 0, 0.44);
  padding: 38px;
}

.contact-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(248, 164, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.contact-modal__close span,
.contact-modal__close span::after {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 4px;
  background: var(--white);
  content: "";
}

.contact-modal__close span {
  transform: rotate(45deg);
}

.contact-modal__close span::after {
  transform: rotate(90deg);
}

.contact-modal__copy {
  padding-right: 48px;
}

.contact-modal__eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 18px;
}

.contact-modal__copy h2 {
  margin-top: 8px;
  font-size: 38px;
  line-height: 44px;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.form-field,
.messenger-field {
  display: grid;
  gap: 8px;
}

.form-field span,
.messenger-field legend {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.form-field b {
  color: var(--accent);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 500;
}

.form-field input,
.iti input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  line-height: 22px;
  padding: 14px 16px;
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.form-field input:focus,
.iti input:focus {
  border-color: rgba(186, 247, 66, 0.72);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(186, 247, 66, 0.12);
}

.iti {
  width: 100%;
  --iti-path-flags-1x: url("../img/flags.webp");
  --iti-path-flags-2x: url("../img/flags@2x.webp");
  --iti-path-globe-1x: url("../img/globe.webp");
  --iti-path-globe-2x: url("../img/globe@2x.webp");
  --iti-hover-color: rgba(255, 255, 255, 0.08);
  --iti-border-color: rgba(255, 255, 255, 0.12);
  --iti-dialcode-color: rgba(255, 255, 255, 0.64);
  --iti-dropdown-bg: #14073d;
  --iti-spacer-horizontal: 12px;
}

.iti__selected-country {
  border-radius: 16px 0 0 16px;
}

.iti__selected-country-primary {
  padding-left: 14px;
  padding-right: 10px;
}

.iti__selected-dial-code,
.iti__dial-code {
  font-family: Arial, Helvetica, sans-serif;
}

.iti__arrow {
  border-top-color: var(--accent);
}

.iti__dropdown-content {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: #14073d;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.iti__search-input {
  min-height: 44px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  padding-left: 14px;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
}

.iti__search-icon {
  display: none;
}

.iti__search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.iti__country-list {
  scrollbar-color: rgba(186, 247, 66, 0.46) rgba(255, 255, 255, 0.08);
}

.iti__country {
  color: rgba(255, 255, 255, 0.86);
}

.iti__country.iti__highlight {
  background: rgba(186, 247, 66, 0.12);
}

.messenger-field {
  min-width: 0;
  margin: 0;
  border: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.messenger-field legend {
  grid-column: 1 / -1;
  padding: 0;
}

.messenger-field label {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--white);
  cursor: pointer;
  padding: 12px 14px;
}

.messenger-field input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.messenger-field span {
  color: var(--white);
  font-size: 15px;
  line-height: 20px;
}

.form-field--hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-submit {
  width: 190px;
  margin-top: 2px;
  cursor: pointer;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.74;
}

.form-status {
  min-height: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 22px;
}

.form-status.is-success {
  color: var(--accent);
}

.form-status.is-error {
  color: #ff8bb0;
}

@media (max-width: 1180px) {
  :root {
    --shell: 1000px;
  }

  .hero-section,
  .hero-shell {
    min-height: 650px;
  }

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

  .brand img,
  .footer-logo {
    width: 190px;
  }

  .hero-brand {
    top: 58px;
  }

  .hero-copy {
    top: 168px;
    width: 520px;
  }

  .hero-copy h1 {
    font-size: 48px;
    line-height: 56px;
  }

  .hero-copy p {
    width: 500px;
    font-size: 18px;
    line-height: 26px;
  }

  .hero-button {
    top: 532px;
  }

  .chip-skus {
    left: 60%;
  }

  .chip-fast,
  .chip-record {
    left: 52%;
  }

  .chip-api {
    right: 6%;
  }

  .chip-capex {
    right: 2%;
  }

  .monetization-grid,
  .scenarios-grid {
    gap: 24px;
  }

  .feature-card,
  .scenario-card {
    padding: 32px;
  }

  .reliability-layout {
    min-height: 520px;
  }

  .reliability-art {
    left: 430px;
    width: 500px;
  }
}

@media (min-width: 921px) and (max-width: 1439px) {
  .hero-section,
  .hero-shell {
    min-height: 49.3056vw;
  }

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

  .hero-section::before {
    width: 100vw;
    height: 49.3056vw;
    background-position: center top;
    background-size: 100vw 49.3056vw;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8vw, #000 calc(100% - 8vw), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 8vw, #000 calc(100% - 8vw), transparent 100%);
  }

  .hero-shell {
    width: 100%;
    max-width: none;
  }

  .hero-brand {
    left: 9.7222vw;
    top: 5.5556vw;
  }

  .hero-brand img {
    width: 15.646vw;
  }

  .hero-copy {
    left: 9.7222vw;
    top: 13.3333vw;
    width: 40.4861vw;
  }

  .hero-copy h1 {
    font-size: 3.8889vw;
    line-height: 4.4444vw;
  }

  .hero-copy p {
    width: 39.5139vw;
    margin-top: 1.1111vw;
    font-size: 1.3889vw;
    line-height: 1.9444vw;
  }

  .hero-button {
    left: 9.7222vw;
    top: 39.8611vw;
    width: 13.8889vw;
    min-height: 3.0556vw;
    padding: 0.9722vw 1.6667vw;
    font-size: 1.1111vw;
    line-height: 1.1111vw;
  }

  .hero-chip {
    min-height: 3.125vw;
    padding: 0.8333vw 1.6667vw;
    font-size: 1.25vw;
    line-height: 1.5278vw;
  }

  .chip-skus {
    left: 58.4722vw;
    top: 4.7917vw;
  }

  .chip-fast {
    left: 50vw;
    top: 12.3611vw;
    min-width: 9.3056vw;
    font-size: 1.1111vw;
    line-height: 1.1806vw;
  }

  .chip-capex {
    left: 85.8333vw;
    right: auto;
    top: 19.5139vw;
    font-size: 1.1483vw;
    line-height: 1.1806vw;
  }

  .chip-record {
    left: 52.6389vw;
    top: 28.5417vw;
    padding-inline: 1.3889vw;
    font-size: 0.8333vw;
    line-height: 0.8333vw;
  }

  .chip-api {
    left: 79.4444vw;
    right: auto;
    top: 26.9444vw;
  }
}

@media (max-width: 920px) {
  .shell {
    width: min(100% - 32px, 720px);
  }

  .hero-section,
  .hero-shell {
    min-height: 760px;
  }

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

  .hero-section::before {
    left: 0;
    width: 100%;
    height: 620px;
    transform: none;
    background-position: 64% top;
    background-size: auto 620px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 1, 33, 0) 50%, #0b0121 81%);
    pointer-events: none;
  }

  .hero-brand,
  .hero-copy,
  .hero-button {
    position: relative;
    left: auto;
    top: auto;
  }

  .hero-shell {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 42px;
  }

  .hero-copy {
    width: min(560px, 100%);
    margin-top: 78px;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 8vw, 52px);
    line-height: 1.12;
  }

  .hero-copy p {
    width: min(520px, 100%);
    font-size: 18px;
    line-height: 26px;
  }

  .hero-button {
    width: 200px;
    margin-top: 38px;
  }

  .hero-chip {
    display: none;
  }

  h2 {
    font-size: clamp(34px, 6vw, 44px);
    line-height: 1.18;
  }

  h3 {
    font-size: 24px;
    line-height: 30px;
  }

  .monetization-section,
  .scenarios-section,
  .reliability-section,
  .cta-section {
    height: auto;
    padding-block: 56px;
  }

  .monetization-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .feature-card {
    min-height: 300px;
  }

  .feature-icon {
    margin-bottom: 34px;
  }

  .scenarios-grid {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

  .scenario-card {
    min-height: 330px;
  }

  .loyalty-card {
    grid-column: auto;
    min-height: 250px;
  }

  .reliability-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
  }

  .bullet-list {
    margin-top: 40px;
  }

  .reliability-art {
    position: relative;
    left: auto;
    top: auto;
    width: min(520px, 88vw);
    margin: -18px auto 0;
    transform: rotate(-20.9deg);
  }

  .cta-card {
    min-height: 0;
  }

  .cta-card h2 {
    line-height: 1.14;
  }

  .contact-modal {
    padding: 18px;
  }

  .contact-modal__panel {
    max-height: calc(100vh - 36px);
    padding: 30px;
  }

  .contact-modal__copy h2 {
    font-size: 34px;
    line-height: 40px;
  }

  .footer-top {
    grid-template-columns: auto auto;
    gap: 22px 28px;
  }

  .footer-email {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .shell {
    width: min(100% - 28px, 420px);
  }

  .brand img,
  .footer-logo {
    width: 154px;
  }

  .hero-section,
  .hero-shell {
    min-height: 510px;
  }

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

  .hero-section::before {
    height: 520px;
    background-position: 78% -4px;
    background-size: auto 520px;
  }

  .hero-shell {
    padding-top: 30px;
  }

  .hero-copy {
    width: 100%;
    margin-top: 58px;
  }

  .hero-copy h1 {
    max-width: 390px;
    font-size: clamp(31px, 9.1vw, 38px);
    line-height: 1.13;
  }

  .hero-copy h1 br {
    display: block;
  }

  .hero-copy p {
    max-width: 360px;
    font-size: 16px;
    line-height: 23px;
  }

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

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

  .hero-section::after {
    background:
      linear-gradient(90deg, #0b0121 0%, rgba(11, 1, 33, 0.96) 37%, rgba(11, 1, 33, 0.58) 68%, rgba(11, 1, 33, 0.36) 100%),
      linear-gradient(180deg, rgba(11, 1, 33, 0.16) 0%, rgba(11, 1, 33, 0.12) 54%, #0b0121 100%);
  }

  .monetization-section,
  .scenarios-section,
  .reliability-section,
  .cta-section {
    padding-block: 44px;
  }

  h2 {
    font-size: 32px;
    line-height: 38px;
  }

  h3 {
    font-size: 22px;
    line-height: 28px;
  }

  .feature-card,
  .scenario-card,
  .cta-card {
    border-radius: 24px;
    padding: 26px;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 28px;
  }

  .feature-card p,
  .scenario-card p,
  .bullet p,
  .cta-card p {
    font-size: 15px;
    line-height: 21px;
  }

  .scenario-card {
    min-height: 310px;
  }

  .lifestyle-card {
    min-height: 362px;
    padding-bottom: 116px;
  }

  .lifestyle-card .scenario-copy {
    max-width: 100%;
  }

  .lifestyle-icon {
    top: auto;
    bottom: 30px;
    transform: none;
  }

  .icon-a {
    left: 9%;
    width: 52px;
  }

  .icon-b {
    left: 28%;
    width: 58px;
  }

  .icon-main {
    left: 50%;
    bottom: 20px;
    width: 92px;
    transform: translateX(-50%);
  }

  .icon-d {
    right: 28%;
    width: 58px;
  }

  .icon-c {
    right: 9%;
    width: 52px;
  }

  .loyalty-icons {
    left: 26px;
    bottom: 28px;
  }

  .bullet-title img {
    width: 26px;
    height: 26px;
    margin-top: 1px;
  }

  .bullet-title h3 {
    line-height: 29px;
  }

  .cta-card .button {
    width: 100%;
    margin-top: 34px;
  }

  .contact-modal {
    padding: 12px;
  }

  .contact-modal__panel {
    max-height: calc(100vh - 24px);
    border-radius: 24px;
    padding: 24px;
  }

  .contact-modal__close {
    top: 14px;
    right: 14px;
  }

  .contact-modal__copy h2 {
    font-size: 30px;
    line-height: 36px;
  }

  .messenger-field {
    grid-template-columns: 1fr;
  }

  .contact-submit {
    width: 100%;
  }

  .site-footer {
    min-height: 250px;
  }

  .footer-shell {
    padding-top: 42px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-social {
    order: 3;
  }

  .footer-line {
    margin-top: 34px;
  }

  .copyright {
    position: static;
    width: auto;
    margin-top: 28px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
