:root {
  --page: #eef3f5;
  --page-rgb: 238, 243, 245;
  --panel: #e9eef0;
  --panel-strong: #dfe5e8;
  --ink: #090909;
  --copy: #555b5f;
  --soft: #71777b;
  --line: rgba(30, 34, 36, 0.16);
  --line-strong: rgba(30, 34, 36, 0.24);
  --button: #202020;
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 0.9, 0.22, 1);
  --headline-scale: 0.9;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 1180px;
  background: var(--page);
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

img,
svg {
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  height: 84px;
  padding: 0 54px;
  border-bottom: 1px solid rgba(17, 17, 17, 0);
  background: rgba(var(--page-rgb), 0.68);
  -webkit-backdrop-filter: blur(22px) saturate(118%);
  backdrop-filter: blur(22px) saturate(118%);
  box-shadow: 0 18px 46px rgba(18, 22, 24, 0);
  transition: background 560ms var(--ease-premium),
    border-color 560ms var(--ease-premium),
    box-shadow 560ms var(--ease-premium),
    height 560ms var(--ease-premium);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(20, 22, 24, 0.14);
  background: rgba(var(--page-rgb), 0.84);
  box-shadow: 0 18px 46px rgba(18, 22, 24, 0.08);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header {
    background: rgba(var(--page-rgb), 0.96);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 148px;
  height: 42px;
}

.brand img {
  width: 100%;
  height: auto;
  filter: invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 44px;
  margin-left: auto;
  color: #171717;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}

.site-nav a {
  white-space: nowrap;
  transition: color 360ms var(--ease-soft), opacity 360ms var(--ease-soft);
}

.site-nav a:not(.order-button):hover {
  opacity: 0.58;
}

.sign-in-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 2px;
  font-weight: 600;
}

.order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 48px;
  margin-left: 6px;
  border-radius: 999px;
  background: var(--button);
  color: #f4f4f4;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  transition: background 420ms var(--ease-premium),
    transform 420ms var(--ease-premium),
    box-shadow 420ms var(--ease-premium);
}

.order-button:hover,
.get-card-button:hover {
  background: #111111;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  color: #111111;
  box-shadow: 0 12px 26px rgba(27, 33, 36, 0.08);
}

.nav-toggle span {
  position: absolute;
  width: 16px;
  height: 1.5px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 240ms var(--ease-premium);
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.site-header.is-nav-open .nav-toggle span:first-child {
  transform: rotate(45deg);
}

.site-header.is-nav-open .nav-toggle span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(500px, 42vw, 654px);
  column-gap: 28px;
  min-height: 638px;
  padding: 60px 44px 52px 68px;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: min(100%, 640px);
  padding-top: 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  height: 36px;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: #202325;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow-icon,
.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.eyebrow-icon {
  width: 20px;
  height: 20px;
}

.eyebrow-icon svg,
.feature-icon svg,
.floating-label svg,
.audience-strip svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.eyebrow-dot {
  color: #6d7377;
  font-size: 14px;
  letter-spacing: 0;
}

.hero h1 {
  margin: 30px 0 0;
  color: #040404;
  font-size: clamp(56px, 4.45vw, 72px);
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: 0;
  transform: scaleX(var(--headline-scale));
  transform-origin: left top;
}

.hero h1 span {
  white-space: nowrap;
}

.hero-copy > p {
  max-width: 600px;
  margin: 26px 0 0;
  color: #5d6367;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 38px;
  margin-top: 34px;
}

.get-card-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 198px;
  height: 52px;
  border-radius: 999px;
  background: var(--button);
  color: #f6f6f6;
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  transition: background 420ms var(--ease-premium),
    transform 420ms var(--ease-premium),
    box-shadow 420ms var(--ease-premium);
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 34px;
  border-bottom: 1px solid #2a2d2f;
  color: #222527;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  transition: gap 420ms var(--ease-premium), opacity 360ms var(--ease-soft);
}

.secondary-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.secondary-link:hover {
  gap: 17px;
  opacity: 0.72;
}

.hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  margin-top: 36px;
  max-width: 592px;
}

.hero-feature-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 72px;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 18px 35px rgba(27, 33, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1f1f1f;
  color: #f7f7f7;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.hero-feature-card h3 {
  margin: 0 0 6px;
  color: #1d2022;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
}

.hero-feature-card p {
  margin: 0;
  color: #5a6064;
  font-size: 12.5px;
  font-weight: 400;
  line-height: 1.25;
}

