@font-face {
  font-family: "Montserrat";
  src: url("assets/Montserrat-Variable.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #050914;
  --ink-soft: #101820;
  --panel: #1b262c;
  --navy: #0f4c75;
  --blue: #3282b8;
  --ice: #bbe1fa;
  --white: #ffffff;
  --muted: rgba(187, 225, 250, 0.72);
  --border: rgba(187, 225, 250, 0.15);
  --font-display: "Montserrat", "Aptos Display", "Segoe UI", sans-serif;
  --font-body: "Montserrat", "Aptos", "Segoe UI", sans-serif;
  --font-accent: "Outfit", "Montserrat", "Segoe UI", sans-serif;
  color-scheme: dark;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

button,
a {
  font: inherit;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  isolation: isolate;
  position: relative;
  overflow: clip;
  min-height: 100vh;
  background:
    radial-gradient(1100px 420px at 20% 0%, rgba(27, 38, 44, 0.96) 0%, rgba(16, 24, 32, 0.78) 42%, transparent 74%),
    radial-gradient(900px 900px at 92% 48%, rgba(15, 76, 117, 0.1), transparent 72%),
    linear-gradient(180deg, #07101a 0%, #050914 17%, #050914 100%);
}

.page-stars {
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  height: 100%;
  background: url("assets/page-stars.png") center top / 100% 100% no-repeat;
  mix-blend-mode: screen;
  opacity: 0.34;
  pointer-events: none;
}

.sparkle-field {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.sparkle {
  position: absolute;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: #bbe1fa;
  opacity: 0.12;
  animation: star-sparkle var(--sparkle-duration, 6s) ease-in-out var(--sparkle-delay, 0s) infinite;
}

@keyframes star-sparkle {
  0%, 100% { opacity: 0.06; transform: scale(0.75); }
  50% { opacity: 0.34; transform: scale(1.15); }
}

main {
  position: relative;
  z-index: 1;
}

main section[id] {
  scroll-margin-top: 94px;
}

.shell {
  width: min(1280px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 0;
  background: url("assets/navbar-texture.png") center / 100% 100% no-repeat;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.nav {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 94px;
  padding-block: 24px;
  gap: 28px;
}

.nav > .brand {
  justify-self: start;
}

.brand {
  display: flex;
  align-items: center;
  gap: 5px;
  flex: 0 0 auto;
}

.brand__mark,
.brand__word {
  position: relative;
  display: block;
  overflow: hidden;
  flex: 0 0 auto;
}

.brand__mark {
  width: 30px;
  height: 20px;
}

.brand__mark img {
  position: absolute;
  inset: -0.08% auto auto 0;
  width: 100%;
  height: 133.5%;
  max-width: none;
}

.brand__word {
  width: 72px;
  height: 12px;
}

.brand__word img {
  position: absolute;
  top: -433.67%;
  left: 0;
  width: 100%;
  height: 534%;
  max-width: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  grid-column: 2;
  margin-left: 0;
  color: var(--ice);
  font-size: 14px;
  font-weight: 500;
}

.nav-menu a {
  position: relative;
  padding-block: 8px;
  transition: color 180ms ease;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active {
  color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.nav-menu a.is-active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(15, 76, 117, 0.18);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 32px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

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

.button--primary {
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(50, 130, 184, 0.14);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: #3a94cf;
  box-shadow: 0 16px 34px rgba(50, 130, 184, 0.27);
}

.button--secondary {
  border-color: var(--blue);
  background: rgba(5, 9, 20, 0.25);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(50, 130, 184, 0.14);
}

.nav-contact {
  grid-column: 3;
  justify-self: end;
  margin-left: 0;
  min-height: 46px;
  padding-block: 15px;
  box-shadow: 0 0 34px rgba(50, 130, 184, 0.34);
}

.hero {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 580px);
  align-items: center;
  min-height: calc(100vh - 94px);
  padding-block: 110px;
}

.hero__content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  max-width: 650px;
}

.hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 4.17vw, 60px);
  font-weight: 800;
  line-height: 1.21;
  letter-spacing: -1px;
}

.hero__content > p {
  max-width: 670px;
  margin: 0;
  color: var(--ice);
  font-size: 20px;
  line-height: 1.25;
}

.mobile-break {
  display: none;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero__art {
  position: absolute;
  z-index: 2;
  top: -94px;
  right: -80px;
  bottom: 0;
  width: 620px;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  top: 0;
  right: 0;
  width: 487px;
  height: 1024px;
  max-width: none;
}

@media (min-width: 1441px) {
  .hero__shape {
    right: calc(720px - 50vw);
    width: calc(50vw - 233px);
  }
}

.hero__phone-window {
  position: absolute;
  top: 145px;
  right: 60px;
  width: 521px;
  height: 708px;
  overflow: hidden;
}

.hero__phone {
  position: absolute;
  top: -7.58%;
  left: -38.05%;
  width: 172.18%;
  height: 113.12%;
  max-width: none;
}

.section {
  position: relative;
  z-index: 3;
  padding-block: 100px;
}

.section--border {
  border-top: 1px solid rgba(50, 130, 184, 0.15);
}

.section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 0 auto 30px;
  text-align: center;
}

.section-heading--wide {
  margin-bottom: 60px;
}

.eyebrow {
  margin: 0;
  color: var(--blue);
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-accent);
  font-size: clamp(30px, 2.5vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.9px;
}

.section-heading > p:not(.eyebrow) {
  margin: 0;
  color: rgba(187, 225, 250, 0.72);
  font-size: 14px;
  line-height: 1.55;
}

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

.comparison-card {
  position: relative;
  display: flex;
  min-height: 506px;
  flex-direction: column;
  gap: 16px;
  padding: 42px 34px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(146deg, rgba(15, 76, 117, 0.18), rgba(27, 38, 44, 0.82));
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.24);
}

.comparison-card--paper {
  border-color: rgba(106, 145, 162, 0.42);
  background: linear-gradient(117deg, rgba(92, 18, 31, 0.23), rgba(20, 27, 36, 0.82));
}

.comparison-card--immersive {
  border: 2px solid rgba(24, 154, 218, 0.5);
  background: linear-gradient(131deg, rgba(5, 77, 119, 0.48), #111c25);
}

.comparison-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(50, 130, 184, 0.2);
}

.comparison-card__title h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
}

.icon-tile {
  display: grid;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(50, 130, 184, 0.3);
  border-radius: 8px;
  background: rgba(50, 130, 184, 0.2);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.icon-tile--muted {
  border-color: rgba(187, 225, 250, 0.12);
  background: rgba(187, 225, 250, 0.07);
}

.icon-tile img {
  width: 24px;
  height: 24px;
}

.paper-menu {
  display: grid;
  gap: 16px;
  padding: 4px 2px 0;
}

.paper-menu__item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 2px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.paper-menu__item div {
  display: grid;
  gap: 5px;
}

.paper-menu__item strong {
  font-size: 14px;
}

.paper-menu__item span,
.paper-menu__item b {
  color: rgba(187, 225, 250, 0.62);
  font-size: 12px;
  line-height: 1.45;
}

.ar-feature {
  display: flex;
  gap: 12px;
  padding: 17px;
  border: 1px solid rgba(50, 130, 184, 0.4);
  border-radius: 12px;
  background: rgba(15, 76, 117, 0.6);
}

.ar-badge {
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 4px;
  background: linear-gradient(135deg, #3282b8, #bbe1fa);
  color: var(--panel);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
}

.ar-feature strong {
  display: block;
  margin-bottom: 2px;
  font-size: 14px;
}

.ar-feature p {
  margin: 0;
  color: rgba(187, 225, 250, 0.8);
  font-size: 12px;
  line-height: 1.35;
}

.result-strip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 14px 13px;
  border: 1px solid rgba(50, 130, 184, 0.2);
  border-radius: 8px;
  background: rgba(15, 76, 117, 0.2);
}

.result-strip--danger {
  border-color: rgba(139, 8, 54, 0.25);
  background: rgba(77, 2, 24, 0.12);
}

.result-strip img {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.result-strip p {
  margin: 0;
  color: var(--ice);
  font-size: 12px;
  line-height: 1.35;
}

.comparison-card__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(50, 130, 184, 0.1);
  color: rgba(187, 225, 250, 0.62);
  font-size: 11px;
}

.comparison-card__stats b {
  position: absolute;
  top: 18px;
  right: 32px;
  margin: 0;
  padding: 5px 11px;
  border: 1px solid rgba(255, 0, 80, 0.65);
  border-radius: 4px;
  background: rgba(7, 16, 26, 0.52);
  color: #ff3d71;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.comparison-card--immersive .comparison-card__stats b {
  border-color: rgba(0, 212, 146, 0.55);
  color: #00d492;
}

.pain-heading {
  margin: 30px 0 25px;
  font-family: var(--font-accent);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.pain-card {
  min-width: 0;
  padding: 25px;
  border: 1px solid rgba(187, 225, 250, 0.09);
  border-radius: 12px;
  background: rgba(15, 76, 117, 0.15);
}

.pain-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  place-items: center;
  border: 1px solid rgba(139, 8, 54, 0.3);
  border-radius: 8px;
  background: rgba(77, 2, 24, 0.2);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.pain-card__icon img {
  width: 24px;
  height: 24px;
}

.pain-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.5;
}

.pain-card p {
  margin: 0;
  color: rgba(187, 225, 250, 0.7);
  font-size: 12px;
  line-height: 1.63;
}

.how {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.how .section-heading {
  margin-bottom: 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.step-card {
  position: relative;
  display: flex;
  min-height: 310px;
  flex-direction: column;
  gap: 16px;
  padding: 33px;
  border: 1px solid rgba(15, 76, 117, 0.4);
  border-radius: 16px;
  background: linear-gradient(102deg, rgba(15, 76, 117, 0.25), rgba(27, 38, 44, 0.4));
}

.step-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.step-card__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #0f4c75, #3282b8);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
}

.step-card__icon img {
  width: 32px;
  height: 32px;
}

.step-card__number {
  color: rgba(15, 76, 117, 0.45);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
}

.step-card h3 {
  margin: 16px 0 0;
  font-size: 20px;
  line-height: 1.4;
}

.step-card p {
  margin: 0;
  color: rgba(187, 225, 250, 0.7);
  font-size: 14px;
  line-height: 1.625;
}

.ar-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 505px;
  min-height: 405px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(116deg, rgba(15, 76, 117, 0.25), rgba(27, 38, 44, 0.4));
  box-shadow: 0 8px 32px rgba(15, 76, 117, 0.2);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms ease, box-shadow 280ms ease;
}

.ar-showcase__content {
  padding: 48px;
}

.mini-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 4px;
  background: #0f4c75;
  color: var(--ice);
  font-size: 12px;
  font-weight: 700;
}

.mini-tag img {
  width: 14px;
  height: 14px;
}

.ar-showcase h3 {
  margin: 16px 0;
  font-size: 30px;
  line-height: 1.2;
}

.ar-showcase__content > p {
  margin: 0;
  color: rgba(187, 225, 250, 0.8);
  font-size: 14px;
  line-height: 1.5;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 28px;
}

.benefit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.benefit > span {
  display: grid;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: rgba(50, 130, 184, 0.2);
  color: var(--ice);
  font-family: var(--font-accent);
  font-size: 12px;
  font-weight: 700;
}

.benefit strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
}

.benefit p {
  margin: 0;
  color: rgba(187, 225, 250, 0.6);
  font-size: 11px;
  line-height: 1.3;
}

.ar-showcase__image {
  position: relative;
  overflow: hidden;
}

.ar-showcase__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #0a1826, transparent 44%);
}

