:root {
  --bg: #f7f8f2;
  --surface: #ffffff;
  --ink: #151917;
  --muted: #66736c;
  --line: #dfe5dc;
  --lime: #c6ff3d;
  --teal: #17b8a6;
  --blue: #2a70ff;
  --soft: #edf2e9;
  --dark: #111716;
  --radius: 18px;
  --shadow: 0 28px 90px rgba(21, 25, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.lightbox-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.motion-background {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.motion-background::before {
  animation: drift-lines 16s linear infinite;
  background-image:
    linear-gradient(120deg, rgba(21, 25, 23, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(21, 25, 23, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  content: "";
  inset: -20%;
  position: absolute;
  transform: rotate(-7deg);
}

.motion-background span {
  animation: scan 8s ease-in-out infinite;
  background: linear-gradient(90deg, transparent, rgba(198, 255, 61, 0.18), transparent);
  height: 120px;
  left: -20%;
  position: absolute;
  right: -20%;
  top: 20%;
  transform: rotate(-6deg);
}

.motion-background span:nth-child(2) {
  animation-delay: -2.5s;
  top: 52%;
}

.motion-background span:nth-child(3) {
  animation-delay: -5s;
  top: 78%;
}

@keyframes drift-lines {
  to {
    transform: translate3d(84px, 84px, 0) rotate(-7deg);
  }
}

@keyframes scan {
  0%,
  100% {
    opacity: 0;
    transform: translateX(-15%) rotate(-6deg);
  }
  35%,
  65% {
    opacity: 1;
  }
  100% {
    transform: translateX(15%) rotate(-6deg);
  }
}

.site-header {
  align-items: center;
  background: rgba(247, 248, 242, 0.82);
  border-bottom: 1px solid rgba(223, 229, 220, 0.92);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 64px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  min-width: 0;
}

.brand img {
  display: block;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  width: 190px;
}

.main-nav {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(21, 25, 23, 0.06);
  display: flex;
  gap: 4px;
  grid-column: 2;
  justify-content: center;
  justify-self: center;
  padding: 5px;
}

.main-nav a {
  border-radius: 999px;
  color: #3f4843;
  font-size: 14px;
  font-weight: 750;
  padding: 11px 16px;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.is-active {
  background: var(--dark);
  color: var(--surface);
}

.language-switch {
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 36px rgba(21, 25, 23, 0.05);
  display: flex;
  gap: 3px;
  grid-column: 3;
  justify-self: end;
  padding: 4px;
}

.language-switch button {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: #3f4843;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  min-width: 38px;
  padding: 9px 10px;
}

.language-switch button[aria-pressed="true"] {
  background: var(--dark);
  color: var(--surface);
}

.menu-toggle {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: none;
  grid-column: 3;
  height: 44px;
  justify-self: end;
  padding: 10px;
  width: 46px;
}

.menu-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 5px 0;
}

.hero {
  display: grid;
  gap: 52px;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  min-height: 680px;
  padding: 88px clamp(18px, 4vw, 64px) 56px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  color: #437167;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.hero h1,
.section-title h2,
.video-copy h2,
.about-section h2,
.contact-info h2 {
  font-size: clamp(40px, 5vw, 76px);
  letter-spacing: -0.02em;
  line-height: 0.98;
  margin: 0;
}

.hero-copy p:not(.eyebrow),
.video-copy p,
.about-section p {
  color: var(--muted);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.75;
  margin: 26px 0 0;
  max-width: 650px;
}

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

.button {
  align-items: center;
  border-radius: 14px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 850;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button.primary {
  background: var(--dark);
  box-shadow: 0 18px 42px rgba(21, 25, 23, 0.16);
  color: var(--surface);
}

.button.secondary {
  background: var(--lime);
  color: var(--dark);
}

.hero-product {
  align-self: center;
  min-height: 520px;
  position: relative;
}

.browser-shot,
.phone-shot {
  margin: 0;
}

.browser-shot {
  background: #101615;
  border: 1px solid rgba(21, 25, 23, 0.12);
  border-radius: 30px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 12px;
  transform: rotate(-1.2deg);
}

.browser-bar {
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  gap: 8px;
  padding: 6px 10px 14px;
}

.browser-bar span {
  background: rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  display: block;
  height: 10px;
  width: 10px;
}

.browser-bar span:first-child {
  background: #ff6b6b;
}

.browser-bar span:nth-child(2) {
  background: #ffd166;
}

.browser-bar span:nth-child(3) {
  background: var(--lime);
}

.browser-bar strong {
  font-size: 12px;
  margin-left: 8px;
}

.browser-shot img,
.screen-card img {
  display: block;
  width: 100%;
}

.browser-shot img {
  border-radius: 20px;
  height: auto;
}

.phone-shot {
  background: #101615;
  border: 8px solid #101615;
  border-radius: 36px;
  box-shadow: 0 28px 70px rgba(21, 25, 23, 0.28);
  overflow: hidden;
}

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

.hero-phone {
  bottom: 8px;
  position: absolute;
  right: -14px;
  transform: rotate(3.5deg);
  width: min(33%, 210px);
}

.app-showcase,
.video-section,
.about-section,
.services-section,
.contact-section {
  padding: 96px clamp(18px, 4vw, 64px);
}

.section-title {
  margin: 0 auto 34px;
  max-width: 1120px;
}

.section-title h2,
.video-copy h2,
.about-section h2,
.contact-info h2 {
  max-width: 880px;
}

.screen-gallery {
  margin-left: calc(clamp(18px, 4vw, 64px) * -1);
  margin-right: calc(clamp(18px, 4vw, 64px) * -1);
  overflow: visible;
  padding: 18px 0 32px;
  position: relative;
}

.screen-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 clamp(18px, 4vw, 64px) 18px;
  scroll-behavior: smooth;
  scroll-padding-inline: clamp(18px, 4vw, 64px);
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  touch-action: pan-x;
  user-select: none;
}

.screen-track::-webkit-scrollbar {
  display: none;
}

.screen-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.screen-track:focus-visible {
  outline: 3px solid rgba(37, 199, 205, 0.55);
  outline-offset: 8px;
}

.gallery-button {
  align-items: center;
  background: rgba(16, 22, 21, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(21, 25, 23, 0.18);
  color: var(--surface);
  cursor: pointer;
  display: flex;
  font-size: 34px;
  font-weight: 700;
  height: 52px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
  width: 52px;
  z-index: 3;
}

.gallery-button:hover {
  background: #25c7cd;
  color: #07100f;
  transform: translateY(-50%) scale(1.04);
}

.gallery-button-prev {
  left: clamp(10px, 2vw, 28px);
}

.gallery-button-next {
  right: clamp(10px, 2vw, 28px);
}

.gallery-filters {
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(16, 22, 21, 0.1);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(21, 25, 23, 0.08);
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 0 auto 24px;
  max-width: max-content;
  padding: 6px;
}

.gallery-filter {
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: rgba(16, 22, 21, 0.62);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  min-height: 42px;
  padding: 0 18px;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.gallery-filter:hover,
.gallery-filter.is-active {
  background: #101615;
  color: var(--surface);
}

.gallery-filter:focus-visible {
  outline: 3px solid rgba(37, 199, 205, 0.5);
  outline-offset: 3px;
}

.screen-card {
  background: #101615;
  border: 1px solid rgba(21, 25, 23, 0.16);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(21, 25, 23, 0.16);
  cursor: zoom-in;
  flex: 0 0 520px;
  height: 330px;
  overflow: hidden;
  padding: 10px;
  position: relative;
  scroll-snap-align: start;
}

.screen-card.is-filtered {
  display: none;
}

.screen-card:focus-visible {
  outline: 3px solid rgba(37, 199, 205, 0.6);
  outline-offset: 6px;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 10px auto 0;
  max-width: 980px;
}

.store-badge {
  align-items: center;
  background: #101615;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  color: var(--surface);
  display: flex;
  gap: 12px;
  min-width: 196px;
  padding: 12px 16px;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  user-select: none;
}

a.store-badge:hover,
a.store-badge:focus-visible {
  border-color: rgba(167, 244, 50, 0.55);
  box-shadow: 0 18px 38px rgba(16, 22, 21, 0.16);
  transform: translateY(-2px);
}

.store-badge-disabled {
  cursor: not-allowed;
  opacity: 0.62;
}

.store-icon {
  align-items: center;
  border-radius: 12px;
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.store-icon svg {
  display: block;
  fill: currentColor;
  height: 24px;
  width: 24px;
}

.store-icon-apple {
  background: #ffffff;
  color: #101615;
}

.store-icon-android {
  background: #a7f432;
  color: #101615;
}

.store-icon-huawei {
  background: #e60012;
  color: #ffffff;
}

.store-badge small,
.store-badge strong {
  display: block;
}

.store-badge small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

.store-badge strong {
  font-size: 18px;
  line-height: 1.15;
  margin-top: 2px;
}

.screen-card-wide img {
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}

.screen-card-tablet {
  align-items: center;
  display: flex;
  flex: 0 0 300px;
  height: 430px;
  justify-content: center;
  padding: 10px;
}

.screen-card-tablet img {
  background: #f5f8fb;
  border-radius: 22px;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.screen-card-phone {
  align-items: center;
  display: flex;
  flex: 0 0 230px;
  height: 430px;
  justify-content: center;
  padding: 10px;
}

.screen-card-phone img {
  border-radius: 22px;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transform: translateY(0);
  width: auto;
}

.screen-label {
  background: rgba(16, 22, 21, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  bottom: 16px;
  color: var(--surface);
  left: 16px;
  padding: 8px 12px;
  position: absolute;
  right: auto;
  backdrop-filter: blur(12px);
}

.screen-label span,
.screen-label b {
  display: block;
}

.screen-label span {
  font-size: 14px;
  font-weight: 900;
}

.screen-label b {
  display: none;
}

.screen-lightbox {
  align-items: center;
  background: rgba(6, 12, 11, 0.88);
  display: none;
  inset: 0;
  justify-content: center;
  padding: clamp(18px, 4vw, 54px);
  position: fixed;
  z-index: 60;
}

.screen-lightbox[hidden] {
  display: none;
}

.screen-lightbox.is-open {
  display: flex;
}

.screen-lightbox figure {
  margin: 0;
  max-height: 92vh;
  max-width: min(1180px, 94vw);
  position: relative;
}

.screen-lightbox figure.is-phone {
  aspect-ratio: 618 / 1340;
  background: #fff;
  border-radius: 18px;
  max-height: 82vh;
  overflow: hidden;
}

.screen-lightbox figure.is-tablet {
  aspect-ratio: 2064 / 2752;
  max-height: 86vh;
  max-width: min(760px, 94vw);
}

.screen-lightbox img {
  background: #101615;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36);
  display: block;
  max-height: 82vh;
  max-width: 100%;
  object-fit: contain;
}

.screen-lightbox figure.is-phone img {
  border: 0;
  border-radius: 0;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: top center;
  width: 100%;
}

.screen-lightbox figure.is-tablet img {
  background: #f5f8fb;
  height: 100%;
  max-height: none;
  object-fit: contain;
  width: 100%;
}

.screen-lightbox figure.is-phone figcaption {
  display: none;
}

.screen-lightbox figure.is-tablet figcaption {
  display: none;
}

.screen-lightbox figcaption {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  font-weight: 800;
  margin-top: 14px;
  text-align: center;
}

.lightbox-close {
  align-items: center;
  background: var(--lime);
  border: 0;
  border-radius: 999px;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  font-size: 34px;
  font-weight: 700;
  height: 52px;
  justify-content: center;
  line-height: 1;
  position: fixed;
  right: clamp(18px, 4vw, 52px);
  top: clamp(18px, 4vw, 42px);
  width: 52px;
  z-index: 61;
}

.video-section {
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1.08fr);
}

.video-copy {
  align-self: center;
}

.video-player {
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 50% 44%, rgba(198, 255, 61, 0.22), transparent 28%),
    radial-gradient(circle at 72% 26%, rgba(23, 184, 166, 0.2), transparent 24%),
    linear-gradient(135deg, #0e1514, #17211f 46%, #0b1110);
  border: 1px solid rgba(21, 25, 23, 0.18);
  border-radius: 34px;
  box-shadow: var(--shadow);
  overflow: hidden;
  perspective: 1100px;
  position: relative;
}

.video-player::after {
  background:
    linear-gradient(90deg, rgba(16, 22, 21, 0.74), rgba(16, 22, 21, 0.14) 62%),
    linear-gradient(rgba(16, 22, 21, 0.02), rgba(16, 22, 21, 0.72));
  content: "";
  inset: 0;
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.video-visual {
  inset: 0;
  overflow: hidden;
  position: absolute;
  transform-style: preserve-3d;
  transition: opacity 220ms ease;
  z-index: 2;
}

.cover-mascot {
  bottom: -18%;
  filter: drop-shadow(0 26px 44px rgba(0, 0, 0, 0.34));
  height: 88%;
  object-fit: contain;
  opacity: 0.9;
  position: absolute;
  right: 5%;
  width: auto;
  z-index: 3;
}

.video-progress {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  bottom: 24px;
  display: none;
  height: 6px;
  left: 28px;
  overflow: hidden;
  position: absolute;
  right: 28px;
  z-index: 9;
}

.video-progress span {
  animation: local-video-progress 20s linear forwards;
  background: var(--lime);
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 0;
}

.film-grid {
  background-image:
    linear-gradient(rgba(198, 255, 61, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(198, 255, 61, 0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  inset: 0;
  opacity: 0.42;
  position: absolute;
}

.film-kicker {
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  left: 38px;
  letter-spacing: 0.22em;
  position: absolute;
  text-transform: uppercase;
  top: 34px;
  z-index: 4;
}

.film-slide {
  color: var(--surface);
  left: 38px;
  opacity: 0;
  position: absolute;
  right: 210px;
  top: 50%;
  transform: translateY(-42%) translateX(22px);
  z-index: 4;
}

.film-slide span {
  color: var(--lime);
  display: block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}

.film-slide strong {
  display: block;
  font-size: clamp(26px, 3.5vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.02;
  max-width: 500px;
}

.film-slide p {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.55;
  margin: 18px 0 0;
  max-width: 500px;
}

.video-player:not(.is-playing) .slide-one {
  opacity: 1;
  transform: translateY(-42%) translateX(0);
}

.film-modules {
  bottom: 68px;
  display: none;
  flex-wrap: wrap;
  gap: 9px;
  left: 38px;
  max-width: 76%;
  position: absolute;
  z-index: 5;
}

.film-modules b {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  padding: 8px 11px;
}

.video-timeline {
  display: none;
}


.play-button {
  background: var(--lime);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  height: 74px;
  right: 34px;
  position: absolute;
  bottom: 34px;
  width: 74px;
  z-index: 8;
}

.play-button span {
  border-bottom: 13px solid transparent;
  border-left: 20px solid var(--dark);
  border-top: 13px solid transparent;
  display: block;
  margin-left: 29px;
}

.video-caption {
  bottom: 34px;
  color: var(--surface);
  left: 34px;
  position: absolute;
  z-index: 8;
}

.video-caption strong,
.video-caption small {
  display: block;
}

.video-caption strong {
  font-size: 22px;
}

.video-caption small {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}

.video-timeline {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  bottom: 28px;
  height: 6px;
  position: absolute;
  right: 34px;
  width: 34%;
  z-index: 2;
}

.video-timeline span {
  background: var(--lime);
  border-radius: inherit;
  display: block;
  height: 100%;
  width: 42%;
}

.about-section {
  background: var(--dark);
  color: var(--surface);
  display: grid;
  gap: 48px;
  grid-template-columns: 0.9fr 1.1fr;
}

.about-section h2 {
  color: var(--surface);
}

.about-section p {
  color: rgba(255, 255, 255, 0.72);
}

.services-section {
  background: var(--surface);
}

.service-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 36px;
}

.service-grid article {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 22px;
  min-height: 172px;
  padding: 22px;
}

.service-grid span {
  color: #437167;
  display: block;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 36px;
}

.service-grid strong {
  display: block;
  font-size: 18px;
  line-height: 1.25;
}

.contact-section {
  display: grid;
  gap: 46px;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
}

.contact-info p {
  color: var(--muted);
  line-height: 1.65;
  margin: 18px 0 0;
}

.contact-info strong {
  color: var(--ink);
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.contact-info a {
  color: #17685f;
  font-weight: 850;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 15px;
  padding: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.form-honey {
  display: none;
}

.contact-form span {
  font-size: 13px;
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  background: #f7f9f5;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: 0;
  padding: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(23, 184, 166, 0.14);
}

.captcha-field {
  background: #f7f9f5;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
}

.captcha-field strong {
  color: var(--ink);
  font-size: 18px;
}

.captcha-field input {
  background: var(--surface);
}

.captcha-field small {
  color: #b42318;
  min-height: 18px;
}

.captcha-field.is-invalid {
  border-color: rgba(180, 35, 24, 0.5);
  box-shadow: 0 0 0 4px rgba(180, 35, 24, 0.08);
}

.form-status {
  border-radius: 14px;
  display: none;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  margin: 0;
  padding: 13px 14px;
}

.form-status.is-success {
  background: rgba(34, 197, 94, 0.12);
  color: #176b3a;
  display: block;
}

.form-status.is-error {
  background: rgba(180, 35, 24, 0.1);
  color: #b42318;
  display: block;
}

.site-footer {
  align-items: center;
  background: var(--dark);
  color: var(--surface);
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr auto;
  padding: 42px clamp(18px, 4vw, 64px);
}

.site-footer .brand strong {
  color: var(--surface);
}

.site-footer .brand img {
  height: 58px;
  width: 250px;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.site-footer a,
.site-footer small {
  color: rgba(255, 255, 255, 0.7);
}

.site-footer small {
  grid-column: 1 / -1;
}

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

  .motion-background::before,
  .motion-background span,
  .screen-track {
    animation: none;
  }

  .button:hover {
    transform: none;
  }
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: 1fr auto 1fr;
  }

  .main-nav {
    justify-self: center;
  }

  .hero,
  .video-section,
  .about-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-product {
    margin: 0 auto;
    max-width: 860px;
    width: 100%;
  }

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

@media (max-width: 1000px) {
  .site-header {
    grid-template-columns: 1fr auto;
    row-gap: 10px;
  }

  .main-nav {
    grid-column: 1 / -1;
    justify-self: center;
  }

  .language-switch {
    grid-column: 2;
    grid-row: 1;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    row-gap: 0;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
  }

  .language-switch {
    grid-column: 1;
    justify-self: start;
  }

  .main-nav {
    align-items: stretch;
    border-radius: 22px;
    display: none;
    flex-direction: column;
    justify-self: stretch;
    grid-column: 1 / -1;
    margin-top: 12px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .hero h1 {
    font-size: 43px;
  }

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

  .browser-shot {
    transform: none;
  }

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

  .hero-product {
    min-height: 390px;
  }

  .hero-phone {
    right: 2px;
    width: min(34%, 156px);
  }

  .screen-card {
    flex-basis: 330px;
    height: 220px;
  }

  .gallery-filters {
    border-radius: 18px;
    flex-wrap: wrap;
    max-width: 100%;
  }

  .gallery-filter {
    flex: 1 1 calc(50% - 6px);
    min-width: 118px;
  }

  .screen-card-phone {
    flex-basis: 170px;
    height: 320px;
  }

  .screen-label {
    bottom: 12px;
    left: 12px;
  }

  .screen-card-phone .screen-label {
    display: none;
  }

  .store-badges {
    align-items: stretch;
    flex-direction: column;
    margin-top: 4px;
  }

  .store-badge {
    justify-content: flex-start;
    min-width: 0;
    width: 100%;
  }

  .video-copy h2 {
    font-size: 42px;
    line-height: 1.02;
  }

  .video-copy p {
    font-size: 18px;
    line-height: 1.65;
  }

  .video-player {
    aspect-ratio: 16 / 9;
    border-radius: 28px;
  }

  .video-player::after {
    background:
      linear-gradient(90deg, rgba(16, 22, 21, 0.84), rgba(16, 22, 21, 0.18) 70%),
      linear-gradient(rgba(16, 22, 21, 0.02), rgba(16, 22, 21, 0.72));
  }

  .film-grid {
    background-size: 34px 34px;
    opacity: 0.34;
  }

  .film-kicker {
    font-size: 10px;
    left: 28px;
    top: 26px;
  }

  .film-slide {
    left: 28px;
    right: 138px;
    top: 50%;
    transform: translateY(-48%) translateX(18px);
  }

  .video-player:not(.is-playing) .slide-one {
    transform: translateY(-48%) translateX(0);
  }

  .film-slide span {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .film-slide strong {
    font-size: clamp(24px, 7.2vw, 34px);
    line-height: 1.03;
    max-width: 300px;
  }

  .film-slide p {
    display: none;
  }

  .cover-mascot {
    bottom: -20%;
    height: 80%;
    opacity: 0.95;
    right: -4%;
  }

  .play-button {
    bottom: 50%;
    height: 64px;
    right: 28px;
    transform: translateY(50%);
    width: 64px;
  }

  .play-button span {
    border-bottom-width: 11px;
    border-left-width: 17px;
    border-top-width: 11px;
    margin-left: 25px;
  }

  .video-caption {
    bottom: 22px;
    left: 28px;
    right: 112px;
  }

  .video-caption strong {
    font-size: 18px;
    line-height: 1;
  }

  .video-caption small {
    display: none;
  }

  .video-section,
  .app-showcase,
  .about-section,
  .services-section,
  .contact-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

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

  .site-footer nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .video-copy h2 {
    font-size: 38px;
  }

  .film-kicker {
    left: 22px;
    top: 22px;
  }

  .film-slide {
    left: 22px;
    right: 118px;
  }

  .film-slide strong {
    font-size: clamp(22px, 7vw, 30px);
  }

  .cover-mascot {
    height: 76%;
    right: -10%;
  }

  .play-button {
    height: 58px;
    right: 22px;
    width: 58px;
  }

  .play-button span {
    border-bottom-width: 10px;
    border-left-width: 16px;
    border-top-width: 10px;
    margin-left: 23px;
  }

  .video-caption {
    bottom: 20px;
    left: 22px;
    right: 96px;
  }
}