.hero-visual {
  position: relative;
  z-index: 1;
  align-self: start;
  min-height: 528px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 48px;
  background: rgba(247, 250, 251, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 32px 78px rgba(56, 66, 72, 0.09);
  overflow: hidden;
}

.hero-visual::before {
  position: absolute;
  inset: 58px 62px;
  border: 1px dashed rgba(71, 78, 82, 0.24);
  border-radius: 50%;
  content: "";
}

.hero-visual::after {
  position: absolute;
  top: 98px;
  left: 104px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(125, 135, 141, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 38px rgba(125, 135, 141, 0.045),
    0 0 0 78px rgba(125, 135, 141, 0.035),
    0 0 0 118px rgba(125, 135, 141, 0.025);
  content: "";
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(125, 135, 141, 0.12);
  border-radius: 50%;
  pointer-events: none;
}

.ring-one {
  top: 134px;
  left: 166px;
  width: 252px;
  height: 252px;
}

.ring-two {
  top: 169px;
  left: 202px;
  width: 184px;
  height: 184px;
}

.hero-cards {
  position: absolute;
  z-index: 2;
  top: 49%;
  left: 53%;
  width: min(80%, 540px);
  height: auto;
  filter: drop-shadow(0 29px 28px rgba(0, 0, 0, 0.2));
  transform: translate3d(-50%, -50%, 0) rotate(0.15deg);
  transform-origin: center center;
}

.floating-label {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
  color: #101314;
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  box-shadow: 0 18px 34px rgba(24, 30, 34, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  --float-delay: 900ms;
}

.floating-label svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.9;
}

.label-business {
  top: 88px;
  left: 56px;
}

.label-wifi {
  top: 253px;
  right: 18px;
}

.label-id {
  bottom: 132px;
  left: 60px;
  --float-delay: 1180ms;
}

.label-lost {
  right: 66px;
  bottom: 38px;
  --float-delay: 1360ms;
}

.audience-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 124px;
  padding: 0 78px;
  border-top: 1px solid rgba(30, 34, 36, 0.12);
  border-bottom: 1px solid rgba(30, 34, 36, 0.12);
  background: rgba(var(--page-rgb), 0.82);
}

.audience-strip article {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 124px;
  padding: 0 32px;
}

.audience-strip article:not(:last-child)::after {
  position: absolute;
  top: 41px;
  right: 0;
  width: 1px;
  height: 42px;
  background: rgba(38, 42, 44, 0.22);
  content: "";
}

.audience-strip svg {
  width: 31px;
  height: 31px;
  color: #42474a;
  stroke-width: 1.65;
}

.audience-strip h3 {
  margin: 0 0 7px;
  color: #222527;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
}

.audience-strip p {
  margin: 0;
  color: #62686c;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
}

.products-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(430px, 0.86fr) minmax(660px, 1.14fr);
  gap: 56px;
  min-height: 840px;
  padding: 92px 54px 84px 68px;
  border-top: 1px solid rgba(30, 34, 36, 0.08);
  background: var(--page);
  overflow: hidden;
}

.pricing-anchor {
  position: absolute;
  top: 0;
  left: 0;
}

.products-copy {
  align-self: center;
  max-width: 610px;
}

.products-label {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: #151719;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 16px 32px rgba(27, 33, 36, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.products-label-icon,
.products-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.products-label-icon {
  width: 20px;
  height: 20px;
}

.products-copy svg,
.product-card svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.products-label svg,
.products-note svg {
  width: 100%;
  height: 100%;
}

.products-copy h2 {
  margin: 48px 0 0;
  color: #050505;
  font-size: clamp(52px, 4.65vw, 74px);
  font-weight: 760;
  line-height: 1.15;
  letter-spacing: 0;
}

.products-copy > p {
  max-width: 575px;
  margin: 32px 0 0;
  color: #555c60;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
}

.product-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 60px;
  border-top: 1px solid rgba(30, 34, 36, 0.1);
  border-bottom: 1px solid rgba(30, 34, 36, 0.1);
}

.product-benefits article {
  min-height: 132px;
  padding: 20px 20px 18px 0;
}

.product-benefits article:not(:first-child) {
  padding-left: 22px;
  border-left: 1px solid rgba(30, 34, 36, 0.13);
}

.product-benefits svg {
  width: 34px;
  height: 34px;
  color: #161819;
  stroke-width: 1.6;
}

.product-benefits h3 {
  margin: 18px 0 10px;
  color: #111314;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.1;
}

.product-benefits p {
  margin: 0;
  color: #596065;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.42;
}

.products-note {
  display: grid;
  grid-template-columns: 45px 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 72px;
  margin-top: 62px;
  padding: 13px 22px 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.46);
  color: #191c1e;
  box-shadow: 0 19px 42px rgba(27, 33, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: transform 520ms var(--ease-premium),
    box-shadow 520ms var(--ease-premium);
}