.ar-showcase__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-label {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  display: grid;
  gap: 2px;
  padding: 13px;
  border: 1px solid rgba(50, 130, 184, 0.3);
  border-radius: 8px;
  background: rgba(27, 38, 44, 0.8);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.live-label strong {
  color: #00d492;
  font-size: 12px;
}

.live-label i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: #00d492;
}

.live-label span {
  color: rgba(187, 225, 250, 0.7);
  font-size: 10px;
}

.details {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 150px;
  padding-block: 100px;
}

.details::before,
.details::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(50, 130, 184, 0.1);
  filter: blur(70px);
}

.details::before {
  top: -120px;
  right: -300px;
}

.details::after {
  bottom: -120px;
  right: -300px;
}

.detail-row {
  display: grid;
  grid-template-columns: 544px minmax(0, 1fr);
  align-items: center;
  gap: 64px;
  min-height: 332px;
}

.detail-row--reverse {
  grid-template-columns: minmax(0, 1fr) 544px;
}

.detail-visual {
  position: relative;
  height: 332px;
  overflow: hidden;
  border-radius: 30px;
  background: rgba(15, 76, 117, 0.08);
  border: 1px solid transparent;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 280ms ease, box-shadow 280ms ease;
}

.detail-visual > img:not(.loading-visual__tablet):not(.loading-visual__phone) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.detail-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--blue) !important;
  font-size: 12px !important;
  font-weight: 700;
  line-height: 1 !important;
  text-transform: uppercase;
}

