:root {
  --bg: #f6f8fb;
  --surface: #ffffff;
  --surface-soft: #eef6ff;
  --ink: #132432;
  --muted: #5c6f7d;
  --line: rgba(19, 36, 50, 0.12);
  --blue: #0b7ee8;
  --cyan: #15aeca;
  --green: #32c65a;
  --orange: #ff8a00;
  --shadow: 0 18px 50px rgba(24, 54, 80, 0.14);
  --container: min(1120px, calc(100vw - 2rem));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #fbfdff 0%, var(--bg) 42%, #ffffff 100%);
  color: var(--ink);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.site-header__inner,
.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
}

.brand__mark {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand__mark-link {
  line-height: 0;
  flex: 0 0 auto;
}

.brand__meta {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  min-width: 0;
}

.brand__powered {
  color: var(--muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.brand__powered a {
  color: var(--blue);
  font-weight: 800;
  text-decoration: none;
}

.brand__powered a:hover {
  text-decoration: underline;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.7rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.lang-switch:hover {
  transform: translateY(-1px);
  border-color: rgba(11, 126, 232, 0.32);
  color: var(--blue);
}

.site-nav,
.site-footer__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.site-nav a,
.site-footer__links a,
.site-footer__button,
.text-link {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.site-footer__button {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.text-link {
  color: var(--blue);
}

.button {
  appearance: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1.1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 800;
}

.button--primary {
  color: white !important;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 14px 28px rgba(11, 126, 232, 0.24);
}

.button--secondary {
  color: var(--ink);
  background: white;
  border: 1px solid var(--line);
}

.site-nav .button--secondary {
  background: rgba(255, 255, 255, 0.72);
}

.hero {
  padding: 5.5rem 0 4rem;
  overflow: hidden;
}

.hero__grid,
.split__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  color: #056b86;
  background: #e3f8ff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.04;
}

h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 5.8rem);
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.hero__copy p {
  max-width: 62ch;
  font-size: 1.08rem;
}

.hero__bullets,
.check-list,
.article__content ul {
  padding-left: 1.2rem;
  color: var(--ink);
  line-height: 1.75;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero__actions .button--primary + .button--primary {
  color: var(--blue) !important;
  background: white;
  border: 1px solid rgba(11, 126, 232, 0.28);
  box-shadow: none;
}

.store-links {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.store-links > span {
  flex: 0 0 100%;
  color: var(--muted);
  font-weight: 800;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 10.8rem;
  min-height: 3.2rem;
  padding: 0.45rem 0.8rem;
  border-radius: 0.5rem;
  background: #0b0f14;
  color: white;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(19, 36, 50, 0.16);
}

.store-badge svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
  flex: 0 0 auto;
}

.store-badge span {
  display: grid;
  gap: 0.08rem;
  line-height: 1;
  font-size: 1.05rem;
  font-weight: 800;
}

.store-badge small {
  font-size: 0.68rem;
  font-weight: 700;
  opacity: 0.8;
}

.hero__visual {
  position: relative;
  min-height: 740px;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 10% 0 0 8%;
  border-radius: 2rem;
  background: linear-gradient(135deg, rgba(11, 126, 232, 0.12), rgba(255, 138, 0, 0.16));
  transform: rotate(-5deg);
}

.device {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  width: 8.4rem;
  filter: drop-shadow(0 16px 28px rgba(19, 36, 50, 0.18));
}

.phone {
  position: absolute;
  width: min(58%, 22rem);
  border-radius: 1.4rem;
  box-shadow: var(--shadow);
  background: white;
}

.phone--front {
  z-index: 2;
  right: 4%;
  top: 1.5rem;
}

.phone--back {
  z-index: 1;
  left: 8%;
  bottom: 8rem;
}

.hero__visual .store-links {
  position: absolute;
  right: 4%;
  bottom: 0;
  z-index: 4;
  max-width: min(100%, 28rem);
}

.section {
  padding: 4.5rem 0;
}

.stats,
.grid {
  display: grid;
  gap: 1rem;
}

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

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

.stat,
.article-card,
.workflow article,
.cta,
.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(24, 54, 80, 0.07);
}

.stat,
.article-card,
.workflow article {
  padding: 1.4rem;
}

.stat > strong {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--orange);
  font-size: 2rem;
  line-height: 1;
}

.stat h2 {
  font-size: 1.25rem;
  letter-spacing: 0;
}

.split {
  background: white;
}

.split--reverse {
  background: var(--surface-soft);
}

.components {
  background: white;
}

.components__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.components__copy > p {
  max-width: 62ch;
}

.component-cards {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.component-cards article {
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: #fbfdff;
}

.component-cards h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
  letter-spacing: 0;
}

.component-cards p {
  margin: 0;
}

.components__visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background:
    linear-gradient(90deg, rgba(11, 126, 232, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(11, 126, 232, 0.07) 1px, transparent 1px),
    linear-gradient(135deg, #f7fbff 0%, #eef8f3 100%);
  background-size: 42px 42px, 42px 42px, auto;
  box-shadow: var(--shadow);
}

.pocket-tester,
.app-phone,
.gateway-node,
.lorawan-logo,
.network-label {
  position: absolute;
  z-index: 2;
}

.pocket-tester {
  left: 43%;
  top: 30%;
  width: min(24%, 8.6rem);
}

.pocket-tester img {
  display: block;
  width: 100%;
  filter: drop-shadow(0 18px 28px rgba(19, 36, 50, 0.22));
}

.app-phone {
  left: 7%;
  top: 13%;
  width: min(32%, 12.2rem);
  padding: 0.55rem;
  border: 0.32rem solid #111923;
  border-radius: 2rem;
  background: #111923;
  box-shadow: 0 22px 44px rgba(19, 36, 50, 0.2);
}

.app-phone::before {
  content: "";
  position: absolute;
  top: 0.42rem;
  left: 50%;
  width: 3.2rem;
  height: 0.38rem;
  border-radius: 999px;
  background: #283747;
  transform: translateX(-50%);
  z-index: 3;
}

.app-phone img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19;
  object-fit: cover;
  object-position: top;
  border-radius: 1.35rem;
}

.network-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(19, 36, 50, 0.1);
}

.network-label--bluetooth {
  left: 33%;
  top: 25%;
  color: #0b72b9;
}

.gateway-node {
  right: 6%;
  top: 30%;
  width: min(25%, 9.4rem);
  padding: 0.75rem;
  border: 1px solid rgba(50, 198, 90, 0.32);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 38px rgba(20, 116, 52, 0.13);
}

.gateway-node img {
  display: block;
  width: 100%;
  mix-blend-mode: multiply;
}

.lorawan-logo {
  right: 9%;
  bottom: 14%;
  width: 7.8rem;
  padding: 0.45rem 0.65rem;
  border-radius: 0.45rem;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(19, 36, 50, 0.1);
}

.lorawan-logo img {
  display: block;
  width: 100%;
}

.signal-path {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}

.signal-path span {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  opacity: 0;
  animation: signal-pulse 2.4s ease-in-out infinite;
}

.signal-path span:nth-child(2) {
  animation-delay: 0.35s;
}

.signal-path span:nth-child(3) {
  animation-delay: 0.7s;
}

.signal-path span:nth-child(4) {
  animation-delay: 1.05s;
}

.signal-path--reverse span {
  animation-name: signal-pulse-reverse;
}

.signal-path--bluetooth {
  left: 26%;
  top: 30%;
  width: 26%;
  height: 12rem;
}

.signal-path--bluetooth::before {
  content: none;
}

.signal-path--bluetooth span {
  background: var(--blue);
}

.signal-path--bluetooth span:nth-child(1) {
  left: 5%;
  top: 42%;
}

.signal-path--bluetooth span:nth-child(2) {
  left: 38%;
  top: 48%;
}

.signal-path--bluetooth span:nth-child(3) {
  left: 71%;
  top: 55%;
}

.signal-path--lorawan {
  left: 54%;
  top: 45%;
  width: 35%;
  height: 9rem;
}

.signal-path--lorawan::before {
  content: none;
}

.signal-path--lorawan span {
  background: var(--green);
}

.signal-path--lorawan span:nth-child(1) {
  left: 4%;
  top: 47%;
}

.signal-path--lorawan span:nth-child(2) {
  left: 30%;
  top: 43%;
}

.signal-path--lorawan span:nth-child(3) {
  left: 56%;
  top: 39%;
}

.signal-path--lorawan span:nth-child(4) {
  left: 80%;
  top: 35%;
}

@keyframes signal-pulse {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }

  35% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.8);
  }
}