.products-note:hover {
  transform: translate3d(0, -2px, 0);
  box-shadow: 0 24px 50px rgba(27, 33, 36, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.products-note-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  color: #202325;
  box-shadow: 0 10px 22px rgba(27, 33, 36, 0.08);
}

.products-note-icon svg {
  width: 22px;
  height: 22px;
}

.products-note > span:not(.products-note-icon) {
  color: #25292b;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
}

.products-note strong {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #25292b;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.products-note strong svg {
  width: 18px;
  height: 18px;
  stroke-width: 1.9;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-self: center;
}

.product-card {
  position: relative;
  min-height: 395px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 22px 48px rgba(27, 33, 36, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: transform 650ms var(--ease-premium),
    box-shadow 650ms var(--ease-premium),
    border-color 650ms var(--ease-premium);
}

.product-card.is-visible:hover {
  border-color: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 58px rgba(27, 33, 36, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translate3d(0, -4px, 0);
}

.product-card.is-unavailable {
  border-color: rgba(27, 33, 36, 0.08);
}

.product-card.is-unavailable .product-media img {
  filter: grayscale(0.18) drop-shadow(0 20px 20px rgba(0, 0, 0, 0.14));
}

.product-status {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: #151719;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(27, 33, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.product-status svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.9;
}

.product-status-muted {
  color: #33383a;
}

.product-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 236px;
  margin-bottom: 4px;
}

.product-media img {
  position: relative;
  z-index: 2;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(0, 0, 0, 0.18));
  transition: transform 750ms var(--ease-premium),
    filter 750ms var(--ease-premium);
}

.product-card.is-visible:hover .product-media img {
  filter: drop-shadow(0 28px 24px rgba(0, 0, 0, 0.2));
  transform: translate3d(0, -4px, 0) rotate(-0.2deg);
}

.product-orbit {
  position: absolute;
  inset: 8px 28px;
  border: 1px solid rgba(125, 135, 141, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(125, 135, 141, 0.028),
    0 0 0 48px rgba(125, 135, 141, 0.02),
    0 0 0 72px rgba(125, 135, 141, 0.016);
}

.product-media-business img {
  width: min(82%, 330px);
}

.product-media-id img {
  max-height: 248px;
  transform: translateY(-12px);
}

.product-card.is-visible:hover .product-media-id img {
  transform: translate3d(0, -16px, 0) rotate(-0.2deg);
}

.product-media-wifi img {
  width: min(86%, 350px);
  transform: translateY(2px);
}

.product-card.is-visible:hover .product-media-wifi img {
  transform: translate3d(0, -2px, 0) rotate(-0.2deg);
}

.product-media-lost img {
  width: min(88%, 350px);
  transform: translateY(-4px);
}

.product-card.is-visible:hover .product-media-lost img {
  transform: translate3d(0, -8px, 0) rotate(-0.2deg);
}

.product-card-body {
  position: relative;
  z-index: 3;
}

.product-title-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  padding: 0 20px;
  border-radius: 999px;
  background: #111111;
  color: #f7f7f7;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
}

.product-card-body p {
  max-width: 330px;
  min-height: 56px;
  margin: 14px 0 0;
  color: #4f565a;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.45;
}

.product-buy-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.product-buy-row strong {
  color: #1d2022;
  font-size: 13px;
  font-weight: 720;
  line-height: 1;
}

.product-buy-row a,
.product-buy-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  min-height: 34px;
  border: 0;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  transition: transform 360ms var(--ease-premium),
    box-shadow 360ms var(--ease-premium);
}

.product-buy-row a:hover {
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.shopee-helper {
  margin: 8px 0 0;
  color: rgba(35, 39, 42, 0.62);
  font-size: 12px;
  font-weight: 700;
}

.product-buy-row button:disabled {
  background: #d8dcde;
  color: #565c60;
  cursor: not-allowed;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(30, 34, 36, 0.1);
  color: #565c60;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
}

.product-meta svg {
  width: 20px;
  height: 20px;
  color: #1d2022;
}

.how-it-works {
  position: relative;
  height: 455px;
}

.works-inner {
  position: absolute;
  top: 48px;
  left: 216px;
  width: 1008px;
}

.works-intro h2 {
  margin: 0;
  color: #56595b;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
}

.works-intro p {
  margin: 18px 0 0;
  color: #7f8386;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 87px;
  margin-top: 71px;
}

.step {
  position: relative;
  width: 196px;
  min-height: 171px;
  padding: 15px 10px 18px;
}

.step::before,
.step::after {
  position: absolute;
  width: 48px;
  height: 52px;
  content: "";
}

.step::before {
  top: 0;
  left: 0;
  border-top: 1px solid rgba(90, 96, 100, 0.64);
  border-left: 1px solid rgba(90, 96, 100, 0.64);
}

.step::after {
  right: 0;
  bottom: 0;
  border-right: 1px solid rgba(90, 96, 100, 0.64);
  border-bottom: 1px solid rgba(90, 96, 100, 0.64);
}

.step-number {
  display: block;
  color: #101010;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}

.step h3 {
  margin: 15px 0 10px;
  color: #1b1b1b;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.step p {
  width: 145px;
  margin: 0;
  color: #727578;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.08;
}

.use-cases {
  position: relative;
  display: grid;
  grid-template-columns: 500px minmax(660px, 1fr);
  align-items: start;
  gap: 50px;
  height: 760px;
  padding: 154px 78px 56px 108px;
  background: #ececec;
  overflow: hidden;
}

.use-left {
  position: relative;
  z-index: 1;
}

.section-label {
  margin: 0;
  color: #2c2e30;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 8px;
  line-height: 1;
  text-transform: uppercase;
}

.use-left h2 {
  display: inline-block;
  margin: 54px 0 0;
  color: #202224;
  font-size: 66px;
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 12px 22px rgba(0, 0, 0, 0.04);
  transform: scaleX(0.92);
  transform-origin: left center;
  white-space: nowrap;
}

.use-summary {
  width: 374px;
  margin: 43px 0 0;
  color: #333436;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.55;
}

.cases-list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 62px;
}

.case-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  column-gap: 16px;
  min-height: 132px;
  padding: 1px 0 31px;
  border-bottom: 1px solid rgba(110, 112, 114, 0.3);
  color: #111111;
  transition: border-color 520ms var(--ease-premium),
    color 520ms var(--ease-premium),
    transform 520ms var(--ease-premium);
}

.case-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.case-number {
  color: #56595b;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
}

.case-item h3 {
  margin: 0 0 13px;
  color: #202224;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.08;
}

.case-item p {
  width: 272px;
  margin: 0;
  color: #424649;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.case-item.is-visible:hover {
  border-color: rgba(45, 47, 49, 0.48);
  transform: translate3d(0, -3px, 0);
}

.case-item.is-visible:hover .case-number {
  color: #1f2123;
}

.page-tail {
  display: none;
  height: 0;
  background: var(--page);
}