.detail-kicker img {
  width: 20px;
  height: 20px;
}

.detail-copy h2 {
  margin: 0;
  font-size: clamp(30px, 2.5vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.6px;
}

.detail-copy > p:last-child {
  margin: 0;
  color: rgba(187, 225, 250, 0.85);
  font-size: 18px;
  line-height: 1.45;
}

.loading-visual {
  isolation: isolate;
}

.loading-visual__base {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.loading-visual__tablet,
.loading-visual__phone {
  position: absolute;
  max-width: none;
  object-fit: contain;
}

.loading-visual__tablet {
  z-index: 1;
  top: 10px;
  left: 28px;
  width: 360px;
  height: 330px;
}

.loading-visual__phone {
  z-index: 2;
  top: 35px;
  right: -74px;
  width: 300px;
  height: 310px;
}

.pricing {
  isolation: isolate;
}

.pricing::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 80px;
  left: 50%;
  width: 920px;
  height: 420px;
  border-radius: 50%;
  background: rgba(50, 130, 184, 0.08);
  filter: blur(90px);
  transform: translateX(-50%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 650px;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  border: 1px solid rgba(187, 225, 250, 0.15);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(15, 76, 117, 0.16), rgba(27, 38, 44, 0.55));
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.price-card--featured {
  border-color: rgba(50, 130, 184, 0.6);
  background: linear-gradient(145deg, rgba(15, 76, 117, 0.44), rgba(27, 38, 44, 0.82));
  box-shadow: 0 24px 60px rgba(15, 76, 117, 0.25);
  transform: translateY(-10px);
}

.price-card__content {
  position: relative;
  z-index: 1;
}

.price-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
}

.price-card__content > p {
  min-height: 62px;
  margin: 0 0 24px;
  color: rgba(187, 225, 250, 0.7);
  font-size: 13px;
  line-height: 1.55;
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  min-height: 58px;
}

.price strong {
  font-family: var(--font-accent);
  font-size: 50px;
  line-height: 1;
  letter-spacing: -2px;
}

.price span {
  padding-bottom: 6px;
  color: var(--ice);
  font-size: 14px;
}

.price--custom strong {
  color: var(--blue);
  font-size: 42px;
}

.price-card small {
  display: block;
  margin-top: 8px;
  color: rgba(187, 225, 250, 0.48);
  font-size: 10px;
}

.price-card ul {
  display: grid;
  gap: 16px;
  margin: 28px 0 34px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(50, 130, 184, 0.18);
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 26px;
  color: rgba(187, 225, 250, 0.82);
  font-size: 12px;
  line-height: 1.4;
}

.price-card li::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 16px;
  height: 16px;
  background: url("assets/pricing-check-2.svg") center / 16px 16px no-repeat;
}

.button--full {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: auto;
}