@keyframes signal-pulse-reverse {
  0% {
    opacity: 0;
    transform: scale(1.8);
  }

  35% {
    opacity: 1;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(0.4);
  }
}

@keyframes staged-signal-pulse {
  0%,
  7%,
  100% {
    opacity: 0;
    transform: scale(0.75);
  }

  3.5% {
    opacity: 1;
    transform: scale(1.8);
  }
}

.components__layout {
  display: grid;
  gap: 2rem;
}

.components__layout .components__copy {
  max-width: 760px;
}

.components__layout .components__copy > p {
  max-width: 68ch;
}

.components__layout .components__visual {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  min-height: 0;
  padding: 2rem;
}

.component-node {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 20rem auto;
  gap: 1rem;
  justify-items: center;
  align-items: end;
  min-width: 0;
}

.component-node .app-phone,
.component-node .pocket-tester,
.component-node .gateway-stack,
.component-node .gateway-node,
.component-node .lorawan-logo {
  position: relative;
  inset: auto;
}

.component-node .app-phone {
  width: min(100%, 8.8rem);
}

.component-node .pocket-tester {
  width: min(100%, 8.2rem);
}

.component-node .gateway-stack {
  display: grid;
  gap: 0.7rem;
  justify-items: center;
  align-self: end;
  width: min(100%, 9.6rem);
}