.why-ugnay {
  position: relative;
  display: grid;
  grid-template-columns: minmax(470px, 0.92fr) minmax(500px, 0.88fr);
  gap: 64px;
  min-height: 700px;
  padding: 86px 86px 30px 104px;
  border-top: 1px solid rgba(30, 34, 36, 0.08);
  background: #f4f5f5;
  overflow: hidden;
}

.why-visual {
  position: relative;
  min-width: 0;
}

.why-visual h2 {
  margin: 46px 0 0;
  color: #070707;
  font-size: clamp(58px, 5vw, 82px);
  font-weight: 760;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

.section-rule {
  display: block;
  width: 82px;
  height: 2px;
  margin-top: 34px;
  background: #2c2f31;
}

.why-visual img {
  width: min(380px, 78%);
  max-height: 550px;
  margin: 22px 0 0 6px;
  object-fit: contain;
  filter: drop-shadow(0 26px 26px rgba(0, 0, 0, 0.24));
}

.why-list {
  align-self: center;
  display: grid;
  padding-top: 12px;
}

.why-item {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 24px;
  min-height: 132px;
  padding: 0 0 34px;
  border-bottom: 1px solid rgba(76, 80, 82, 0.22);
  color: #111111;
}

.why-item + .why-item {
  padding-top: 34px;
}

.why-item span {
  color: #63686c;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.1;
}

.why-item h3 {
  margin: 0 0 16px;
  color: #111111;
  font-size: 26px;
  font-weight: 690;
  line-height: 1.06;
  letter-spacing: -0.01em;
}

.why-item p {
  max-width: 300px;
  margin: 0;
  color: #555b5f;
  font-size: 17px;
  line-height: 1.5;
}

.bottom-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(400px, 0.86fr) minmax(360px, 0.74fr);
  align-items: center;
  gap: 42px;
  min-height: 360px;
  margin: 28px 48px 0;
  padding: 54px 68px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: #111313;
  color: #ffffff;
  overflow: hidden;
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.16);
}

.bottom-cta::before,
.bottom-cta::after {
  position: absolute;
  right: 8%;
  top: 50%;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, 0.045);
  border-radius: 50%;
  content: "";
  transform: translateY(-50%);
}

.bottom-cta::after {
  right: 1%;
  width: 390px;
  height: 390px;
}

.bottom-cta-copy,
.bottom-cta-card {
  position: relative;
  z-index: 1;
}

.bottom-cta-copy p {
  margin: 0 0 24px;
  color: #e8ecee;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 1.4px;
  line-height: 1;
  text-transform: uppercase;
}

.bottom-cta-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 3.7vw, 56px);
  font-weight: 720;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.bottom-cta-copy > span {
  display: block;
  max-width: 390px;
  margin-top: 22px;
  color: #c9ced1;
  font-size: 16px;
  line-height: 1.55;
}

.bottom-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.bottom-cta-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 560;
  transition: transform 420ms var(--ease-premium),
    border-color 420ms var(--ease-premium),
    background 420ms var(--ease-premium);
}

.bottom-cta-actions a:first-child {
  border-color: #ffffff;
  background: #ffffff;
  color: #111111;
}

.bottom-cta-actions a:hover {
  border-color: rgba(255, 255, 255, 0.6);
  transform: translate3d(0, -2px, 0);
}

.bottom-cta-actions svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.bottom-cta-card {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 0;
}

.bottom-cta-card img {
  width: min(500px, 112%);
  opacity: 0.9;
  transform: rotate(-7deg);
  filter: drop-shadow(0 28px 28px rgba(0, 0, 0, 0.42));
}

.site-footer {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 72px;
  padding: 50px 54px 34px;
  background: #0d0f0f;
  color: #d8dcde;
}

.footer-brand img {
  width: 160px;
  filter: invert(1);
}

.footer-brand p {
  max-width: 230px;
  margin: 34px 0 0;
  color: #b7bdc1;
  font-size: 17px;
  line-height: 1.55;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}

.footer-socials a {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #f3f5f5;
}

.footer-socials svg,
.footer-country svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
}

.footer-links h3 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin-top: 14px;
  color: #c0c6ca;
  font-size: 16px;
  line-height: 1.22;
  transition: color 260ms var(--ease-premium);
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 38px;
  color: #a9b0b4;
  font-size: 14px;
}

.footer-country {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #f0f2f2;
}

[data-animate] {
  opacity: 0;
  filter: blur(8px);
  transform: translate3d(0, 34px, 0);
  transition: opacity 1080ms var(--ease-premium),
    filter 1180ms var(--ease-premium),
    transform 1220ms var(--ease-premium),
    border-color 520ms var(--ease-premium),
    color 520ms var(--ease-premium);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, filter, transform;
}

[data-animate].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.hero h1[data-animate] {
  transform: translate3d(0, 34px, 0) scaleX(var(--headline-scale));
}

.hero h1[data-animate].is-visible {
  transform: translate3d(0, 0, 0) scaleX(var(--headline-scale));
}

.hero-visual.is-visible .hero-cards {
  animation: hero-card-float 12s var(--ease-soft) 900ms infinite alternate;
}

.hero-visual.is-visible .floating-label {
  animation: label-float 9s var(--ease-soft) var(--float-delay) infinite alternate;
}

.step.is-visible::before,
.step.is-visible::after {
  transition: border-color 900ms var(--ease-premium) 220ms;
}