.recommended {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: -14px 0 22px;
  padding: 8px 12px;
  border: 1px solid rgba(50, 130, 184, 0.45);
  border-radius: 999px;
  background: rgba(50, 130, 184, 0.2);
  color: var(--ice);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.recommended img {
  width: 13px;
  height: 13px;
}

.price-card__art {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.price-card__art--basic {
  right: -24px;
  bottom: 95px;
  width: 280px;
  height: 340px;
}

.price-card__art--enterprise {
  right: -36px;
  bottom: 92px;
  width: 214px;
  height: 280px;
}

.testimonials {
  padding-bottom: 120px;
}

.testimonial-carousel {
  min-width: 0;
}

.testimonial-grid {
  overflow: hidden;
  margin: -12px -8px 0;
  padding: 12px 8px 28px;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.testimonial-grid.is-dragging {
  cursor: grabbing;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(280px, 30vw, 430px);
  gap: 24px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.testimonial-track.is-jumping {
  transition: none;
}

.testimonial-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 420px;
  height: 100%;
  flex-direction: column;
  gap: 24px;
  padding: 40px;
  border: 1px solid rgba(50, 130, 184, 0.2);
  border-radius: 24px 24px 72px 72px;
  background: rgba(15, 76, 117, 0.2);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
  transform-style: preserve-3d;
  transition: transform 240ms cubic-bezier(0.2, 0.75, 0.2, 1), border-color 240ms ease, box-shadow 240ms ease;
  will-change: transform;
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  border-color: rgba(187, 225, 250, 0.56);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.3), 0 0 32px rgba(50, 130, 184, 0.16);
}

.testimonial-card > * {
  transform: translateZ(22px);
  transition: transform 240ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.testimonial-card:hover > .person,
.testimonial-card:focus-within > .person {
  transform: translateZ(42px) translateY(-2px);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 34px;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(187, 225, 250, 0.28);
  cursor: pointer;
  transition: width 220ms ease, background-color 220ms ease, box-shadow 220ms ease;
}

.testimonial-dot.is-active {
  width: 28px;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(50, 130, 184, 0.58);
}

.testimonial-pause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(50, 130, 184, 0.42);
  border-radius: 999px;
  background: rgba(15, 76, 117, 0.18);
  color: var(--ice);
  font: inherit;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.testimonial-pause:hover,
.testimonial-pause:focus-visible {
  border-color: rgba(187, 225, 250, 0.68);
  background: rgba(50, 130, 184, 0.26);
  box-shadow: 0 0 18px rgba(50, 130, 184, 0.2);
}

.testimonial-pause__icon {
  position: relative;
  width: 10px;
  height: 10px;
}

.testimonial-pause__icon::before,
.testimonial-pause__icon::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  width: 3px;
  border-radius: 2px;
  background: currentColor;
}

.testimonial-pause__icon::before { left: 1px; }
.testimonial-pause__icon::after { right: 1px; }

.testimonial-pause[aria-pressed="true"] .testimonial-pause__icon::before {
  inset: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  background: currentColor;
  clip-path: polygon(10% 0, 100% 50%, 10% 100%);
}

.testimonial-pause[aria-pressed="true"] .testimonial-pause__icon::after {
  display: none;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 48px;
  left: 48px;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: var(--blue);
}

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

.avatar {
  position: relative;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(50, 130, 184, 0.4);
  border-radius: 50%;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.avatar--crop img {
  object-position: 50% 33%;
}

.avatar--initials {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #0f4c75, #3282b8);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.avatar--initials-alt {
  background: linear-gradient(135deg, #1b262c, #0f4c75);
}

.avatar i {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00bc7d;
}

.person > div {
  display: grid;
  gap: 5px;
}

.person strong {
  font-size: 16px;
}

.person small {
  color: rgba(187, 225, 250, 0.6);
  font-size: 10px;
  text-transform: uppercase;
}

.stars {
  display: flex;
  gap: 5px;
}

.stars img {
  width: 14px;
  height: 14px;
}

.testimonial-card blockquote {
  margin: 0;
  color: rgba(187, 225, 250, 0.9);
  font-size: 14px;
  line-height: 1.6;
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(50, 130, 184, 0.15);
  font-size: 10px;
}

.testimonial-meta span {
  color: rgba(187, 225, 250, 0.5);
}

.testimonial-meta strong {
  color: var(--blue);
  text-transform: uppercase;
}

.contact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding-block: 100px;
  border-top: 1px solid rgba(50, 130, 184, 0.15);
  scroll-margin-top: 94px;
}

.contact__intro {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.contact__intro :is(h1, h2) {
  margin: 0;
  font-family: var(--font-accent);
  font-size: 36px;
  font-weight: 800;
  line-height: 40px;
  letter-spacing: -0.9px;
}

.contact-page .site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.contact-main {
  flex: 1;
}

.contact-page .contact {
  min-height: 0;
}

.contact__intro > p:last-child {
  width: min(764px, 100%);
  max-width: none;
  margin: 0;
  color: var(--ice);
  font-size: 16px;
  line-height: normal;
}

.contact__decoration {
  position: absolute;
  top: -12px;
  right: -104px;
  z-index: 0;
  width: 250px;
  height: 307px;
  transform: rotate(7.87deg);
  opacity: 0.36;
  pointer-events: none;
}

.contact__content {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5.2fr);
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.contact-form {
  position: relative;
  display: flex;
  min-width: 0;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
}

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

.contact-form label {
  display: grid;
  min-width: 0;
  gap: 8px;
  color: rgba(187, 225, 250, 0.6);
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.contact-form__wide {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--blue);
  border-radius: 12px;
  outline: 0;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font: inherit;
  font-size: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-form input {
  min-height: 48px;
  padding: 14px 17px;
}

.contact-form textarea {
  min-height: 139px;
  padding: 14px 17px;
  resize: vertical;
}

.contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ice);
  background: rgba(15, 76, 117, 0.18);
  box-shadow: 0 0 0 3px rgba(50, 130, 184, 0.18);
}

.contact-form :is(input, textarea):user-invalid {
  border-color: rgba(255, 75, 118, 0.76);
}

.contact-form__submit {
  display: flex;
  min-height: 50px;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  padding: 16px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 10px 7.5px rgba(0, 0, 0, 0.1), 0 4px 3px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.contact-form__submit img {
  width: 16px;
  height: 16px;
}

.contact-form__detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  color: rgba(187, 225, 250, 0.5);
  font-size: 10px;
  line-height: 15px;
}

.contact-form__detail img {
  width: 14px;
  height: 14px;
}

.contact-form__status {
  position: absolute;
  right: 0;
  bottom: -24px;
  left: 0;
  min-height: 15px;
  margin: 0;
  color: var(--ice);
  font-size: 10px;
  line-height: 15px;
  text-align: center;
}

.contact__visual {
  position: relative;
  height: 524px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--blue);
  border-radius: 72px;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1), 0 8px 10px rgba(0, 0, 0, 0.1);
}

.contact__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-page .footer {
  padding-top: 96px;
}

.contact-page .footer__waves {
  height: 107px;
}

.contact-page .footer__wave-track img {
  top: 10px;
}

.footer {
  position: relative;
  z-index: 3;
  padding: 144px 0 48px;
  background: linear-gradient(180deg, rgba(5, 9, 20, 0), rgba(5, 11, 27, 0.95));
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.footer__waves {
  position: absolute;
  top: -35px;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 137px;
  overflow: hidden;
  opacity: 0.7;
  pointer-events: none;
}

.footer__wave-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.footer__wave-track img {
  position: absolute;
  top: 0;
  left: -140px;
  display: block;
  width: calc(100% + 280px);
  height: 100%;
  max-width: none;
  animation: none;
}

.footer__wave-track img:nth-child(2) {
  display: none;
}

.footer__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
  gap: 64px;
  align-items: start;
}

.brand--footer .brand__mark {
  width: 40px;
  height: 27px;
}

.brand--footer .brand__word {
  width: 100px;
  height: 16.7px;
}

.footer__about {
  display: grid;
  gap: 20px;
}

.footer__about p {
  margin: 0;
  color: rgba(187, 225, 250, 0.7);
  font-size: 14px;
  line-height: 1.5;
}

.footer__links,
.footer__contact {
  display: grid;
  gap: 12px;
}

.footer h2 {
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
}

.footer__links a,
.footer__contact a,
.footer__contact span {
  color: rgba(187, 225, 250, 0.8);
  font-size: 14px;
  font-style: normal;
}

.footer__links a,
.footer__contact a {
  transition: color 180ms ease;
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--white);
}