.component-node .gateway-node {
  width: 100%;
}

.component-node .lorawan-logo {
  width: min(100%, 7rem);
}

.component-node--gateway {
  grid-template-rows: 20rem auto;
}

.component-node--gateway .gateway-stack {
  grid-row: 1;
}

.component-node--gateway .component-card {
  grid-row: 2;
}

.component-card {
  width: 100%;
  min-height: 10.4rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 30px rgba(24, 54, 80, 0.07);
}

.component-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
  letter-spacing: 0;
}

.component-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.58;
}

.components__layout .network-label--bluetooth {
  left: 31%;
  top: 26%;
}

.components__layout .network-label--lorawan {
  left: 64%;
  top: 38%;
  color: #147434;
}

.components__layout .signal-path--bluetooth {
  left: 25%;
  top: 27%;
  width: 25%;
  height: 7rem;
}

.components__layout .signal-path span {
  animation-duration: 7.2s;
  animation-name: staged-signal-pulse;
}

.components__layout .signal-path--reverse span {
  animation-name: staged-signal-pulse;
}

.components__layout .signal-path--bluetooth::before {
  content: none;
}

.components__layout .signal-path--bluetooth span:nth-child(1) {
  left: 7%;
  top: 42%;
  animation-delay: 0s;
}

.components__layout .signal-path--bluetooth span:nth-child(2) {
  left: 40%;
  top: 46%;
  animation-delay: 0.28s;
}

.components__layout .signal-path--bluetooth span:nth-child(3) {
  left: 73%;
  top: 50%;
  animation-delay: 0.56s;
}

.components__layout .signal-path--bluetooth.signal-path--reverse span:nth-child(1) {
  left: 73%;
  top: 50%;
  animation-delay: 4.9s;
}

.components__layout .signal-path--bluetooth.signal-path--reverse span:nth-child(2) {
  left: 40%;
  top: 46%;
  animation-delay: 5.18s;
}

.components__layout .signal-path--bluetooth.signal-path--reverse span:nth-child(3) {
  left: 7%;
  top: 42%;
  animation-delay: 5.46s;
}

.components__layout .signal-path--lorawan {
  left: 56%;
  top: 42%;
  width: 27%;
  height: 6rem;
}

.components__layout .signal-path--lorawan::before {
  content: none;
}

.components__layout .signal-path--lorawan span:nth-child(1) {
  left: 6%;
  top: 42%;
  animation-delay: 1.1s;
}

.components__layout .signal-path--lorawan span:nth-child(2) {
  left: 32%;
  top: 42%;
  animation-delay: 1.38s;
}

.components__layout .signal-path--lorawan span:nth-child(3) {
  left: 58%;
  top: 42%;
  animation-delay: 1.66s;
}

.components__layout .signal-path--lorawan span:nth-child(4) {
  left: 82%;
  top: 42%;
  animation-delay: 1.94s;
}

.components__layout .signal-path--lorawan.signal-path--reverse span:nth-child(1) {
  left: 82%;
  top: 42%;
  animation-delay: 3.55s;
}

.components__layout .signal-path--lorawan.signal-path--reverse span:nth-child(2) {
  left: 58%;
  top: 42%;
  animation-delay: 3.83s;
}

.components__layout .signal-path--lorawan.signal-path--reverse span:nth-child(3) {
  left: 32%;
  top: 42%;
  animation-delay: 4.11s;
}

.components__layout .signal-path--lorawan.signal-path--reverse span:nth-child(4) {
  left: 6%;
  top: 42%;
  animation-delay: 4.39s;
}

.screenshot-panel {
  margin: 0;
  padding: 1rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  box-shadow: var(--shadow);
}

.screenshot-panel img {
  display: block;
  width: 100%;
  max-height: 720px;
  object-fit: contain;
  border-radius: 0.35rem;
}

.screenshot-panel--wide img {
  max-height: 600px;
}