@keyframes hero-card-float {
  from {
    transform: translate3d(-50%, -50%, 0) rotate(0.15deg);
  }

  to {
    transform: translate3d(-50%, calc(-50% - 8px), 0) rotate(-0.25deg);
  }
}

@keyframes label-float {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(0, -5px, 0);
  }
}

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

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

  [data-animate],
  .hero h1[data-animate] {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .hero h1[data-animate] {
    transform: scaleX(var(--headline-scale));
  }
}

@media (max-width: 1180px) {
  body {
    min-width: 0;
  }

  .site-header {
    height: auto;
    min-height: 76px;
    padding: 18px 24px;
  }

  .brand {
    width: 132px;
  }

  .site-nav {
    display: flex;
    gap: 14px;
    margin-left: auto;
  }

  .site-nav a:not(.order-button):not(.sign-in-link) {
    display: none;
  }

  .sign-in-link {
    display: inline-flex;
    font-size: 14px;
  }

  .order-button {
    width: 126px;
    height: 42px;
    margin-left: 0;
    font-size: 14px;
  }

  .hero,
  .products-section,
  .how-it-works,
  .use-cases,
  .page-tail {
    height: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    row-gap: 44px;
    min-height: 0;
    padding: 44px 24px 72px;
  }

  .hero-copy {
    width: auto;
    padding-top: 0;
  }

  .hero-eyebrow {
    max-width: 100%;
    gap: 10px;
    height: 36px;
    padding: 0 14px;
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .hero h1,
  .hero h1[data-animate],
  .hero h1[data-animate].is-visible {
    font-size: clamp(44px, 11vw, 64px);
    transform: none;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-copy > p {
    max-width: 640px;
    font-size: 17px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 420px;
  }

  .hero-visual {
    min-height: 430px;
    border-radius: 34px;
  }

  .hero-visual::before {
    inset: 54px 34px;
  }

  .hero-visual::after {
    top: 96px;
    left: 52px;
    width: 260px;
    height: 260px;
  }

  .hero-cards {
    width: min(88%, 520px);
  }

  .floating-label {
    min-height: 42px;
    padding: 0 13px;
    font-size: 12px;
  }

  .label-business {
    top: 46px;
    left: 24px;
  }

  .label-wifi {
    top: 210px;
    right: 16px;
  }

  .label-id {
    bottom: 98px;
    left: 20px;
  }

  .label-lost {
    right: 22px;
    bottom: 22px;
  }

  .audience-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px 24px;
  }

  .audience-strip article {
    min-height: 96px;
    padding: 0 18px;
  }

  .audience-strip article::after {
    display: none;
  }

  .products-section {
    grid-template-columns: 1fr;
    gap: 54px;
    min-height: 0;
    padding: 78px 24px 82px;
  }

  .products-copy {
    max-width: 760px;
  }

  .products-copy h2 {
    max-width: 700px;
    font-size: clamp(48px, 8vw, 66px);
  }

  .products-copy > p {
    max-width: 680px;
  }

  .product-benefits,
  .products-note {
    max-width: 760px;
  }

  .products-grid {
    width: min(100%, 860px);
    align-self: start;
  }

  .product-card {
    min-height: 388px;
  }

  .product-media {
    height: 226px;
  }

  .how-it-works {
    padding: 70px 24px 90px;
  }

  .works-inner,
  .use-left,
  .case-item {
    position: static;
  }

  .works-inner {
    width: auto;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .use-cases {
    display: block;
    min-height: 0;
    padding: 84px 24px 96px;
  }

  .use-left {
    padding-top: 0;
  }

  .section-label {
    font-size: 13px;
    letter-spacing: 7px;
  }

  .use-left h2 {
    font-size: 44px;
    transform: none;
    white-space: normal;
  }

  .use-summary {
    width: auto;
    max-width: 430px;
    margin-top: 32px;
    font-size: 18px;
  }

  .cases-list {
    grid-template-columns: 1fr;
    margin-top: 48px;
  }

  .case-item {
    grid-template-columns: 42px 1fr;
    min-height: auto;
    padding: 28px 0 30px;
  }

  .case-item:first-child {
    padding-top: 0;
  }

  .case-item:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(110, 112, 114, 0.3);
  }

  .case-item:last-child {
    border-bottom: 0;
  }

  .case-number {
    font-size: 17px;
  }

  .case-item h3 {
    font-size: 19px;
  }

  .case-item p {
    width: auto;
    max-width: 330px;
    font-size: 15px;
  }
}

@media (max-width: 760px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    min-height: 68px;
    padding: 12px 16px;
  }

  .brand {
    width: 112px;
  }

  .order-button {
    width: 112px;
    height: 40px;
    font-size: 13px;
  }

  .hero {
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 0;
    padding: 26px 16px 44px;
  }

  .hero-copy {
    display: contents;
  }

  .hero-eyebrow {
    justify-self: start;
    order: 1;
    height: 34px;
    max-width: calc(100vw - 32px);
    gap: 8px;
    padding: 0 13px;
    font-size: 9.5px;
    letter-spacing: 1.15px;
  }

  .eyebrow-icon {
    width: 17px;
    height: 17px;
  }

  .hero h1,
  .hero h1[data-animate],
  .hero h1[data-animate].is-visible {
    order: 2;
    max-width: 94vw;
    margin-top: 28px;
    font-size: clamp(39px, 10.6vw, 48px);
    font-weight: 760;
    line-height: 1.03;
    transform: none;
  }

  .hero h1 span {
    white-space: normal;
  }

  .hero-visual {
    order: 5;
    min-height: auto;
    aspect-ratio: 1.12;
    margin-top: 22px;
    border-radius: 30px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72),
      0 24px 58px rgba(56, 66, 72, 0.12);
  }

  .hero-visual::before {
    inset: 34px 28px;
  }

  .hero-visual::after {
    top: 52px;
    left: 50%;
    width: 210px;
    height: 210px;
    transform: translateX(-50%);
    box-shadow: 0 0 0 28px rgba(125, 135, 141, 0.045),
      0 0 0 57px rgba(125, 135, 141, 0.035),
      0 0 0 86px rgba(125, 135, 141, 0.025);
  }

  .ring-one {
    top: 78px;
    left: 50%;
    width: 180px;
    height: 180px;
    transform: translateX(-50%);
  }

  .ring-two {
    top: 105px;
    left: 50%;
    width: 126px;
    height: 126px;
    transform: translateX(-50%);
  }

  .hero-cards {
    top: 51%;
    left: 52%;
    width: min(88%, 330px);
  }

  .floating-label {
    display: inline-flex;
    min-height: 32px;
    gap: 7px;
    padding: 0 10px;
    border-radius: 9px;
    font-size: 10.5px;
  }

  .floating-label svg {
    width: 14px;
    height: 14px;
  }

  .label-business {
    top: 22px;
    left: 14px;
  }

  .label-wifi {
    top: 106px;
    right: 12px;
  }

  .label-id {
    bottom: 70px;
    left: 14px;
  }

  .label-lost {
    right: 18px;
    bottom: 18px;
  }

  .hero-copy > p {
    order: 3;
    max-width: none;
    margin-top: 20px;
    font-size: 15.5px;
    line-height: 1.48;
  }

  .hero-actions {
    order: 4;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    width: 100%;
    margin-top: 22px;
  }

  .get-card-button {
    width: 100%;
    height: 50px;
    font-size: 12.5px;
  }

  .secondary-link {
    justify-content: center;
    min-height: 50px;
    padding: 0 14px;
    border: 1px solid rgba(30, 34, 36, 0.15);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.44);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
    font-size: 0;
  }

  .secondary-link svg {
    width: 19px;
    height: 19px;
  }

  .hero-feature-grid {
    order: 6;
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(206px, 72%);
    grid-template-columns: none;
    gap: 10px;
    max-width: none;
    width: calc(100vw - 16px);
    margin: 26px -16px 0 0;
    padding: 0 16px 10px 0;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .hero-feature-grid.is-auto-scrolling {
    scroll-snap-type: none;
  }

  .hero-feature-grid::-webkit-scrollbar {
    display: none;
  }

  .hero-feature-card {
    min-height: 76px;
    border-radius: 16px;
    scroll-snap-align: start;
  }

  .hero-feature-grid.is-auto-scrolling .hero-feature-card {
    scroll-snap-align: none;
  }

  .audience-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 18px 16px 42px;
    border: 0;
    background: var(--page);
  }

  .audience-strip article {
    min-height: 118px;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 14px;
    border: 1px solid rgba(30, 34, 36, 0.12);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.42);
    box-shadow: 0 18px 36px rgba(27, 33, 36, 0.06),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  .audience-strip svg {
    width: 24px;
    height: 24px;
  }

  .audience-strip h3 {
    margin-bottom: 8px;
    font-size: 13.5px;
    line-height: 1.15;
  }

  .audience-strip p {
    font-size: 12.5px;
    line-height: 1.32;
  }

  .products-section {
    display: block;
    padding: 64px 16px 70px;
  }

  .products-label {
    min-height: 38px;
    padding: 0 16px;
    font-size: 11px;
    letter-spacing: 2.3px;
  }

  .products-label-icon {
    width: 18px;
    height: 18px;
  }

  .products-copy h2 {
    margin-top: 34px;
    font-size: clamp(38px, 10.2vw, 46px);
    font-weight: 750;
    line-height: 1.13;
  }

  .products-copy > p {
    margin-top: 22px;
    font-size: 15.5px;
    line-height: 1.52;
  }

  .product-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
    border: 0;
  }

  .product-benefits article,
  .product-benefits article:not(:first-child) {
    min-height: 124px;
    padding: 15px 14px;
    border: 1px solid rgba(30, 34, 36, 0.11);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.36);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  .product-benefits svg {
    width: 25px;
    height: 25px;
  }

  .product-benefits h3 {
    margin-top: 15px;
    font-size: 13px;
  }

  .product-benefits p {
    font-size: 12px;
    line-height: 1.32;
  }

  .products-note {
    grid-template-columns: 38px 1fr;
    gap: 14px;
    min-height: 82px;
    margin-top: 26px;
    padding: 14px;
    border-radius: 18px;
  }

  .products-note-icon {
    width: 38px;
    height: 38px;
  }

  .products-note-icon svg {
    width: 19px;
    height: 19px;
  }

  .products-note > span:not(.products-note-icon) {
    font-size: 13px;
  }

  .products-note strong {
    grid-column: 2;
    font-size: 13px;
  }

  .products-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    width: calc(100vw - 16px);
    margin: 34px -16px 0 0;
    padding: 0 16px 10px 0;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .products-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 min(320px, 86vw);
    min-height: 378px;
    max-height: 378px;
    padding: 15px;
    border-radius: 18px;
    scroll-snap-align: start;
  }

  .product-status {
    top: 14px;
    right: 14px;
    min-height: 29px;
    padding: 0 11px;
    font-size: 11px;
  }

  .product-media {
    height: 212px;
    margin-bottom: 0;
  }

  .product-orbit {
    inset: 22px 34px;
  }

  .product-media-business img {
    width: min(82%, 260px);
  }

  .product-media-id img {
    max-height: 212px;
    transform: translateY(-18px);
  }

  .product-media-wifi img {
    width: min(88%, 280px);
  }

  .product-media-lost img {
    width: min(92%, 292px);
  }

  .product-title-pill {
    min-height: 30px;
    padding: 0 16px;
    font-size: 13px;
  }

  .product-card-body p {
    min-height: 54px;
    margin-top: 13px;
    font-size: 13.5px;
    line-height: 1.42;
  }

  .product-buy-row {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .product-buy-row a {
    width: 100%;
  }

  .product-meta {
    margin-top: 13px;
    padding-top: 13px;
    font-size: 12px;
  }

  .how-it-works {
    padding: 58px 16px 64px;
  }

  .works-intro h2 {
    font-size: 18px;
  }

  .works-intro p {
    margin-top: 12px;
    font-size: 12px;
    letter-spacing: 1px;
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
    margin-top: 28px;
  }

  .step {
    width: auto;
    min-height: 168px;
    padding: 16px 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .step::before,
  .step::after {
    width: 26px;
    height: 26px;
    border-color: rgba(69, 75, 78, 0.38);
  }

  .step-number {
    font-size: 13px;
  }

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

  .step p {
    width: auto;
    font-size: 12.5px;
    line-height: 1.24;
  }

  .use-cases {
    padding: 64px 16px 78px;
  }

  .section-label {
    font-size: 11px;
    letter-spacing: 5.5px;
  }

  .use-left h2 {
    margin-top: 30px;
    max-width: 340px;
    font-size: clamp(38px, 10.4vw, 48px);
    font-weight: 740;
    line-height: 1.04;
  }

  .cases-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
  }

  .case-item,
  .case-item:nth-last-child(-n + 2),
  .case-item:last-child {
    display: block;
    min-height: 164px;
    padding: 16px 14px;
    border: 1px solid rgba(30, 34, 36, 0.13);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  }

  .case-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 26px;
    border: 1px solid rgba(30, 34, 36, 0.12);
    border-radius: 999px;
    color: #575d61;
    font-size: 12px;
    line-height: 1;
  }

  .case-item h3 {
    margin: 18px 0 9px;
    font-size: 15px;
    line-height: 1.12;
  }

  .case-item p {
    width: auto;
    max-width: none;
    font-size: 12px;
    line-height: 1.36;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-inline: 16px;
  }

  .hero h1,
  .hero h1[data-animate],
  .hero h1[data-animate].is-visible {
    font-size: clamp(38px, 10.2vw, 44px);
  }

  .get-card-button {
    width: 100%;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-feature-grid {
    grid-auto-columns: minmax(205px, 79%);
  }

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

  .audience-strip article {
    min-height: 112px;
    padding: 14px 12px;
  }

  .products-section {
    padding-inline: 16px;
  }

  .products-grid {
    width: calc(100vw - 16px);
  }

  .product-card {
    flex-basis: min(308px, 88vw);
    min-height: 370px;
    max-height: 370px;
  }

  .product-media {
    height: 204px;
  }

  .page-tail {
    height: 120px;
  }
}