.footer__contact {
  gap: 20px;
}

.footer__contact a,
.footer__contact span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__contact img {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.comparison-grid > *,
.pain-grid > *,
.steps-grid > *,
.pricing-grid > *,
.detail-row > *,
.footer__content > * {
  min-width: 0;
}

.section-heading h2,
.section-heading > p,
.comparison-card h3,
.comparison-card p,
.pain-card h3,
.pain-card p,
.step-card h3,
.step-card p,
.price-card h3,
.price-card p,
.price-card li,
.testimonial-card blockquote,
.person strong,
.person small,
.footer__about p,
.footer__contact a,
.footer__contact span {
  overflow-wrap: break-word;
}

.footer__contact a {
  overflow-wrap: anywhere;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.testimonial-card.reveal {
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(18px);
  transition: opacity 600ms ease, transform 240ms cubic-bezier(0.2, 0.75, 0.2, 1), border-color 240ms ease, box-shadow 240ms ease;
}

.testimonial-card.reveal.is-visible {
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .comparison-card.reveal,
  .pain-card.reveal,
  .step-card.reveal,
  .price-card.reveal,
  .testimonial-card.reveal {
    transition:
      opacity 600ms ease,
      transform 280ms cubic-bezier(0.22, 1, 0.36, 1),
      border-color 280ms ease,
      background-color 280ms ease,
      box-shadow 280ms ease;
  }

  .comparison-card.is-visible:hover,
  .pain-card.is-visible:hover,
  .step-card.is-visible:hover,
  .price-card.is-visible:hover,
  .testimonial-card.is-visible:hover,
  .ar-showcase:hover,
  .detail-visual:hover {
    border-color: rgba(187, 225, 250, 0.82);
    box-shadow: 0 22px 48px rgba(15, 76, 117, 0.3), 0 0 0 1px rgba(50, 130, 184, 0.2);
    transform: translateY(-6px);
  }

  .price-card--featured.is-visible:hover {
    transform: translateY(-16px);
  }

  .comparison-card:hover .icon-tile,
  .pain-card:hover .pain-card__icon,
  .step-card:hover .step-card__icon {
    transform: scale(1.07);
    box-shadow: 0 10px 24px rgba(50, 130, 184, 0.22);
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .nav-menu {
    gap: 24px;
  }

  .nav-contact {
    margin-left: 0;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) 440px;
  }

  .hero__content {
    max-width: 590px;
  }

  .hero__art {
    right: -150px;
  }

  .ar-showcase {
    grid-template-columns: minmax(0, 1fr) 420px;
  }

  .detail-row,
  .detail-row--reverse {
    grid-template-columns: minmax(380px, 0.9fr) minmax(0, 1.1fr);
  }

  .detail-row--reverse {
    grid-template-columns: minmax(0, 1.1fr) minmax(380px, 0.9fr);
  }

  .testimonial-card {
    padding: 32px;
  }
}

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

  .nav {
    min-height: 72px;
  }

  .nav-toggle {
    display: block;
    grid-column: 3;
    justify-self: end;
    margin-left: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(187, 225, 250, 0.12);
    border-radius: 0 0 16px 16px;
    background: rgba(7, 16, 26, 0.98);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .nav-menu a {
    padding: 14px 16px;
    border-radius: 8px;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible {
    background: rgba(50, 130, 184, 0.12);
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-contact {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 96px 0 70px;
  }

  .hero__content {
    max-width: 660px;
    gap: 32px;
  }

  .hero__content > p {
    font-size: 18px;
  }

  .hero__art {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 550px;
    margin-top: 30px;
  }

  .hero__shape {
    top: -60px;
    right: -210px;
    height: 680px;
  }

  .hero__phone-window {
    top: 0;
    right: 50%;
    width: 460px;
    height: 540px;
    transform: translateX(50%);
  }

  .comparison-grid,
  .pain-grid,
  .steps-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-track {
    grid-auto-columns: 100%;
  }

  .contact {
    gap: 38px;
    padding-block: 96px 150px;
  }

  .contact__intro {
    max-width: 680px;
    padding-top: 0;
  }

  .contact__content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form {
    min-height: 524px;
  }

  .contact__visual {
    width: min(520px, 100%);
    justify-self: center;
  }

  .contact__decoration {
    right: -70px;
  }

  .pain-grid,
  .steps-grid {
    gap: 18px;
  }

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

  .ar-showcase {
    grid-template-columns: 1fr;
  }

  .ar-showcase__image {
    min-height: 420px;
  }

  .details {
    gap: 96px;
  }

  .detail-row,
  .detail-row--reverse {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .detail-row--reverse .detail-copy {
    order: 2;
  }

  .detail-row--reverse .detail-visual {
    order: 1;
  }

  .price-card--featured {
    transform: none;
  }

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

  .price-card__content > p {
    min-height: 0;
  }

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

  .footer__content {
    grid-template-columns: 1.4fr 0.8fr;
  }

  .footer__contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(100% - 40px, 520px);
  }

  .site-header {
    background: rgba(5, 14, 24, 0.1) url("assets/navbar-texture.png") center / 100% 100% no-repeat;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .nav {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 64px;
    padding: 14px 0;
    gap: 12px;
  }

  .nav > .brand {
    grid-row: 1;
  }

  .nav-contact {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    min-height: 0;
    padding: 11px 15px;
    font-size: 12px;
    box-shadow: none;
  }

  .nav-toggle {
    grid-column: 3;
    grid-row: 1;
    width: 24px;
    height: 24px;
    padding: 3px 2px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .nav-toggle span:not(.sr-only) {
    height: 2px;
    margin: 3px 0;
  }

  .nav-menu {
    top: calc(100% - 1px);
    right: 0;
    left: auto;
    width: 132px;
    padding: 3px 0 5px;
    border-color: rgba(50, 130, 184, 0.32);
    border-radius: 0;
    background: linear-gradient(180deg, rgba(8, 21, 32, 0.99), rgba(5, 14, 24, 0.99));
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
  }

  .nav-menu a {
    padding: 7px 10px;
    border-radius: 0;
    border-bottom: 1px solid rgba(50, 130, 184, 0.16);
    font-size: 10px;
    line-height: 1.25;
    text-align: center;
  }

  .nav-menu a:last-child {
    border-bottom: 0;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible,
  .nav-menu a.is-active {
    background: rgba(50, 130, 184, 0.12);
    color: var(--white);
  }

  .hero {
    padding: 56px 0 0;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-align: center;
  }

  .mobile-break {
    display: initial;
  }

  .hero__content {
    align-items: center;
    gap: 38px;
    min-width: 0;
  }

  .hero__content > p {
    font-size: 17px;
    font-weight: 300;
    line-height: 25px;
    text-align: center;
  }

  .button-row {
    justify-content: center;
    gap: 16px;
    width: 100%;
  }

  .button-row .button {
    width: auto;
    min-height: 0;
    padding: 13px 25px;
  }

  .hero__art {
    height: 372px;
    margin-top: 30px;
    overflow: visible;
  }

  .hero__shape {
    top: -280px;
    right: 50%;
    width: 364px;
    height: 932px;
    transform: translateX(50%) rotate(90deg);
  }

  .hero__phone-window {
    top: -14px;
    right: 50%;
    width: 330px;
    height: 366px;
    transform: translateX(50%);
  }

  .section,
  .details {
    padding-block: 76px;
  }

  #features {
    padding-block: 51px 50px;
    overflow: hidden;
  }

  #features .section-heading {
    gap: 16px;
    margin-bottom: 20px;
  }

  #features .eyebrow {
    font-size: 13px;
    line-height: 16px;
  }

  #features .section-heading h2 {
    font-size: 25px;
    line-height: 40px;
    letter-spacing: -0.9px;
  }

  #features .comparison-grid {
    gap: 15px;
    width: 100%;
    margin-left: 0;
  }

  .contact {
    padding-block: 76px 130px;
  }

  .contact__intro :is(h1, h2) {
    font-size: 32px;
    line-height: 36px;
  }

  .contact__intro > p:last-child {
    font-size: 14px;
    line-height: 1.5;
  }

  .contact__content {
    gap: 40px;
  }

  .contact-form {
    min-height: 0;
    gap: 20px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-form__wide {
    grid-column: auto;
  }

  .contact__visual {
    height: min(524px, 105vw);
    border-radius: 48px;
  }

  .contact__decoration {
    display: none;
  }

  .comparison-card,
  .step-card,
  .price-card,
  .testimonial-card,
  .ar-showcase__content {
    padding: 26px;
  }

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

  #features .comparison-card {
    gap: 0;
    padding: 31px 26px 30px;
    border-radius: 16px;
  }

  #features .comparison-card--paper {
    border-color: rgba(106, 145, 162, 0.48);
    background: linear-gradient(117deg, rgba(92, 18, 31, 0.27), rgba(20, 27, 36, 0.82));
    box-shadow: none;
  }

  #features .comparison-card--immersive {
    padding: 31px 27px 30px;
    border-color: rgba(24, 154, 218, 0.55);
    background: linear-gradient(131deg, rgba(5, 77, 119, 0.52), #111c25);
    box-shadow: none;
  }

  .comparison-card__title {
    align-items: flex-start;
  }

  #features .comparison-card__title {
    align-items: center;
    gap: 10px;
    padding-bottom: 14px;
  }

  #features .comparison-card__title h3 {
    font-size: 14px;
    line-height: 16px;
  }

  #features .icon-tile {
    width: 40px;
    height: 40px;
    padding: 0;
  }

  #features .icon-tile img {
    width: 20px;
    height: 20px;
  }

  #features .paper-menu {
    gap: 11px;
    margin-top: 14px;
    padding: 0;
  }

  .paper-menu__item {
    gap: 12px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  #features .paper-menu__item strong {
    color: rgba(187, 225, 250, 0.58);
    font-size: 11px;
    line-height: 13px;
  }

  #features .paper-menu__item span,
  #features .paper-menu__item b {
    font-size: 9.5px;
    line-height: 11px;
  }

  #features .result-strip {
    gap: 7px;
    margin-top: 20px;
    padding: 11px;
  }

  #features .result-strip p {
    font-size: 9.5px;
    line-height: 12px;
  }

  #features .result-strip img {
    width: 13px;
    height: 13px;
  }

  #features .comparison-card--paper .result-strip {
    min-height: 70px;
    border-color: rgba(180, 0, 57, 0.38);
    background: rgba(77, 2, 24, 0.28);
  }

  #features .comparison-card--paper .result-strip p {
    color: #ff637e;
  }

  #features .comparison-card--immersive .comparison-card__title h3 {
    font-size: 13px;
    white-space: nowrap;
  }

  #features .ar-feature {
    gap: 9px;
    min-height: 84px;
    margin-top: 13px;
    padding: 12px;
    border-radius: 8px;
  }

  #features .ar-badge {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }

  #features .ar-feature strong {
    font-size: 11px;
    line-height: 13px;
  }

  #features .ar-feature p {
    margin-top: 3px;
    font-size: 9.5px;
    line-height: 12px;
  }

  #features .comparison-card--immersive .result-strip {
    min-height: 75px;
    margin-top: 13px;
    border-color: rgba(50, 130, 184, 0.28);
    background: rgba(15, 76, 117, 0.23);
  }

  #features .comparison-card--immersive .result-strip p {
    color: rgba(187, 225, 250, 0.82);
  }

  #features .comparison-card__stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    min-height: 38px;
    margin-top: 20px;
    padding-top: 21px;
    font-size: 9.5px;
    line-height: 12px;
  }

  .comparison-card__stats {
    align-items: flex-start;
    flex-direction: column;
  }

  .comparison-card__stats b {
    margin-left: 0;
  }

  #features .comparison-card__stats b {
    position: absolute;
    top: 12px;
    right: 26px;
    margin: 0;
    padding: 4px 10px;
    border: 1px solid rgba(255, 0, 80, 0.7);
    border-radius: 4px;
    background: rgba(7, 16, 26, 0.52);
    color: #ff3d71;
    font-size: 8px;
    line-height: 1;
  }

  #features .comparison-card--immersive .comparison-card__stats b {
    border-color: rgba(0, 212, 146, 0.55);
    color: #00d492;
  }

  #features .pain-heading {
    margin: 30px 0 25px;
    font-size: 11px;
    line-height: 14px;
  }

  #features .pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }

  #features .pain-card {
    min-height: 249px;
    padding: 20px;
    border-color: rgba(50, 130, 184, 0.22);
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(15, 76, 117, 0.22), rgba(8, 26, 40, 0.68));
  }

  #features .pain-card:last-child {
    grid-column: 1 / -1;
    min-height: 165px;
  }

  #features .pain-card__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

  #features .pain-card__icon img {
    width: 20px;
    height: 20px;
  }

  #features .pain-card h3 {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 20px;
  }

  #features .pain-card p {
    font-size: 9.5px;
    line-height: 14.5px;
  }

  .section-heading h2,
  .detail-copy h2 {
    font-size: 30px;
  }

  #how-it-works .ar-showcase {
    display: block;
    width: calc(100% + 20px);
    min-height: 477px;
    margin-left: -10px;
    border-color: rgba(50, 130, 184, 0.24);
    border-radius: 18px;
    background: #071725;
    box-shadow: 0 8px 28px rgba(15, 76, 117, 0.18);
  }

  #how-it-works .ar-showcase__content {
    position: relative;
    z-index: 2;
    padding: 40px 17px 78px;
  }

  #how-it-works .mini-tag {
    padding: 3px 9px;
    border-radius: 3px;
    font-size: 9px;
    line-height: 1.2;
  }

  #how-it-works .mini-tag img {
    width: 11px;
    height: 11px;
  }

  #how-it-works .ar-showcase h3 {
    margin: 12px 0 13px;
    font-size: 19px;
    line-height: 22px;
    letter-spacing: -0.35px;
  }

  #how-it-works .ar-showcase h3 br {
    display: initial;
  }

  #how-it-works .ar-showcase__content > p {
    max-width: 275px;
    color: rgba(213, 238, 252, 0.88);
    font-size: 10.5px;
    line-height: 13px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
  }

  #how-it-works .benefit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 22px;
  }

  #how-it-works .benefit {
    gap: 8px;
  }

  #how-it-works .benefit > span {
    width: 16px;
    height: 16px;
    font-size: 9px;
  }

  #how-it-works .benefit strong {
    margin-bottom: 1px;
    color: #fff;
    font-size: 10px;
    line-height: 12px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  }

  #how-it-works .benefit p {
    color: rgba(213, 238, 252, 0.78);
    font-size: 8.5px;
    line-height: 11px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.82);
  }

  #how-it-works .ar-showcase__image {
    position: absolute;
    inset: 0;
    min-height: 0;
  }

  #how-it-works .ar-showcase__image::before {
    background:
      linear-gradient(180deg, rgba(7, 23, 37, 1) 0%, rgba(7, 23, 37, 0.96) 36%, rgba(7, 23, 37, 0.8) 67%, rgba(7, 23, 37, 0.62) 100%),
      linear-gradient(90deg, rgba(7, 23, 37, 0.62), rgba(7, 23, 37, 0.16) 80%);
  }

  #how-it-works .ar-showcase__image > img {
    object-position: center bottom;
  }

  #how-it-works .live-label {
    right: 12px;
    bottom: 17px;
    left: 12px;
    min-height: 45px;
    padding: 9px;
    border-radius: 4px;
    background: rgba(7, 25, 37, 0.88);
  }

  #how-it-works .live-label strong {
    font-size: 9px;
  }

  #how-it-works .live-label span {
    font-size: 8px;
    line-height: 10px;
  }

  .details {
    gap: 76px;
  }

  .detail-row .detail-visual,
  .detail-row--reverse .detail-visual {
    order: 2;
  }

  .detail-row .detail-copy,
  .detail-row--reverse .detail-copy {
    order: 1;
  }

  .detail-visual {
    height: 290px;
  }

  .detail-copy > p:last-child {
    font-size: 16px;
  }

  .loading-visual__tablet {
    left: -22px;
    width: 310px;
    height: 292px;
  }

  .loading-visual__phone {
    right: -96px;
    width: 265px;
    height: 270px;
  }

  .price-card {
    border-radius: 20px;
  }

  .testimonial-card {
    width: 280px;
    min-height: 394px;
    height: 394px;
    justify-content: space-between;
    gap: 0;
    padding: 41px 21px;
    border-radius: 24px 24px 72px 72px;
  }

  .testimonial-track {
    grid-auto-columns: 280px;
    gap: 24px;
  }

  .testimonial-card blockquote {
    font-size: 12px;
    line-height: normal;
  }

  .footer {
    padding-top: 96px;
    overflow: hidden;
  }

  .footer__waves {
    top: -35px;
    height: 107px;
  }

  .footer__wave-track {
    height: 107px;
  }

  .footer__wave-track img {
    top: 10px;
    left: 50%;
    width: 1440px;
    height: 137px;
    transform: translateX(-50%);
    animation: none;
  }

  .footer__content {
    z-index: 2;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer__contact {
    grid-column: auto;
  }
}

@media (max-width: 390px) {
  #features {
    overflow: visible;
  }

  #features .pain-grid {
    width: calc(100vw - 24px);
    margin-left: -1px;
  }

  #how-it-works .ar-showcase {
    width: calc(100vw - 24px);
    margin-left: -11px;
  }

  .brand__word {
    width: 66px;
  }

  .hero__phone-window {
    right: 50%;
  }

  .nav {
    gap: 10px;
  }

  .nav-contact {
    padding-inline: 12px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.25vw, 40px);
  }

  .hero__content > p {
    font-size: 16px;
    line-height: 23px;
  }

  .button-row {
    gap: 10px;
  }

  .button-row .button {
    padding-inline: 18px;
    font-size: 13px;
  }

  .comparison-card,
  .step-card,
  .price-card,
  .ar-showcase__content {
    padding: 22px;
  }
}