.section__intro {
  max-width: 760px;
  margin-bottom: 1.6rem;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.workflow span {
  display: inline-grid;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1.4rem;
  place-items: center;
  border-radius: 999px;
  background: var(--blue);
  color: white;
  font-weight: 900;
}

.gallery {
  background: #101c26;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: start;
}

.gallery img {
  width: 100%;
  max-height: 620px;
  object-fit: contain;
  border-radius: 0.6rem;
  background: white;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 1rem 1.2rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin-top: 0.8rem;
}

.cta {
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(135deg, #102e48, #0b72b9);
}

.cta h2,
.cta p {
  color: white;
}

.cta .store-links > span {
  color: rgba(255, 255, 255, 0.78);
}

.cta .store-badge {
  background: white;
  color: var(--ink);
}

.cta p {
  max-width: 760px;
  opacity: 0.86;
}

.cta__actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.sales-dialog,
.app-dialog {
  width: min(32rem, calc(100vw - 2rem));
  border: 0;
  padding: 0;
  border-radius: 0.75rem;
  background: transparent;
}

.sales-dialog::backdrop,
.app-dialog::backdrop {
  background: rgba(16, 33, 46, 0.42);
  backdrop-filter: blur(6px);
}

.sales-dialog__form,
.app-dialog__panel {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 60px rgba(24, 54, 80, 0.22);
}

.app-dialog .store-links {
  margin-top: 1.5rem;
}

.app-dialog .store-badge {
  border-color: var(--line);
}

.sales-dialog__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.sales-dialog__header h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.sales-dialog__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.sales-dialog__field {
  display: grid;
  gap: 0.4rem;
  margin-top: 1rem;
}

.sales-dialog__field span {
  color: var(--ink);
  font-weight: 800;
}

.sales-dialog__field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--ink);
  background: white;
}

.sales-dialog__field input:invalid[data-touched="true"] {
  border-color: #d14b4b;
  box-shadow: 0 0 0 3px rgba(209, 75, 75, 0.12);
}

.sales-dialog__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.sales-dialog__status {
  margin: 1rem 0 0;
  font-weight: 800;
}

.sales-dialog__status[data-state="success"] {
  color: #20853d;
}

.sales-dialog__status[data-state="error"] {
  color: #b3261e;
}

.blog-hero,
.article-hero,
.not-found {
  padding: 5rem 0 2.5rem;
}

.blog-hero h1,
.article-hero h1 {
  max-width: 18ch;
}

.article-list {
  display: grid;
  gap: 1rem;
  padding-bottom: 4rem;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.article__content {
  max-width: 760px;
  padding-bottom: 2rem;
}

.article__content h2 {
  margin-top: 2.2rem;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
}

.article__content p,
.article__content li {
  font-size: 1.05rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: white;
}

.site-footer__inner {
  align-items: stretch;
  flex-direction: column;
}

.site-footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer p {
  margin: 0.3rem 0 0;
}

.site-footer__store-row {
  padding-top: 0.5rem;
}

.site-footer__store-row .store-links {
  margin-top: 0;
}

.site-footer__store-row .store-badge {
  min-width: 9.7rem;
  min-height: 2.75rem;
  padding: 0.38rem 0.65rem;
  box-shadow: none;
}

.site-footer__store-row .store-badge svg {
  width: 1.35rem;
  height: 1.35rem;
}

.site-footer__store-row .store-badge span {
  font-size: 0.92rem;
}

@media (max-width: 860px) {
  .site-header__inner,
  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 3rem;
  }

  .hero__grid,
  .split__grid,
  .components__grid,
  .stats,
  .grid--2,
  .workflow,
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    min-height: 680px;
  }

  .components__visual {
    min-height: 520px;
  }

  .components__layout .components__visual {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.2rem;
  }

  .component-node {
    grid-template-rows: auto auto;
  }

  .component-node--gateway,
  .component-node--gateway .gateway-stack,
  .component-node--gateway .gateway-node,
  .component-node--gateway .lorawan-logo,
  .component-node--gateway .component-card {
    grid-row: auto;
  }

  .components__layout .signal-path,
  .components__layout .network-label {
    display: none;
  }

  .phone {
    width: min(68%, 20rem);
  }
}

@media (max-width: 560px) {
  .site-nav {
    gap: 0.75rem;
  }

  .site-nav a:not(.button) {
    font-size: 0.92rem;
  }

  h1 {
    font-size: 3rem;
  }

  .hero__visual {
    min-height: 570px;
  }

  .components__visual {
    min-height: 460px;
  }

  .device {
    width: 6.2rem;
  }

  .phone {
    width: 74%;
  }

  .store-badge {
    width: 100%;
    max-width: 16rem;
  }

  .pocket-tester {
    left: 40%;
    top: 39%;
    width: 5.7rem;
  }

  .app-phone {
    left: 6%;
    width: 9rem;
  }

  .component-node .gateway-stack {
    width: 5.8rem;
  }

  .gateway-node {
    padding: 0.5rem;
  }

  .lorawan-logo {
    width: 5.8rem;
  }

  .network-label--bluetooth {
    left: 31%;
    top: 28%;
  }

  .signal-path--bluetooth {
    left: 27%;
    top: 33%;
    width: 27%;
  }

  .signal-path--lorawan {
    left: 52%;
    top: 51%;
    width: 36%;
  }
}