@media (max-width: 390px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    width: 104px;
  }

  .order-button {
    width: 104px;
    height: 38px;
  }

  .hero {
    padding-inline: 14px;
  }

  .hero-eyebrow {
    font-size: 8.8px;
    letter-spacing: 0.9px;
  }

  .hero h1,
  .hero h1[data-animate],
  .hero h1[data-animate].is-visible {
    font-size: 37px;
  }

  .floating-label {
    font-size: 9.8px;
  }

  .label-wifi {
    right: 8px;
  }

  .label-lost {
    right: 10px;
  }

  .steps,
  .cases-list {
    gap: 8px;
  }

  .products-section {
    padding-inline: 14px;
  }

  .products-copy h2 {
    font-size: 36px;
  }

  .product-benefits {
    gap: 8px;
  }

  .product-benefits article,
  .product-benefits article:not(:first-child) {
    min-height: 120px;
    padding: 13px 12px;
  }

  .products-grid {
    width: calc(100vw - 14px);
    margin-right: -14px;
    padding-right: 14px;
  }

  .product-card {
    flex-basis: min(292px, 89vw);
  }

  .step,
  .case-item,
  .case-item:nth-last-child(-n + 2),
  .case-item:last-child {
    padding: 14px 12px;
  }
}

@media (max-width: 1180px) {
  .why-ugnay {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding: 72px 24px 34px;
  }

  .why-visual h2 {
    max-width: 760px;
    font-size: clamp(50px, 7vw, 68px);
  }

  .why-visual img {
    width: min(360px, 72vw);
    max-height: 520px;
    margin-left: 0;
  }

  .why-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 36px;
    padding-top: 0;
  }

  .why-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .bottom-cta {
    grid-template-columns: 1fr 0.76fr;
    margin-inline: 24px;
    padding: 48px 44px;
  }

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

@media (max-width: 760px) {
  .product-card {
    display: grid;
    grid-template-rows: 184px minmax(0, 1fr);
    min-height: 430px;
    max-height: 430px;
  }

  .product-media {
    height: 184px;
  }

  .product-media-business img {
    width: min(80%, 248px);
  }

  .product-media-id img {
    max-height: 188px;
    transform: translateY(-12px);
  }

  .product-media-wifi img {
    width: min(84%, 256px);
  }

  .product-media-lost img {
    width: min(88%, 266px);
  }

  .product-card-body {
    display: grid;
    grid-template-rows: auto minmax(46px, auto) auto auto;
    align-content: start;
  }

  .product-card-body p {
    min-height: 46px;
    margin-top: 11px;
    font-size: 13px;
    line-height: 1.34;
  }

  .product-buy-row {
    gap: 8px;
    margin-top: 9px;
  }

  .product-buy-row a,
  .product-buy-row button {
    min-height: 36px;
  }

  .product-meta {
    margin-top: 10px;
    padding-top: 10px;
  }

  .why-ugnay {
    padding: 42px 16px 22px;
  }

  .why-visual h2 {
    margin-top: 24px;
    font-size: clamp(34px, 9.8vw, 42px);
  }

  .section-rule {
    width: 54px;
    margin-top: 20px;
  }

  .why-visual img {
    display: block;
    width: auto;
    max-width: min(242px, 68vw);
    max-height: 350px;
    margin: 14px auto 0;
  }

  .why-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 10px;
  }

  .why-item,
  .why-item:nth-last-child(-n + 2) {
    display: block;
    min-height: 0;
    padding: 12px 10px;
    border: 1px solid rgba(76, 80, 82, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.34);
  }

  .why-item:last-child {
    border-bottom: 1px solid rgba(76, 80, 82, 0.16);
  }

  .why-item + .why-item {
    padding-top: 12px;
  }

  .why-item span {
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
  }

  .why-item h3 {
    margin-bottom: 6px;
    font-size: 16px;
  }

  .why-item p {
    font-size: 12px;
    line-height: 1.34;
  }

  .bottom-cta {
    grid-template-columns: 1fr;
    min-height: 0;
    margin: 14px 12px 0;
    padding: 28px 22px 24px;
    border-radius: 20px;
  }

  .bottom-cta::before,
  .bottom-cta::after {
    right: -52%;
    width: 360px;
    height: 360px;
  }

  .bottom-cta-copy p {
    margin-bottom: 18px;
    font-size: 10px;
  }

  .bottom-cta-copy h2 {
    font-size: clamp(29px, 8.4vw, 35px);
    line-height: 1.03;
  }

  .bottom-cta-copy > span {
    max-width: 300px;
    margin-top: 16px;
    font-size: 13px;
  }

  .bottom-cta-copy {
    z-index: 2;
  }

  .bottom-cta-actions {
    display: grid;
    gap: 8px;
    margin-top: 20px;
  }

  .bottom-cta-actions a {
    min-height: 44px;
    padding-inline: 18px;
    font-size: 13px;
  }

  .bottom-cta-card {
    position: relative;
    right: auto;
    bottom: auto;
    display: flex;
    justify-content: center;
    min-height: 158px;
    width: 100%;
    margin-top: 16px;
    opacity: 1;
    pointer-events: none;
    z-index: 1;
  }

  .bottom-cta-card img {
    width: min(270px, 82vw);
    max-height: 164px;
    object-fit: contain;
    filter: brightness(1.5) contrast(1.12) drop-shadow(0 22px 28px rgba(0, 0, 0, 0.56));
    transform: rotate(-7deg);
  }

  .site-footer {
    padding: 38px 24px 28px;
  }

  .footer-brand img {
    width: 134px;
  }

  .footer-brand p {
    margin-top: 26px;
    font-size: 15px;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 28px;
  }

  .footer-links h3 {
    font-size: 12px;
  }

  .footer-links a {
    font-size: 14px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    font-size: 12px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand {
    width: 94px;
  }

  .site-nav {
    gap: 10px;
  }

  .sign-in-link {
    font-size: 12px;
  }

  .order-button {
    width: auto;
    min-width: 104px;
    height: 38px;
    padding: 0 15px;
    font-size: 12px;
  }

  .product-card {
    flex-basis: min(314px, 88vw);
    min-height: 420px;
    max-height: 420px;
  }

  .product-media {
    height: 176px;
  }
}

@media (max-width: 390px) {
  .product-card {
    flex-basis: min(296px, 89vw);
    min-height: 416px;
    max-height: 416px;
  }

  .product-card-body p {
    font-size: 12.5px;
  }

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

@media (max-width: 760px) {
  .site-header {
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    margin-left: 0;
    padding: 10px;
    border: 1px solid rgba(17, 17, 17, 0.12);
    border-radius: 16px;
    background: rgba(247, 248, 248, 0.96);
    box-shadow: 0 24px 64px rgba(17, 22, 24, 0.14);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms var(--ease-premium), transform 220ms var(--ease-premium);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

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

  .site-nav a,
  .site-nav a:not(.order-button):not(.sign-in-link),
  .sign-in-link {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 10px;
    font-size: 14px;
  }

  .site-nav a:not(.order-button):hover {
    background: rgba(17, 17, 17, 0.05);
    opacity: 1;
  }

  .order-button {
    width: 100%;
    height: 46px;
    margin: 4px 0 0;
    border-radius: 10px;
    font-style: normal;
  }
}
