:root {
  color-scheme: light;
  --navy-950: #06293b;
  --navy-900: #0c3b54;
  --navy-800: #124b66;
  --navy-700: #1a607c;
  --blue-700: #0d7897;
  --blue-600: #1294b9;
  --blue-500: #22a9cb;
  --blue-400: #55c1d8;
  --blue-200: #bce7f0;
  --blue-100: #ddf4f7;
  --blue-50: #eff9fa;
  --orange-700: #c95010;
  --orange-600: #f06b1f;
  --orange-500: #ff853d;
  --orange-400: #ff9f66;
  --orange-100: #ffe8da;
  --orange-50: #fff5ee;
  --green-700: #24743d;
  --green-600: #2d8b4c;
  --green-400: #49b96f;
  --green-100: #dff3e5;
  --cyan-300: #78cfe0;
  --red-700: #b9342d;
  --red-600: #d94c43;
  --red-100: #ffe6e3;
  --sand-50: #fbfaf7;
  --page: #f4f7f8;
  --surface: #ffffff;
  --surface-soft: #eef3f5;
  --ink: #102532;
  --text: #425b68;
  --muted: #718590;
  --line: #d9e2e6;
  --line-soft: #e8eef0;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(6, 41, 59, 0.08);
  --shadow-md: 0 22px 60px rgba(6, 41, 59, 0.13);
  --shadow-lg: 0 42px 100px rgba(6, 41, 59, 0.2);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 64px);
  --header-height: 78px;
  --font-sans: Inter, Aptos, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--page);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--page);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  border: 0;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

::selection {
  color: var(--white);
  background: var(--blue-600);
}

:focus-visible {
  outline: 3px solid rgba(18, 148, 185, 0.42);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 750;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

.scroll-progress {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-500), var(--orange-500));
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.scroll-progress--dark span {
  background: linear-gradient(90deg, var(--navy-900), var(--blue-600));
}

.eyebrow {
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #8edcec;
}

.section-heading {
  width: min(100% - var(--gutter) * 2, var(--container));
  margin: 0 auto 64px;
}

.section-heading h2 {
  max-width: 850px;
  margin-top: 16px;
  color: var(--navy-950);
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.section-heading > p:last-child {
  max-width: 650px;
  margin-top: 24px;
  color: var(--text);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.65;
}

.section-heading--center {
  text-align: center;
}

.section-heading--center h2,
.section-heading--center > p:last-child {
  margin-right: auto;
  margin-left: auto;
}

.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light > p:last-child {
  color: rgba(255, 255, 255, 0.66);
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 14px 22px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-out);
}

.button::before {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.26), transparent 68%);
  transform: translateX(-120%);
  transition: transform 600ms var(--ease-out);
}

.button:hover::before {
  transform: translateX(120%);
}

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

.button svg,
.header-cta svg,
.text-link svg,
.back-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 220ms var(--ease-out);
}

.button:hover svg,
.header-cta:hover svg,
.text-link:hover svg {
  transform: translateX(3px);
}

.button--primary {
  color: var(--white);
  background: var(--orange-600);
  border-color: var(--orange-600);
  box-shadow: 0 12px 30px rgba(240, 107, 31, 0.24);
}

.button--primary:hover {
  background: var(--orange-500);
  border-color: var(--orange-500);
  box-shadow: 0 16px 38px rgba(240, 107, 31, 0.32);
}

.button--ghost-light {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
}

.button--ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
}

.button--ghost {
  color: var(--navy-900);
  background: var(--white);
  border-color: var(--line);
}

.button--ghost:hover {
  background: var(--blue-50);
  border-color: var(--blue-200);
}

.button--light {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--white);
  box-shadow: var(--shadow-md);
}

.button--light:hover {
  color: var(--blue-700);
  background: var(--blue-50);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-700);
  font-size: 14px;
  font-weight: 750;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  background: linear-gradient(180deg, rgba(6, 41, 59, 0.38), transparent);
  border-bottom: 1px solid transparent;
  transition:
    height 260ms var(--ease-out),
    color 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.site-header.is-scrolled,
.site-header--solid {
  height: 68px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: rgba(12, 59, 84, 0.1);
  box-shadow: 0 8px 30px rgba(6, 41, 59, 0.06);
  backdrop-filter: blur(18px) saturate(140%);
}

.site-header__inner {
  display: flex;
  width: min(100% - 40px, 1420px);
  height: 100%;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}

.brand {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 154px;
  height: 31px;
}

.brand__image {
  position: absolute;
  top: 50%;
  left: 0;
  width: 154px;
  height: auto;
  transform: translateY(-50%);
  transition: opacity 220ms ease;
}

.brand__image--light {
  opacity: 0;
}

.brand__image--dark {
  opacity: 1;
}

.site-header.is-scrolled .brand__image--light,
.site-header--solid .brand__image--light {
  opacity: 1;
}

.site-header.is-scrolled .brand__image--dark,
.site-header--solid .brand__image--dark {
  opacity: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: inherit;
  font-size: 13px;
  font-weight: 650;
  opacity: 0.76;
  transition: opacity 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms var(--ease-out);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  opacity: 1;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 10px 17px;
  color: var(--white);
  background: var(--orange-600);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 750;
  box-shadow: 0 8px 24px rgba(240, 107, 31, 0.22);
  transition:
    background 180ms ease,
    transform 180ms var(--ease-out);
}

.header-cta:hover {
  background: var(--orange-500);
  transform: translateY(-1px);
}

.header-cta svg {
  width: 16px;
  height: 16px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.9;
}

.menu-button span {
  position: absolute;
  display: block;
  width: 17px;
  height: 1.5px;
  background: currentColor;
  transition: transform 200ms ease;
}

.menu-button span:first-child {
  transform: translateY(-3px);
}

.menu-button span:last-child {
  transform: translateY(3px);
}

.menu-button[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: calc(var(--header-height) + 36px) 24px 32px;
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(18, 148, 185, 0.28), transparent 36%),
    var(--navy-950);
}

.mobile-nav nav {
  display: grid;
  gap: 8px;
}

.mobile-nav a {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: clamp(22px, 6vw, 34px);
  font-weight: 650;
  letter-spacing: -0.025em;
}

.mobile-nav__cta {
  margin-top: 20px;
  padding: 18px 22px !important;
  color: var(--white);
  background: var(--orange-600);
  border: 0 !important;
  border-radius: 999px;
  text-align: center;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 38%, rgba(18, 148, 185, 0.24), transparent 35%),
    linear-gradient(128deg, #061f2e 0%, var(--navy-950) 44%, #0e506a 100%);
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(6, 41, 59, 0.2), transparent 45%);
}

.hero__ambient,
.hero__grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 72% 48%, black, transparent 66%);
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}

.hero__orb--one {
  top: 8%;
  right: 8%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(18, 148, 185, 0.17), rgba(18, 148, 185, 0));
  animation: ambient-drift 12s ease-in-out infinite alternate;
}

.hero__orb--two {
  bottom: -28%;
  left: 22%;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(240, 107, 31, 0.1), rgba(240, 107, 31, 0));
  animation: ambient-drift 16s ease-in-out -4s infinite alternate-reverse;
}

@keyframes ambient-drift {
  from {
    transform: translate3d(-2%, -1%, 0) scale(0.96);
  }
  to {
    transform: translate3d(4%, 3%, 0) scale(1.06);
  }
}

.hero__inner {
  display: grid;
  width: min(100% - var(--gutter) * 2, 1420px);
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(40px, 5vw, 90px);
  align-items: center;
  padding: calc(var(--header-height) + 54px) 0 80px;
}

.hero__copy {
  position: relative;
  z-index: 5;
}

.hero__copy h1 {
  max-width: 760px;
  margin-top: 18px;
  font-size: clamp(54px, 6.3vw, 94px);
  font-weight: 650;
  letter-spacing: -0.067em;
  line-height: 0.92;
}

.hero__copy h1 span {
  display: block;
  color: #7ad0e1;
}

.hero__lead {
  max-width: 650px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.62;
}

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

.hero__proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 600;
}

.hero__proofs li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-dot {
  width: 6px;
  height: 6px;
  background: #6fd1e3;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(111, 209, 227, 0.1);
}

.hero-product {
  position: relative;
  z-index: 3;
  min-height: 650px;
  perspective: 1200px;
  transform: translate3d(var(--hero-x, 0), var(--hero-y, 0), 0);
  transition: transform 900ms var(--ease-out);
}

.hero-product__halo {
  position: absolute;
  top: 50%;
  left: 52%;
  width: 92%;
  height: 72%;
  background: radial-gradient(ellipse, rgba(18, 148, 185, 0.34), transparent 67%);
  filter: blur(24px);
  transform: translate(-50%, -50%);
}

.app-window {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

.app-window--hero {
  position: absolute;
  top: 14%;
  right: 0;
  left: 3%;
  border-color: rgba(192, 209, 216, 0.82);
  border-radius: 5px;
  box-shadow:
    0 24px 58px rgba(2, 23, 34, 0.24),
    0 1px 0 rgba(255, 255, 255, 0.72) inset;
  transform: rotateY(-7deg) rotateX(3deg) rotateZ(0.6deg);
  transform-style: preserve-3d;
  transition: transform 650ms var(--ease-out);
}

.app-window--hero .app-window__bar {
  height: 28px;
  gap: 9px;
  padding: 0 9px;
  background: #f5f8f9;
}

.app-window--hero .window-dots span {
  width: 5px;
  height: 5px;
}

.app-window--hero .app-window__address {
  gap: 6px;
  font-size: 9px;
}

.app-window--hero .app-window__address img {
  width: 14px;
  height: 14px;
  border-radius: 3px;
}

.app-window--hero:hover {
  transform: rotateY(-2deg) rotateX(1deg) rotateZ(0);
}

.app-window__bar {
  display: flex;
  height: 42px;
  align-items: center;
  gap: 12px;
  padding: 0 14px;
  color: var(--ink);
  background: #edf2f4;
  border-bottom: 1px solid var(--line);
}

.window-dots {
  display: flex;
  gap: 5px;
}

.window-dots span {
  width: 8px;
  height: 8px;
  background: #b8c4c9;
  border-radius: 50%;
}

.window-dots span:first-child {
  background: #ef6c62;
}

.window-dots span:nth-child(2) {
  background: #e9b64a;
}

.window-dots span:last-child {
  background: #5aba68;
}

.app-window__address {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 650;
}

.app-window__address img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
}

.app-window__address span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-pill {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 4px 8px;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 750;
}

.live-pill i {
  width: 5px;
  height: 5px;
  background: var(--green-600);
  border-radius: 50%;
  animation: live-pulse 1.8s ease-out infinite;
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(45, 139, 76, 0.45);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(45, 139, 76, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(45, 139, 76, 0);
  }
}

.app-window__screen {
  position: relative;
  aspect-ratio: 1.65;
  overflow: hidden;
  background: var(--surface-soft);
}

.app-window__screen::after {
  position: absolute;
  content: "";
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.16), transparent 26%);
}

.app-window__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-phone {
  position: absolute;
  z-index: 5;
  right: -3%;
  bottom: 1%;
  width: 165px;
  padding: 13px 5px 5px;
  overflow: hidden;
  background: #061f2e;
  border: 1px solid rgba(177, 211, 224, 0.58);
  border-radius: 8px;
  box-shadow:
    0 24px 58px rgba(2, 17, 25, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: rotate(2deg);
  animation: phone-float 6s ease-in-out infinite;
}

.hero-phone img {
  display: block;
  width: 100%;
  border-radius: 3px;
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 4px;
  left: 50%;
  width: 5px;
  height: 5px;
  background: #52778a;
  border: 1px solid #91afbc;
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(2, 17, 25, 0.34);
  transform: translateX(-50%);
}

@keyframes phone-float {
  0%,
  100% {
    transform: translateY(0) rotate(2deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}

.floating-alert,
.floating-reading {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(6, 41, 59, 0.24);
  backdrop-filter: blur(12px);
}

.floating-alert {
  top: 6%;
  right: 5%;
  animation: card-float 5.5s ease-in-out -1s infinite;
}

.floating-alert__icon {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--red-100);
  border-radius: 10px;
}

.floating-alert__icon img {
  width: 18px;
  filter: invert(33%) sepia(47%) saturate(1684%) hue-rotate(322deg) brightness(87%);
}

.floating-alert span:last-child,
.floating-reading span:last-child {
  display: grid;
  line-height: 1.25;
}

.floating-alert small,
.floating-reading small {
  color: var(--muted);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.floating-alert strong,
.floating-reading strong {
  margin-top: 2px;
  font-size: 12px;
}

.floating-alert em {
  margin-top: 2px;
  color: var(--red-700);
  font-size: 9px;
  font-style: normal;
}

.floating-reading {
  z-index: 2;
  bottom: 16%;
  left: -3%;
  animation: card-float 6.5s ease-in-out infinite;
}

.floating-reading__pulse {
  width: 10px;
  height: 10px;
  background: var(--blue-600);
  border: 3px solid var(--blue-100);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(18, 148, 185, 0.4);
  animation: reading-pulse 2s ease-out infinite;
}

@keyframes reading-pulse {
  to {
    box-shadow: 0 0 0 12px rgba(18, 148, 185, 0);
  }
}

@keyframes card-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.data-source {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  backdrop-filter: blur(9px);
}

.data-source img {
  width: 32px;
  max-height: 34px;
  object-fit: contain;
}

.data-source span {
  position: absolute;
  border: 1px solid rgba(109, 211, 229, 0.4);
  border-radius: 50%;
  inset: -1px;
  animation: source-wave 2.8s ease-out infinite;
}

.data-source--one {
  top: 19%;
  left: -6%;
}

.data-source--two {
  bottom: 4%;
  left: 18%;
}

.data-source--two span {
  animation-delay: 1.2s;
}

@keyframes source-wave {
  from {
    opacity: 0.8;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(1.75);
  }
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  bottom: 20px;
  left: 50%;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.scroll-cue i::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 60%;
  content: "";
  background: var(--white);
  animation: scroll-line 2s var(--ease-out) infinite;
}

@keyframes scroll-line {
  0% {
    transform: translateY(0);
  }
  70%,
  100% {
    transform: translateY(300%);
  }
}

.statement {
  padding: 118px var(--gutter) 130px;
  background: var(--white);
}

.statement__inner {
  width: min(100%, 1100px);
  margin: 0 auto;
  text-align: center;
}

.statement__inner > p {
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 750;
}

.statement h2 {
  margin-top: 24px;
  color: var(--navy-950);
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 600;
  letter-spacing: -0.052em;
  line-height: 1.08;
}

.journey-rail {
  position: relative;
  display: grid;
  max-width: 880px;
  grid-template-columns: repeat(5, 1fr);
  margin: 72px auto 0;
}

.journey-rail::before {
  position: absolute;
  top: 7px;
  right: 10%;
  left: 10%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, var(--blue-200), var(--blue-600), var(--orange-600));
}

.journey-rail span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 13px;
}

.journey-rail i {
  position: relative;
  z-index: 1;
  width: 15px;
  height: 15px;
  background: var(--white);
  border: 3px solid var(--blue-600);
  border-radius: 50%;
}

.journey-rail span:last-child i {
  border-color: var(--orange-600);
}

.journey-rail b {
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-section {
  position: relative;
  padding: 130px 0 80px;
  background:
    linear-gradient(rgba(12, 59, 84, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 59, 84, 0.025) 1px, transparent 1px),
    var(--page);
  background-size: 48px 48px;
}

.story-layout {
  display: grid;
  width: min(100% - var(--gutter) * 2, var(--container));
  grid-template-columns: minmax(0, 1.16fr) minmax(350px, 0.84fr);
  gap: clamp(50px, 7vw, 110px);
  margin: 0 auto;
  align-items: start;
}

.story-visual-column {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  height: calc(100vh - var(--header-height) - 64px);
  min-height: 620px;
}

.story-visual {
  position: relative;
  height: 100%;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(18, 148, 185, 0.11), transparent 32%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.story-visual::after {
  position: absolute;
  z-index: 20;
  content: "";
  inset: 0;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
}

.story-visual__topline {
  position: absolute;
  z-index: 30;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 44px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line-soft);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.story-visual__topline b {
  color: var(--orange-600);
  font-size: 12px;
}

.story-scene {
  position: absolute;
  top: 44px;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    visibility 0s linear 620ms,
    opacity 420ms ease,
    transform 620ms var(--ease-out);
}

.story-scene.is-active {
  z-index: 5;
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.story-scene--coverage {
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 52px);
  background:
    radial-gradient(circle at 15% 90%, rgba(240, 107, 31, 0.08), transparent 32%),
    var(--surface-soft);
}

.story-browser {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  transform: perspective(1000px) rotateX(2deg) rotateY(-1deg);
}

.story-browser__bar,
.dashboard-frame__bar {
  display: flex;
  height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 13px;
  color: var(--text);
  background: #f3f6f7;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 700;
}

.story-browser__title,
.dashboard-frame__bar span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
}

.story-browser__title img,
.dashboard-frame__bar img {
  width: 15px;
  height: 15px;
}

.story-browser__status {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 5px;
  color: var(--green-700);
}

.story-browser__status i {
  width: 5px;
  height: 5px;
  background: var(--green-600);
  border-radius: 50%;
}

.story-browser > img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
  object-position: top center;
}

.coverage-legend {
  position: absolute;
  bottom: 34px;
  left: 50%;
  display: flex;
  gap: 12px;
  padding: 8px 11px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 8px;
  transform: translateX(-50%);
  white-space: nowrap;
}

.coverage-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.coverage-legend i {
  width: 6px;
  height: 6px;
  background: var(--green-600);
  border-radius: 50%;
}

.coverage-legend .is-medium {
  background: #e8a51a;
}

.coverage-legend .is-low {
  background: var(--red-600);
}

.scene-caption {
  position: absolute;
  top: 24px;
  left: 24px;
  display: grid;
  padding: 10px 13px;
  color: var(--white);
  background: rgba(6, 41, 59, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.scene-caption small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scene-caption strong {
  margin-top: 2px;
  font-size: 10px;
}

.story-scene--collect {
  padding: clamp(28px, 4vw, 56px);
  background:
    radial-gradient(circle at 50% 85%, rgba(18, 148, 185, 0.13), transparent 36%),
    var(--white);
}

.collect-heading {
  display: grid;
  text-align: center;
}

.collect-heading span {
  color: var(--blue-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collect-heading strong {
  margin-top: 4px;
  color: var(--navy-950);
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -0.03em;
}

.collect-sources {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 40px;
}

.collect-card {
  position: relative;
  min-width: 0;
  padding: 13px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}

.collect-card__visual {
  position: relative;
  display: grid;
  height: 112px;
  place-items: center;
  overflow: hidden;
  background: var(--blue-50);
  border-radius: 9px;
}

.collect-card--mobile .collect-card__visual {
  background: var(--orange-50);
}

.collect-card--manual .collect-card__visual {
  grid-template-columns: auto 1fr auto;
  gap: 6px;
  padding: 0 12px;
  background: #f3f5f7;
}

.collect-card__visual > img {
  width: 30px;
  max-height: 48px;
  object-fit: contain;
}

.collect-card__visual .collect-meter {
  position: absolute;
  left: 15%;
  width: 44px;
  max-height: 60px;
}

.collect-card__visual .collect-gateway {
  position: absolute;
  right: 15%;
  width: 30px;
}

.collect-card__visual .collect-mbox {
  position: absolute;
  right: 8%;
  width: 70px;
  max-width: 70px;
}

.radio-wave {
  position: absolute;
  top: 50%;
  left: 43%;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--blue-600);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: collect-wave 2s ease-out infinite;
}

.radio-wave--two {
  animation-delay: 0.8s;
}

@keyframes collect-wave {
  from {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.35);
  }
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2);
  }
}

.route-dot {
  position: absolute;
  top: 50%;
  left: 48%;
  width: 6px;
  height: 6px;
  background: var(--orange-600);
  border-radius: 50%;
  animation: route-hop 2.3s var(--ease-smooth) infinite;
}

@keyframes route-hop {
  0% {
    opacity: 0;
    transform: translate(-26px, -50%);
  }
  20%,
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(32px, -50%);
  }
}

.collect-card--manual b {
  color: var(--navy-900);
  font-size: 12px;
}

.collect-card--manual .collect-check {
  width: 20px;
  filter: invert(40%) sepia(40%) saturate(900%) hue-rotate(85deg);
}

.collect-card > span:last-child {
  display: grid;
  margin-top: 12px;
}

.collect-card small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collect-card strong {
  color: var(--navy-950);
  font-size: 12px;
}

.collect-card em {
  color: var(--text);
  font-size: 8px;
  font-style: normal;
}

.collect-lines {
  position: absolute;
  z-index: 1;
  top: 47%;
  right: 20%;
  bottom: 20%;
  left: 20%;
  pointer-events: none;
}

.collect-lines i {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(var(--line), var(--blue-500));
  transform-origin: top;
}

.collect-lines i:first-child {
  transform: rotate(22deg);
}

.collect-lines i:nth-child(2) {
  transform: rotate(0);
}

.collect-lines i:last-child {
  transform: rotate(-22deg);
}

.collect-lines i::after {
  position: absolute;
  top: -20%;
  left: -1px;
  width: 3px;
  height: 18px;
  content: "";
  background: var(--blue-600);
  border-radius: 999px;
  animation: line-packet 2.4s var(--ease-smooth) infinite;
}

.collect-lines i:nth-child(2)::after {
  animation-delay: 0.7s;
}

.collect-lines i:last-child::after {
  animation-delay: 1.4s;
}

@keyframes line-packet {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  20%,
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(300px);
  }
}

.collect-core {
  position: absolute;
  z-index: 4;
  bottom: 9%;
  left: 50%;
  display: flex;
  min-width: 180px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  transform: translateX(-50%);
}

.collect-core > img {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.collect-core > span:last-child {
  display: grid;
  line-height: 1.3;
}

.collect-core strong {
  color: var(--navy-950);
  font-size: 12px;
}

.collect-core small {
  color: var(--muted);
  font-size: 8px;
}

.collect-core__rings {
  position: absolute;
  top: 50%;
  left: 34px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--blue-500);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: core-ring 2.4s ease-out infinite;
}

@keyframes core-ring {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.7);
  }
}

.story-scene--dashboard {
  display: grid;
  place-items: center;
  padding: clamp(24px, 4vw, 50px);
  background:
    radial-gradient(circle at 8% 15%, rgba(240, 107, 31, 0.08), transparent 28%),
    var(--surface-soft);
}

.dashboard-frame {
  width: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
}

.dashboard-frame > img {
  width: 100%;
  aspect-ratio: 1.62;
  object-fit: cover;
  object-position: top center;
}

.dashboard-focus {
  position: absolute;
  z-index: 4;
  display: grid;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  line-height: 1.35;
}

.dashboard-focus small {
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dashboard-focus strong {
  margin-top: 2px;
  font-size: 12px;
}

.dashboard-focus--alerts {
  top: 20px;
  right: 22px;
  border-left: 3px solid var(--red-600);
}

.dashboard-focus--alerts strong {
  color: var(--red-700);
}

.dashboard-focus--readings {
  bottom: 24px;
  left: 22px;
  border-left: 3px solid var(--blue-600);
}

.dashboard-focus--readings strong {
  color: var(--blue-700);
}

.story-scene--field {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 20px;
  align-items: center;
  padding: clamp(28px, 4vw, 56px);
  background:
    radial-gradient(circle at 80% 12%, rgba(18, 148, 185, 0.12), transparent 28%),
    #edf2f2;
}

.field-photo {
  position: relative;
  height: 74%;
  min-height: 350px;
  overflow: hidden;
  background: var(--surface);
  border: 8px solid var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
  transform: rotate(-2.2deg);
}

.field-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.field-photo::after {
  position: absolute;
  content: "";
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(6, 41, 59, 0.48));
}

.field-photo__label {
  position: absolute;
  z-index: 2;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
}

.field-photo__label img {
  width: 18px;
  filter: brightness(0) invert(1);
}

.field-phone {
  position: relative;
  z-index: 3;
  width: min(100%, 215px);
  justify-self: center;
  padding: 7px;
  overflow: hidden;
  background: #071b27;
  border-radius: 32px;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
}

.field-phone > img {
  width: 100%;
  border-radius: 26px;
}

.field-toast {
  position: absolute;
  z-index: 5;
  right: 7%;
  bottom: 7%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--green-100);
  border-radius: 11px;
  box-shadow: var(--shadow-md);
}

.field-toast > img {
  width: 20px;
  filter: invert(42%) sepia(42%) saturate(781%) hue-rotate(85deg);
}

.field-toast span {
  display: grid;
}

.field-toast strong {
  color: var(--green-700);
  font-size: 10px;
}

.field-toast small {
  color: var(--muted);
  font-size: 7px;
}

/* Revised product story scenes */

.story-scene--coverage {
  display: block;
  padding: 0;
  background: var(--surface-soft);
}

.story-browser--coverage {
  position: absolute;
  inset: 0;
  width: auto;
  height: 100%;
  background: var(--navy-950);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.story-browser--coverage .story-browser__bar {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  left: 0;
  background: rgba(247, 250, 251, 0.94);
  backdrop-filter: blur(12px);
}

.story-browser--coverage > .coverage-map {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: 52% center;
  transform: scale(1.01);
}

.coverage-scan {
  position: absolute;
  z-index: 2;
  top: 38px;
  right: 0;
  left: 0;
  height: 22%;
  opacity: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(111, 209, 227, 0.2), transparent);
}

.story-scene--coverage.is-active .coverage-scan {
  animation: coverage-scan 5.6s ease-in-out infinite;
}

@keyframes coverage-scan {
  0%,
  14% {
    opacity: 0;
    transform: translateY(-100%);
  }

  30%,
  68% {
    opacity: 1;
  }

  86%,
  100% {
    opacity: 0;
    transform: translateY(420%);
  }
}

.story-scene--coverage .scene-caption {
  z-index: 5;
  top: 58px;
  left: 20px;
  background: rgba(6, 41, 59, 0.92);
  backdrop-filter: blur(12px);
}

.story-scene--coverage .coverage-legend {
  z-index: 5;
  bottom: 20px;
}

.story-scene--collect {
  display: flex;
  flex-direction: column;
  padding: 20px 22px 18px;
  background:
    radial-gradient(circle at 50% 100%, rgba(18, 148, 185, 0.16), transparent 38%),
    linear-gradient(180deg, #ffffff, #f7fbfc);
}

.collection-heading {
  position: relative;
  z-index: 8;
  display: grid;
  flex: 0 0 auto;
  text-align: center;
}

.collection-heading span {
  color: var(--blue-700);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-heading strong {
  margin-top: 2px;
  color: var(--navy-950);
  font-size: clamp(18px, 1.7vw, 24px);
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.collection-stage {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 0;
  flex: 1;
  grid-template-rows: minmax(150px, 1.15fr) minmax(118px, 0.85fr) 28px;
  gap: 10px;
  margin-top: 14px;
  padding-bottom: 60px;
}

.collection-mobile {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(220px, 0.9fr) minmax(220px, 1.1fr);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 0%, rgba(18, 148, 185, 0.28), transparent 42%),
    var(--navy-950);
  border: 1px solid rgba(6, 41, 59, 0.14);
  border-radius: 15px;
  box-shadow: 0 14px 34px rgba(6, 41, 59, 0.16);
}

.collection-mobile__product {
  position: relative;
  z-index: 4;
  display: grid;
  min-width: 0;
  grid-template-columns: 82px 1fr;
  gap: 8px 11px;
  align-content: center;
  padding: 15px;
}

.collection-mobile__product > img {
  width: 82px;
  height: 82px;
  grid-row: 1 / 3;
  object-fit: cover;
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 13px;
}

.collection-mobile__product > span {
  display: grid;
  min-width: 0;
  align-self: center;
}

.collection-mobile__product small {
  color: #83d7e7;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-mobile__product strong {
  margin-top: 2px;
  font-size: clamp(14px, 1.35vw, 18px);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.collection-mobile__product em {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 7px;
  font-style: normal;
  line-height: 1.4;
}

.collection-mobile__product > a {
  display: inline-flex;
  width: fit-content;
  min-height: 27px;
  grid-column: 1 / -1;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
  padding: 6px 10px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 999px;
  font-size: 7px;
  font-weight: 800;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms var(--ease-out);
}

.collection-mobile__product > a:hover {
  color: var(--white);
  background: var(--orange-600);
  transform: translateY(-1px);
}

.collection-mobile__product > a svg {
  width: 12px;
  height: 12px;
}

.collection-road {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.66), rgba(255, 255, 255, 0.18)),
    var(--orange-100);
}

.collection-road::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 34px;
  content: "";
  background: linear-gradient(90deg, rgba(6, 41, 59, 0.12), transparent);
}

.road-line {
  position: absolute;
  right: 0;
  bottom: 29px;
  left: 0;
  height: 3px;
  background: var(--navy-800);
}

.road-line::after {
  position: absolute;
  top: 8px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  opacity: 0.52;
  background: repeating-linear-gradient(90deg, var(--white) 0 18px, transparent 18px 30px);
}

.road-meter {
  position: absolute;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(12, 59, 84, 0.14);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.road-meter::before,
.road-meter::after {
  position: absolute;
  content: "";
  inset: -6px;
  opacity: 0;
  border: 1px solid var(--orange-600);
  border-radius: 50%;
}

.story-scene--collect.is-active .road-meter::before {
  animation: road-meter-ping 3.5s ease-out infinite;
}

.story-scene--collect.is-active .road-meter::after {
  animation: road-meter-ping 3.5s 0.8s ease-out infinite;
}

.road-meter img {
  width: 26px;
  max-height: 30px;
  object-fit: contain;
}

.road-meter--one {
  top: 16px;
  left: 18%;
}

.road-meter--two {
  top: 27px;
  right: 8%;
}

@keyframes road-meter-ping {
  0%,
  35% {
    opacity: 0;
    transform: scale(0.7);
  }

  45% {
    opacity: 0.9;
  }

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

.road-reading {
  position: absolute;
  z-index: 5;
  padding: 4px 7px;
  opacity: 0;
  color: var(--green-700);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--green-100);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 6px;
  font-weight: 800;
}

.road-reading--one {
  top: 63px;
  left: 8%;
}

.road-reading--two {
  top: 70px;
  right: 5%;
}

.story-scene--collect.is-active .road-reading--one {
  animation: road-reading-one 7s -1.2s ease-in-out infinite;
}

.story-scene--collect.is-active .road-reading--two {
  animation: road-reading-two 7s -1.2s ease-in-out infinite;
}

@keyframes road-reading-one {
  0%,
  24%,
  78%,
  100% {
    opacity: 0;
    transform: translateY(5px);
  }

  34%,
  58% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes road-reading-two {
  0%,
  48%,
  96%,
  100% {
    opacity: 0;
    transform: translateY(5px);
  }

  58%,
  82% {
    opacity: 1;
    transform: translateY(0);
  }
}

.collection-vehicle {
  position: absolute;
  z-index: 4;
  bottom: 18px;
  left: -32%;
  width: 138px;
  filter: drop-shadow(0 8px 8px rgba(6, 41, 59, 0.2));
}

.story-scene--collect.is-active .collection-vehicle {
  animation: collection-drive 3.8s 0.1s var(--ease-smooth) both;
}

.collection-vehicle svg {
  width: 100%;
  overflow: visible;
}

.collection-vehicle .vehicle-body {
  fill: var(--blue-600);
  stroke: var(--navy-950);
  stroke-width: 4;
  stroke-linejoin: round;
}

.collection-vehicle .vehicle-window {
  fill: #dff5f8;
  stroke: var(--navy-900);
  stroke-width: 2;
}

.collection-vehicle .vehicle-door {
  fill: rgba(255, 255, 255, 0.12);
  stroke: rgba(255, 255, 255, 0.35);
  stroke-width: 1.5;
}

.collection-vehicle .vehicle-antenna {
  fill: none;
  stroke: var(--orange-600);
  stroke-linecap: round;
  stroke-width: 3;
}

.collection-vehicle .vehicle-wheel {
  fill: var(--navy-950);
  stroke: var(--white);
  stroke-width: 3;
}

.collection-vehicle .vehicle-wheel__hub {
  fill: var(--orange-500);
}

.collection-vehicle text {
  fill: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 800;
}

.vehicle-radio {
  position: absolute;
  z-index: -1;
  top: -12px;
  left: 43%;
  width: 34px;
  height: 34px;
  opacity: 0;
  border: 2px solid var(--orange-600);
  border-radius: 50%;
}

.story-scene--collect.is-active .vehicle-radio--one {
  animation: vehicle-radio 1.6s ease-out infinite;
}

.story-scene--collect.is-active .vehicle-radio--two {
  animation: vehicle-radio 1.6s 0.55s ease-out infinite;
}

@keyframes collection-drive {
  0%,
  12% {
    left: -38%;
  }

  72%,
  100% {
    left: 34%;
  }
}

@keyframes vehicle-radio {
  from {
    opacity: 0.85;
    transform: scale(0.25);
  }

  to {
    opacity: 0;
    transform: scale(2.2);
  }
}

.collection-uplink {
  position: absolute;
  z-index: 3;
  top: 13px;
  right: 11px;
  display: flex;
  align-items: flex-end;
  gap: 2px;
  padding: 5px 7px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  font-size: 6px;
  font-weight: 850;
}

.collection-uplink i {
  display: block;
  width: 3px;
  height: 5px;
  background: var(--green-600);
  border-radius: 2px;
}

.collection-uplink i:nth-child(2) {
  height: 8px;
}

.collection-uplink i:nth-child(3) {
  height: 11px;
}

.story-scene--collect.is-active .collection-uplink i {
  animation: uplink-bars 1.2s ease-in-out infinite alternate;
}

.story-scene--collect.is-active .collection-uplink i:nth-child(2) {
  animation-delay: 0.2s;
}

.story-scene--collect.is-active .collection-uplink i:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes uplink-bars {
  to {
    opacity: 0.3;
    transform: scaleY(0.55);
  }
}

.collection-paths {
  display: grid;
  min-height: 0;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.collection-path {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 6px;
  align-items: stretch;
  padding: 7px 7px 8px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.collection-path__visual {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  place-items: center;
  overflow: hidden;
  background: var(--blue-50);
  border-radius: 8px;
}

.collection-path > span:last-child {
  display: grid;
  min-width: 0;
  text-align: center;
}

.collection-path small {
  color: var(--blue-700);
  font-size: 6px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.collection-path strong {
  margin-top: 2px;
  color: var(--navy-950);
  font-size: 9px;
  line-height: 1.1;
}

.collection-path em {
  margin-top: 3px;
  color: var(--muted);
  font-size: 6px;
  font-style: normal;
  line-height: 1.25;
}

.collection-path__meter {
  position: absolute;
  left: 18%;
  width: 32%;
  max-width: 46px;
  max-height: 72%;
  object-fit: contain;
}

.collection-path__gateway {
  position: absolute;
  right: 17%;
  width: 22%;
  max-width: 32px;
  max-height: 66%;
}

.collection-wave {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 18px;
  opacity: 0;
  border: 1px solid var(--blue-600);
  border-radius: 50%;
}

.story-scene--collect.is-active .collection-wave--one {
  animation: collection-path-wave 2s ease-out infinite;
}

.story-scene--collect.is-active .collection-wave--two {
  animation: collection-path-wave 2s 0.7s ease-out infinite;
}

@keyframes collection-path-wave {
  from {
    opacity: 0.8;
    transform: scale(0.3);
  }

  to {
    opacity: 0;
    transform: scale(2.2);
  }
}

.collection-path--cellular .collection-path__visual {
  background: #f1f2fb;
}

.collection-path__iot {
  position: absolute;
  bottom: 19%;
  left: 19%;
  width: 25%;
  max-width: 35px;
}

.cellular-tower {
  position: absolute;
  right: 18%;
  width: 31%;
  max-width: 43px;
  overflow: visible;
  fill: none;
  stroke: var(--navy-900);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.cellular-packet {
  position: absolute;
  top: 50%;
  left: 30%;
  width: 5px;
  height: 5px;
  opacity: 0;
  background: var(--orange-600);
  border-radius: 50%;
}

.story-scene--collect.is-active .cellular-packet {
  animation: cellular-packet 1.9s var(--ease-smooth) infinite;
}

@keyframes cellular-packet {
  0% {
    opacity: 0;
    transform: translateX(0);
  }

  18%,
  82% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(34px);
  }
}

.collection-path--manual .collection-path__visual {
  grid-template-columns: auto auto auto;
  gap: 8px;
  justify-content: center;
  padding: 0 8px;
  background: #f3f5f7;
}

.collection-path--manual .collection-path__visual > img:first-child {
  width: 23px;
}

.collection-path--manual b {
  color: var(--navy-900);
  font-size: 8px;
  white-space: nowrap;
}

.collection-path__check {
  width: 14px;
  filter: invert(40%) sepia(40%) saturate(900%) hue-rotate(85deg);
}

.story-scene--collect.is-active .collection-path__check {
  animation: manual-confirm 2.2s ease-in-out infinite;
}

@keyframes manual-confirm {
  0%,
  48% {
    opacity: 0;
    transform: scale(0.5);
  }

  62%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.collection-flow {
  display: grid;
  width: 68%;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  justify-self: center;
}

.collection-flow i {
  position: relative;
  display: block;
  width: 1px;
  height: 100%;
  justify-self: center;
  overflow: hidden;
  background: linear-gradient(var(--line), var(--blue-500));
}

.collection-flow i::after {
  position: absolute;
  top: -8px;
  left: -1px;
  width: 3px;
  height: 10px;
  content: "";
  opacity: 0;
  background: var(--blue-600);
  border-radius: 999px;
}

.story-scene--collect.is-active .collection-flow i::after {
  animation: collection-flow-packet 1.8s linear infinite;
}

.story-scene--collect.is-active .collection-flow i:nth-child(2)::after {
  animation-delay: 0.3s;
}

.story-scene--collect.is-active .collection-flow i:nth-child(3)::after {
  animation-delay: 0.6s;
}

.story-scene--collect.is-active .collection-flow i:nth-child(4)::after {
  animation-delay: 0.9s;
}

@keyframes collection-flow-packet {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  16%,
  78% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(34px);
  }
}

.collection-core {
  position: absolute;
  z-index: 7;
  bottom: 12px;
  left: 50%;
  display: flex;
  min-width: 240px;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  transform: translateX(-50%);
}

.collection-core > img {
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: 9px;
}

.collection-core > span:last-child {
  display: grid;
  line-height: 1.3;
}

.collection-core strong {
  color: var(--navy-950);
  font-size: 11px;
}

.collection-core small {
  color: var(--muted);
  font-size: 7px;
}

.collection-core__rings {
  position: absolute;
  top: 50%;
  left: 31px;
  width: 40px;
  height: 40px;
  border: 1px solid var(--blue-500);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.story-scene--collect.is-active .collection-core__rings {
  animation: core-ring 2.4s ease-out infinite;
}

.story-scene--dashboard {
  display: block;
  padding: 0;
  background: var(--navy-950);
}

.dashboard-live {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--navy-950);
}

.dashboard-live::after {
  position: absolute;
  z-index: 2;
  content: "";
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(6, 41, 59, 0.08), transparent 30%, transparent 68%, rgba(6, 41, 59, 0.22)),
    linear-gradient(90deg, rgba(6, 41, 59, 0.14), transparent 24%, transparent 76%, rgba(6, 41, 59, 0.14));
}

.dashboard-live > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 46% center;
  transform: scale(1.015);
}

.dashboard-live__bar {
  position: absolute;
  z-index: 5;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  color: var(--navy-900);
  background: rgba(247, 250, 251, 0.94);
  border-bottom: 1px solid var(--line);
  font-size: 8px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.dashboard-live__bar span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dashboard-live__bar img {
  width: 14px;
  height: 14px;
}

.dashboard-live__bar i {
  width: 5px;
  height: 5px;
  background: var(--green-600);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(45, 139, 76, 0.12);
}

.dashboard-live__scan {
  position: absolute;
  z-index: 3;
  top: 40px;
  right: 0;
  left: 0;
  height: 4px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(18, 148, 185, 0.72), transparent);
  box-shadow: 0 0 18px rgba(18, 148, 185, 0.5);
}

.story-scene--dashboard.is-active .dashboard-live__scan {
  animation: dashboard-scan 4.8s ease-in-out infinite;
}

@keyframes dashboard-scan {
  0%,
  12% {
    opacity: 0;
    transform: translateY(0);
  }

  26%,
  70% {
    opacity: 1;
  }

  88%,
  100% {
    opacity: 0;
    transform: translateY(460px);
  }
}

.story-scene--dashboard .dashboard-focus {
  z-index: 6;
  backdrop-filter: blur(12px);
}

.story-scene--dashboard .dashboard-focus--alerts {
  top: 58px;
  right: 18px;
}

.story-scene--dashboard .dashboard-focus--readings {
  bottom: 18px;
  left: 18px;
}

.dashboard-focus--meters {
  right: 18px;
  bottom: 18px;
  border-left: 3px solid var(--green-600);
}

.dashboard-focus--meters strong {
  color: var(--green-700);
}

.story-scene--field {
  display: block;
  padding: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(18, 148, 185, 0.18), transparent 30%),
    linear-gradient(145deg, #edf3f4, #dfe9eb);
}

.field-tablet {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  width: min(76%, 540px);
  height: 87%;
  padding: 9px;
  overflow: hidden;
  background: #061f2e;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 27px;
  box-shadow:
    0 38px 70px rgba(6, 41, 59, 0.24),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%) rotate(-0.6deg);
}

.field-tablet__camera {
  position: absolute;
  z-index: 10;
  top: 14px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #163e52;
  border: 1px solid #5a8092;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(6, 31, 46, 0.82);
  transform: translateX(-50%);
}

.field-tablet__screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #eef3f5;
  border-radius: 20px;
}

.field-view {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #eef3f5;
  transform-origin: 51% 49%;
}

.field-view > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.field-view--map {
  z-index: 2;
}

.field-view--detail {
  z-index: 3;
  opacity: 0;
  transform: translateX(8%);
}

.story-scene--field.is-active .field-view--map {
  animation: field-map-view 9s var(--ease-smooth) infinite;
}

.story-scene--field.is-active .field-view--detail {
  animation: field-detail-view 9s var(--ease-smooth) infinite;
}

@keyframes field-map-view {
  0%,
  28% {
    opacity: 1;
    transform: scale(1);
  }

  38% {
    opacity: 1;
    transform: scale(1.14);
  }

  46%,
  92% {
    opacity: 0;
    transform: scale(1.14);
  }

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

@keyframes field-detail-view {
  0%,
  36% {
    opacity: 0;
    transform: translateX(8%);
  }

  46%,
  90% {
    opacity: 1;
    transform: translateX(0);
  }

  96%,
  100% {
    opacity: 0;
    transform: translateX(-5%);
  }
}

.field-map-tap {
  position: absolute;
  z-index: 4;
  top: 48%;
  left: 52%;
  display: grid;
  justify-items: center;
  transform: translate(-50%, -50%);
}

.field-map-tap i {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  background: var(--orange-600);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(6, 41, 59, 0.3);
}

.field-map-tap i::before,
.field-map-tap i::after {
  position: absolute;
  content: "";
  inset: -10px;
  opacity: 0;
  border: 2px solid var(--orange-600);
  border-radius: 50%;
}

.field-map-tap b {
  margin-top: 7px;
  padding: 5px 8px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  font-size: 6px;
  white-space: nowrap;
}

.story-scene--field.is-active .field-map-tap i::before {
  animation: field-tap-ring 1.5s ease-out infinite;
}

.story-scene--field.is-active .field-map-tap i::after {
  animation: field-tap-ring 1.5s 0.55s ease-out infinite;
}

.story-scene--field.is-active .field-map-tap {
  animation: field-tap-state 9s ease-in-out infinite;
}

@keyframes field-tap-ring {
  from {
    opacity: 0.9;
    transform: scale(0.35);
  }

  to {
    opacity: 0;
    transform: scale(1.4);
  }
}

@keyframes field-tap-state {
  0%,
  8% {
    opacity: 0;
  }

  14%,
  34% {
    opacity: 1;
  }

  42%,
  100% {
    opacity: 0;
  }
}

.field-transition {
  position: absolute;
  z-index: 7;
  top: 20px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 7px;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.field-transition i {
  position: relative;
  width: 22px;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.field-transition i::after {
  position: absolute;
  top: -1px;
  left: -5px;
  width: 5px;
  height: 3px;
  content: "";
  background: var(--orange-600);
  border-radius: 999px;
}

.story-scene--field.is-active .field-transition i::after {
  animation: field-transition-progress 9s linear infinite;
}

.field-transition__map {
  color: var(--blue-700);
}

.story-scene--field.is-active .field-transition__map {
  animation: field-map-label 9s ease-in-out infinite;
}

.story-scene--field.is-active .field-transition__detail {
  animation: field-detail-label 9s ease-in-out infinite;
}

@keyframes field-transition-progress {
  0%,
  30% {
    transform: translateX(0);
  }

  48%,
  90% {
    transform: translateX(25px);
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes field-map-label {
  0%,
  36%,
  100% {
    color: var(--blue-700);
  }

  48%,
  92% {
    color: var(--muted);
  }
}

@keyframes field-detail-label {
  0%,
  36%,
  100% {
    color: var(--muted);
  }

  48%,
  92% {
    color: var(--orange-700);
  }
}

.field-activity-preview {
  position: absolute;
  z-index: 8;
  bottom: 24px;
  left: 18px;
  display: flex;
  width: 190px;
  align-items: center;
  gap: 9px;
  padding: 7px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow-md);
  transform: translateY(10px);
}

.field-activity-preview > img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 7px;
}

.field-activity-preview > span {
  display: grid;
}

.field-activity-preview small {
  color: var(--muted);
  font-size: 6px;
  font-weight: 750;
  text-transform: uppercase;
}

.field-activity-preview strong {
  color: var(--navy-950);
  font-size: 8px;
  line-height: 1.25;
}

.story-scene--field.is-active .field-activity-preview {
  animation: field-detail-overlay 9s var(--ease-out) infinite;
}

.story-scene--field .field-toast {
  right: 18px;
  bottom: 24px;
  max-width: 220px;
  opacity: 0;
  transform: translateY(10px);
}

.story-scene--field.is-active .field-toast {
  animation: field-detail-overlay 9s 0.12s var(--ease-out) infinite;
}

@keyframes field-detail-overlay {
  0%,
  46% {
    opacity: 0;
    transform: translateY(10px);
  }

  56%,
  88% {
    opacity: 1;
    transform: translateY(0);
  }

  96%,
  100% {
    opacity: 0;
    transform: translateY(6px);
  }
}

.story-scene--portal {
  padding: clamp(28px, 4vw, 54px);
  background:
    radial-gradient(circle at 85% 12%, rgba(18, 148, 185, 0.12), transparent 28%),
    var(--surface-soft);
}

.portal-shell {
  width: 94%;
  margin: 0 auto;
  overflow: hidden;
  background: #f6f8fc;
  border: 1px solid #d9e4f4;
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  transform: perspective(1000px) rotateY(-2deg) rotateX(1deg);
}

.portal-browser-bar {
  display: grid;
  height: 32px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 0 10px;
  background: #e9eef4;
  border-bottom: 1px solid #d3deea;
}

.portal-browser-dots {
  display: flex;
  gap: 4px;
}

.portal-browser-dots i {
  width: 6px;
  height: 6px;
  background: #ef7a64;
  border-radius: 50%;
}

.portal-browser-dots i:nth-child(2) {
  background: #e9b451;
}

.portal-browser-dots i:nth-child(3) {
  background: #65b883;
}

.portal-browser-url {
  display: flex;
  min-width: 0;
  height: 21px;
  align-items: center;
  gap: 6px;
  padding: 0 9px;
  background: var(--white);
  border: 1px solid #d3deea;
  border-radius: 6px;
}

.portal-browser-url img {
  width: 10px;
  height: 10px;
  opacity: 0.65;
}

.portal-browser-url b {
  overflow: hidden;
  color: #38556c;
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portal-browser-bar > small {
  color: #5f7890;
  font-size: 7px;
  font-weight: 800;
  white-space: nowrap;
}

.portal-shell > header {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  color: #183e71;
  background: var(--white);
  border-bottom: 1px solid #d9e4f4;
}

.portal-shell > header span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  font-weight: 750;
}

.portal-shell > header img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}

.portal-shell > header small {
  color: #7186a2;
  font-size: 8px;
}

.portal-shell__body {
  display: grid;
  gap: 8px;
  padding: 14px;
}

.portal-pdl-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 2px;
}

.portal-pdl-heading > span {
  display: grid;
}

.portal-pdl-heading small {
  color: #7890aa;
  font-size: 7px;
}

.portal-pdl-heading strong {
  margin-top: 2px;
  color: #15365f;
  font-size: 9px;
}

.portal-pdl-heading > b {
  padding: 4px 8px;
  color: #1e57a6;
  background: #eaf2ff;
  border-radius: 999px;
  font-size: 7px;
}

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

.portal-address {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  padding: 9px;
  background: var(--white);
  border: 1px solid #d9e4f4;
  border-radius: 10px;
}

.portal-address > img {
  width: 15px;
}

.portal-address > span {
  display: grid;
  min-width: 0;
  line-height: 1.3;
}

.portal-address small,
.portal-grid small,
.portal-chart small {
  color: #7890aa;
  font-size: 7px;
}

.portal-address strong {
  overflow: hidden;
  color: #15365f;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.portal-address em {
  color: #7890aa;
  font-size: 7px;
  font-style: normal;
}

.portal-address > b {
  margin-left: auto;
  padding: 3px 7px;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 7px;
}

.portal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.portal-grid article {
  display: grid;
  padding: 11px;
  background: var(--white);
  border: 1px solid #d9e4f4;
  border-radius: 10px;
}

.portal-grid strong {
  margin-top: 3px;
  color: #1e57a6;
  font-size: 18px;
  line-height: 1.1;
}

.portal-grid strong i {
  font-size: 8px;
  font-style: normal;
}

.portal-grid .portal-ok {
  color: var(--green-700);
  font-size: 13px;
}

.portal-grid span {
  margin-top: 3px;
  color: #7890aa;
  font-size: 7px;
}

.portal-chart {
  padding: 11px;
  background: var(--white);
  border: 1px solid #d9e4f4;
  border-radius: 10px;
}

.portal-chart > span {
  display: grid;
}

.portal-chart strong {
  color: #15365f;
  font-size: 9px;
}

.portal-bars {
  display: flex;
  height: 92px;
  align-items: end;
  gap: 4px;
  margin-top: 10px;
  padding: 7px 5px 0;
  border-bottom: 1px solid #d9e4f4;
}

.portal-bars i {
  width: 100%;
  height: var(--h);
  min-height: 5px;
  background: #98b9eb;
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  animation: portal-bar 1s var(--ease-out) both;
}

.portal-bars .is-current {
  background: #1e57a6;
}

@keyframes portal-bar {
  from {
    transform: scaleY(0);
  }
}

.portal-preferences {
  position: absolute;
  right: 18px;
  bottom: 22px;
  display: flex;
  width: 260px;
  align-items: center;
  gap: 9px;
  padding: 13px 14px;
  opacity: 0;
  background: var(--white);
  border: 1px solid #d9e4f4;
  border-radius: 11px;
  box-shadow: var(--shadow-md);
  transform: translateY(12px);
}

.portal-preferences > img {
  width: 22px;
  filter: invert(24%) sepia(34%) saturate(1723%) hue-rotate(179deg);
}

.portal-preferences > span {
  display: grid;
}

.portal-preferences small {
  color: #7890aa;
  font-size: 8px;
}

.portal-preferences strong {
  color: #15365f;
  font-size: 11px;
}

.portal-preferences__channels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px;
  margin-top: 6px;
}

.portal-preferences__channels b {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 5px 7px;
  color: #15365f;
  background: #f7faff;
  border: 1px solid #d9e4f4;
  border-radius: 7px;
  font-size: 8px;
}

.portal-preferences__channels i {
  position: relative;
  width: 20px;
  height: 11px;
  flex: 0 0 auto;
  background: #1e57a6;
  border-radius: 999px;
}

.portal-preferences__channels i::after {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 9px;
  height: 9px;
  content: "";
  background: var(--white);
  border-radius: 50%;
}

.portal-invitation {
  position: absolute;
  bottom: 22px;
  left: 18px;
  display: grid;
  width: 280px;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 13px 14px;
  opacity: 0;
  background: var(--white);
  border: 1px solid #d9e4f4;
  border-radius: 11px;
  box-shadow: var(--shadow-md);
  transform: translateY(12px);
}

.portal-invitation > img {
  width: 28px;
  height: 28px;
}

.portal-invitation > span {
  display: grid;
}

.portal-invitation small {
  color: #7890aa;
  font-size: 8px;
}

.portal-invitation strong {
  margin-top: 2px;
  color: #15365f;
  font-size: 11px;
}

.portal-invitation em {
  margin-top: 2px;
  color: #7890aa;
  font-size: 7px;
  font-style: normal;
}

.portal-invitation code {
  padding: 5px 7px;
  color: var(--orange-700);
  background: var(--orange-50);
  border: 1px solid var(--orange-200);
  border-radius: 6px;
  font-family: inherit;
  font-size: 9px;
  font-weight: 850;
  white-space: nowrap;
}

.story-scene--portal.is-active .portal-invitation,
.story-scene--portal.is-active .portal-preferences {
  animation: portal-option-in 650ms 300ms var(--ease-out) forwards;
}

.story-scene--portal.is-active .portal-preferences {
  animation-delay: 520ms;
}

@keyframes portal-option-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.story-steps {
  display: grid;
}

.story-step {
  display: flex;
  min-height: 78vh;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  opacity: 0.34;
  transition:
    opacity 320ms ease,
    transform 500ms var(--ease-out);
}

.story-step.is-active {
  opacity: 1;
  transform: translateX(-8px);
}

.story-step__number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.story-step__tag {
  margin-top: 22px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-step h3 {
  max-width: 500px;
  margin-top: 12px;
  color: var(--navy-950);
  font-size: clamp(34px, 3.7vw, 52px);
  font-weight: 650;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.story-step > p:not(.story-step__tag) {
  max-width: 480px;
  margin-top: 22px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}

.story-step__product-link {
  display: inline-flex;
  width: fit-content;
  min-height: 40px;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--blue-700);
  font-size: 13px;
  font-weight: 800;
  transition:
    color 180ms ease,
    transform 180ms var(--ease-out);
}

.story-step__product-link:hover {
  color: var(--orange-600);
  transform: translateX(2px);
}

.story-step__product-link svg {
  width: 16px;
  height: 16px;
}

.story-outcome {
  display: inline-flex;
  width: fit-content;
  max-width: 480px;
  align-items: flex-start;
  gap: 9px;
  margin-top: 24px;
  padding: 12px 14px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange-600);
  border-radius: 0 10px 10px 0;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 650;
}

.story-outcome img {
  width: 17px;
  margin-top: 1px;
  filter: invert(43%) sepia(42%) saturate(740%) hue-rotate(86deg);
}

.experiences {
  position: relative;
  padding: 140px var(--gutter);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 15% 90%, rgba(240, 107, 31, 0.12), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(18, 148, 185, 0.18), transparent 34%),
    var(--navy-950);
  isolation: isolate;
}

.experiences__ambient {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.experience-grid {
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 0 auto;
}

.experience-card {
  position: relative;
  display: grid;
  min-height: 400px;
  grid-template-rows: auto 1fr auto;
  padding: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
  transform:
    perspective(900px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    transform 220ms ease;
}

.experience-card::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--pointer-x, 50%) var(--pointer-y, 50%), rgba(255, 255, 255, 0.16), transparent 38%);
  transition: opacity 220ms ease;
}

.experience-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.experience-card:hover::before {
  opacity: 1;
}

.experience-card > * {
  position: relative;
  z-index: 1;
  transform: translateZ(18px);
}

.experience-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.experience-card__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: #83d7e7;
  background: rgba(18, 148, 185, 0.13);
  border: 1px solid rgba(131, 215, 231, 0.22);
  border-radius: 13px;
}

.experience-card__icon svg,
.experience-card__icon img {
  width: 23px;
  height: 23px;
}

.experience-card__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.experience-card__icon img {
  filter: brightness(0) saturate(100%) invert(82%) sepia(31%) saturate(739%) hue-rotate(151deg);
}

.experience-card--mobile .experience-card__icon,
.experience-card--portal .experience-card__icon {
  color: #ffac76;
  background: rgba(240, 107, 31, 0.13);
  border-color: rgba(255, 172, 118, 0.22);
}

.experience-card--mobile .experience-card__icon img,
.experience-card--portal .experience-card__icon img {
  filter: brightness(0) saturate(100%) invert(71%) sepia(43%) saturate(1238%) hue-rotate(321deg);
}

.experience-card__index {
  color: rgba(255, 255, 255, 0.34);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.experience-card > div {
  align-self: end;
  margin-top: 50px;
}

.experience-card > div > p {
  color: #83d7e7;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.experience-card--mobile > div > p,
.experience-card--portal > div > p {
  color: #ffac76;
}

.experience-card h3 {
  max-width: 500px;
  margin-top: 8px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.experience-card > div > span {
  display: block;
  max-width: 550px;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.experience-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
}

.experience-card li {
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.alert-section {
  padding: 140px var(--gutter);
  background: var(--sand-50);
}

.alert-section__inner {
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: minmax(300px, 0.74fr) minmax(520px, 1.26fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
  margin: 0 auto;
}

.alert-copy h2 {
  max-width: 560px;
  margin-top: 16px;
  color: var(--navy-950);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.alert-copy > p:not(.eyebrow) {
  max-width: 530px;
  margin-top: 24px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}

.alert-copy ul {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.alert-copy li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 650;
}

.alert-copy li img {
  width: 17px;
  margin-top: 2px;
  filter: invert(43%) sepia(42%) saturate(740%) hue-rotate(86deg);
}

.alert-flow {
  position: relative;
  display: grid;
  gap: 0;
  padding: clamp(24px, 3vw, 40px);
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(240, 107, 31, 0.07), transparent 28%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.alert-flow::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  content: "";
  background: linear-gradient(var(--red-600), var(--orange-600));
}

.alert-source {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  background: var(--red-100);
  border: 1px solid rgba(217, 76, 67, 0.2);
  border-radius: 13px;
}

.alert-source__pulse {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  background: var(--red-600);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(217, 76, 67, 0.4);
  animation: alert-pulse 1.7s ease-out infinite;
}

@keyframes alert-pulse {
  to {
    box-shadow: 0 0 0 12px rgba(217, 76, 67, 0);
  }
}

.alert-source > div {
  display: grid;
  min-width: 0;
}

.alert-source small {
  color: rgba(185, 52, 45, 0.72);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.alert-source strong {
  color: var(--red-700);
  font-size: 15px;
}

.alert-source div span {
  color: var(--text);
  font-size: 10px;
}

.alert-source > b {
  margin-left: auto;
  padding: 5px 9px;
  color: var(--white);
  background: var(--red-600);
  border-radius: 999px;
  font-size: 8px;
  text-transform: uppercase;
}

.alert-routing {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
}

.alert-routing > span {
  position: relative;
  height: 1px;
  overflow: hidden;
  background: var(--line);
}

.alert-routing > span::after {
  position: absolute;
  top: -1px;
  left: -20%;
  width: 22%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--orange-600));
  animation: route-flow 2.4s linear infinite;
}

.alert-routing > span:last-child::after {
  animation-delay: 1.2s;
}

@keyframes route-flow {
  to {
    transform: translateX(560%);
  }
}

.alert-routing > div {
  display: grid;
  justify-items: center;
  gap: 3px;
}

.alert-routing img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.alert-routing small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 700;
}

.alert-channels {
  display: grid;
  gap: 8px;
}

.alert-channels article {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 10px 12px;
  background: var(--page);
  border: 1px solid var(--line-soft);
  border-radius: 11px;
  opacity: 0;
  transform: translateY(10px);
  animation: channel-arrive 5.5s var(--ease-out) infinite;
}

.alert-channels article:nth-child(2) {
  animation-delay: 0.32s;
}

.alert-channels article:nth-child(3) {
  animation-delay: 0.64s;
}

.alert-channels article:nth-child(4) {
  animation-delay: 0.96s;
}

.alert-channels article:nth-child(5) {
  animation-delay: 1.28s;
}

@keyframes channel-arrive {
  0%,
  8% {
    opacity: 0;
    transform: translateY(8px);
  }
  16%,
  88% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(0);
  }
}

.alert-channels article > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
}

.alert-channels article > span img {
  width: 16px;
}

.alert-channels article > div {
  display: grid;
  line-height: 1.35;
}

.alert-channels strong {
  color: var(--navy-950);
  font-size: 10px;
}

.alert-channels small {
  color: var(--muted);
  font-size: 8px;
}

.alert-channels article > b {
  padding: 4px 8px;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 999px;
  font-size: 7px;
  text-transform: uppercase;
}

.benefits {
  padding: 140px var(--gutter);
  background: var(--white);
}

.benefit-grid {
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 0 auto;
}

.benefit-card {
  position: relative;
  display: grid;
  min-height: 330px;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-content: start;
  padding: 30px;
  overflow: hidden;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms var(--ease-out);
}

.benefit-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.benefit-card--wide {
  grid-column: 1 / -1;
  grid-template-columns: auto minmax(280px, 0.8fr) minmax(380px, 1.2fr);
  align-items: center;
}

.benefit-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: var(--blue-100);
  border-radius: 13px;
}

.benefit-card__icon img {
  width: 22px;
  filter: brightness(0) saturate(100%) invert(45%) sepia(62%) saturate(850%) hue-rotate(149deg);
}

.benefit-card--orange .benefit-card__icon {
  background: var(--orange-100);
}

.benefit-card--orange .benefit-card__icon img {
  filter: brightness(0) saturate(100%) invert(53%) sepia(97%) saturate(2141%) hue-rotate(348deg);
}

.benefit-card > div:not(.record-preview, .technical-orbit) {
  align-self: center;
}

.benefit-card > div > p {
  color: var(--blue-700);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.benefit-card--orange > div > p {
  color: var(--orange-700);
}

.benefit-card h3 {
  max-width: 580px;
  margin-top: 8px;
  color: var(--navy-950);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.benefit-card > div > span {
  display: block;
  max-width: 620px;
  margin-top: 14px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.68;
}

.record-preview {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
}

.record-preview header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--blue-50);
  border-bottom: 1px solid var(--line);
}

.record-preview header span {
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 750;
}

.record-preview header b {
  padding: 3px 7px;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 7px;
}

.record-preview > div {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.9fr;
  gap: 10px;
  padding: 14px;
}

.record-preview > div span {
  display: grid;
  min-width: 0;
}

.record-preview small {
  color: var(--muted);
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.record-preview strong {
  overflow: hidden;
  color: var(--navy-950);
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.benefit-card--technical {
  min-height: 390px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 50%, rgba(18, 148, 185, 0.24), transparent 28%),
    var(--navy-950);
  border-color: var(--navy-950);
}

.benefit-card--technical:hover {
  border-color: var(--blue-600);
}

.benefit-card--technical h3 {
  color: var(--white);
}

.benefit-card--technical > div > span {
  color: rgba(255, 255, 255, 0.64);
}

.benefit-card--technical .text-link {
  margin-top: 22px;
  color: #82d7e7;
}

.support-section {
  position: relative;
  padding: 140px var(--gutter);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 20%, rgba(18, 148, 185, 0.13), transparent 28%),
    radial-gradient(circle at 94% 84%, rgba(240, 107, 31, 0.09), transparent 25%),
    #edf6f8;
}

.support-section__inner {
  position: relative;
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: minmax(340px, 0.82fr) minmax(560px, 1.18fr);
  gap: clamp(54px, 8vw, 112px);
  align-items: center;
  margin: 0 auto;
}

.support-section__copy h2 {
  max-width: 620px;
  margin-top: 16px;
  color: var(--navy-950);
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 650;
  letter-spacing: -0.055em;
  line-height: 1;
}

.support-section__copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 24px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.72;
}

.support-section__promises {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.support-section__promises li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--navy-800);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

.support-section__promises img {
  width: 16px;
  margin-top: 2px;
  filter: invert(43%) sepia(42%) saturate(740%) hue-rotate(86deg);
}

.support-section__commitment {
  display: grid;
  gap: 4px;
  max-width: 560px;
  margin-top: 30px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.72);
  border-left: 3px solid var(--orange-600);
  border-radius: 0 13px 13px 0;
}

.support-section__commitment small {
  color: var(--orange-700);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.support-section__commitment strong {
  color: var(--navy-900);
  font-size: 13px;
  line-height: 1.5;
}

.support-section__visual {
  position: relative;
  min-width: 0;
  padding: clamp(24px, 4vw, 52px);
  background:
    linear-gradient(rgba(120, 207, 224, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 207, 224, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 85% 10%, rgba(34, 169, 203, 0.26), transparent 30%),
    var(--navy-950);
  background-size: 38px 38px, 38px 38px, auto, auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: 0 34px 90px rgba(6, 41, 59, 0.2);
}

.support-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
}

.support-window__header {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  background: #f8fbfc;
  border-bottom: 1px solid var(--line-soft);
}

.support-window__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.support-window__brand > img {
  width: 34px;
  height: 34px;
  padding: 4px;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 9px;
}

.support-window__brand > span {
  display: grid;
  line-height: 1.25;
}

.support-window__brand strong {
  color: var(--navy-950);
  font-size: 12px;
}

.support-window__brand small {
  color: var(--muted);
  font-size: 8px;
}

.support-window__included {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 9px;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.support-window__included i {
  width: 6px;
  height: 6px;
  background: var(--green-600);
  border-radius: 50%;
}

.support-window__tabs {
  display: flex;
  gap: 6px;
  padding: 10px 18px 0;
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
}

.support-window__tabs span {
  padding: 8px 10px 10px;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  font-size: 8px;
  font-weight: 750;
}

.support-window__tabs .is-active {
  color: var(--blue-700);
  border-bottom-color: var(--blue-600);
}

.support-window__body {
  padding: clamp(16px, 2.4vw, 26px);
  background: var(--page);
}

.support-window__ticket {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.support-window__ticket > span {
  display: grid;
  line-height: 1.3;
}

.support-window__ticket small {
  color: var(--blue-700);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.support-window__ticket strong {
  margin-top: 4px;
  color: var(--navy-950);
  font-size: clamp(13px, 1.5vw, 17px);
  letter-spacing: -0.02em;
}

.support-window__ticket > b {
  flex: 0 0 auto;
  padding: 5px 9px;
  color: var(--orange-700);
  background: var(--orange-100);
  border-radius: 999px;
  font-size: 7px;
  text-transform: uppercase;
}

.support-message {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 11px;
  margin-top: 14px;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.support-message > span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: var(--blue-50);
  border-radius: 9px;
}

.support-message > span img {
  width: 16px;
  filter: brightness(0) saturate(100%) invert(39%) sepia(42%) saturate(1195%) hue-rotate(148deg);
}

.support-message--waysense {
  margin-left: clamp(16px, 4vw, 54px);
  background: var(--blue-50);
  border-color: var(--blue-200);
}

.support-message--waysense > span {
  background: var(--white);
}

.support-message--waysense > span img {
  width: 22px;
  filter: none;
}

.support-message > div {
  min-width: 0;
}

.support-message small {
  color: var(--blue-700);
  font-size: 8px;
  font-weight: 800;
}

.support-message p {
  margin-top: 4px;
  color: var(--navy-900);
  font-size: 10px;
  line-height: 1.55;
}

.support-message b {
  display: inline-flex;
  margin-top: 8px;
  padding: 5px 8px;
  color: var(--navy-700);
  background: var(--surface-soft);
  border-radius: 7px;
  font-size: 7px;
  font-weight: 750;
}

.support-window__follow-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 16px;
}

.support-window__follow-up span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 9px 6px;
  color: var(--navy-700);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 9px;
  font-size: 7px;
  font-weight: 750;
  text-align: center;
}

.support-window__follow-up img {
  width: 10px;
  filter: invert(43%) sepia(42%) saturate(740%) hue-rotate(86deg);
}

.support-section__assurance {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(84%, 470px);
  gap: 2px;
  margin: -12px auto 0;
  padding: 15px 18px;
  color: var(--white);
  background: var(--orange-600);
  border: 4px solid var(--navy-950);
  border-radius: 15px;
  box-shadow: 0 18px 40px rgba(6, 41, 59, 0.24);
  text-align: center;
}

.support-section__assurance span {
  font-size: 9px;
}

.support-section__assurance strong {
  font-size: 11px;
}

@media (max-width: 980px) {
  .support-section {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .support-section__inner {
    grid-template-columns: 1fr;
  }

  .support-section__copy {
    max-width: 740px;
  }

  .support-section__visual {
    width: min(100%, 760px);
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .support-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .support-section__copy h2 {
    font-size: clamp(38px, 12vw, 52px);
  }

  .support-section__copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .support-section__visual {
    padding: 14px;
    border-radius: 24px;
  }

  .support-window {
    border-radius: 16px;
  }

  .support-window__header {
    min-height: 60px;
    padding: 12px;
  }

  .support-window__tabs {
    padding-right: 12px;
    padding-left: 12px;
  }

  .support-window__body {
    padding: 12px;
  }

  .support-message--waysense {
    margin-left: 12px;
  }

  .support-window__follow-up {
    grid-template-columns: 1fr;
  }

  .support-section__assurance {
    width: 94%;
  }
}

.technical-orbit {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.technical-orbit > i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 210px;
  height: 210px;
  border: 1px solid rgba(130, 215, 231, 0.18);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.technical-orbit > i::after {
  position: absolute;
  content: "";
  inset: 24px;
  border: 1px dashed rgba(130, 215, 231, 0.2);
  border-radius: 50%;
  animation: orbit-spin 18s linear infinite;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.technical-orbit__core,
.technical-orbit__node {
  position: absolute;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.technical-orbit__core {
  top: 50%;
  left: 50%;
  width: 76px;
  height: 76px;
  transform: translate(-50%, -50%);
}

.technical-orbit__core img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
}

.technical-orbit__node {
  width: 44px;
  height: 44px;
}

.technical-orbit__node img {
  width: 21px;
}

.technical-orbit__node--one {
  top: 12%;
  left: 50%;
  animation: node-float 5s ease-in-out infinite;
}

.technical-orbit__node--two {
  top: 56%;
  right: 6%;
  animation: node-float 6s ease-in-out -2s infinite;
}

.technical-orbit__node--three {
  bottom: 7%;
  left: 14%;
  animation: node-float 5.5s ease-in-out -1s infinite;
}

@keyframes node-float {
  50% {
    transform: translateY(-7px);
  }
}

.technical-teaser {
  position: relative;
  padding: 120px var(--gutter);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 80%, rgba(240, 107, 31, 0.14), transparent 28%),
    radial-gradient(circle at 78% 16%, rgba(18, 148, 185, 0.2), transparent 32%),
    var(--navy-900);
}

.technical-teaser__inner {
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: minmax(520px, 1.16fr) minmax(320px, 0.84fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
  margin: 0 auto;
}

.technical-teaser__visual {
  position: relative;
}

.coverage-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(4deg) rotateX(2deg);
}

.coverage-card__bar {
  display: flex;
  height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  color: var(--text);
  background: #f1f5f6;
  border-bottom: 1px solid var(--line);
  font-size: 9px;
  font-weight: 650;
}

.coverage-card__bar span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.coverage-card__bar img {
  width: 16px;
}

.coverage-card > img {
  width: 100%;
  aspect-ratio: 1.64;
  object-fit: cover;
  object-position: top center;
}

.technical-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-size: 8px;
  font-weight: 750;
}

.technical-badge i {
  width: 6px;
  height: 6px;
  background: var(--green-600);
  border-radius: 50%;
}

.technical-badge--one {
  top: 18%;
  left: -3%;
}

.technical-badge--two {
  right: -2%;
  bottom: 12%;
}

.technical-badge--two i {
  background: var(--orange-600);
}

.technical-teaser__copy h2 {
  max-width: 580px;
  margin-top: 16px;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1;
}

.technical-teaser__copy > p:not(.eyebrow) {
  max-width: 540px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
  line-height: 1.7;
}

.technical-teaser__copy .button {
  margin-top: 32px;
}

.contact-section {
  padding: 120px var(--gutter);
  background: var(--page);
}

.contact-card {
  position: relative;
  display: grid;
  width: min(100%, 1320px);
  grid-template-columns: minmax(340px, 0.9fr) minmax(500px, 1.1fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: start;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 84px);
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(18, 148, 185, 0.24), transparent 29%),
    radial-gradient(circle at 5% 100%, rgba(240, 107, 31, 0.12), transparent 34%),
    var(--navy-950);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.contact-card::before {
  position: absolute;
  content: "";
  inset: 0;
  opacity: 0.28;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 80% 30%, black, transparent 70%);
}

.contact-card__copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-card__copy h2 {
  margin-top: 16px;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 620;
  letter-spacing: -0.057em;
  line-height: 0.99;
}

.contact-card__copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  line-height: 1.7;
}

.contact-promise {
  display: grid;
  gap: 11px;
  margin-top: 30px;
}

.contact-promise span {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 620;
}

.contact-promise img {
  width: 17px;
  margin-top: 1px;
  filter: brightness(0) saturate(100%) invert(83%) sepia(28%) saturate(889%) hue-rotate(150deg);
}

.contact-email {
  display: grid;
  width: fit-content;
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-email small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 10px;
}

.contact-email strong {
  color: #83d7e7;
  font-size: 16px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 38px);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(2, 17, 25, 0.26);
  backdrop-filter: blur(16px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

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

.contact-form label > span {
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
  font-size: 13px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 13px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(18, 148, 185, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #90a1aa;
}

.contact-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.button--submit {
  width: 100%;
  margin-top: 2px;
}

.button--submit:disabled {
  cursor: wait;
  opacity: 0.66;
  box-shadow: none;
}

.form-help {
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}

.form-status {
  min-height: 22px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 650;
}

.form-status[data-state="success"] {
  color: #08764f;
}

.form-status[data-state="error"] {
  color: #a52b23;
}

.site-footer {
  padding: 80px var(--gutter) 24px;
  color: var(--white);
  background: #041e2b;
}

.site-footer__main {
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  margin: 0 auto;
  padding-bottom: 64px;
}

.site-footer__brand > img {
  width: 168px;
}

.site-footer__brand > p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.site-footer__brand > span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.site-footer__brand > span a {
  color: #83d7e7;
}

.site-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.site-footer__nav > div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer__nav h2 {
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer__nav a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  transition: color 180ms ease;
}

.site-footer__nav a:hover {
  color: var(--white);
}

.site-footer__bottom {
  display: flex;
  width: min(100%, var(--container));
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0 auto;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.34);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 10px;
}

.noscript-message {
  position: fixed;
  z-index: 1000;
  right: 16px;
  bottom: 16px;
  left: 16px;
  padding: 12px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  font-size: 12px;
  text-align: center;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms ease var(--reveal-delay, 0ms),
    transform 800ms var(--ease-out) var(--reveal-delay, 0ms);
}

.js [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.no-js [data-reveal] {
  opacity: 1;
  transform: none;
}

/* Technical page */

.page-technical {
  background: var(--white);
}

.tech-hero {
  position: relative;
  padding: 150px var(--gutter) 100px;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 15%, rgba(18, 148, 185, 0.11), transparent 30%),
    linear-gradient(180deg, #f3f8fa, var(--white));
}

.tech-hero__ambient {
  position: absolute;
  inset: 0;
  opacity: 0.65;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(12, 59, 84, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 59, 84, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 75% 40%, black, transparent 72%);
}

.tech-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1320px);
  grid-template-columns: minmax(360px, 0.85fr) minmax(620px, 1.15fr);
  gap: clamp(50px, 6vw, 90px);
  align-items: center;
  margin: 0 auto;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.back-link svg {
  width: 16px;
  height: 16px;
}

.back-link:hover {
  color: var(--blue-700);
}

.tech-hero__copy h1 {
  max-width: 720px;
  margin-top: 16px;
  color: var(--navy-950);
  font-size: clamp(52px, 6.2vw, 86px);
  font-weight: 640;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

.tech-hero__copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-top: 26px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}

.tech-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 32px;
}

.architecture-map {
  position: relative;
  display: grid;
  min-height: 580px;
  grid-template-columns: 1fr 82px 150px 82px 1fr;
  gap: 0;
  align-items: center;
  padding: 34px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.architecture-map__sources,
.architecture-map__clients {
  display: grid;
  gap: 12px;
}

.architecture-map__sources article {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: 11px;
}

.architecture-map__sources article > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 9px;
}

.architecture-map__sources img {
  width: 22px;
  max-height: 27px;
  object-fit: contain;
}

.architecture-map__sources div,
.architecture-map__clients article {
  display: grid;
}

.architecture-map__sources strong,
.architecture-map__clients span {
  color: var(--navy-950);
  font-size: 10px;
}

.architecture-map__sources small,
.architecture-map__clients small {
  color: var(--muted);
  font-size: 7px;
}

.architecture-map__clients article {
  padding: 12px;
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: 10px;
}

.architecture-map__rail {
  position: relative;
  height: 100%;
}

.architecture-map__rail::before,
.architecture-map__rail::after,
.architecture-map__rail i {
  position: absolute;
  content: "";
  background: var(--line);
}

.architecture-map__rail::before {
  top: 20%;
  bottom: 20%;
  left: 50%;
  width: 1px;
}

.architecture-map__rail::after {
  top: 50%;
  right: 0;
  left: 50%;
  height: 1px;
}

.architecture-map__rail--left::after {
  right: 0;
  left: 0;
}

.architecture-map__rail i {
  top: 50%;
  left: 4px;
  width: 6px;
  height: 6px;
  background: var(--blue-600);
  border-radius: 50%;
  animation: architecture-packet 2.8s var(--ease-smooth) infinite;
}

.architecture-map__rail i:nth-child(2) {
  animation-delay: 0.9s;
}

.architecture-map__rail i:nth-child(3) {
  animation-delay: 1.8s;
}

@keyframes architecture-packet {
  0% {
    opacity: 0;
    transform: translateX(0);
  }
  20%,
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(74px);
  }
}

.architecture-map__rail--right i {
  background: var(--orange-600);
}

.architecture-map__core {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 3px;
  padding: 18px 8px;
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.architecture-map__core > img {
  position: relative;
  z-index: 2;
  width: 72px;
  height: 72px;
  border-radius: 16px;
}

.architecture-map__core strong {
  margin-top: 6px;
  color: var(--navy-950);
  font-size: 12px;
}

.architecture-map__core small {
  color: var(--muted);
  font-size: 7px;
}

.architecture-map__rings {
  position: absolute;
  top: 46%;
  left: 50%;
  width: 88px;
  height: 88px;
  border: 1px solid var(--blue-500);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: core-ring 2.4s ease-out infinite;
}

.tech-foundation {
  padding: 130px var(--gutter);
  background: var(--white);
}

.foundation-grid {
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 auto;
}

.foundation-grid article {
  position: relative;
  min-height: 390px;
  padding: 28px 24px;
  overflow: hidden;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.foundation-grid__number {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #a9b8bf;
  font-size: 10px;
  font-weight: 800;
}

.foundation-grid__icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  background: var(--blue-100);
  border-radius: 12px;
}

.foundation-grid__icon img {
  width: 22px;
  filter: brightness(0) saturate(100%) invert(44%) sepia(62%) saturate(822%) hue-rotate(150deg);
}

.foundation-grid h3 {
  margin-top: 76px;
  color: var(--navy-950);
  font-size: 26px;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.foundation-grid p {
  margin-top: 12px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.65;
}

.foundation-grid ul {
  display: grid;
  gap: 7px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.foundation-grid li {
  position: relative;
  padding-left: 13px;
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 650;
}

.foundation-grid li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 4px;
  height: 4px;
  content: "";
  background: var(--blue-600);
  border-radius: 50%;
}

.connectivity-section {
  padding: 130px var(--gutter);
  color: var(--white);
  background:
    radial-gradient(circle at 85% 10%, rgba(18, 148, 185, 0.2), transparent 32%),
    var(--navy-950);
}

.connectivity-section__inner {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.connectivity-section .section-heading {
  width: 100%;
}

.identity-model {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: 22px;
  padding: clamp(26px, 3.5vw, 42px);
  background:
    linear-gradient(135deg, rgba(18, 148, 185, 0.13), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(131, 215, 231, 0.22);
  border-radius: var(--radius-md);
}

.identity-model__label {
  display: inline-flex;
  padding: 5px 10px;
  color: #83d7e7;
  background: rgba(18, 148, 185, 0.13);
  border: 1px solid rgba(131, 215, 231, 0.18);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.identity-model__copy h3 {
  max-width: 540px;
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(28px, 3.2vw, 43px);
  font-weight: 620;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.identity-model__copy p {
  max-width: 590px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.7;
}

.identity-model__map {
  display: grid;
  min-width: 0;
  grid-template-columns: minmax(170px, 1fr) 52px minmax(170px, 1fr);
  grid-template-rows: repeat(3, minmax(92px, 1fr));
  gap: 12px 0;
  margin: 0;
}

.identity-model__identity {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-areas:
    "icon kind"
    "icon value";
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 13px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
}

.identity-model__identity--business {
  grid-column: 1;
  grid-row: 1 / 4;
  background: linear-gradient(145deg, rgba(18, 148, 185, 0.14), rgba(255, 255, 255, 0.07));
  border-color: rgba(131, 215, 231, 0.32);
}

.identity-model__identity--wmbus {
  grid-column: 3;
  grid-row: 1;
  background: linear-gradient(145deg, rgba(240, 107, 31, 0.13), rgba(255, 255, 255, 0.07));
  border-color: rgba(255, 159, 102, 0.28);
}

.identity-model__identity--lorawan {
  grid-column: 3;
  grid-row: 2;
  background: linear-gradient(145deg, rgba(18, 148, 185, 0.13), rgba(255, 255, 255, 0.07));
  border-color: rgba(131, 215, 231, 0.24);
}

.identity-model__identity--gsm {
  grid-column: 3;
  grid-row: 3;
  background: linear-gradient(145deg, rgba(18, 148, 185, 0.13), rgba(255, 255, 255, 0.07));
  border-color: rgba(131, 215, 231, 0.24);
}

.identity-model__icon {
  display: grid;
  width: 42px;
  height: 42px;
  grid-area: icon;
  place-items: center;
  align-self: center;
  background: rgba(18, 148, 185, 0.17);
  border: 1px solid rgba(131, 215, 231, 0.22);
  border-radius: 11px;
}

.identity-model__icon img {
  width: 21px;
  filter: brightness(0) saturate(100%) invert(82%) sepia(31%) saturate(739%) hue-rotate(151deg);
}

.identity-model__identity--wmbus .identity-model__icon {
  background: rgba(240, 107, 31, 0.16);
  border-color: rgba(255, 159, 102, 0.26);
}

.identity-model__identity--wmbus .identity-model__icon img {
  filter: brightness(0) saturate(100%) invert(57%) sepia(95%) saturate(2200%) hue-rotate(344deg) brightness(102%) contrast(91%);
}

.identity-model__kind {
  grid-area: kind;
  align-self: end;
  color: #83d7e7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.identity-model__value {
  display: grid;
  grid-area: value;
  gap: 3px;
  margin: 7px 0 0;
}

.identity-model__value strong {
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.3;
}

.identity-model__value span {
  color: rgba(255, 255, 255, 0.57);
  font-size: 9px;
  line-height: 1.4;
}

.identity-model__connector {
  position: relative;
  grid-column: 2;
  grid-row: 1 / 4;
}

.identity-model__connector::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 50%;
  height: 1px;
  content: "";
  background: rgba(131, 215, 231, 0.42);
}

.identity-model__connector i {
  position: absolute;
  top: calc((100% - 24px) / 6);
  bottom: calc((100% - 24px) / 6);
  left: 50%;
  width: 50%;
  border-left: 1px solid rgba(131, 215, 231, 0.42);
}

.identity-model__connector i::before,
.identity-model__connector i::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: rgba(131, 215, 231, 0.42);
}

.identity-model__connector i::before {
  top: 0;
}

.identity-model__connector i::after {
  bottom: 0;
}

.protocol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.protocol-grid article {
  min-height: 400px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.protocol-grid header {
  display: flex;
  align-items: center;
  gap: 11px;
}

.protocol-grid header span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: rgba(18, 148, 185, 0.15);
  border: 1px solid rgba(131, 215, 231, 0.18);
  border-radius: 12px;
}

.protocol-grid header img {
  width: 21px;
  filter: brightness(0) saturate(100%) invert(82%) sepia(31%) saturate(739%) hue-rotate(151deg);
}

.protocol-grid header b {
  color: #83d7e7;
  font-size: 11px;
  letter-spacing: 0.07em;
}

.protocol-grid h3 {
  margin-top: 70px;
  color: var(--white);
  font-size: clamp(25px, 2.8vw, 36px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.protocol-grid p {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.7;
}

.protocol-grid article > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 26px;
}

.protocol-grid article > div span {
  padding: 5px 9px;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 700;
}

.planning-feature {
  display: grid;
  width: min(100% - var(--gutter) * 2, var(--container));
  grid-template-columns: minmax(520px, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(50px, 7vw, 100px);
  align-items: center;
  margin: 0 auto;
  padding: 130px 0;
}

.planning-carousel {
  display: grid;
  min-width: 0;
  gap: 8px;
}

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

.planning-tab {
  position: relative;
  display: grid;
  min-height: 54px;
  align-content: center;
  padding: 8px 12px;
  overflow: hidden;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: 0 5px 14px rgba(6, 41, 59, 0.05);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms var(--ease-out);
}

.planning-tab::before,
.planning-tab::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  content: "";
}

.planning-tab::before {
  background: rgba(12, 59, 84, 0.08);
}

.planning-tab::after {
  background: var(--orange-500);
  transform: scaleX(0);
  transform-origin: left center;
}

.planning-carousel.is-running .planning-tab.is-active::after {
  animation: planning-tab-progress 7.6s linear both;
}

.planning-carousel.is-paused .planning-tab.is-active::after {
  animation-play-state: paused;
}

@keyframes planning-tab-progress {
  to {
    transform: scaleX(1);
  }
}

.planning-tab:hover {
  color: var(--navy-900);
  border-color: var(--blue-300);
  transform: translateY(-1px);
}

.planning-tab:focus-visible {
  outline: 2px solid var(--orange-500);
  outline-offset: 2px;
}

.planning-tab.is-active {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
  box-shadow: 0 10px 22px rgba(6, 41, 59, 0.15);
}

.planning-tab small {
  color: var(--orange-500);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.planning-tab span {
  margin-top: 2px;
  overflow: hidden;
  font-size: 10px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.planning-carousel__viewport {
  position: relative;
  min-width: 0;
  aspect-ratio: 1.35;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 13%, rgba(18, 148, 185, 0.09), transparent 32%),
    var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-md);
}

.planning-slide {
  position: absolute;
  display: grid;
  visibility: hidden;
  min-width: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0;
  padding: 12px 12px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px) scale(0.985);
  transition:
    opacity 320ms ease,
    transform 520ms var(--ease-out),
    visibility 0s linear 520ms;
  inset: 0;
}

.planning-slide.is-active {
  visibility: visible;
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  transition-delay: 0s;
}

.planning-frame {
  display: grid;
  min-width: 0;
  min-height: 0;
  grid-template-rows: 36px minmax(0, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  box-shadow: 0 17px 34px rgba(6, 41, 59, 0.12);
}

.planning-frame__bar {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 12px;
  color: var(--text);
  background: #f3f6f7;
  border-bottom: 1px solid var(--line);
  font-size: 8px;
  font-weight: 750;
}

.planning-frame__bar span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.planning-frame__bar span:last-child {
  justify-content: flex-end;
  color: var(--muted);
}

.planning-frame__bar img {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.planning-frame > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
}

.planning-slide__caption {
  display: grid;
  min-height: 68px;
  align-content: center;
  padding: 10px 5px 11px;
}

.planning-slide__caption strong {
  color: var(--navy-950);
  font-size: 12px;
}

.planning-slide__caption span {
  margin-top: 3px;
  color: var(--text);
  font-size: 9px;
  line-height: 1.35;
}

.planning-sensor-zoom {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: #eef3f5;
}

.planning-sensor-zoom figure {
  position: absolute;
  margin: 0;
  inset: 0;
}

.planning-sensor-zoom img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.planning-sensor-zoom figcaption {
  position: absolute;
  right: 10px;
  bottom: 9px;
  padding: 5px 8px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 7px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.planning-sensor-zoom__detail {
  opacity: 0;
  transform: scale(1.08);
}

.planning-slide--sensors.is-active .planning-sensor-zoom__overview {
  animation: planning-sensor-overview 7.6s var(--ease-smooth) infinite;
}

.planning-slide--sensors.is-active .planning-sensor-zoom__detail {
  animation: planning-sensor-detail 7.6s var(--ease-smooth) infinite;
}

@keyframes planning-sensor-overview {
  0%,
  30% {
    opacity: 1;
    transform: scale(1);
  }

  44%,
  82% {
    opacity: 0;
    transform: scale(1.07);
  }

  94%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes planning-sensor-detail {
  0%,
  30% {
    opacity: 0;
    transform: scale(1.09);
  }

  44%,
  82% {
    opacity: 1;
    transform: scale(1);
  }

  94%,
  100% {
    opacity: 0;
    transform: scale(0.985);
  }
}

.planning-sensor-zoom__focus {
  position: absolute;
  z-index: 4;
  top: 49%;
  left: 50%;
  width: 42px;
  height: 42px;
  opacity: 0;
  border: 2px solid var(--orange-500);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(240, 107, 31, 0.12);
  transform: translate(-50%, -50%) scale(1.8);
}

.planning-sensor-zoom__focus i {
  position: absolute;
  border: 1px solid var(--orange-500);
  border-radius: 50%;
  inset: -12px;
}

.planning-sensor-zoom__focus i:last-child {
  inset: -24px;
}

.planning-slide--sensors.is-active .planning-sensor-zoom__focus {
  animation: planning-sensor-focus 7.6s var(--ease-smooth) infinite;
}

@keyframes planning-sensor-focus {
  0%,
  10%,
  54%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.8);
  }

  20%,
  35% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  44% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.45);
  }
}

.planning-carousel__controls {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  padding: 0 2px 0 10px;
  color: var(--muted);
  font-size: 8px;
  font-weight: 750;
}

.planning-carousel__controls > div {
  display: flex;
  gap: 6px;
}

.planning-carousel__controls button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.planning-carousel__controls button:hover {
  color: var(--white);
  background: var(--orange-600);
  border-color: var(--orange-600);
}

.planning-carousel__controls button:focus-visible {
  outline: 2px solid var(--orange-500);
  outline-offset: 2px;
}

.planning-carousel__controls svg {
  width: 15px;
  height: 15px;
}

.planning-feature__copy h2 {
  margin-top: 16px;
  color: var(--navy-950);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 640;
  letter-spacing: -0.055em;
  line-height: 1;
}

.planning-feature__copy > p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

.planning-feature dl {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  border-top: 1px solid var(--line);
}

.planning-feature dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.planning-feature dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.planning-feature dd {
  margin: 0;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 650;
}

.planning-feature__link {
  margin-top: 28px;
}

.security-section {
  padding: 130px var(--gutter);
  background: var(--page);
}

.security-grid {
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 auto;
}

.security-grid article {
  min-height: 300px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.security-grid article > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 12px;
}

.security-grid article > span img,
.security-grid article > span svg {
  width: 21px;
  height: 21px;
}

.security-grid article > span img {
  filter: brightness(0) saturate(100%) invert(44%) sepia(62%) saturate(822%) hue-rotate(150deg);
}

.security-grid article > span svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.security-grid h3 {
  margin-top: 56px;
  color: var(--navy-950);
  font-size: 21px;
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.security-grid p {
  margin-top: 13px;
  color: var(--text);
  font-size: 12px;
  line-height: 1.7;
}

.security-grid p a {
  color: var(--blue-700);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(18, 148, 185, 0.42);
  text-underline-offset: 2px;
}

.security-grid p a:hover {
  color: var(--orange-600);
}

.hosting-section {
  padding: 130px var(--gutter);
  background: var(--white);
}

.hosting-section__intro {
  width: min(100%, var(--container));
  margin: 0 auto 58px;
}

.hosting-section__intro h2 {
  max-width: 850px;
  margin-top: 16px;
  color: var(--navy-950);
  font-size: clamp(40px, 5vw, 68px);
  font-weight: 640;
  letter-spacing: -0.055em;
  line-height: 1;
}

.hosting-section__intro > p:last-child {
  max-width: 620px;
  margin-top: 22px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}

.hosting-grid {
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 auto;
}

.hosting-grid article {
  min-height: 420px;
  padding: 30px;
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.hosting-grid__featured {
  color: var(--white);
  background:
    radial-gradient(circle at 100% 0%, rgba(18, 148, 185, 0.28), transparent 36%),
    var(--navy-950) !important;
  border-color: var(--navy-950) !important;
  box-shadow: var(--shadow-md);
  transform: translateY(-12px);
}

.hosting-grid__tag {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--blue-700);
  background: var(--blue-100);
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hosting-grid__featured .hosting-grid__tag {
  color: #83d7e7;
  background: rgba(18, 148, 185, 0.15);
}

.hosting-grid h3 {
  margin-top: 72px;
  color: var(--navy-950);
  font-size: 31px;
  font-weight: 650;
  letter-spacing: -0.04em;
}

.hosting-grid__featured h3 {
  color: var(--white);
}

.hosting-grid article > p {
  margin-top: 13px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.7;
}

.hosting-grid__featured > p {
  color: rgba(255, 255, 255, 0.64) !important;
}

.hosting-grid ul {
  display: grid;
  gap: 9px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hosting-grid__featured ul {
  border-top-color: rgba(255, 255, 255, 0.13);
}

.hosting-grid li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 650;
}

.hosting-grid__featured li {
  color: rgba(255, 255, 255, 0.8);
}

.hosting-grid li img {
  width: 16px;
  filter: invert(43%) sepia(42%) saturate(740%) hue-rotate(86deg);
}

.hosting-grid__featured li img {
  filter: brightness(0) saturate(100%) invert(83%) sepia(28%) saturate(889%) hue-rotate(150deg);
}

.tech-contact {
  padding: 50px var(--gutter) 120px;
  background: var(--white);
}

.tech-contact__inner {
  display: flex;
  width: min(100%, var(--container));
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin: 0 auto;
  padding: 50px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(18, 148, 185, 0.24), transparent 32%),
    var(--navy-950);
  border-radius: var(--radius-lg);
}

.tech-contact__inner h2 {
  max-width: 760px;
  margin-top: 10px;
  font-size: clamp(32px, 4vw, 54px);
  font-weight: 620;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.tech-contact__inner > div > p:last-child {
  max-width: 680px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.65;
}

.tech-contact .button {
  flex: 0 0 auto;
}

@media (max-width: 1180px) {
  :root {
    --header-height: 70px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.88fr) minmax(510px, 1.12fr);
    gap: 30px;
  }

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

  .hero-phone {
    width: 145px;
  }

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

  .tech-hero__inner {
    grid-template-columns: minmax(340px, 0.9fr) minmax(540px, 1.1fr);
  }

  .architecture-map {
    min-height: 520px;
    grid-template-columns: 1fr 54px 124px 54px 1fr;
    padding: 24px;
  }

  .identity-model {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .desktop-nav,
  .site-header .header-cta {
    display: none;
  }

  .menu-button {
    position: relative;
    display: grid;
    margin-left: auto;
  }

  .site-header__inner {
    width: min(100% - 32px, 1420px);
  }

  .site-header.menu-active {
    height: var(--header-height);
    color: var(--white);
    background: var(--navy-950);
    border-bottom-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
    backdrop-filter: none;
  }

  .site-header.menu-active .brand__image--light {
    opacity: 0;
  }

  .site-header.menu-active .brand__image--dark {
    opacity: 1;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 140px;
    padding-bottom: 100px;
  }

  .hero__copy {
    max-width: 760px;
  }

  .hero__copy h1 {
    font-size: clamp(58px, 10vw, 86px);
  }

  .hero-product {
    width: min(100%, 820px);
    min-height: 580px;
    margin: 0 auto;
  }

  .app-window--hero {
    top: 11%;
    left: 0;
  }

  .data-source--one {
    left: 0;
  }

  .floating-reading {
    left: 1%;
  }

  .story-layout {
    display: block;
  }

  .story-visual-column {
    z-index: 10;
    top: calc(var(--header-height) + 14px);
    height: 47vh;
    min-height: 390px;
  }

  .story-visual {
    min-height: 390px;
  }

  .story-step {
    min-height: 65vh;
    padding: 90px 0;
  }

  .story-step.is-active {
    transform: none;
  }

  .story-step h3 {
    max-width: 720px;
  }

  .story-step > p:not(.story-step__tag),
  .story-outcome {
    max-width: 660px;
  }

  .collect-card__visual {
    height: 88px;
  }

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

  .experience-card {
    min-height: 360px;
  }

  .alert-section__inner,
  .technical-teaser__inner,
  .contact-card,
  .planning-feature {
    grid-template-columns: 1fr;
  }

  .planning-feature__copy {
    order: -1;
  }

  .planning-carousel {
    width: min(100%, 820px);
    margin: 0 auto;
  }

  .alert-flow {
    width: min(100%, 760px);
  }

  .benefit-card--wide {
    grid-template-columns: auto 1fr;
  }

  .record-preview,
  .technical-orbit {
    grid-column: 1 / -1;
    margin-top: 14px;
  }

  .contact-card {
    gap: 50px;
  }

  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .tech-hero__inner {
    grid-template-columns: 1fr;
  }

  .architecture-map {
    width: min(100%, 760px);
    min-height: 540px;
  }

  .protocol-grid,
  .hosting-grid {
    grid-template-columns: 1fr;
  }

  .protocol-grid article {
    min-height: 340px;
  }

  .hosting-grid article {
    min-height: 340px;
  }

  .hosting-grid__featured {
    transform: none;
  }

  .tech-contact__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  :root {
    --gutter: 20px;
    --radius-xl: 28px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-heading h2 {
    font-size: clamp(36px, 11vw, 54px);
  }

  .hero__inner {
    width: calc(100% - 40px);
    padding-top: 122px;
    padding-bottom: 94px;
  }

  .hero__copy h1 {
    font-size: clamp(48px, 14vw, 70px);
    line-height: 0.95;
  }

  .hero__lead {
    font-size: 16px;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__proofs {
    display: grid;
  }

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

  .app-window--hero {
    top: 12%;
    right: -10%;
    left: 0;
    border-radius: 3px;
    transform: rotateY(-4deg) rotateX(2deg) rotateZ(0.6deg);
  }

  .app-window--hero .app-window__bar {
    height: 24px;
    gap: 6px;
    padding: 0 7px;
  }

  .app-window--hero .window-dots span {
    width: 4px;
    height: 4px;
  }

  .app-window--hero .app-window__address img {
    width: 12px;
    height: 12px;
  }

  .app-window--hero .app-window__address {
    font-size: 7px;
  }

  .app-window__address {
    font-size: 7px;
  }

  .live-pill {
    padding: 3px 5px;
    font-size: 6px;
  }

  .hero-phone {
    right: -1%;
    width: 103px;
    padding: 8px 3px 3px;
    border-radius: 6px;
  }

  .hero-phone img {
    border-radius: 2px;
  }

  .phone-speaker {
    top: 2px;
    width: 3px;
    height: 3px;
  }

  .floating-alert {
    top: 0;
    right: 0;
    padding: 8px 9px;
  }

  .floating-alert__icon {
    width: 28px;
    height: 28px;
  }

  .floating-alert__icon img {
    width: 14px;
  }

  .floating-alert small,
  .floating-reading small {
    font-size: 6px;
  }

  .floating-alert strong,
  .floating-reading strong {
    font-size: 9px;
  }

  .floating-alert em {
    font-size: 6px;
  }

  .floating-reading {
    bottom: 6%;
    left: 0;
    padding: 8px 10px;
  }

  .data-source {
    width: 44px;
    height: 44px;
  }

  .data-source img {
    width: 23px;
    max-height: 26px;
  }

  .data-source--one {
    top: 28%;
  }

  .data-source--two {
    bottom: 1%;
    left: 24%;
  }

  .statement {
    padding-top: 90px;
    padding-bottom: 96px;
  }

  .statement h2 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .journey-rail {
    grid-template-columns: 1fr;
    gap: 0;
    justify-items: start;
    margin-top: 50px;
    padding-left: 22px;
  }

  .journey-rail::before {
    top: 8px;
    bottom: 8px;
    left: 29px;
    width: 1px;
    height: auto;
    background: linear-gradient(var(--blue-200), var(--blue-600), var(--orange-600));
  }

  .journey-rail span {
    display: flex;
    gap: 16px;
    align-items: center;
    padding: 10px 0;
  }

  .story-section {
    padding-top: 96px;
  }

  .story-layout {
    width: calc(100% - 40px);
  }

  .story-visual-column {
    top: calc(var(--header-height) + 10px);
    height: 68vh;
    min-height: 520px;
  }

  .story-visual {
    min-height: 520px;
    border-radius: 18px;
  }

  .story-scene--coverage,
  .story-scene--dashboard,
  .story-scene--collect,
  .story-scene--field,
  .story-scene--portal {
    padding: 16px;
  }

  .story-browser__bar,
  .dashboard-frame__bar {
    height: 26px;
    padding: 0 7px;
    font-size: 6px;
  }

  .story-browser__title img,
  .dashboard-frame__bar img {
    width: 11px;
    height: 11px;
  }

  .coverage-legend {
    bottom: 12px;
    gap: 6px;
    padding: 5px 7px;
    font-size: 5px;
  }

  .scene-caption {
    top: 10px;
    left: 10px;
    padding: 6px 8px;
  }

  .scene-caption small {
    font-size: 5px;
  }

  .scene-caption strong {
    font-size: 6px;
  }

  .collect-heading strong {
    font-size: 14px;
  }

  .collect-sources {
    gap: 5px;
    margin-top: 15px;
  }

  .collect-card {
    padding: 5px;
    border-radius: 8px;
  }

  .collect-card__visual {
    height: 48px;
  }

  .collect-card__visual .collect-meter {
    width: 22px;
  }

  .collect-card__visual .collect-gateway {
    width: 15px;
  }

  .collect-card__visual .collect-mbox {
    width: 34px;
    max-width: 34px;
  }

  .collect-card--manual .collect-card__visual {
    gap: 2px;
    padding: 0 3px;
  }

  .collect-card__visual > img {
    width: 15px;
    max-height: 24px;
  }

  .collect-card--manual b {
    font-size: 5px;
  }

  .collect-card--manual .collect-check {
    width: 10px;
  }

  .collect-card > span:last-child {
    margin-top: 5px;
  }

  .collect-card small,
  .collect-card em {
    font-size: 4px;
  }

  .collect-card strong {
    font-size: 6px;
  }

  .collect-core {
    bottom: 4%;
    min-width: 125px;
    gap: 6px;
    padding: 7px 10px;
  }

  .collect-core > img {
    width: 24px;
    height: 24px;
  }

  .collect-core strong {
    font-size: 8px;
  }

  .collect-core small {
    font-size: 5px;
  }

  .collect-core__rings {
    left: 22px;
    width: 29px;
    height: 29px;
  }

  .dashboard-focus {
    padding: 6px 8px;
  }

  .dashboard-focus small {
    font-size: 5px;
  }

  .dashboard-focus strong {
    font-size: 7px;
  }

  .dashboard-focus--alerts {
    top: 8px;
    right: 8px;
  }

  .dashboard-focus--readings {
    bottom: 8px;
    left: 8px;
  }

  .story-scene--field {
    gap: 8px;
  }

  .field-photo {
    min-height: 190px;
    border-width: 4px;
    border-radius: 11px;
  }

  .field-photo__label {
    right: 6px;
    bottom: 6px;
    left: 6px;
    gap: 4px;
    font-size: 5px;
  }

  .field-photo__label img {
    width: 10px;
  }

  .field-phone {
    width: 110px;
    padding: 4px;
    border-radius: 18px;
  }

  .field-phone > img {
    border-radius: 14px;
  }

  .field-toast {
    right: 4%;
    bottom: 3%;
    gap: 5px;
    padding: 5px 7px;
  }

  .field-toast > img {
    width: 12px;
  }

  .field-toast strong {
    font-size: 6px;
  }

  .field-toast small {
    font-size: 4px;
  }

  .portal-shell {
    width: 100%;
  }

  .portal-shell > header {
    height: 26px;
    padding: 0 8px;
  }

  .portal-shell > header span {
    gap: 4px;
    font-size: 6px;
  }

  .portal-shell > header img {
    width: 13px;
    height: 13px;
  }

  .portal-shell > header small {
    font-size: 5px;
  }

  .portal-shell__body {
    gap: 5px;
    padding: 7px;
  }

  .portal-address {
    gap: 5px;
    padding: 5px;
  }

  .portal-address > img {
    width: 10px;
  }

  .portal-address small,
  .portal-grid small,
  .portal-chart small,
  .portal-address em,
  .portal-grid span {
    font-size: 4px;
  }

  .portal-address strong,
  .portal-chart strong {
    font-size: 5px;
  }

  .portal-address > b {
    padding: 2px 4px;
    font-size: 4px;
  }

  .portal-grid {
    gap: 5px;
  }

  .portal-grid article,
  .portal-chart {
    padding: 5px;
  }

  .portal-grid strong {
    font-size: 10px;
  }

  .portal-grid .portal-ok {
    font-size: 7px;
  }

  .portal-bars {
    height: 37px;
    gap: 2px;
    margin-top: 4px;
    padding-top: 3px;
  }

  .portal-preferences {
    right: 6px;
    bottom: 7px;
    gap: 4px;
    padding: 5px 6px;
  }

  .portal-preferences > img {
    width: 10px;
  }

  .portal-preferences small {
    font-size: 4px;
  }

  .portal-preferences strong {
    font-size: 5px;
  }

  .portal-preferences > i {
    width: 14px;
    height: 8px;
  }

  .portal-preferences > i::after {
    top: 1px;
    right: 1px;
    width: 6px;
    height: 6px;
  }

  .story-step {
    min-height: 62vh;
    padding: 70px 0;
  }

  .story-step h3 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .story-step > p:not(.story-step__tag) {
    font-size: 15px;
  }

  .experiences,
  .alert-section,
  .benefits,
  .technical-teaser,
  .contact-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .experience-card {
    min-height: 390px;
    padding: 24px;
  }

  .alert-section__inner {
    grid-template-columns: 1fr;
  }

  .alert-copy h2,
  .technical-teaser__copy h2,
  .contact-card__copy h2 {
    font-size: clamp(36px, 11vw, 52px);
  }

  .alert-flow {
    padding: 18px;
  }

  .alert-source {
    padding: 12px;
  }

  .alert-source > b {
    display: none;
  }

  .alert-channels article {
    grid-template-columns: auto 1fr;
  }

  .alert-channels article > b {
    display: none;
  }

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

  .benefit-card,
  .benefit-card--wide {
    grid-column: auto;
    grid-template-columns: auto 1fr;
    min-height: 300px;
    padding: 24px;
  }

  .record-preview > div {
    grid-template-columns: 1fr;
  }

  .technical-teaser__inner {
    grid-template-columns: 1fr;
  }

  .technical-badge--one {
    left: 2%;
  }

  .technical-badge--two {
    right: 2%;
  }

  .contact-card {
    grid-template-columns: 1fr;
    padding: 30px 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 60px;
  }

  .site-footer__nav {
    grid-template-columns: 1fr 1fr;
    gap: 36px 24px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .tech-hero {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .tech-hero__copy h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .tech-hero__copy > p:not(.eyebrow) {
    font-size: 16px;
  }

  .tech-hero__actions {
    display: grid;
  }

  .tech-hero__actions .button {
    width: 100%;
  }

  .architecture-map {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: auto;
    padding: 20px;
  }

  .architecture-map__rail {
    display: none;
  }

  .architecture-map__core {
    width: 160px;
    justify-self: center;
  }

  .architecture-map__sources,
  .architecture-map__clients {
    grid-template-columns: 1fr 1fr;
  }

  .architecture-map__sources article:last-child {
    grid-column: 1 / -1;
  }

  .tech-foundation,
  .connectivity-section,
  .security-section,
  .hosting-section {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .foundation-grid,
  .security-grid {
    grid-template-columns: 1fr;
  }

  .foundation-grid article {
    min-height: 340px;
  }

  .identity-model {
    padding: 24px 20px;
  }

  .identity-model__map {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 10px;
  }

  .identity-model__identity--business,
  .identity-model__identity--wmbus,
  .identity-model__identity--lorawan,
  .identity-model__identity--gsm {
    grid-column: 1;
    grid-row: auto;
  }

  .identity-model__connector {
    display: none;
  }

  .planning-feature {
    grid-template-columns: 1fr;
    width: calc(100% - 40px);
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .planning-carousel {
    gap: 6px;
  }

  .planning-carousel__tabs {
    gap: 4px;
  }

  .planning-tab {
    min-height: 48px;
    padding: 6px 8px;
    border-radius: 8px;
  }

  .planning-tab small {
    font-size: 6px;
  }

  .planning-tab span {
    font-size: 8px;
  }

  .planning-carousel__viewport {
    aspect-ratio: 1.12;
    border-radius: 13px;
  }

  .planning-slide {
    padding: 8px 8px 0;
  }

  .planning-frame {
    grid-template-rows: 30px minmax(0, 1fr);
    border-radius: 9px;
  }

  .planning-frame__bar {
    padding: 0 8px;
    font-size: 6px;
  }

  .planning-frame__bar span:last-child {
    display: none;
  }

  .planning-frame__bar img {
    width: 12px;
    height: 12px;
  }

  .planning-slide__caption {
    min-height: 62px;
    padding: 8px 3px 9px;
  }

  .planning-slide__caption strong {
    font-size: 10px;
  }

  .planning-slide__caption span {
    font-size: 7.5px;
  }

  .planning-sensor-zoom figcaption {
    right: 6px;
    bottom: 5px;
    padding: 4px 6px;
    font-size: 5px;
  }

  .planning-carousel__controls {
    min-height: 38px;
    padding-left: 5px;
    font-size: 7px;
  }

  .planning-carousel__controls button {
    width: 31px;
    height: 31px;
  }

  .security-grid article {
    min-height: 260px;
  }

  .tech-contact {
    padding-bottom: 96px;
  }

  .tech-contact__inner {
    padding: 30px 24px;
  }

  .tech-contact .button {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .brand,
  .brand__image {
    width: 138px;
  }

  .hero__copy h1 {
    font-size: clamp(43px, 13.5vw, 58px);
  }

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

  .hero-phone {
    width: 88px;
  }

  .floating-alert {
    max-width: 144px;
  }

  .floating-reading {
    display: none;
  }

  .story-visual-column {
    height: 68vh;
    min-height: 500px;
  }

  .story-visual {
    min-height: 500px;
  }

  .collect-sources {
    margin-top: 10px;
  }

  .collect-card__visual {
    height: 42px;
  }

  .collect-core {
    bottom: 2%;
  }

  .experience-card {
    min-height: 410px;
  }

  .benefit-card,
  .benefit-card--wide {
    grid-template-columns: 1fr;
  }

  .benefit-card__icon {
    width: 44px;
    height: 44px;
  }

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

  .architecture-map__sources,
  .architecture-map__clients {
    grid-template-columns: 1fr;
  }

  .architecture-map__sources article:last-child {
    grid-column: auto;
  }
}

.protocol-grid__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 20px;
  color: #83d7e7;
  font-size: 9px;
  font-weight: 800;
}

.protocol-grid__link svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 980px) {
  .story-scene--coverage,
  .story-scene--dashboard,
  .story-scene--field {
    padding: 0;
  }

  .story-scene--collect {
    padding: 11px 12px 8px;
  }

  .collection-heading span {
    font-size: 6px;
  }

  .collection-heading strong {
    font-size: 15px;
  }

  .collection-stage {
    grid-template-rows: minmax(100px, 1.15fr) minmax(72px, 0.85fr) 14px;
    gap: 6px;
    margin-top: 8px;
    padding-bottom: 43px;
  }

  .collection-mobile {
    grid-template-columns: minmax(160px, 0.9fr) minmax(170px, 1.1fr);
    border-radius: 11px;
  }

  .collection-mobile__product {
    grid-template-columns: 52px 1fr;
    gap: 5px 8px;
    padding: 9px;
  }

  .collection-mobile__product > img {
    width: 52px;
    height: 52px;
    border-radius: 9px;
  }

  .collection-mobile__product small {
    font-size: 5px;
  }

  .collection-mobile__product strong {
    font-size: 11px;
  }

  .collection-mobile__product em {
    margin-top: 2px;
    font-size: 5px;
  }

  .collection-mobile__product > a {
    min-height: 20px;
    padding: 4px 7px;
    font-size: 5px;
  }

  .collection-mobile__product > a svg {
    width: 9px;
    height: 9px;
  }

  .collection-vehicle {
    bottom: 12px;
    width: 92px;
  }

  .road-line {
    bottom: 20px;
  }

  .road-meter {
    width: 28px;
    height: 28px;
  }

  .road-meter img {
    width: 18px;
    max-height: 21px;
  }

  .road-meter--one {
    top: 8px;
  }

  .road-meter--two {
    top: 14px;
  }

  .road-reading {
    padding: 2px 4px;
    font-size: 4px;
  }

  .road-reading--one {
    top: 40px;
  }

  .road-reading--two {
    top: 46px;
  }

  .collection-uplink {
    top: 6px;
    right: 6px;
    padding: 3px 5px;
    font-size: 4px;
  }

  .collection-uplink i {
    width: 2px;
    height: 3px;
  }

  .collection-uplink i:nth-child(2) {
    height: 5px;
  }

  .collection-uplink i:nth-child(3) {
    height: 7px;
  }

  .collection-path {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 3px;
    align-items: stretch;
    padding: 5px;
    border-radius: 8px;
  }

  .collection-path__visual {
    min-height: 35px;
    border-radius: 6px;
  }

  .collection-path > span:last-child {
    text-align: center;
  }

  .collection-path small {
    font-size: 4px;
  }

  .collection-path strong {
    font-size: 6px;
  }

  .collection-path em {
    font-size: 4px;
  }

  .collection-path__meter {
    left: 19%;
    width: 29%;
    max-width: 27px;
    max-height: 72%;
  }

  .collection-path__gateway {
    right: 18%;
    width: 20%;
    max-width: 19px;
    max-height: 66%;
  }

  .collection-path__iot {
    bottom: 17%;
    left: 20%;
    width: 22%;
    max-width: 20px;
  }

  .cellular-tower {
    right: 20%;
    width: 27%;
    max-width: 25px;
  }

  .collection-path--manual .collection-path__visual {
    gap: 5px;
    padding: 0 4px;
  }

  .collection-path--manual .collection-path__visual > img:first-child {
    width: 16px;
  }

  .collection-path--manual b {
    font-size: 5px;
  }

  .collection-path__check {
    width: 10px;
  }

  .collection-core {
    bottom: 4px;
    min-width: 175px;
    gap: 7px;
    padding: 6px 9px;
  }

  .collection-core > img {
    width: 25px;
    height: 25px;
    border-radius: 6px;
  }

  .collection-core strong {
    font-size: 8px;
  }

  .collection-core small {
    font-size: 5px;
  }

  .collection-core__rings {
    left: 21px;
    width: 29px;
    height: 29px;
  }

  .story-scene--coverage .scene-caption {
    top: 38px;
    left: 9px;
  }

  .story-scene--coverage .coverage-legend {
    bottom: 8px;
  }

  .story-scene--dashboard .dashboard-focus--alerts {
    top: 34px;
    right: 8px;
  }

  .story-scene--dashboard .dashboard-focus--readings {
    bottom: 8px;
    left: 8px;
  }

  .dashboard-focus--meters {
    right: 8px;
    bottom: 8px;
  }

  .field-tablet {
    width: min(64%, 440px);
    height: 90%;
    padding: 6px;
    border-radius: 20px;
  }

  .field-tablet__screen {
    border-radius: 15px;
  }

  .field-tablet__camera {
    top: 10px;
    width: 4px;
    height: 4px;
  }

  .field-transition {
    top: 9px;
    left: 8px;
    gap: 4px;
    padding: 4px 6px;
    font-size: 5px;
  }

  .field-transition i {
    width: 13px;
  }

  .field-activity-preview {
    bottom: 9px;
    left: 8px;
    width: 130px;
    gap: 5px;
    padding: 5px;
  }

  .field-activity-preview > img {
    width: 29px;
    height: 29px;
  }

  .field-activity-preview small {
    font-size: 4px;
  }

  .field-activity-preview strong {
    font-size: 6px;
  }

  .story-scene--field .field-toast {
    right: 8px;
    bottom: 9px;
    max-width: 145px;
    gap: 5px;
    padding: 6px 7px;
  }

  .story-scene--field .field-toast > img {
    width: 13px;
  }

  .story-scene--field .field-toast strong {
    font-size: 6px;
  }

  .story-scene--field .field-toast small {
    font-size: 4px;
  }
}

@media (max-width: 720px) {
  .story-scene--collect {
    padding: 7px 8px 5px;
  }

  .collection-heading span {
    font-size: 4px;
  }

  .collection-heading strong {
    font-size: 10px;
  }

  .collection-stage {
    grid-template-rows: minmax(64px, 1.2fr) minmax(42px, 0.8fr) 7px;
    gap: 3px;
    margin-top: 4px;
    padding-bottom: 31px;
  }

  .collection-mobile {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    border-radius: 7px;
  }

  .collection-mobile__product {
    grid-template-columns: 28px 1fr;
    gap: 2px 4px;
    padding: 5px;
  }

  .collection-mobile__product > img {
    width: 28px;
    height: 28px;
    border-width: 1px;
    border-radius: 5px;
  }

  .collection-mobile__product small {
    font-size: 3px;
  }

  .collection-mobile__product strong {
    font-size: 7px;
  }

  .collection-mobile__product em {
    display: none;
  }

  .collection-mobile__product > a {
    min-height: 13px;
    padding: 2px 4px;
    font-size: 3px;
  }

  .collection-mobile__product > a svg {
    width: 6px;
    height: 6px;
  }

  .collection-vehicle {
    bottom: 7px;
    width: 56px;
  }

  .road-line {
    bottom: 11px;
    height: 1px;
  }

  .road-line::after {
    top: 4px;
  }

  .road-meter {
    width: 17px;
    height: 17px;
  }

  .road-meter img {
    width: 11px;
    max-height: 12px;
  }

  .road-meter--one {
    top: 4px;
  }

  .road-meter--two {
    top: 8px;
  }

  .road-reading {
    display: none;
  }

  .collection-uplink {
    top: 3px;
    right: 3px;
    gap: 1px;
    padding: 2px 3px;
    font-size: 3px;
  }

  .collection-uplink i {
    width: 1px;
    height: 2px;
  }

  .collection-uplink i:nth-child(2) {
    height: 3px;
  }

  .collection-uplink i:nth-child(3) {
    height: 4px;
  }

  .collection-path {
    grid-template-columns: 1fr;
    gap: 1px;
    align-content: center;
    padding: 3px;
    border-radius: 5px;
  }

  .collection-path__visual {
    height: 19px;
    min-height: 19px;
    border-radius: 3px;
  }

  .collection-path > span:last-child {
    text-align: center;
  }

  .collection-path small {
    font-size: 3px;
  }

  .collection-path strong {
    font-size: 4px;
  }

  .collection-path em {
    display: none;
  }

  .collection-path__meter {
    width: 10px;
    max-height: 14px;
  }

  .collection-path__gateway {
    width: 7px;
    max-height: 12px;
  }

  .collection-path__iot {
    bottom: 2px;
    width: 7px;
  }

  .cellular-tower {
    width: 10px;
    stroke-width: 3px;
  }

  .collection-path--manual .collection-path__visual > img:first-child {
    width: 6px;
  }

  .collection-path--manual b {
    font-size: 3px;
  }

  .collection-path__check {
    width: 5px;
  }

  .collection-flow {
    height: 7px;
  }

  .collection-core {
    bottom: 2px;
    min-width: 116px;
    gap: 4px;
    padding: 3px 5px;
  }

  .collection-core > img {
    width: 16px;
    height: 16px;
    border-radius: 4px;
  }

  .collection-core strong {
    font-size: 5px;
  }

  .collection-core small {
    font-size: 3px;
  }

  .collection-core__rings {
    left: 13px;
    width: 18px;
    height: 18px;
  }

  .story-browser--coverage .story-browser__bar,
  .dashboard-live__bar {
    height: 26px;
  }

  .coverage-scan {
    top: 26px;
  }

  .story-scene--coverage .scene-caption {
    top: 34px;
    left: 7px;
  }

  .story-scene--coverage .coverage-legend {
    bottom: 6px;
  }

  .dashboard-live__scan {
    top: 26px;
  }

  .story-scene--dashboard .dashboard-focus--alerts {
    top: 33px;
    right: 6px;
  }

  .story-scene--dashboard .dashboard-focus--readings {
    bottom: 6px;
    left: 6px;
  }

  .dashboard-focus--meters {
    right: 6px;
    bottom: 6px;
  }

  .field-tablet {
    width: 57%;
    height: 88%;
    padding: 4px;
    border-radius: 14px;
  }

  .field-tablet__screen {
    border-radius: 10px;
  }

  .field-tablet__camera {
    top: 7px;
    width: 3px;
    height: 3px;
    box-shadow: 0 0 0 2px rgba(6, 31, 46, 0.82);
  }

  .field-map-tap i {
    width: 10px;
    height: 10px;
    border-width: 2px;
  }

  .field-map-tap b {
    margin-top: 3px;
    padding: 2px 3px;
    font-size: 3px;
  }

  .field-transition {
    top: 6px;
    left: 5px;
    gap: 2px;
    padding: 3px 4px;
    font-size: 3px;
  }

  .field-transition i {
    width: 8px;
  }

  .field-activity-preview {
    display: none;
  }

  .story-scene--field .field-toast {
    right: 5px;
    bottom: 6px;
    max-width: 96px;
    gap: 3px;
    padding: 4px;
    border-radius: 6px;
  }

  .story-scene--field .field-toast > img {
    width: 8px;
  }

  .story-scene--field .field-toast strong {
    font-size: 4px;
  }

  .story-scene--field .field-toast small {
    display: none;
  }
}

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

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

  .hero-product,
  [data-tilt] {
    transform: none !important;
  }

  .collection-vehicle {
    left: 35%;
  }

  .road-reading {
    opacity: 1;
    transform: none;
  }

  .field-view--map {
    opacity: 0;
  }

  .field-view--detail,
  .field-activity-preview,
  .story-scene--field .field-toast {
    opacity: 1;
    transform: none;
  }
}

/* Reading mode carousel */

.story-scene--collect {
  padding: 14px 16px 12px;
  background:
    radial-gradient(circle at 76% 18%, rgba(111, 209, 227, 0.13), transparent 28%),
    linear-gradient(180deg, #ffffff, #f5fafb);
}

.reading-carousel {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  grid-template-rows: auto auto minmax(0, 1fr);
  gap: 9px;
}

.reading-carousel__heading {
  display: grid;
  text-align: center;
}

.reading-carousel__heading span {
  color: var(--blue-700);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reading-carousel__heading strong {
  margin-top: 2px;
  color: var(--navy-950);
  font-size: clamp(16px, 1.55vw, 22px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.reading-carousel__tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.reading-tab {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 54px;
  align-content: center;
  padding: 7px 9px;
  overflow: hidden;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 5px 14px rgba(6, 41, 59, 0.05);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    color 200ms ease,
    background 200ms ease,
    border-color 200ms ease,
    transform 200ms var(--ease-out);
}

.reading-tab::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: rgba(255, 255, 255, 0.18);
}

.reading-tab::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange-500);
  transform: scaleX(0);
  transform-origin: left center;
}

.story-scene--collect.is-active .reading-carousel.is-running .reading-tab.is-active::after {
  animation: reading-tab-progress 6.8s linear both;
}

.reading-carousel.is-paused .reading-tab.is-active::after {
  animation-play-state: paused;
}

@keyframes reading-tab-progress {
  to {
    transform: scaleX(1);
  }
}

.reading-tab:hover {
  color: var(--navy-900);
  border-color: var(--blue-300);
  transform: translateY(-1px);
}

.reading-tab:focus-visible {
  outline: 2px solid var(--orange-500);
  outline-offset: 2px;
}

.reading-tab.is-active {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
  box-shadow: 0 9px 22px rgba(6, 41, 59, 0.16);
}

.reading-tab small,
.reading-tab span,
.reading-tab b {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reading-tab small {
  color: var(--orange-500);
  font-size: 5px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.reading-tab span {
  margin-top: 1px;
  font-size: 8px;
  font-weight: 850;
}

.reading-tab b {
  margin-top: 1px;
  color: currentColor;
  font-size: 6px;
  font-weight: 650;
  opacity: 0.72;
}

.reading-carousel__viewport {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: 0 16px 36px rgba(6, 41, 59, 0.12);
}

.reading-slide {
  position: absolute;
  display: grid;
  visibility: hidden;
  min-width: 0;
  grid-template-columns: minmax(185px, 0.78fr) minmax(0, 1.22fr);
  opacity: 0;
  background: var(--white);
  pointer-events: none;
  transform: translateX(24px);
  transition:
    opacity 360ms ease,
    transform 520ms var(--ease-out),
    visibility 0s linear 520ms;
  inset: 0;
}

.reading-slide.is-active {
  visibility: visible;
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s;
}

.reading-slide__copy {
  position: relative;
  z-index: 4;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 20px 17px 50px;
  background:
    radial-gradient(circle at 0% 0%, rgba(111, 209, 227, 0.17), transparent 40%),
    var(--white);
}

.reading-slide__tag {
  color: var(--blue-700);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reading-slide__copy h3 {
  margin-top: 7px;
  color: var(--navy-950);
  font-size: clamp(18px, 1.8vw, 25px);
  font-weight: 720;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.reading-slide__copy p {
  margin-top: 10px;
  color: var(--text);
  font-size: 9px;
  line-height: 1.58;
}

.reading-chain {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 13px;
}

.reading-chain span {
  padding: 4px 5px;
  color: var(--navy-900);
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: 5px;
  font-size: 5px;
  font-weight: 800;
  white-space: nowrap;
}

.reading-chain i {
  position: relative;
  width: 8px;
  height: 1px;
  flex: 0 1 8px;
  background: var(--blue-500);
}

.reading-chain i::after {
  position: absolute;
  top: -2px;
  right: -1px;
  width: 4px;
  height: 4px;
  content: "";
  border-top: 1px solid var(--blue-600);
  border-right: 1px solid var(--blue-600);
  transform: rotate(45deg);
}

.reading-slide__link {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 6px 9px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 999px;
  font-size: 7px;
  font-weight: 800;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms var(--ease-out);
}

.reading-slide__link:hover {
  color: var(--white);
  background: var(--orange-600);
  transform: translateX(2px);
}

.reading-slide__link svg {
  width: 12px;
  height: 12px;
}

.reading-slide__benefit {
  display: inline-flex;
  width: fit-content;
  margin-top: 15px;
  padding: 7px 9px;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-100);
  border-radius: 7px;
  font-size: 7px;
  font-weight: 800;
  line-height: 1.3;
}

.reading-demo {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-left: 1px solid var(--line);
}

.reading-demo--mobile {
  background:
    radial-gradient(circle at 50% 60%, rgba(255, 255, 255, 0.82), transparent 36%),
    linear-gradient(180deg, #fff7f1, #eef8fa);
}

.reading-destination {
  position: absolute;
  z-index: 5;
  top: 12px;
  left: 50%;
  display: flex;
  min-width: 142px;
  align-items: center;
  gap: 7px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--blue-200);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transform: translateX(-50%);
}

.reading-destination > img {
  width: 27px;
  height: 27px;
  border-radius: 7px;
}

.reading-destination span {
  display: grid;
}

.reading-destination strong {
  color: var(--navy-950);
  font-size: 8px;
}

.reading-destination small {
  color: var(--muted);
  font-size: 5px;
}

.reading-meter-card {
  position: absolute;
  z-index: 5;
  top: 82px;
  display: flex;
  width: 104px;
  align-items: center;
  gap: 6px;
  padding: 6px 7px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(12, 59, 84, 0.13);
  border-radius: 9px;
  box-shadow: var(--shadow-sm);
}

.reading-meter-card--one {
  left: 13px;
}

.reading-meter-card--two {
  right: 13px;
}

.reading-meter-card > img {
  width: 25px;
  max-height: 32px;
  object-fit: contain;
}

.reading-meter-card span {
  display: grid;
}

.reading-meter-card small {
  color: var(--muted);
  font-size: 5px;
  font-weight: 700;
}

.reading-meter-card b {
  margin-top: 2px;
  color: var(--navy-900);
  font-size: 6px;
  line-height: 1.15;
}

.reading-mobile-links {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  inset: 0;
}

.reading-link {
  fill: none;
  stroke-linecap: round;
  stroke-width: 2;
  stroke-dasharray: 5 7;
}

.reading-link--meter {
  stroke: var(--orange-500);
}

.reading-link--uplink {
  stroke: var(--blue-600);
}

.reading-slide--mobile.is-active .reading-link {
  animation: reading-signal-travel 2.4s linear infinite;
}

@keyframes reading-signal-travel {
  to {
    stroke-dashoffset: -48;
  }
}

.reading-signal-label {
  position: absolute;
  z-index: 4;
  padding: 3px 5px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 5px;
  font-weight: 850;
}

.reading-signal-label--left {
  top: 42%;
  left: 23%;
}

.reading-signal-label--right {
  top: 42%;
  right: 23%;
}

.reading-signal-label--uplink {
  top: 19%;
  left: calc(50% + 16px);
  color: var(--green-700);
}

.reading-captured {
  position: absolute;
  z-index: 6;
  top: 133px;
  padding: 3px 6px;
  opacity: 0;
  color: var(--green-700);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--green-100);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 5px;
  font-weight: 850;
}

.reading-captured--one {
  left: 24px;
}

.reading-captured--two {
  right: 24px;
}

.reading-slide--mobile.is-active .reading-captured--one {
  animation: reading-captured 4.8s 1s ease-in-out infinite;
}

.reading-slide--mobile.is-active .reading-captured--two {
  animation: reading-captured 4.8s 2.1s ease-in-out infinite;
}

@keyframes reading-captured {
  0%,
  18%,
  72%,
  100% {
    opacity: 0;
    transform: translateY(4px);
  }

  30%,
  58% {
    opacity: 1;
    transform: translateY(0);
  }
}

.reading-road {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 25px;
  left: 0;
  height: 3px;
  background: var(--navy-900);
}

.reading-road::after {
  position: absolute;
  top: 9px;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  opacity: 0.72;
  background: repeating-linear-gradient(90deg, var(--white) 0 18px, transparent 18px 32px);
}

.reading-van {
  position: absolute;
  z-index: 4;
  bottom: 27px;
  left: 50%;
  width: min(76%, 300px);
  filter: drop-shadow(0 10px 10px rgba(6, 41, 59, 0.2));
  transform: translateX(-50%);
}

.reading-slide--mobile.is-active .reading-van {
  animation: reading-van-arrive 2.8s var(--ease-smooth) both;
}

@keyframes reading-van-arrive {
  from {
    opacity: 0.55;
    transform: translateX(calc(-50% - 48px));
  }

  to {
    opacity: 1;
    transform: translateX(calc(-50% + 10px));
  }
}

.reading-van > svg {
  display: block;
  width: 100%;
  overflow: visible;
}

.reading-van__antenna {
  fill: none;
  stroke: var(--orange-600);
  stroke-linecap: round;
  stroke-width: 4;
}

.reading-van__body,
.reading-van__cab {
  fill: var(--blue-600);
  stroke: var(--navy-950);
  stroke-linejoin: round;
  stroke-width: 5;
}

.reading-van__cab {
  fill: var(--blue-700);
}

.reading-van__window {
  fill: #ddf5f8;
  stroke: var(--navy-900);
  stroke-width: 3;
}

.reading-van__cutaway {
  fill: rgba(255, 255, 255, 0.94);
  stroke: rgba(6, 41, 59, 0.24);
  stroke-width: 2;
}

.reading-van__bumper {
  fill: var(--navy-800);
}

.reading-van__wheel {
  fill: var(--navy-950);
  stroke: var(--white);
  stroke-width: 5;
}

.reading-van__hub {
  fill: var(--orange-500);
}

.reading-van text {
  fill: rgba(255, 255, 255, 0.86);
  font-family: var(--font-sans);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.reading-van__module {
  position: absolute;
  top: 39%;
  left: 16%;
  display: flex;
  width: 42%;
  align-items: center;
  gap: 5px;
}

.reading-van__module > img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: cover;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
}

.reading-van__module span {
  display: grid;
  min-width: 0;
}

.reading-van__module b {
  color: var(--navy-950);
  font-size: 11px;
  line-height: 1;
}

.reading-van__module small {
  margin-top: 2px;
  color: var(--text);
  font-size: 5px;
  font-weight: 700;
  line-height: 1.15;
}

.reading-van__label {
  position: absolute;
  top: 7px;
  left: 10%;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 6px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 5px;
  font-weight: 800;
  white-space: nowrap;
}

.reading-van__label i {
  width: 5px;
  height: 5px;
  background: var(--orange-500);
  border-radius: 50%;
}

.reading-demo--fixed {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 11px;
  padding: 20px 18px 53px;
  background: linear-gradient(180deg, #f5fbfc, #edf6f8);
}

.reading-network-lane {
  position: relative;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(68px, 1fr) minmax(34px, 0.48fr) minmax(68px, 1fr) minmax(34px, 0.48fr) minmax(68px, 1fr);
  gap: 5px;
  align-items: center;
  padding: 24px 9px 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 11px;
  box-shadow: var(--shadow-sm);
}

.reading-network-lane--lorawan {
  background: rgba(248, 247, 255, 0.94);
}

.reading-network-lane__title {
  position: absolute;
  top: 7px;
  left: 9px;
  color: var(--blue-700);
  font-size: 6px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reading-network-node {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 4px;
  text-align: center;
}

.reading-network-node > img,
.reading-network-node > svg {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.reading-network-node > span {
  display: grid;
}

.reading-network-node small {
  color: var(--muted);
  font-size: 5px;
}

.reading-network-node b {
  margin-top: 1px;
  color: var(--navy-950);
  font-size: 7px;
}

.reading-network-node--waysense > img {
  border-radius: 8px;
}

.reading-network-arrow {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 5px;
}

.reading-network-arrow i {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  overflow: hidden;
  background: var(--blue-400);
}

.reading-network-arrow i::before {
  position: absolute;
  top: -2px;
  width: 5px;
  height: 5px;
  content: "";
  background: var(--orange-500);
  border-radius: 50%;
}

.reading-slide--fixed.is-active .reading-network-arrow i::before {
  animation: reading-packet-horizontal 2s linear infinite;
}

.reading-slide--fixed.is-active .reading-network-arrow:nth-of-type(4) i::before {
  animation-delay: 0.6s;
}

@keyframes reading-packet-horizontal {
  from {
    left: -6px;
  }

  to {
    left: calc(100% + 1px);
  }
}

.reading-network-arrow b {
  overflow: hidden;
  color: var(--muted);
  font-size: 4px;
  font-weight: 750;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reading-tower {
  fill: none;
  stroke: var(--navy-900);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.reading-demo--cellular {
  display: grid;
  grid-template-columns: minmax(74px, 1fr) minmax(34px, 0.45fr) minmax(90px, 1.15fr) minmax(34px, 0.45fr) minmax(74px, 1fr);
  gap: 6px;
  align-items: center;
  padding: 42px 18px 52px;
  background:
    radial-gradient(circle at 50% 50%, rgba(151, 138, 214, 0.16), transparent 38%),
    #f7f7fc;
}

.reading-direct-badge {
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 50%;
  padding: 5px 8px;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid #ddd9f2;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 6px;
  font-weight: 850;
  transform: translateX(-50%);
  white-space: nowrap;
}

.reading-direct-node,
.reading-operator {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 8px;
  padding: 15px 8px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #ddd9f2;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.reading-direct-node > img,
.reading-operator > svg {
  width: 49px;
  height: 55px;
  object-fit: contain;
}

.reading-direct-node--waysense > img {
  height: 49px;
  border-radius: 10px;
}

.reading-direct-node span,
.reading-operator span {
  display: grid;
}

.reading-direct-node small,
.reading-operator small {
  color: var(--muted);
  font-size: 5px;
}

.reading-direct-node b,
.reading-operator b {
  margin-top: 2px;
  color: var(--navy-950);
  font-size: 7px;
  line-height: 1.2;
}

.reading-direct-path {
  position: relative;
  display: block;
  height: 2px;
  background: #aaa1d8;
}

.reading-direct-path::after {
  position: absolute;
  top: -3px;
  right: -1px;
  width: 7px;
  height: 7px;
  content: "";
  border-top: 2px solid #7668bb;
  border-right: 2px solid #7668bb;
  transform: rotate(45deg);
}

.reading-direct-path i {
  position: absolute;
  top: -3px;
  left: -5px;
  width: 8px;
  height: 8px;
  background: var(--orange-500);
  border-radius: 50%;
}

.reading-slide--cellular.is-active .reading-direct-path i {
  animation: reading-direct-packet 2.2s linear infinite;
}

.reading-slide--cellular.is-active .reading-direct-path--two i {
  animation-delay: 0.65s;
}

@keyframes reading-direct-packet {
  to {
    left: calc(100% + 2px);
  }
}

.reading-demo--manual {
  display: grid;
  grid-template-columns: minmax(105px, 0.9fr) minmax(65px, 0.55fr) minmax(105px, 0.9fr);
  gap: 12px;
  align-items: center;
  padding: 18px 24px 50px;
  background:
    radial-gradient(circle at 24% 40%, rgba(111, 209, 227, 0.18), transparent 32%),
    #f4f8f9;
}

.reading-phone {
  position: relative;
  display: grid;
  width: min(100%, 150px);
  max-height: 290px;
  aspect-ratio: 0.57;
  justify-self: center;
  align-content: start;
  padding: 22px 11px 10px;
  background: var(--white);
  border: 5px solid var(--navy-950);
  border-radius: 22px;
  box-shadow: 0 15px 32px rgba(6, 41, 59, 0.18);
}

.reading-phone__speaker {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 29px;
  height: 3px;
  background: var(--navy-700);
  border-radius: 999px;
  transform: translateX(-50%);
}

.reading-phone__tag {
  color: var(--blue-700);
  font-size: 5px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reading-phone__value {
  display: grid;
  margin-top: 12px;
  padding: 10px 8px;
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: 8px;
}

.reading-phone__value small {
  color: var(--muted);
  font-size: 5px;
}

.reading-phone__value strong {
  margin-top: 4px;
  color: var(--navy-950);
  font-size: 17px;
  line-height: 1;
}

.reading-phone__value i {
  color: var(--muted);
  font-size: 7px;
  font-style: normal;
}

.reading-phone__check {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 9px;
  color: var(--green-700);
  font-size: 5px;
  font-weight: 800;
}

.reading-phone__check img {
  width: 10px;
  filter: invert(40%) sepia(40%) saturate(900%) hue-rotate(85deg);
}

.reading-phone button {
  min-height: 25px;
  margin-top: auto;
  color: var(--white);
  background: var(--blue-700);
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-size: 6px;
  font-weight: 800;
}

.reading-manual-flow {
  display: grid;
  gap: 25px;
}

.reading-manual-flow span {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 5px;
}

.reading-manual-flow i {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  background: var(--blue-500);
}

.reading-manual-flow i::after {
  position: absolute;
  top: -3px;
  left: -4px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--orange-500);
  border-radius: 50%;
}

.reading-slide--manual.is-active .reading-manual-flow i::after {
  animation: reading-direct-packet 2.2s linear infinite;
}

.reading-slide--manual.is-active .reading-manual-flow span:nth-child(2) i::after {
  animation-delay: 0.65s;
}

.reading-manual-flow b {
  color: var(--muted);
  font-size: 5px;
  text-align: center;
}

.reading-manual-result {
  display: grid;
  min-width: 0;
  grid-template-columns: 36px 1fr 17px;
  gap: 7px;
  align-items: center;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--green-100);
  border-radius: 11px;
  box-shadow: var(--shadow-md);
}

.reading-manual-result > img:first-child {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.reading-manual-result > img:last-child {
  width: 17px;
  filter: invert(40%) sepia(40%) saturate(900%) hue-rotate(85deg);
}

.reading-manual-result span {
  display: grid;
  min-width: 0;
}

.reading-manual-result small {
  color: var(--muted);
  font-size: 5px;
}

.reading-manual-result b {
  margin-top: 2px;
  color: var(--green-700);
  font-size: 7px;
}

.reading-carousel__controls {
  position: absolute;
  z-index: 10;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px 6px 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.9);
  border-top: 1px solid var(--line);
  font-size: 6px;
  font-weight: 750;
  backdrop-filter: blur(10px);
}

.reading-carousel__controls > div {
  display: flex;
  gap: 5px;
}

.reading-carousel__controls button {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.reading-carousel__controls button:hover {
  color: var(--white);
  background: var(--orange-600);
  border-color: var(--orange-600);
}

.reading-carousel__controls button:focus-visible {
  outline: 2px solid var(--orange-500);
  outline-offset: 2px;
}

.reading-carousel__controls svg {
  width: 13px;
  height: 13px;
}

@media (max-height: 760px) and (min-width: 981px) {
  .story-scene--collect {
    padding: 9px 11px 8px;
  }

  .reading-carousel {
    gap: 6px;
  }

  .reading-carousel__heading span {
    font-size: 6px;
  }

  .reading-carousel__heading strong {
    font-size: 16px;
  }

  .reading-tab {
    min-height: 47px;
    padding: 5px 7px;
  }

  .reading-slide__copy {
    padding: 13px 12px 43px;
  }

  .reading-slide__copy h3 {
    font-size: 18px;
  }

  .reading-slide__copy p {
    margin-top: 7px;
    font-size: 8px;
  }

  .reading-chain,
  .reading-slide__link,
  .reading-slide__benefit {
    margin-top: 8px;
  }

  .reading-meter-card {
    top: 67px;
  }

  .reading-captured {
    top: 116px;
  }

  .reading-van {
    width: min(72%, 255px);
  }

  .reading-demo--fixed {
    padding-top: 12px;
  }
}

@media (max-width: 980px) {
  .story-scene--collect {
    padding: 8px 9px 7px;
  }

  .reading-carousel {
    gap: 5px;
  }

  .reading-carousel__heading span {
    font-size: 5px;
  }

  .reading-carousel__heading strong {
    font-size: 12px;
  }

  .reading-carousel__tabs {
    gap: 3px;
  }

  .reading-tab {
    min-height: 42px;
    padding: 4px 5px;
    border-radius: 7px;
  }

  .reading-tab small {
    font-size: 4px;
  }

  .reading-tab span {
    font-size: 6px;
  }

  .reading-tab b {
    font-size: 4px;
  }

  .reading-carousel__viewport {
    border-radius: 10px;
  }

  .reading-slide {
    grid-template-columns: minmax(115px, 0.72fr) minmax(0, 1.28fr);
  }

  .reading-slide__copy {
    padding: 9px 8px 30px;
  }

  .reading-slide__tag {
    font-size: 4px;
  }

  .reading-slide__copy h3 {
    margin-top: 4px;
    font-size: 11px;
  }

  .reading-slide__copy p {
    margin-top: 5px;
    font-size: 5px;
    line-height: 1.45;
  }

  .reading-chain {
    gap: 2px;
    margin-top: 6px;
  }

  .reading-chain span {
    padding: 2px 3px;
    border-radius: 3px;
    font-size: 3px;
  }

  .reading-chain i {
    width: 4px;
    flex-basis: 4px;
  }

  .reading-slide__link {
    min-height: 19px;
    gap: 3px;
    margin-top: 6px;
    padding: 3px 5px;
    font-size: 4px;
  }

  .reading-slide__link svg {
    width: 7px;
    height: 7px;
  }

  .reading-slide__benefit {
    margin-top: 7px;
    padding: 4px 5px;
    font-size: 4px;
  }

  .reading-destination {
    top: 7px;
    min-width: 89px;
    gap: 4px;
    padding: 4px 5px;
  }

  .reading-destination > img {
    width: 17px;
    height: 17px;
    border-radius: 4px;
  }

  .reading-destination strong {
    font-size: 5px;
  }

  .reading-destination small {
    font-size: 3px;
  }

  .reading-meter-card {
    top: 48px;
    width: 66px;
    gap: 3px;
    padding: 3px 4px;
    border-radius: 6px;
  }

  .reading-meter-card--one {
    left: 7px;
  }

  .reading-meter-card--two {
    right: 7px;
  }

  .reading-meter-card > img {
    width: 16px;
    max-height: 20px;
  }

  .reading-meter-card small {
    font-size: 3px;
  }

  .reading-meter-card b {
    font-size: 3px;
  }

  .reading-signal-label {
    padding: 2px 3px;
    font-size: 3px;
  }

  .reading-captured {
    top: 78px;
    padding: 2px 3px;
    font-size: 3px;
  }

  .reading-captured--one {
    left: 12px;
  }

  .reading-captured--two {
    right: 12px;
  }

  .reading-road {
    bottom: 16px;
    height: 2px;
  }

  .reading-van {
    bottom: 18px;
    width: min(74%, 188px);
  }

  .reading-van__module > img {
    width: 25px;
    height: 25px;
    border-radius: 4px;
  }

  .reading-van__module {
    gap: 3px;
  }

  .reading-van__module b {
    font-size: 7px;
  }

  .reading-van__module small {
    font-size: 3px;
  }

  .reading-van__label {
    top: 3px;
    gap: 2px;
    padding: 2px 3px;
    font-size: 3px;
  }

  .reading-demo--fixed {
    gap: 6px;
    padding: 9px 7px 31px;
  }

  .reading-network-lane {
    grid-template-columns: minmax(38px, 1fr) minmax(18px, 0.38fr) minmax(38px, 1fr) minmax(18px, 0.38fr) minmax(38px, 1fr);
    gap: 2px;
    padding: 15px 4px 3px;
    border-radius: 6px;
  }

  .reading-network-lane__title {
    top: 4px;
    left: 5px;
    font-size: 3px;
  }

  .reading-network-node {
    gap: 2px;
  }

  .reading-network-node > img,
  .reading-network-node > svg {
    width: 20px;
    height: 20px;
  }

  .reading-network-node small,
  .reading-network-arrow b {
    font-size: 3px;
  }

  .reading-network-node b {
    font-size: 4px;
  }

  .reading-demo--cellular {
    grid-template-columns: minmax(45px, 1fr) minmax(18px, 0.35fr) minmax(54px, 1.15fr) minmax(18px, 0.35fr) minmax(45px, 1fr);
    gap: 3px;
    padding: 27px 7px 31px;
  }

  .reading-direct-badge {
    top: 7px;
    padding: 3px 5px;
    font-size: 3px;
  }

  .reading-direct-node,
  .reading-operator {
    gap: 3px;
    padding: 7px 3px;
    border-radius: 7px;
  }

  .reading-direct-node > img,
  .reading-operator > svg {
    width: 27px;
    height: 30px;
  }

  .reading-direct-node--waysense > img {
    height: 27px;
  }

  .reading-direct-node small,
  .reading-operator small {
    font-size: 3px;
  }

  .reading-direct-node b,
  .reading-operator b {
    font-size: 4px;
  }

  .reading-demo--manual {
    grid-template-columns: minmax(62px, 0.9fr) minmax(34px, 0.45fr) minmax(62px, 0.9fr);
    gap: 5px;
    padding: 8px 10px 29px;
  }

  .reading-phone {
    width: min(100%, 78px);
    padding: 12px 5px 5px;
    border-width: 3px;
    border-radius: 12px;
  }

  .reading-phone__speaker {
    top: 4px;
    width: 16px;
    height: 2px;
  }

  .reading-phone__tag,
  .reading-phone__value small,
  .reading-phone__check,
  .reading-phone button {
    font-size: 3px;
  }

  .reading-phone__value {
    margin-top: 5px;
    padding: 5px 4px;
  }

  .reading-phone__value strong {
    margin-top: 2px;
    font-size: 9px;
  }

  .reading-phone__value i {
    font-size: 4px;
  }

  .reading-phone__check {
    gap: 2px;
    margin-top: 4px;
  }

  .reading-phone__check img {
    width: 5px;
  }

  .reading-phone button {
    min-height: 13px;
    border-radius: 4px;
  }

  .reading-manual-flow {
    gap: 12px;
  }

  .reading-manual-flow b {
    font-size: 3px;
  }

  .reading-manual-result {
    grid-template-columns: 20px 1fr 8px;
    gap: 3px;
    padding: 5px;
    border-radius: 6px;
  }

  .reading-manual-result > img:first-child {
    width: 20px;
    height: 20px;
    border-radius: 4px;
  }

  .reading-manual-result > img:last-child {
    width: 8px;
  }

  .reading-manual-result small {
    font-size: 3px;
  }

  .reading-manual-result b {
    font-size: 4px;
  }

  .reading-carousel__controls {
    min-height: 28px;
    padding: 4px 6px 4px 8px;
    font-size: 4px;
  }

  .reading-carousel__controls button {
    width: 20px;
    height: 20px;
  }

  .reading-carousel__controls svg {
    width: 9px;
    height: 9px;
  }
}

@media (max-width: 720px) {
  .story-scene--collect {
    padding: 5px 6px 4px;
  }

  .reading-carousel {
    gap: 3px;
  }

  .reading-carousel__heading span {
    font-size: 3px;
  }

  .reading-carousel__heading strong {
    margin-top: 1px;
    font-size: 8px;
  }

  .reading-tab {
    min-height: 30px;
    padding: 3px;
    border-radius: 5px;
  }

  .reading-tab small {
    display: none;
  }

  .reading-tab span {
    font-size: 4px;
  }

  .reading-tab b {
    font-size: 3px;
  }

  .reading-carousel__viewport {
    border-radius: 7px;
  }

  .reading-slide {
    display: block;
  }

  .reading-slide__copy {
    position: absolute;
    z-index: 8;
    top: 5px;
    left: 5px;
    width: 39%;
    justify-content: start;
    padding: 5px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(12, 59, 84, 0.11);
    border-radius: 5px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(7px);
  }

  .reading-slide__tag {
    font-size: 3px;
  }

  .reading-slide__copy h3 {
    margin-top: 2px;
    font-size: 6px;
    line-height: 1.08;
  }

  .reading-slide__copy p,
  .reading-chain,
  .reading-slide__link,
  .reading-slide__benefit {
    display: none;
  }

  .reading-demo {
    width: 100%;
    height: 100%;
    border-left: 0;
  }

  .reading-destination {
    top: 5px;
    left: 69%;
  }

  .reading-meter-card {
    top: 42px;
  }

  .reading-meter-card--one {
    left: 8px;
  }

  .reading-meter-card--two {
    right: 8px;
  }

  .reading-captured {
    top: 70px;
  }

  .reading-signal-label--left {
    top: 41%;
    left: 27%;
  }

  .reading-signal-label--right {
    top: 41%;
    right: 27%;
  }

  .reading-signal-label--uplink {
    top: 18%;
    left: calc(69% + 9px);
  }

  .reading-van {
    width: min(66%, 220px);
  }

  .reading-demo--fixed {
    padding: 8px 5px 29px;
  }

  .reading-network-lane {
    padding-top: 14px;
  }

  .reading-demo--cellular {
    padding-right: 6px;
    padding-left: 6px;
  }

  .reading-demo--manual {
    padding-right: 12px;
    padding-left: 12px;
  }

  .reading-carousel__controls > span {
    display: none;
  }

  .reading-carousel__controls {
    right: 4px;
    bottom: 4px;
    left: auto;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reading-van {
    opacity: 1;
    transform: translateX(calc(-50% + 10px));
  }

  .reading-captured {
    opacity: 1;
    transform: none;
  }

  .reading-tab.is-active::after {
    transform: scaleX(1);
  }
}

/* Literal drive-by collection scene */

.reading-demo--mobile .reading-destination {
  top: 16px;
  left: 27%;
}

.reading-property {
  position: absolute;
  z-index: 3;
  width: 142px;
  color: var(--navy-950);
}

.reading-property--one {
  top: 102px;
  left: 16px;
}

.reading-property--two {
  top: 273px;
  left: 24px;
}

.reading-property__meter {
  position: relative;
  display: grid;
  width: 138px;
  min-height: 64px;
  grid-template-columns: 46px 1fr;
  gap: 7px;
  align-items: center;
  padding: 7px 8px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(12, 59, 84, 0.13);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.reading-property__meter > img {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 48px;
  object-fit: contain;
}

.reading-property__meter > span:last-child {
  display: grid;
}

.reading-property__meter small {
  color: var(--muted);
  font-size: 5.5px;
  font-weight: 750;
  line-height: 1.2;
}

.reading-property__meter b {
  margin-top: 3px;
  color: var(--orange-700);
  font-size: 6.5px;
  line-height: 1.15;
}

.reading-meter-rings {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 31px;
  width: 38px;
  height: 38px;
  transform: translate(-50%, -50%);
}

.reading-meter-rings i {
  position: absolute;
  border: 1px solid var(--orange-500);
  border-radius: 50%;
  inset: 0;
}

.reading-meter-rings i:last-child {
  inset: -7px;
}

.reading-slide--mobile.is-active .reading-meter-rings i {
  animation: reading-meter-emission 2.2s ease-out infinite;
}

.reading-slide--mobile.is-active .reading-meter-rings i:last-child {
  animation-delay: 0.65s;
}

@keyframes reading-meter-emission {
  0% {
    opacity: 0.9;
    transform: scale(0.55);
  }

  75%,
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

.reading-frame {
  position: absolute;
  z-index: 7;
  display: grid;
  width: 63px;
  justify-items: center;
  gap: 3px;
  padding: 5px 6px;
  opacity: 0;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--orange-300);
  border-radius: 8px;
  box-shadow: 0 7px 15px rgba(6, 41, 59, 0.16);
}

.reading-frame > span {
  display: flex;
  gap: 2px;
}

.reading-frame > span i {
  display: block;
  width: 8px;
  height: 3px;
  background: var(--orange-500);
  border-radius: 999px;
}

.reading-frame b {
  font-size: 5px;
  line-height: 1;
  white-space: nowrap;
}

.reading-frame--one {
  top: 158px;
  left: 113px;
}

.reading-frame--two {
  top: 329px;
  left: 120px;
}

.reading-slide--mobile.is-active .reading-frame--one {
  animation: reading-frame-one 5.6s 0.65s var(--ease-smooth) infinite;
}

.reading-slide--mobile.is-active .reading-frame--two {
  animation: reading-frame-two 5.6s 2.25s var(--ease-smooth) infinite;
}

@keyframes reading-frame-one {
  0%,
  12% {
    opacity: 0;
    transform: translate(0, 0) scale(0.82);
  }

  20%,
  36% {
    opacity: 1;
  }

  54% {
    opacity: 1;
    transform: translate(58px, 304px) scale(0.92);
  }

  60%,
  100% {
    opacity: 0;
    transform: translate(58px, 317px) scale(0.55);
  }
}

@keyframes reading-frame-two {
  0%,
  12% {
    opacity: 0;
    transform: translate(0, 0) scale(0.82);
  }

  20%,
  36% {
    opacity: 1;
  }

  54% {
    opacity: 1;
    transform: translate(51px, 133px) scale(0.92);
  }

  60%,
  100% {
    opacity: 0;
    transform: translate(51px, 146px) scale(0.55);
  }
}

.reading-road {
  right: 0;
  bottom: 0;
  left: 0;
  height: 91px;
  background:
    linear-gradient(180deg, rgba(209, 222, 225, 0.28), rgba(165, 186, 191, 0.46)),
    #e4ecee;
  border-top: 2px solid var(--navy-900);
}

.reading-road::after {
  top: 54px;
  height: 2px;
  opacity: 0.85;
  background: repeating-linear-gradient(90deg, var(--white) 0 26px, transparent 26px 46px);
}

.reading-slide--mobile.is-active .reading-road::after {
  animation: reading-road-travel 1.5s linear infinite;
}

@keyframes reading-road-travel {
  to {
    background-position-x: -46px;
  }
}

.reading-road-status {
  position: absolute;
  z-index: 6;
  right: 12px;
  bottom: 65px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 7px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 5px;
  font-weight: 850;
}

.reading-road-status i {
  width: 5px;
  height: 5px;
  background: var(--green-600);
  border-radius: 50%;
}

.reading-van {
  bottom: 31px;
  width: min(71%, 270px);
}

.reading-van__asset {
  display: block;
  width: 100%;
  height: auto;
}

.reading-van::before {
  position: absolute;
  z-index: 6;
  top: 1%;
  left: 74%;
  width: 2px;
  height: 19%;
  content: "";
  background: var(--navy-950);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.72);
  transform: rotate(8deg);
  transform-origin: bottom center;
}

.reading-van::after {
  position: absolute;
  z-index: 6;
  top: 18%;
  left: 71%;
  width: 8%;
  height: 4px;
  content: "";
  background: var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px 999px 3px 3px;
}

.reading-van__brand {
  position: absolute;
  top: 24%;
  left: 36%;
  display: flex;
  align-items: center;
  color: var(--navy-950);
}

.reading-van__brand img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.reading-slide--mobile.is-active .reading-van {
  animation: reading-service-van-drive 3.1s var(--ease-smooth) both;
}

@keyframes reading-service-van-drive {
  from {
    opacity: 0.3;
    transform: translateX(-125%);
  }

  72%,
  100% {
    opacity: 1;
    transform: translateX(-49%);
  }
}

.reading-van__module {
  z-index: 10;
  top: -4px;
  left: 50%;
  width: 154px;
  min-height: 56px;
  gap: 7px;
  padding: 7px 9px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--blue-200);
  border-radius: 11px;
  box-shadow: 0 12px 24px rgba(6, 41, 59, 0.18);
  transform: translate(-50%, -100%);
}

.reading-van__module > img {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 7px;
}

.reading-van__module b {
  font-size: 10px;
}

.reading-van__module small {
  margin-top: 3px;
  font-size: 5px;
  line-height: 1.2;
}

.reading-van__module::after {
  position: absolute;
  top: 100%;
  left: 50%;
  width: 2px;
  height: 72px;
  content: "";
  background: linear-gradient(var(--orange-500), var(--orange-500) 70%, transparent);
  transform: translateX(-50%) rotate(-56deg);
  transform-origin: top center;
}

.reading-van__module::before {
  position: absolute;
  z-index: 2;
  top: calc(100% + 34px);
  left: calc(50% + 58px);
  width: 8px;
  height: 8px;
  content: "";
  background: var(--orange-500);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(240, 107, 31, 0.16);
  transform: translateX(-50%);
}

.reading-capture-count {
  position: absolute;
  z-index: 8;
  bottom: 210px;
  left: 16px;
  display: grid;
  padding: 6px 8px;
  opacity: 0;
  color: var(--green-700);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--green-100);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.reading-capture-count b {
  font-size: 6px;
}

.reading-capture-count small {
  margin-top: 2px;
  font-size: 5px;
}

.reading-slide--mobile.is-active .reading-capture-count {
  animation: reading-capture-feedback 5.6s 2.2s ease-in-out infinite;
}

@keyframes reading-capture-feedback {
  0%,
  22%,
  76%,
  100% {
    opacity: 0;
    transform: translateY(5px);
  }

  32%,
  66% {
    opacity: 1;
    transform: translateY(0);
  }
}

.reading-ble-preview {
  position: absolute;
  z-index: 9;
  top: 62px;
  right: 12px;
  width: 158px;
  overflow: hidden;
  background: var(--white);
  border: 4px solid var(--navy-950);
  border-radius: 15px;
  box-shadow: 0 18px 38px rgba(6, 41, 59, 0.24);
  transform: rotate(1.2deg);
}

.reading-ble-preview__bar {
  display: flex;
  min-height: 27px;
  align-items: center;
  justify-content: space-between;
  gap: 3px;
  padding: 4px 5px;
  color: var(--navy-950);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  font-size: 5px;
  font-weight: 850;
}

.reading-ble-preview__bar span {
  display: flex;
  align-items: center;
  gap: 3px;
}

.reading-ble-preview__bar i {
  width: 5px;
  height: 5px;
  background: var(--green-600);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(41, 151, 85, 0.13);
}

.reading-ble-preview__bar b {
  color: var(--green-700);
  font-size: 4px;
  white-space: nowrap;
}

.reading-ble-preview video {
  display: block;
  width: 100%;
  aspect-ratio: 430 / 574;
  object-fit: cover;
  background: #eef3f5;
}

.reading-ble-preview__caption {
  display: grid;
  padding: 8px;
  background: var(--white);
}

.reading-ble-preview__caption b {
  color: var(--navy-950);
  font-size: 7px;
}

.reading-ble-preview__caption small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 5px;
  line-height: 1.25;
}

.reading-ble-link {
  position: absolute;
  z-index: 8;
  right: 72px;
  bottom: 185px;
  width: 120px;
  height: 270px;
  color: var(--blue-700);
  pointer-events: none;
}

.reading-ble-link svg {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: visible;
  inset: 0;
}

.reading-ble-link path {
  fill: none;
  stroke: var(--blue-500);
  stroke-dasharray: 4 6;
  stroke-linecap: round;
  stroke-width: 2;
}

.reading-ble-link circle {
  fill: var(--blue-600);
  stroke: var(--white);
  stroke-width: 3;
}

.reading-ble-link b,
.reading-ble-link small {
  position: absolute;
  right: 22px;
  display: block;
  padding: 3px 6px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.reading-ble-link b {
  top: 119px;
  font-size: 6px;
}

.reading-ble-link small {
  top: 136px;
  color: var(--muted);
  font-size: 5px;
}

.reading-slide--mobile.is-active .reading-ble-link path {
  animation: reading-ble-flow 1.4s linear infinite;
}

@keyframes reading-ble-flow {
  to {
    stroke-dashoffset: -30;
  }
}

/* Sector meter and uncropped field screenshots */

.reading-demo--cellular {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: minmax(140px, 1.15fr) 46px minmax(105px, 0.82fr) 46px minmax(92px, 0.72fr);
  gap: 0;
  align-items: stretch;
  justify-items: center;
  padding: 52px 34px 51px;
}

.reading-demo--cellular .reading-direct-node,
.reading-demo--cellular .reading-operator {
  display: grid;
  width: min(88%, 270px);
  height: 100%;
  min-height: 0;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  justify-items: start;
  padding: 13px 16px;
  text-align: left;
}

.reading-demo--cellular .reading-direct-node > span,
.reading-demo--cellular .reading-operator > span {
  justify-self: stretch;
}

.reading-demo--cellular .reading-direct-node small,
.reading-demo--cellular .reading-operator small {
  font-size: 7px;
}

.reading-demo--cellular .reading-direct-node b,
.reading-demo--cellular .reading-operator b {
  font-size: 10px;
  line-height: 1.25;
}

.reading-direct-node--meter > img {
  width: 116px;
  height: 106px;
  justify-self: center;
}

.reading-demo--cellular .reading-operator > svg {
  width: 76px;
  height: 84px;
  justify-self: center;
}

.reading-demo--cellular .reading-direct-node--waysense > img {
  width: 76px;
  height: 76px;
  justify-self: center;
}

.reading-demo--cellular .reading-direct-node--meter {
  background:
    radial-gradient(circle at 18% 50%, rgba(151, 138, 214, 0.15), transparent 37%),
    rgba(255, 255, 255, 0.96);
}

.reading-demo--cellular .reading-operator {
  background:
    radial-gradient(circle at 18% 50%, rgba(111, 209, 227, 0.18), transparent 37%),
    rgba(255, 255, 255, 0.96);
}

.reading-demo--cellular .reading-direct-node--waysense {
  background:
    radial-gradient(circle at 18% 50%, rgba(41, 151, 85, 0.11), transparent 37%),
    rgba(255, 255, 255, 0.96);
}

.reading-direct-protocols {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 9px;
}

.reading-direct-protocols i {
  padding: 3px 5px;
  color: #6152ae;
  background: #f0eefb;
  border: 1px solid #ddd9f2;
  border-radius: 999px;
  font-size: 5px;
  font-style: normal;
  font-weight: 850;
}

.reading-demo--cellular .reading-direct-path {
  width: 2px;
  height: 100%;
  background: #aaa1d8;
}

.reading-demo--cellular .reading-direct-path::after {
  top: auto;
  right: -3px;
  bottom: 1px;
  transform: rotate(135deg);
}

.reading-demo--cellular .reading-direct-path i {
  top: -5px;
  left: -3px;
}

.reading-slide--cellular.is-active .reading-direct-path i {
  animation: reading-direct-packet-vertical 2.2s linear infinite;
}

.reading-slide--cellular.is-active .reading-direct-path--two i {
  animation-delay: 0.65s;
}

@keyframes reading-direct-packet-vertical {
  to {
    top: calc(100% - 3px);
  }
}

.field-view > img {
  object-fit: contain;
  object-position: center;
}

@keyframes field-map-view {
  0%,
  38% {
    opacity: 1;
    transform: scale(1);
  }

  46%,
  92% {
    opacity: 0;
    transform: scale(1);
  }

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

/* Compatibility and deployment flow */

.benefit-card > div:not(.record-preview, .technical-compat) {
  align-self: center;
}

.technical-compat {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 270px;
  grid-template-columns: minmax(112px, 1fr) 34px 108px 34px minmax(112px, 1fr);
  gap: 8px;
  align-items: center;
}

.technical-compat__column {
  display: grid;
  gap: 9px;
}

.technical-compat__column > small {
  color: #82d7e7;
  font-size: 7px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.technical-compat__column > span {
  display: grid;
  min-height: 51px;
  grid-template-columns: 29px 1fr;
  gap: 8px;
  align-items: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(130, 215, 231, 0.2);
  border-radius: 10px;
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.technical-compat__column > span img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.technical-compat__column > span b {
  color: var(--white);
  font-size: 8px;
  line-height: 1.15;
}

.technical-compat__rail {
  position: relative;
  height: 184px;
  overflow: hidden;
}

.technical-compat__rail::before {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(130, 215, 231, 0.2), #82d7e7);
}

.technical-compat__rail::after {
  position: absolute;
  top: calc(50% - 3px);
  right: 1px;
  width: 6px;
  height: 6px;
  content: "";
  border-top: 1px solid #82d7e7;
  border-right: 1px solid #82d7e7;
  transform: rotate(45deg);
}

.technical-compat__rail i {
  position: absolute;
  top: calc(50% - 3px);
  left: -7px;
  width: 7px;
  height: 7px;
  background: var(--orange-500);
  border: 2px solid var(--navy-950);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 117, 44, 0.17);
}

.benefit-card--technical.is-revealed .technical-compat__rail i {
  animation: technical-flow-packet 2.9s linear infinite;
}

.benefit-card--technical.is-revealed .technical-compat__rail i:nth-child(2) {
  animation-delay: 0.95s;
}

.benefit-card--technical.is-revealed .technical-compat__rail i:nth-child(3) {
  animation-delay: 1.9s;
}

@keyframes technical-flow-packet {
  from {
    left: -7px;
  }

  to {
    left: calc(100% + 1px);
  }
}

.technical-compat__hub {
  display: grid;
  justify-items: center;
  padding: 16px 8px;
  background:
    radial-gradient(circle at 50% 32%, rgba(130, 215, 231, 0.24), transparent 52%),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(130, 215, 231, 0.46);
  border-radius: 20px;
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.23),
    0 0 0 7px rgba(130, 215, 231, 0.05);
}

.technical-compat__hub > span {
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  background: var(--white);
  border-radius: 18px;
}

.technical-compat__hub img {
  width: 49px;
  height: 49px;
  border-radius: 11px;
}

.technical-compat__hub b {
  margin-top: 10px;
  color: var(--white);
  font-size: 11px;
}

.technical-compat__hub small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 6px;
}

@media (max-height: 760px) and (min-width: 981px) {
  .reading-property--one {
    top: 82px;
  }

  .reading-property--two {
    top: 220px;
  }

  .reading-frame--one {
    top: 138px;
  }

  .reading-frame--two {
    top: 276px;
  }

  .reading-ble-preview {
    top: 50px;
    width: 132px;
  }

  .reading-van {
    width: min(63%, 225px);
  }

  .reading-capture-count {
    bottom: 176px;
  }

  .reading-ble-link {
    right: 60px;
    bottom: 160px;
    width: 104px;
    height: 185px;
  }
}

@media (max-width: 980px) {
  .reading-property {
    width: 104px;
  }

  .reading-property--one {
    top: 76px;
    left: 7px;
  }

  .reading-property--two {
    top: 204px;
    left: 13px;
  }

  .reading-property__meter {
    width: 101px;
    min-height: 47px;
    grid-template-columns: 33px 1fr;
    gap: 5px;
    padding: 5px;
    border-radius: 8px;
  }

  .reading-property__meter > img {
    width: 33px;
    height: 36px;
  }

  .reading-property__meter small,
  .reading-property__meter b {
    font-size: 4px;
  }

  .reading-meter-rings {
    left: 22px;
    width: 27px;
    height: 27px;
  }

  .reading-meter-rings i:last-child {
    inset: -5px;
  }

  .reading-frame {
    width: 39px;
    gap: 2px;
    padding: 3px;
    border-radius: 5px;
  }

  .reading-frame > span {
    gap: 1px;
  }

  .reading-frame > span i {
    width: 5px;
    height: 2px;
  }

  .reading-frame b {
    font-size: 3px;
  }

  .reading-frame--one {
    top: 119px;
    left: 72px;
  }

  .reading-frame--two {
    top: 247px;
    left: 77px;
  }

  @keyframes reading-frame-one {
    0%,
    12% {
      opacity: 0;
      transform: translate(0, 0) scale(0.82);
    }

    20%,
    36% {
      opacity: 1;
    }

    54% {
      opacity: 1;
      transform: translate(38px, 184px) scale(0.92);
    }

    60%,
    100% {
      opacity: 0;
      transform: translate(38px, 193px) scale(0.55);
    }
  }

  @keyframes reading-frame-two {
    0%,
    12% {
      opacity: 0;
      transform: translate(0, 0) scale(0.82);
    }

    20%,
    36% {
      opacity: 1;
    }

    54% {
      opacity: 1;
      transform: translate(33px, 57px) scale(0.92);
    }

    60%,
    100% {
      opacity: 0;
      transform: translate(33px, 66px) scale(0.55);
    }
  }

  .reading-road {
    height: 55px;
  }

  .reading-road::after {
    top: 33px;
  }

  .reading-road-status {
    right: 5px;
    bottom: 39px;
    padding: 2px 3px;
    font-size: 3px;
  }

  .reading-van {
    bottom: 22px;
    width: min(68%, 173px);
  }

  .reading-van__module {
    top: -2px;
    width: 108px;
    min-height: 42px;
    gap: 4px;
    padding: 4px 6px;
    border-radius: 7px;
  }

  .reading-van__module > img {
    width: 30px;
    height: 30px;
  }

  .reading-van__module b {
    font-size: 7px;
  }

  .reading-van__module small {
    margin-top: 1px;
    font-size: 3.5px;
  }

  .reading-van__module::after {
    height: 44px;
    transform: translateX(-50%) rotate(-53deg);
  }

  .reading-van__module::before {
    top: calc(100% + 23px);
    left: calc(50% + 33px);
    width: 6px;
    height: 6px;
  }

  .reading-van__brand {
    top: 24%;
    left: 36%;
  }

  .reading-van__brand img {
    width: 16px;
    height: 16px;
  }

  .reading-capture-count {
    bottom: 145px;
    left: 10px;
    padding: 3px 4px;
  }

  .reading-capture-count b,
  .reading-capture-count small {
    font-size: 3px;
  }

  .reading-ble-preview {
    top: 43px;
    right: 6px;
    width: 112px;
    border-width: 2px;
    border-radius: 11px;
  }

  .reading-ble-preview__bar {
    min-height: 18px;
    padding: 3px 4px;
    font-size: 3.5px;
  }

  .reading-ble-preview__bar b {
    display: none;
  }

  .reading-ble-preview__caption {
    padding: 5px;
  }

  .reading-ble-preview__caption b {
    font-size: 5px;
  }

  .reading-ble-preview__caption small {
    font-size: 3.5px;
  }

  .reading-ble-link {
    right: 48px;
    bottom: 128px;
    width: 82px;
    height: 155px;
  }

  .reading-ble-link b {
    top: 67px;
    right: 13px;
    padding: 2px 4px;
    font-size: 4px;
  }

  .reading-ble-link small {
    top: 79px;
    right: 13px;
    padding: 2px 4px;
    font-size: 3px;
  }

  .reading-demo--cellular {
    grid-template-rows: minmax(88px, 1.15fr) 27px minmax(70px, 0.82fr) 27px minmax(64px, 0.72fr);
    padding: 33px 12px 31px;
  }

  .reading-demo--cellular .reading-direct-node,
  .reading-demo--cellular .reading-operator {
    width: min(88%, 190px);
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 7px;
    padding: 7px 9px;
  }

  .reading-direct-node--meter > img {
    width: 66px;
    height: 57px;
  }

  .reading-demo--cellular .reading-operator > svg {
    width: 39px;
    height: 47px;
  }

  .reading-demo--cellular .reading-direct-node--waysense > img {
    width: 41px;
    height: 41px;
  }

  .reading-demo--cellular .reading-direct-node small,
  .reading-demo--cellular .reading-operator small {
    font-size: 4px;
  }

  .reading-demo--cellular .reading-direct-node b,
  .reading-demo--cellular .reading-operator b {
    font-size: 6px;
  }

  .reading-direct-protocols {
    gap: 2px;
    margin-top: 4px;
  }

  .reading-direct-protocols i {
    padding: 2px 3px;
    font-size: 3px;
  }

  .technical-compat {
    grid-column: 1 / -1;
    min-height: 220px;
    grid-template-columns: minmax(100px, 1fr) 28px 96px 28px minmax(100px, 1fr);
    margin-top: 14px;
  }
}

@media (max-width: 720px) {
  .reading-demo--mobile .reading-destination {
    left: 31%;
  }

  .reading-property--one {
    top: 73px;
  }

  .reading-property--two {
    top: 194px;
  }

  .reading-ble-preview {
    top: 41px;
    width: 108px;
  }

  .reading-van {
    width: min(58%, 158px);
  }

  .reading-capture-count {
    bottom: 135px;
  }

  .reading-ble-link {
    right: 44px;
    bottom: 121px;
  }

  .reading-direct-node--meter > img {
    width: 52px;
    height: 45px;
  }

  .reading-demo--cellular {
    grid-template-rows: minmax(73px, 1.15fr) 21px minmax(57px, 0.82fr) 21px minmax(52px, 0.72fr);
    padding: 28px 8px 27px;
  }

  .reading-demo--cellular .reading-direct-node,
  .reading-demo--cellular .reading-operator {
    width: min(82%, 155px);
    grid-template-columns: 49px minmax(0, 1fr);
    gap: 5px;
    padding: 5px 7px;
  }

  .reading-demo--cellular .reading-operator > svg,
  .reading-demo--cellular .reading-direct-node--waysense > img {
    width: 33px;
    height: 36px;
  }

  .technical-compat {
    min-height: 180px;
    grid-template-columns: minmax(75px, 1fr) 18px 72px 18px minmax(75px, 1fr);
    gap: 4px;
  }

  .technical-compat__column {
    gap: 5px;
  }

  .technical-compat__column > small {
    font-size: 5px;
  }

  .technical-compat__column > span {
    min-height: 35px;
    grid-template-columns: 18px 1fr;
    gap: 4px;
    padding: 4px;
    border-radius: 6px;
  }

  .technical-compat__column > span img {
    width: 17px;
    height: 17px;
  }

  .technical-compat__column > span b {
    font-size: 5px;
  }

  .technical-compat__hub {
    padding: 9px 4px;
    border-radius: 12px;
  }

  .technical-compat__hub > span {
    width: 43px;
    height: 43px;
    border-radius: 11px;
  }

  .technical-compat__hub img {
    width: 32px;
    height: 32px;
    border-radius: 7px;
  }

  .technical-compat__hub b {
    margin-top: 6px;
    font-size: 7px;
  }

  .technical-compat__hub small {
    font-size: 4px;
  }

  .technical-compat__rail {
    height: 112px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reading-van {
    opacity: 1;
    transform: translateX(-49%);
  }

  .reading-frame {
    opacity: 1;
    transform: none;
  }

  .reading-capture-count {
    opacity: 1;
    transform: none;
  }

  .technical-compat__rail i {
    left: 50%;
  }
}

/* Clear, high-impact reading mode scenes */

.reading-carousel__heading span {
  font-size: 8px;
}

.reading-carousel__heading strong {
  font-size: clamp(20px, 1.8vw, 25px);
}

.reading-tab {
  min-height: 58px;
}

.reading-tab small {
  font-size: 6px;
}

.reading-tab span {
  font-size: 15.5px;
  line-height: 1.1;
}

.reading-tab b {
  font-size: 7px;
}

.reading-slide {
  grid-template-columns: minmax(215px, 0.82fr) minmax(0, 1.18fr);
}

.reading-slide__copy {
  padding: 24px 21px 54px;
}

.reading-slide__tag {
  font-size: 8px;
}

.reading-slide__copy h3 {
  margin-top: 9px;
  font-size: clamp(26px, 2.25vw, 33px);
  line-height: 1.01;
}

.reading-slide__copy p {
  max-width: 26em;
  margin-top: 14px;
  font-size: 11px;
  line-height: 1.5;
}

.reading-slide__link {
  min-height: 40px;
  margin-top: 16px;
  padding: 10px 14px;
  font-size: 11px;
}

.reading-slide__link svg {
  width: 14px;
  height: 14px;
}

.reading-slide__benefit {
  margin-top: 18px;
  padding: 8px 10px;
  font-size: 8px;
}

/* Mobile WM-Bus */

.reading-property {
  width: 134px;
}

.reading-property--one {
  top: 57px;
  left: 14px;
}

.reading-property--two {
  top: 244px;
  left: 18px;
}

.reading-property__meter {
  width: 132px;
  min-height: 70px;
  grid-template-columns: 48px 1fr;
  gap: 9px;
  padding: 8px;
  border-radius: 12px;
}

.reading-property__meter > img {
  width: 48px;
  height: 51px;
}

.reading-property__meter small {
  font-size: 6px;
}

.reading-property__meter b {
  margin-top: 4px;
  font-size: 8px;
}

.reading-frame {
  width: 45px;
  padding: 5px;
}

.reading-frame--one {
  top: 126px;
  left: 105px;
}

.reading-frame--two {
  top: 313px;
  left: 109px;
}

.reading-frame > span i {
  width: 9px;
  height: 4px;
}

@keyframes reading-frame-one {
  0%,
  12% {
    opacity: 0;
    transform: scale(0.82);
  }

  20%,
  36% {
    opacity: 1;
  }

  54% {
    top: calc(100% - 140px);
    left: 100px;
    opacity: 1;
    transform: scale(0.92);
  }

  60%,
  100% {
    top: calc(100% - 128px);
    left: 100px;
    opacity: 0;
    transform: scale(0.55);
  }
}

@keyframes reading-frame-two {
  0%,
  12% {
    opacity: 0;
    transform: scale(0.82);
  }

  20%,
  36% {
    opacity: 1;
  }

  54% {
    top: calc(100% - 140px);
    left: 100px;
    opacity: 1;
    transform: scale(0.92);
  }

  60%,
  100% {
    top: calc(100% - 128px);
    left: 100px;
    opacity: 0;
    transform: scale(0.55);
  }
}

.reading-ble-preview {
  top: 34px;
  right: 14px;
  width: 190px;
  border-width: 4px;
  border-radius: 17px;
  transform: rotate(0.8deg);
}

.reading-ble-preview__bar {
  min-height: 31px;
  padding: 6px 7px;
  font-size: 6px;
}

.reading-ble-preview__bar b {
  font-size: 5px;
}

.reading-ble-preview__caption {
  padding: 10px;
}

.reading-ble-preview__caption b {
  font-size: 9px;
}

.reading-ble-preview__caption small {
  font-size: 6px;
}

.reading-van {
  bottom: 32px;
  width: min(67%, 250px);
}

.reading-van::before {
  left: 23%;
  transform: rotate(-6deg);
}

.reading-van::after {
  left: 19%;
}

.reading-van__module {
  top: -9px;
  left: 73%;
  width: 164px;
  min-height: 62px;
  gap: 9px;
  padding: 8px 10px;
  transform: translate(-50%, -100%);
}

.reading-van__module > img {
  width: 48px;
  height: 48px;
}

.reading-van__module b {
  font-size: 12px;
}

.reading-van__module small {
  font-size: 6px;
}

.reading-van__module::after {
  top: 100%;
  left: 50%;
  width: 2px;
  height: 48px;
  background: var(--orange-500);
  transform: translateX(-50%);
}

.reading-van__module::before {
  top: calc(100% + 42px);
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translateX(-50%);
}

.reading-ble-link {
  right: 45px;
  bottom: 222px;
  width: 106px;
  height: 98px;
}

.reading-ble-link > span:last-child {
  position: absolute;
  top: 43px;
  left: 50%;
  display: grid;
  justify-items: center;
  padding: 4px 7px;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transform: translateX(-50%);
  white-space: nowrap;
}

.reading-ble-link b,
.reading-ble-link small {
  position: static;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.reading-ble-link b {
  font-size: 7px;
}

.reading-ble-link small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 5px;
}

.reading-ble-link__waves {
  position: absolute;
  top: 0;
  left: 50%;
  width: 84px;
  height: 62px;
  transform: translateX(-50%) rotate(-21deg);
  transform-origin: center;
}

.reading-ble-link__waves i {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 25px;
  height: 25px;
  border: 2px solid var(--blue-500);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.45);
}

.reading-ble-link__waves i:nth-child(2) {
  width: 47px;
  height: 47px;
}

.reading-ble-link__waves i:nth-child(3) {
  width: 70px;
  height: 70px;
}

.reading-slide--mobile.is-active .reading-ble-link__waves i {
  animation: reading-ble-wave 1.8s ease-out infinite;
}

.reading-slide--mobile.is-active .reading-ble-link__waves i:nth-child(2) {
  animation-delay: 0.35s;
}

.reading-slide--mobile.is-active .reading-ble-link__waves i:nth-child(3) {
  animation-delay: 0.7s;
}

@keyframes reading-ble-wave {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.45);
  }

  24% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* One pylon, four fixed collection technologies */

.reading-demo--fixed {
  display: block;
  padding: 0 0 50px;
  background:
    radial-gradient(circle at 50% 42%, rgba(111, 209, 227, 0.2), transparent 34%),
    linear-gradient(180deg, #f6fbfc, #eef6f8);
}

.reading-fixed-routes {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: calc(100% - 50px);
  inset: 0 0 50px;
  overflow: visible;
}

.reading-fixed-routes path {
  fill: none;
  stroke: rgba(5, 141, 179, 0.42);
  stroke-dasharray: 5 7;
  stroke-linecap: round;
  stroke-width: 2;
}

.reading-fixed-routes circle {
  fill: var(--orange-500);
  stroke: var(--white);
  stroke-width: 2;
}

.reading-fixed-destination {
  position: absolute;
  z-index: 5;
  top: 18px;
  left: 50%;
  display: flex;
  min-width: 150px;
  align-items: center;
  gap: 9px;
  padding: 8px 11px;
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transform: translateX(-50%);
}

.reading-fixed-destination img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

.reading-fixed-destination span {
  display: grid;
}

.reading-fixed-destination b {
  color: var(--navy-950);
  font-size: 10px;
}

.reading-fixed-destination small {
  color: var(--muted);
  font-size: 6px;
}

.reading-fixed-source {
  position: absolute;
  z-index: 5;
  display: grid;
  width: 112px;
  min-height: 93px;
  justify-items: center;
  align-content: center;
  gap: 6px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(6, 41, 59, 0.12);
  text-align: center;
}

.reading-fixed-source > img,
.reading-fixed-source > svg {
  width: 56px;
  height: 48px;
  object-fit: contain;
}

.reading-fixed-source > svg {
  fill: none;
  stroke: var(--navy-900);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.reading-fixed-source span {
  display: grid;
}

.reading-fixed-source b {
  color: var(--blue-700);
  font-size: 10px;
}

.reading-fixed-source small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 6px;
}

.reading-fixed-source--lorawan {
  top: 104px;
  left: 14px;
}

.reading-fixed-source--ltem {
  top: 104px;
  right: 14px;
}

.reading-fixed-source--wmbus {
  bottom: 76px;
  left: 14px;
}

.reading-fixed-source--nbiot {
  right: 14px;
  bottom: 76px;
}

.reading-fixed-gateway {
  position: absolute;
  z-index: 5;
  bottom: 225px;
  left: 19px;
  display: grid;
  width: 118px;
  min-height: 69px;
  grid-template-columns: 38px 1fr;
  gap: 7px;
  align-items: center;
  padding: 8px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--orange-300);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.reading-fixed-gateway img {
  width: 38px;
  height: 38px;
}

.reading-fixed-gateway span {
  display: grid;
}

.reading-fixed-gateway b {
  color: var(--navy-950);
  font-size: 7px;
  line-height: 1.1;
}

.reading-fixed-gateway small {
  margin-top: 3px;
  color: var(--orange-700);
  font-size: 5px;
}

.reading-pylon {
  position: absolute;
  z-index: 3;
  top: 96px;
  bottom: 104px;
  left: 50%;
  width: 146px;
  transform: translateX(-50%);
}

.reading-pylon > svg {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 86%;
  overflow: visible;
}

.reading-pylon__mast {
  fill: none;
  stroke: var(--navy-900);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.reading-pylon__sectors rect {
  fill: var(--white);
  stroke: var(--blue-700);
  stroke-width: 4;
}

.reading-pylon__waves {
  position: absolute;
  z-index: -1;
  top: 20px;
  left: 50%;
  width: 196px;
  height: 196px;
  transform: translateX(-50%);
}

.reading-pylon__waves i {
  position: absolute;
  border: 1px solid rgba(5, 141, 179, 0.3);
  border-radius: 50%;
  inset: 31%;
}

.reading-pylon__waves i:nth-child(2) {
  inset: 16%;
}

.reading-pylon__waves i:nth-child(3) {
  inset: 0;
}

.reading-slide--fixed.is-active .reading-pylon__waves i {
  animation: reading-pylon-pulse 2.8s ease-out infinite;
}

.reading-slide--fixed.is-active .reading-pylon__waves i:nth-child(2) {
  animation-delay: 0.5s;
}

.reading-slide--fixed.is-active .reading-pylon__waves i:nth-child(3) {
  animation-delay: 1s;
}

@keyframes reading-pylon-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.78);
  }

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

/* Sector meter */

.reading-demo--cellular {
  grid-template-rows: minmax(180px, 1.25fr) 52px minmax(140px, 0.9fr) 52px minmax(110px, 0.72fr);
  padding: 40px 24px 50px;
}

.reading-demo--cellular .reading-direct-node,
.reading-demo--cellular .reading-operator {
  width: min(96%, 326px);
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 17px;
  padding: 16px 18px;
  border-radius: 16px;
}

.reading-demo--cellular .reading-direct-node small,
.reading-demo--cellular .reading-operator small {
  font-size: 8px;
}

.reading-demo--cellular .reading-direct-node b,
.reading-demo--cellular .reading-operator b {
  margin-top: 4px;
  font-size: 14px;
}

.reading-direct-node--meter > img {
  width: 132px;
  height: 124px;
}

.reading-demo--cellular .reading-operator > svg {
  width: 87px;
  height: 100px;
}

.reading-demo--cellular .reading-direct-node--waysense > img {
  width: 83px;
  height: 83px;
}

.reading-direct-protocols {
  gap: 5px;
  margin-top: 11px;
}

.reading-direct-protocols i {
  padding: 4px 6px;
  font-size: 6px;
}

/* Manual field entry */

.reading-demo--manual {
  display: block;
  padding: 0 0 50px;
  background:
    radial-gradient(circle at 76% 24%, rgba(123, 205, 224, 0.24), transparent 30%),
    linear-gradient(145deg, #f6fbfc 0%, #e7f2f5 100%);
}

.reading-demo--manual::after {
  position: absolute;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(246, 251, 252, 0.92), transparent 32%),
    linear-gradient(rgba(12, 91, 118, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12, 91, 118, 0.035) 1px, transparent 1px);
  background-size: auto, 36px 36px, 36px 36px;
  inset: 0 0 50px;
}

.reading-manual-agent {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: calc(100% - 50px);
  inset: 0 0 50px;
}

.reading-manual-illustration__backdrop {
  opacity: 0.55;
  fill: none;
  stroke: #a9c9d4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.reading-manual-illustration__floor {
  fill: rgba(6, 41, 59, 0.12);
}

.reading-manual-illustration__leg {
  fill: url("#manualTrousers");
}

.reading-manual-illustration__leg--rear {
  stroke: #1e5871;
  stroke-width: 1.5;
}

.reading-manual-illustration__shoe {
  fill: #061f2e;
}

.reading-manual-illustration__hand {
  fill: #d7b6a2;
}

.reading-manual-illustration__torso,
.reading-manual-illustration__arm {
  fill: url("#manualJacket");
}

.reading-manual-illustration__jacket-panel {
  fill: none;
  stroke: rgba(143, 207, 221, 0.3);
  stroke-linecap: round;
  stroke-width: 2;
}

.reading-manual-illustration__accent {
  fill: none;
  stroke: var(--orange-500);
  stroke-linecap: round;
  stroke-width: 3;
}

.reading-manual-illustration__badge {
  fill: rgba(255, 255, 255, 0.95);
  stroke: #8fcfdd;
}

.reading-manual-illustration__badge-line {
  stroke: var(--orange-500);
  stroke-linecap: round;
  stroke-width: 3;
}

.reading-manual-illustration__finger {
  fill: none;
  stroke: #b58d78;
  stroke-linecap: round;
  stroke-width: 5;
}

.reading-manual-illustration__tap circle {
  opacity: 0;
  fill: none;
  stroke: var(--orange-500);
  transform-box: fill-box;
  transform-origin: center;
}

.reading-slide--manual.is-active .reading-manual-illustration__tap circle {
  animation: reading-manual-tap 2s ease-out infinite;
}

.reading-slide--manual.is-active .reading-manual-illustration__tap circle:last-child {
  animation-delay: 0.35s;
}

.reading-slide--manual.is-active .reading-manual-illustration__screen-confirm {
  animation: reading-manual-confirm 2s ease-in-out infinite;
}

@keyframes reading-manual-tap {
  0% {
    opacity: 0.8;
    transform: scale(0.35);
  }

  60%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes reading-manual-confirm {
  0%,
  30% {
    opacity: 0.35;
  }

  45%,
  100% {
    opacity: 1;
  }
}

.reading-manual-agent__label {
  position: absolute;
  z-index: 4;
  bottom: 69px;
  left: 15px;
  padding: 6px 9px;
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  font-size: 7px;
  font-weight: 850;
}

.reading-manual-entry {
  position: absolute;
  z-index: 4;
  top: 180px;
  left: 15px;
  display: grid;
  width: 178px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--blue-200);
  border-radius: 18px;
  box-shadow: 0 20px 46px rgba(6, 41, 59, 0.22);
}

.reading-manual-entry__tag {
  color: var(--blue-700);
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reading-manual-entry__pdl {
  display: grid;
  margin-top: 12px;
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
}

.reading-manual-entry__pdl small,
.reading-manual-entry__value small {
  color: var(--muted);
  font-size: 7px;
}

.reading-manual-entry__pdl b {
  margin-top: 3px;
  color: var(--navy-950);
  font-size: 10px;
}

.reading-manual-entry__value {
  display: grid;
  margin-top: 13px;
  padding: 13px;
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: 11px;
}

.reading-manual-entry__value strong {
  margin-top: 6px;
  color: var(--navy-950);
  font-size: 27px;
  line-height: 1;
}

.reading-manual-entry__value i {
  color: var(--muted);
  font-size: 10px;
  font-style: normal;
}

.reading-manual-entry__check {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 11px;
  color: var(--green-700);
  font-size: 8px;
  font-weight: 850;
}

.reading-manual-entry__check img {
  width: 14px;
  filter: invert(40%) sepia(40%) saturate(900%) hue-rotate(85deg);
}

.reading-manual-entry button {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 13px;
  color: var(--white);
  background: var(--blue-700);
  border: 0;
  border-radius: 9px;
  font: inherit;
  font-size: 8px;
  font-weight: 850;
}

.reading-manual-entry button img {
  width: 13px;
  filter: brightness(0) invert(1);
}

.reading-manual-result {
  position: absolute;
  z-index: 4;
  right: 17px;
  bottom: 67px;
  display: grid;
  width: 194px;
  min-width: 0;
  grid-template-columns: 39px 1fr 18px;
  gap: 9px;
  align-items: center;
  padding: 11px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--green-100);
  border-radius: 13px;
  box-shadow: var(--shadow-md);
}

.reading-manual-result > img:first-child {
  width: 39px;
  height: 39px;
  border-radius: 9px;
}

.reading-manual-result > img:last-child {
  width: 18px;
  filter: invert(40%) sepia(40%) saturate(900%) hue-rotate(85deg);
}

.reading-manual-result span {
  display: grid;
}

.reading-manual-result small {
  color: var(--muted);
  font-size: 6px;
}

.reading-manual-result b {
  margin-top: 3px;
  color: var(--green-700);
  font-size: 9px;
}

@media (max-height: 760px) and (min-width: 981px) {
  .reading-slide__copy h3 {
    font-size: 26px;
  }

  .reading-slide__copy p {
    font-size: 10px;
  }

  .reading-ble-preview {
    top: 24px;
    width: 166px;
  }

  .reading-property--one {
    top: 43px;
  }

  .reading-property--two {
    top: 202px;
  }

  .reading-frame--one {
    top: 112px;
  }

  .reading-frame--two {
    top: 271px;
  }

  .reading-manual-entry {
    top: 70px;
  }
}

@media (max-width: 980px) {
  .reading-carousel__heading span {
    font-size: 6px;
  }

  .reading-carousel__heading strong {
    font-size: 18px;
  }

  .reading-tab {
    min-height: 48px;
  }

  .reading-tab span {
    font-size: 14px;
  }

  .reading-tab b {
    font-size: 5px;
  }

  .reading-slide {
    grid-template-columns: minmax(158px, 0.82fr) minmax(0, 1.18fr);
  }

  .reading-slide__copy {
    padding: 16px 14px 39px;
  }

  .reading-slide__tag {
    font-size: 6px;
  }

  .reading-slide__copy h3 {
    font-size: 20px;
  }

  .reading-slide__copy p {
    margin-top: 9px;
    font-size: 8px;
  }

  .reading-slide__link,
  .reading-slide__benefit {
    margin-top: 10px;
  }

  .reading-slide__link {
    font-size: 9px;
  }

  .reading-slide__benefit {
    font-size: 6px;
  }

  .reading-property {
    width: 99px;
  }

  .reading-property--one {
    top: 55px;
    left: 7px;
  }

  .reading-property--two {
    top: 190px;
    left: 9px;
  }

  .reading-property__meter {
    width: 97px;
    min-height: 52px;
    grid-template-columns: 34px 1fr;
    gap: 5px;
    padding: 5px;
  }

  .reading-property__meter > img {
    width: 34px;
    height: 37px;
  }

  .reading-property__meter small {
    font-size: 4px;
  }

  .reading-property__meter b {
    font-size: 5px;
  }

  .reading-frame--one {
    top: 106px;
    left: 72px;
  }

  .reading-frame--two {
    top: 241px;
    left: 75px;
  }

  .reading-ble-preview {
    top: 27px;
    right: 7px;
    width: 136px;
    border-width: 3px;
  }

  .reading-van {
    width: min(66%, 184px);
  }

  .reading-van__module {
    width: 126px;
    min-height: 46px;
    padding: 5px 7px;
  }

  .reading-van__module > img {
    width: 34px;
    height: 34px;
  }

  .reading-van__module b {
    font-size: 8px;
  }

  .reading-van__module small {
    font-size: 4px;
  }

  .reading-van__module::after {
    height: 34px;
  }

  .reading-van__module::before {
    top: calc(100% + 28px);
    width: 6px;
    height: 6px;
  }

  .reading-ble-link {
    right: 28px;
    bottom: 155px;
    width: 76px;
    height: 72px;
  }

  .reading-ble-link__waves {
    width: 62px;
    height: 46px;
  }

  .reading-ble-link > span:last-child {
    top: 34px;
  }

  .reading-fixed-source {
    width: 82px;
    min-height: 67px;
    gap: 3px;
    padding: 5px;
    border-radius: 9px;
  }

  .reading-fixed-source > img,
  .reading-fixed-source > svg {
    width: 39px;
    height: 34px;
  }

  .reading-fixed-source b {
    font-size: 7px;
  }

  .reading-fixed-source small {
    font-size: 4px;
  }

  .reading-fixed-source--lorawan,
  .reading-fixed-source--wmbus {
    left: 7px;
  }

  .reading-fixed-source--ltem,
  .reading-fixed-source--nbiot {
    right: 7px;
  }

  .reading-fixed-gateway {
    left: 7px;
    width: 89px;
    min-height: 52px;
    grid-template-columns: 28px 1fr;
    gap: 4px;
    padding: 5px;
  }

  .reading-fixed-gateway img {
    width: 28px;
    height: 28px;
  }

  .reading-fixed-gateway b {
    font-size: 5px;
  }

  .reading-pylon {
    width: 112px;
  }

  .reading-pylon__waves {
    width: 138px;
    height: 138px;
  }

  .reading-demo--cellular .reading-direct-node,
  .reading-demo--cellular .reading-operator {
    width: min(96%, 224px);
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 12px;
  }

  .reading-direct-node--meter > img {
    width: 82px;
    height: 76px;
  }

  .reading-demo--cellular .reading-direct-node small,
  .reading-demo--cellular .reading-operator small {
    font-size: 5px;
  }

  .reading-demo--cellular .reading-direct-node b,
  .reading-demo--cellular .reading-operator b {
    font-size: 9px;
  }

  .reading-demo--cellular .reading-operator > svg,
  .reading-demo--cellular .reading-direct-node--waysense > img {
    width: 58px;
    height: 62px;
  }

  .reading-manual-entry,
  .reading-manual-result {
    width: 144px;
  }

  .reading-manual-entry {
    right: auto;
    left: 9px;
    top: 112px;
    padding: 10px;
    border-radius: 13px;
  }

  .reading-manual-entry__value strong {
    font-size: 19px;
  }

  .reading-manual-entry button {
    min-height: 27px;
  }

  .reading-manual-result {
    bottom: 45px;
  }
}

@media (max-width: 720px) {
  .reading-tab span {
    font-size: 12.5px;
  }

  .reading-slide {
    display: block;
  }

  .reading-slide__copy {
    position: absolute;
    z-index: 9;
    top: 7px;
    left: 7px;
    width: 42%;
    padding: 7px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(12, 59, 84, 0.11);
    border-radius: 7px;
    box-shadow: var(--shadow-sm);
  }

  .reading-slide__tag {
    font-size: 4px;
  }

  .reading-slide__copy h3 {
    margin-top: 3px;
    font-size: 10px;
  }

  .reading-slide__copy p,
  .reading-slide__link,
  .reading-slide__benefit {
    display: none;
  }

  .reading-demo {
    width: 100%;
    height: 100%;
    border-left: 0;
  }

  .reading-ble-preview {
    top: 42px;
    width: 109px;
  }

  .reading-property--one {
    top: 101px;
  }

  .reading-property--two {
    top: 191px;
  }

  .reading-van {
    width: min(61%, 158px);
  }

  .reading-van__module {
    left: 71%;
    width: 130px;
    min-height: 46px;
  }

  .reading-van__module b {
    font-size: 8px;
  }

  .reading-van__module small {
    font-size: 4px;
  }

  .reading-ble-link {
    right: 90px;
    bottom: 136px;
  }

  .reading-ble-link > span:last-child {
    display: none;
  }

  .reading-fixed-source--lorawan,
  .reading-fixed-source--ltem {
    top: 73px;
  }

  .reading-fixed-source--wmbus,
  .reading-fixed-source--nbiot {
    bottom: 48px;
  }

  .reading-fixed-gateway {
    bottom: 150px;
  }

  .reading-fixed-destination {
    top: 8px;
    left: 70%;
    min-width: 98px;
    padding: 4px 6px;
  }

  .reading-fixed-destination img {
    width: 21px;
    height: 21px;
  }

  .reading-fixed-destination b {
    font-size: 6px;
  }

  .reading-fixed-destination small {
    font-size: 4px;
  }

  .reading-pylon {
    top: 78px;
    bottom: 35px;
  }

  .reading-demo--cellular {
    padding-top: 53px;
  }

  .reading-manual-entry {
    left: 7px;
    top: 105px;
    width: 134px;
  }

  .reading-manual-result {
    display: none;
  }

  .reading-manual-agent__label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reading-fixed-routes circle {
    display: none;
  }

  .reading-ble-link__waves i,
  .reading-pylon__waves i {
    animation: none !important;
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Field intervention: photo intelligence and PDL continuity */

.story-scene--field {
  padding: 0;
  background:
    radial-gradient(circle at 82% 12%, rgba(111, 209, 227, 0.2), transparent 31%),
    radial-gradient(circle at 12% 88%, rgba(255, 106, 26, 0.08), transparent 30%),
    linear-gradient(145deg, #f7fbfc, #e8f3f5);
}

.field-story {
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-rows: 62px minmax(0, 1fr);
  gap: 11px;
  padding: 14px;
}

.field-story__tabs {
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.field-story__tab {
  position: relative;
  display: grid;
  min-width: 0;
  grid-template-columns: 25px 1fr;
  grid-template-rows: auto auto;
  gap: 1px 8px;
  align-content: center;
  padding: 9px 12px;
  overflow: hidden;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  border-radius: 13px;
  font: inherit;
  text-align: left;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.field-story__tab > span {
  display: grid;
  width: 25px;
  height: 25px;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--blue-700);
  border: 1px solid var(--blue-200);
  border-radius: 8px;
  font-size: 7px;
  font-weight: 850;
  place-items: center;
}

.field-story__tab strong {
  color: currentcolor;
  font-size: 10px;
  line-height: 1.1;
}

.field-story__tab small {
  overflow: hidden;
  font-size: 6px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.field-story__tab::after {
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 45px;
  height: 2px;
  content: "";
  background: var(--orange-500);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
}

.field-story__tab.is-active {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
  box-shadow: 0 9px 20px rgba(6, 41, 59, 0.14);
}

.field-story__tab.is-active > span {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.story-scene--field.is-active .field-story__tab.is-active::after {
  animation: field-story-progress 8.4s linear;
}

@keyframes field-story-progress {
  to {
    transform: scaleX(1);
  }
}

.field-story__panel {
  grid-area: 2 / 1;
  min-width: 0;
  min-height: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(9px);
  transition:
    visibility 0s linear 360ms,
    opacity 280ms ease,
    transform 360ms var(--ease-out);
}

.field-story__panel.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}

.field-story__panel--photo {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 10px;
}

.field-ai-photo,
.field-ai-analysis {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.field-ai-photo {
  display: grid;
  grid-template-rows: 52px minmax(0, 1fr);
  margin: 0;
}

.field-ai-photo > header {
  display: grid;
  min-width: 0;
  grid-template-columns: 30px minmax(0, 1fr) auto;
  gap: 7px;
  align-items: center;
  padding: 7px 9px;
}

.field-ai-photo__camera {
  display: grid;
  width: 30px;
  height: 30px;
  color: var(--blue-700);
  background: var(--blue-50);
  border-radius: 8px;
  place-items: center;
}

.field-ai-photo__camera svg {
  width: 16px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.field-ai-photo > header > span:nth-child(2) {
  display: grid;
  min-width: 0;
}

.field-ai-photo > header strong {
  overflow: hidden;
  color: var(--navy-950);
  font-size: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.field-ai-photo > header small {
  overflow: hidden;
  margin-top: 2px;
  color: var(--muted);
  font-size: 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.field-ai-photo > header > i {
  color: var(--green-700);
  font-size: 5px;
  font-style: normal;
  font-weight: 800;
}

.field-ai-photo > header > i::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 4px;
  content: "";
  background: var(--green-600);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--green-100);
}

.field-ai-photo__media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #dbe3e4;
}

.field-ai-photo__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.field-ai-photo__media::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, transparent 60%, rgba(6, 41, 59, 0.56));
  inset: 0;
  pointer-events: none;
}

.field-ai-photo__scan {
  position: absolute;
  z-index: 3;
  top: 10%;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-400), transparent);
  box-shadow: 0 0 14px rgba(55, 190, 219, 0.88);
}

.field-story__panel--photo.is-active .field-ai-photo__scan {
  animation: field-photo-scan 3.2s ease-in-out infinite;
}

@keyframes field-photo-scan {
  0%,
  100% {
    opacity: 0;
    transform: translateY(0);
  }

  12%,
  82% {
    opacity: 1;
  }

  78% {
    transform: translateY(300px);
  }
}

.field-ai-photo__target {
  position: absolute;
  z-index: 4;
  padding: 4px 6px;
  color: var(--white);
  background: rgba(6, 41, 59, 0.78);
  border: 1px solid var(--blue-300);
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24);
  font-size: 5px;
  font-weight: 800;
}

.field-ai-photo__target::after {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  width: 72px;
  height: 42px;
  content: "";
  border: 2px solid var(--blue-400);
  border-radius: 7px;
  transform: translateX(-50%);
}

.field-ai-photo__target--index {
  top: 35%;
  left: 48%;
}

.field-ai-photo__target--serial {
  top: 54%;
  left: 54%;
  border-color: var(--orange-400);
}

.field-ai-photo__target--serial::after {
  width: 104px;
  height: 34px;
  border-color: var(--orange-400);
}

.field-ai-photo figcaption {
  position: absolute;
  z-index: 5;
  right: 9px;
  bottom: 9px;
  left: 9px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  font-size: 6px;
  font-weight: 750;
}

.field-ai-photo figcaption svg {
  width: 14px;
  fill: none;
  stroke: currentcolor;
  stroke-width: 1.7;
}

.field-ai-analysis {
  display: grid;
  grid-template-rows: auto 3px auto auto auto minmax(28px, auto);
  gap: 10px;
  padding: 13px;
}

.field-ai-analysis > header {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.field-ai-analysis > header > span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  color: var(--navy-950);
  font-size: 8px;
}

.field-ai-analysis > header img {
  width: 26px;
  height: 26px;
  border-radius: 7px;
}

.field-ai-analysis > header > i {
  padding: 4px 6px;
  color: #bd3c35;
  background: #fff0ee;
  border-radius: 999px;
  font-size: 5px;
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

.field-ai-analysis__progress {
  overflow: hidden;
  background: var(--line-soft);
  border-radius: 999px;
}

.field-ai-analysis__progress span {
  display: block;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-600), var(--green-600), var(--orange-500));
  transform-origin: left;
}

.field-story__panel--photo.is-active .field-ai-analysis__progress span {
  animation: field-analysis-progress 3.6s ease-in-out infinite;
}

@keyframes field-analysis-progress {
  0% {
    transform: scaleX(0.08);
  }

  65%,
  100% {
    transform: scaleX(1.38);
  }
}

.field-ai-result {
  position: relative;
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 11px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: 11px;
}

.field-ai-result > span {
  display: grid;
  min-width: 0;
}

.field-ai-result small {
  color: var(--muted);
  font-size: 6px;
}

.field-ai-result strong {
  margin-top: 3px;
  color: var(--navy-950);
  font-size: 16px;
  line-height: 1;
}

.field-ai-result strong i {
  color: var(--muted);
  font-size: 7px;
  font-style: normal;
}

.field-ai-result > b {
  padding: 4px 6px;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 6px;
  white-space: nowrap;
}

.field-ai-result--serial {
  display: grid;
  grid-template-columns: 1fr 18px 1fr;
  gap: 5px;
  padding: 10px;
  background: var(--white);
}

.field-ai-result--serial > span:nth-child(3) {
  text-align: right;
}

.field-ai-result--serial strong {
  font-size: 9px;
}

.field-ai-result--serial > i {
  position: relative;
  height: 1px;
  background: var(--line);
}

.field-ai-result--serial > i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--green-600);
  border: 2px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--green-100);
  transform: translate(-50%, -50%);
}

.field-ai-result--serial > b {
  position: absolute;
  top: 7px;
  right: 8px;
  font-size: 4px;
}

.field-ai-warning {
  display: grid;
  min-width: 0;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 10px;
  color: #a83731;
  background: #fff3f1;
  border: 1px solid #ffd5d0;
  border-radius: 11px;
}

.field-ai-warning svg {
  width: 22px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.field-ai-warning span {
  display: grid;
  min-width: 0;
}

.field-ai-warning small {
  font-size: 5px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field-ai-warning strong {
  margin-top: 2px;
  font-size: 8px;
}

.field-ai-warning em {
  margin-top: 2px;
  color: #c4605b;
  font-size: 5px;
  font-style: normal;
}

.field-story__panel--photo.is-active .field-ai-warning {
  animation: field-warning-pulse 3.6s ease-in-out infinite;
}

@keyframes field-warning-pulse {
  0%,
  56% {
    box-shadow: 0 0 0 0 rgba(232, 81, 71, 0);
  }

  72% {
    box-shadow: 0 0 0 4px rgba(232, 81, 71, 0.11);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(232, 81, 71, 0);
  }
}

.field-ai-analysis > footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  align-self: end;
}

.field-ai-analysis > footer span {
  padding: 5px 4px;
  color: var(--green-700);
  background: #f2faf5;
  border-radius: 6px;
  font-size: 4px;
  font-weight: 800;
  text-align: center;
}

.field-story__panel--pdl {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(150px, 0.7fr);
  gap: 10px;
  padding: 12px;
  background: rgba(220, 239, 243, 0.75);
  border: 1px solid var(--blue-100);
  border-radius: 15px;
}

.field-pdl-device {
  position: relative;
  width: min(100%, 390px);
  min-height: 0;
  justify-self: center;
  padding: 8px;
  overflow: hidden;
  background: var(--navy-950);
  border-radius: 21px;
  box-shadow: 0 24px 44px rgba(6, 41, 59, 0.2);
}

.field-pdl-device__camera {
  position: absolute;
  z-index: 8;
  top: 4px;
  left: 50%;
  width: 26px;
  height: 3px;
  background: #426579;
  border-radius: 999px;
  transform: translateX(-50%);
}

.field-pdl-device__screen {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  background: #eef3f5;
  border-radius: 14px;
}

.field-pdl-view {
  position: absolute;
  display: grid;
  overflow: hidden;
  background: #eef3f5;
  inset: 0;
  place-items: center;
}

.field-pdl-view > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.field-pdl-view--map {
  z-index: 2;
}

.field-pdl-view--detail {
  z-index: 3;
  opacity: 0;
  transform: translateX(7%);
}

.field-story__panel--pdl.is-active .field-pdl-view--map {
  animation: field-pdl-map-stage 7.4s var(--ease-smooth) infinite;
}

.field-story__panel--pdl.is-active .field-pdl-view--detail {
  animation: field-pdl-detail-stage 7.4s var(--ease-smooth) infinite;
}

@keyframes field-pdl-map-stage {
  0%,
  35% {
    opacity: 1;
    transform: scale(1);
  }

  45% {
    opacity: 1;
    transform: scale(1.06);
  }

  52%,
  94% {
    opacity: 0;
    transform: scale(1.06);
  }

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

@keyframes field-pdl-detail-stage {
  0%,
  43% {
    opacity: 0;
    transform: translateX(7%);
  }

  53%,
  91% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-4%);
  }
}

.field-pdl-view--map::after {
  position: absolute;
  content: "";
  background: rgba(6, 41, 59, 0.16);
  inset: 0;
  pointer-events: none;
}

.field-pdl-map-point {
  position: absolute;
  z-index: 4;
  top: 52%;
  left: 51%;
  width: 22px;
  height: 22px;
  background: var(--orange-600);
  border: 3px solid var(--white);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 7px 15px rgba(6, 41, 59, 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.field-pdl-map-point i {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--white);
  border-radius: 50%;
  inset: 50%;
  transform: translate(-50%, -50%);
}

.field-pdl-map-point::after {
  position: absolute;
  width: 40px;
  height: 40px;
  content: "";
  border: 2px solid var(--orange-500);
  border-radius: 50%;
  inset: 50%;
  transform: translate(-50%, -50%);
}

.field-story__panel--pdl.is-active .field-pdl-map-point::after {
  animation: field-pdl-point-pulse 1.6s ease-out infinite;
}

@keyframes field-pdl-point-pulse {
  from {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0.35);
  }

  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.25);
  }
}

.field-pdl-popover {
  position: absolute;
  z-index: 5;
  top: 17%;
  left: 50%;
  display: grid;
  width: 76%;
  padding: 10px;
  color: var(--navy-950);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--blue-100);
  border-radius: 9px;
  box-shadow: var(--shadow-md);
  transform: translateX(-50%);
}

.field-pdl-popover small {
  color: var(--blue-700);
  font-size: 5px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-pdl-popover strong {
  margin-top: 4px;
  font-size: 8px;
}

.field-pdl-popover em {
  margin-top: 7px;
  padding-top: 7px;
  color: var(--orange-700);
  border-top: 1px solid var(--line);
  font-size: 6px;
  font-style: normal;
  font-weight: 850;
}

.field-pdl-opened {
  position: absolute;
  right: 9px;
  bottom: 9px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 9px;
  color: var(--green-700);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--green-100);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  font-size: 6px;
  font-weight: 850;
}

.field-pdl-opened img {
  width: 12px;
  filter: invert(40%) sepia(40%) saturate(900%) hue-rotate(85deg);
}

.field-pdl-context {
  display: grid;
  min-width: 0;
  min-height: 0;
  align-content: start;
  padding: 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 15px;
}

.field-pdl-context > span {
  color: var(--cyan-300);
  font-size: 5px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.field-pdl-context h3 {
  margin: 8px 0 14px;
  color: var(--white);
  font-size: 18px;
  line-height: 1.05;
}

.field-pdl-context > div {
  display: grid;
  margin-top: 7px;
  padding: 9px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(123, 205, 224, 0.2);
  border-radius: 9px;
}

.field-pdl-context small {
  color: rgba(255, 255, 255, 0.55);
  font-size: 5px;
  text-transform: uppercase;
}

.field-pdl-context strong {
  margin-top: 4px;
  font-size: 7px;
  line-height: 1.25;
}

.field-pdl-context footer {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 5px;
}

.field-pdl-context footer i {
  width: 7px;
  height: 7px;
  background: var(--green-400);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(46, 198, 125, 0.15);
}

@media (max-width: 980px) {
  .story-scene--field {
    padding: 0;
  }

  .field-story {
    grid-template-rows: 54px minmax(0, 1fr);
    gap: 8px;
    padding: 9px;
  }

  .field-story__tab {
    grid-template-columns: 22px 1fr;
    gap: 1px 6px;
    padding: 7px 9px;
    border-radius: 10px;
  }

  .field-story__tab > span {
    width: 22px;
    height: 22px;
  }

  .field-ai-analysis {
    gap: 7px;
    padding: 9px;
  }

  .field-ai-result {
    padding: 8px;
  }

  .field-ai-warning {
    padding: 8px;
  }

  .field-story__panel--pdl {
    grid-template-columns: minmax(0, 1.55fr) minmax(128px, 0.65fr);
    gap: 7px;
    padding: 8px;
  }

  .field-pdl-context {
    padding: 11px;
  }

  .field-pdl-context h3 {
    font-size: 14px;
  }
}

@media (max-width: 520px) {
  .field-story {
    grid-template-rows: 47px minmax(0, 1fr);
    gap: 6px;
    padding: 6px;
  }

  .field-story__tabs {
    gap: 5px;
  }

  .field-story__tab {
    min-height: 47px;
    grid-template-columns: 19px 1fr;
    padding: 5px 6px;
    border-radius: 8px;
  }

  .field-story__tab > span {
    width: 19px;
    height: 19px;
    font-size: 5px;
  }

  .field-story__tab strong {
    font-size: 7px;
  }

  .field-story__tab small {
    display: none;
  }

  .field-story__tab::after {
    right: 6px;
    left: 31px;
  }

  .field-story__panel--photo {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1.12fr) minmax(0, 0.88fr);
    gap: 6px;
  }

  .field-ai-photo {
    grid-template-rows: 38px minmax(0, 1fr);
    border-radius: 10px;
  }

  .field-ai-photo > header {
    grid-template-columns: 23px minmax(0, 1fr) auto;
    gap: 5px;
    padding: 4px 6px;
  }

  .field-ai-photo__camera {
    width: 23px;
    height: 23px;
  }

  .field-ai-photo__camera svg {
    width: 13px;
  }

  .field-ai-photo > header strong {
    font-size: 6px;
  }

  .field-ai-photo > header small,
  .field-ai-photo > header > i {
    font-size: 4px;
  }

  .field-ai-photo__target::after {
    width: 56px;
    height: 28px;
  }

  .field-ai-photo__target--serial::after {
    width: 78px;
    height: 25px;
  }

  .field-ai-analysis {
    grid-template-rows: auto 2px auto auto auto;
    gap: 5px;
    padding: 6px;
    border-radius: 10px;
  }

  .field-ai-analysis > header img {
    width: 20px;
    height: 20px;
  }

  .field-ai-analysis > header > span {
    font-size: 6px;
  }

  .field-ai-result {
    padding: 6px;
    border-radius: 7px;
  }

  .field-ai-result strong {
    font-size: 12px;
  }

  .field-ai-result--serial strong {
    font-size: 7px;
  }

  .field-ai-warning {
    grid-template-columns: 18px 1fr;
    gap: 5px;
    padding: 6px;
    border-radius: 7px;
  }

  .field-ai-warning svg {
    width: 17px;
  }

  .field-ai-warning small,
  .field-ai-warning em {
    display: none;
  }

  .field-ai-warning strong {
    font-size: 6px;
  }

  .field-ai-analysis > footer {
    display: none;
  }

  .field-story__panel--pdl {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 6px;
    padding: 6px;
    border-radius: 10px;
  }

  .field-pdl-device {
    width: min(76%, 250px);
    aspect-ratio: 3 / 4;
    align-self: center;
    padding: 5px;
    border-radius: 14px;
  }

  .field-pdl-device__screen {
    border-radius: 9px;
  }

  .field-pdl-context {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
    padding: 7px;
    border-radius: 10px;
  }

  .field-pdl-context > span,
  .field-pdl-context h3,
  .field-pdl-context footer {
    grid-column: 1 / -1;
  }

  .field-pdl-context > span,
  .field-pdl-context h3 {
    display: none;
  }

  .field-pdl-context > div {
    margin: 0;
    padding: 6px;
  }

  .field-pdl-context small {
    font-size: 3.5px;
  }

  .field-pdl-context strong {
    font-size: 5px;
  }

  .field-pdl-context footer {
    margin-top: 0;
    padding-top: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .field-story__tab::after,
  .field-ai-photo__scan,
  .field-ai-analysis__progress span,
  .field-ai-warning,
  .field-pdl-map-point::after {
    animation: none !important;
  }

  .field-story__panel--pdl.is-active .field-pdl-view--map {
    opacity: 0;
  }

  .field-story__panel--pdl.is-active .field-pdl-view--detail {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 720px) {
  .reading-property--one {
    top: 46%;
    left: 10px;
  }

  .reading-property--two {
    top: 58%;
    left: 12px;
  }

  .reading-frame--one {
    top: calc(46% + 49px);
    left: 74px;
  }

  .reading-frame--two {
    top: calc(58% + 49px);
    left: 76px;
  }

  .reading-ble-preview {
    top: 34px;
    right: 50%;
    transform: translateX(50%) rotate(0.8deg) scale(1.1);
    transform-origin: top center;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .reading-property--one {
    top: 43%;
    left: 9px;
  }

  .reading-property--two {
    top: 56%;
    left: 11px;
  }

  .reading-frame--one {
    top: calc(43% + 49px);
    left: 74px;
  }

  .reading-frame--two {
    top: calc(56% + 49px);
    left: 76px;
  }

  .reading-ble-preview {
    top: 8px;
    right: 50%;
    transform: translateX(50%) rotate(0.8deg) scale(1.1);
    transform-origin: top center;
  }
}

/* Field story: one tablet, three consecutive application views */

.story-scene--field {
  padding: 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(18, 148, 185, 0.18), transparent 30%),
    linear-gradient(145deg, #edf3f4, #dfe9eb);
}

.field-view--map {
  z-index: 2;
}

.field-view--detail {
  z-index: 3;
}

.field-view--detail > img {
  object-fit: contain;
  object-position: center;
}

.field-view--photo {
  z-index: 4;
  display: grid;
  grid-template-rows: 46px minmax(0, 1.05fr) minmax(184px, 0.95fr);
  opacity: 0;
  background: #f4f8f9;
  transform: translateX(8%);
}

.field-photo-analysis__header {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.field-photo-analysis__header > span,
.field-photo-analysis__title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
}

.field-photo-analysis__header img,
.field-photo-analysis__title img {
  width: 25px;
  height: 25px;
  border-radius: 7px;
}

.field-photo-analysis__header strong,
.field-photo-analysis__title strong {
  color: var(--navy-950);
  font-size: 9px;
}

.field-photo-analysis__header > i {
  padding: 4px 7px;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 6px;
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

.field-photo-analysis__media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #dce5e7;
}

.field-photo-analysis__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.field-photo-analysis__media::after {
  position: absolute;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(6, 41, 59, 0.3));
  inset: 0;
  pointer-events: none;
}

.field-photo-analysis__scan {
  position: absolute;
  z-index: 3;
  top: 8%;
  right: 0;
  left: 0;
  height: 2px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--blue-400), transparent);
  box-shadow: 0 0 14px rgba(55, 190, 219, 0.88);
}

.field-photo-analysis__target {
  position: absolute;
  z-index: 4;
  padding: 4px 6px;
  color: var(--white);
  background: rgba(6, 41, 59, 0.82);
  border: 1px solid var(--blue-300);
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.24);
  font-size: 6px;
  font-weight: 850;
}

.field-photo-analysis__target::after {
  position: absolute;
  top: calc(100% + 5px);
  left: 50%;
  width: 84px;
  height: 46px;
  content: "";
  border: 2px solid var(--blue-400);
  border-radius: 8px;
  transform: translateX(-50%);
}

.field-photo-analysis__target--index {
  top: 33%;
  left: 46%;
}

.field-photo-analysis__target--serial {
  top: 56%;
  left: 54%;
  border-color: var(--orange-400);
}

.field-photo-analysis__target--serial::after {
  width: 116px;
  height: 34px;
  border-color: var(--orange-400);
}

.field-photo-analysis__results {
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.35fr) minmax(0, 1.2fr);
  grid-template-rows: auto minmax(54px, 1fr);
  gap: 8px;
  align-items: stretch;
  padding: 11px 12px 12px;
  background: #f8fbfc;
}

.field-photo-analysis__title {
  grid-column: 1 / -1;
}

.field-photo-analysis__results > div,
.field-photo-analysis__results > p {
  min-width: 0;
  margin: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.field-photo-analysis__results > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  padding: 9px;
}

.field-photo-analysis__results > div:nth-of-type(1) {
  background: var(--blue-50);
  border-color: var(--blue-100);
}

.field-photo-analysis__results > div:nth-of-type(2) {
  display: grid;
  grid-template-columns: 1fr 15px 1fr;
}

.field-photo-analysis__results > div > span {
  display: grid;
  min-width: 0;
}

.field-photo-analysis__results > div > span:last-child {
  text-align: right;
}

.field-photo-analysis__results small {
  color: var(--muted);
  font-size: 5px;
}

.field-photo-analysis__results strong {
  margin-top: 3px;
  color: var(--navy-950);
  font-size: 9px;
  line-height: 1;
}

.field-photo-analysis__results > div:first-of-type strong {
  font-size: 14px;
}

.field-photo-analysis__results strong i {
  color: var(--muted);
  font-size: 6px;
  font-style: normal;
}

.field-photo-analysis__results > div > b {
  padding: 4px 6px;
  color: var(--green-700);
  background: var(--green-100);
  border-radius: 999px;
  font-size: 6px;
}

.field-photo-analysis__results > div > img {
  width: 15px;
  filter: invert(40%) sepia(40%) saturate(900%) hue-rotate(85deg);
}

.field-photo-analysis__results > p {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px;
  color: #a33b34;
  background: #fff3f1;
  border-color: #ffd5d0;
  font-size: 6px;
  font-weight: 750;
  line-height: 1.3;
}

.field-photo-analysis__results > p svg {
  width: 20px;
  min-width: 20px;
  fill: none;
  stroke: currentcolor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.story-scene--field.is-active .field-view--map {
  animation: field-map-view-three 12s var(--ease-smooth) infinite;
}

.story-scene--field.is-active .field-view--detail {
  animation: field-detail-view-three 12s var(--ease-smooth) infinite;
}

.story-scene--field.is-active .field-view--photo {
  animation: field-photo-view-three 12s var(--ease-smooth) infinite;
}

.story-scene--field.is-active .field-map-tap {
  animation: field-map-tap-three 12s ease-in-out infinite;
}

.story-scene--field.is-active .field-photo-analysis__scan {
  animation: field-photo-scan-three 12s ease-in-out infinite;
}

@keyframes field-map-view-three {
  0%,
  23% {
    opacity: 1;
    transform: scale(1);
  }

  29%,
  95% {
    opacity: 0;
    transform: scale(1.03);
  }

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

@keyframes field-detail-view-three {
  0%,
  23% {
    opacity: 0;
    transform: translateX(8%);
  }

  30%,
  56% {
    opacity: 1;
    transform: translateX(0);
  }

  63%,
  100% {
    opacity: 0;
    transform: translateX(-5%);
  }
}

@keyframes field-photo-view-three {
  0%,
  56% {
    opacity: 0;
    transform: translateX(8%);
  }

  64%,
  94% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    transform: translateX(-5%);
  }
}

@keyframes field-map-tap-three {
  0%,
  5% {
    opacity: 0;
  }

  10%,
  22% {
    opacity: 1;
  }

  27%,
  100% {
    opacity: 0;
  }
}

@keyframes field-photo-scan-three {
  0%,
  64% {
    opacity: 0;
    transform: translateY(0);
  }

  68% {
    opacity: 1;
    transform: translateY(0);
  }

  86% {
    opacity: 1;
    transform: translateY(250px);
  }

  91%,
  100% {
    opacity: 0;
    transform: translateY(250px);
  }
}

.field-transition__detail,
.field-transition__photo {
  color: var(--muted);
}

.story-scene--field.is-active .field-transition i::after {
  animation: none;
}

.story-scene--field.is-active .field-transition i:first-of-type::after {
  animation: field-transition-first 12s linear infinite;
}

.story-scene--field.is-active .field-transition i:last-of-type::after {
  animation: field-transition-second 12s linear infinite;
}

.story-scene--field.is-active .field-transition__map {
  animation: field-map-label-three 12s ease-in-out infinite;
}

.story-scene--field.is-active .field-transition__detail {
  animation: field-detail-label-three 12s ease-in-out infinite;
}

.story-scene--field.is-active .field-transition__photo {
  animation: field-photo-label-three 12s ease-in-out infinite;
}

@keyframes field-transition-first {
  0%,
  8% {
    opacity: 0;
    transform: translateX(0);
  }

  12% {
    opacity: 1;
  }

  28% {
    opacity: 1;
    transform: translateX(27px);
  }

  31%,
  100% {
    opacity: 0;
    transform: translateX(27px);
  }
}

@keyframes field-transition-second {
  0%,
  40% {
    opacity: 0;
    transform: translateX(0);
  }

  45% {
    opacity: 1;
  }

  62% {
    opacity: 1;
    transform: translateX(27px);
  }

  65%,
  100% {
    opacity: 0;
    transform: translateX(27px);
  }
}

@keyframes field-map-label-three {
  0%,
  24%,
  97%,
  100% {
    color: var(--blue-700);
  }

  31%,
  93% {
    color: var(--muted);
  }
}

@keyframes field-detail-label-three {
  0%,
  24%,
  64%,
  100% {
    color: var(--muted);
  }

  31%,
  57% {
    color: var(--orange-700);
  }
}

@keyframes field-photo-label-three {
  0%,
  57%,
  100% {
    color: var(--muted);
  }

  64%,
  94% {
    color: var(--green-700);
  }
}

.story-scene--field.is-active .field-activity-preview,
.story-scene--field.is-active .field-toast {
  animation: field-photo-overlay-three 12s var(--ease-out) infinite;
}

.story-scene--field.is-active .field-toast {
  animation-delay: 0.12s;
}

@keyframes field-photo-overlay-three {
  0%,
  66% {
    opacity: 0;
    transform: translateY(10px);
  }

  73%,
  92% {
    opacity: 1;
    transform: translateY(0);
  }

  98%,
  100% {
    opacity: 0;
    transform: translateY(6px);
  }
}

/* Manual entry uses the supplied field photograph */

.reading-manual-agent-photo {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: calc(100% - 50px);
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(0.92) contrast(0.98);
  inset: 0 0 50px;
}

.reading-demo--manual::after {
  background:
    linear-gradient(90deg, rgba(246, 251, 252, 0.9), transparent 34%),
    linear-gradient(180deg, transparent 76%, rgba(6, 41, 59, 0.08));
  background-size: auto;
}

@media (max-width: 980px) {
  .field-tablet {
    width: min(74%, 500px);
  }

  .field-photo-analysis__results {
    gap: 6px;
    padding: 8px;
  }

  .field-photo-analysis__results > div,
  .field-photo-analysis__results > p {
    padding: 7px;
  }
}

@media (max-width: 720px) {
  .field-tablet {
    width: 76%;
  }

  .field-view--photo {
    grid-template-rows: 31px minmax(0, 1fr) minmax(112px, 0.85fr);
  }

  .field-photo-analysis__header {
    padding: 5px 6px;
  }

  .field-photo-analysis__header img,
  .field-photo-analysis__title img {
    width: 16px;
    height: 16px;
  }

  .field-photo-analysis__header strong,
  .field-photo-analysis__title strong {
    font-size: 5px;
  }

  .field-photo-analysis__header > i {
    padding: 2px 4px;
    font-size: 3px;
  }

  .field-photo-analysis__target {
    padding: 2px 3px;
    font-size: 3px;
  }

  .field-photo-analysis__target::after {
    width: 46px;
    height: 25px;
    border-width: 1px;
  }

  .field-photo-analysis__target--serial::after {
    width: 62px;
    height: 20px;
  }

  .field-photo-analysis__results {
    grid-template-columns: 0.8fr 1.2fr;
    grid-template-rows: auto 1fr 1fr;
    gap: 3px;
    padding: 4px;
  }

  .field-photo-analysis__title {
    grid-column: 1 / -1;
  }

  .field-photo-analysis__results > div,
  .field-photo-analysis__results > p {
    padding: 4px;
    border-radius: 5px;
  }

  .field-photo-analysis__results > div:nth-of-type(2) {
    grid-column: 2;
    grid-row: 2 / 4;
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .field-photo-analysis__results > div:nth-of-type(2) > span:last-child {
    text-align: left;
  }

  .field-photo-analysis__results > div:nth-of-type(2) > img {
    width: 8px;
  }

  .field-photo-analysis__results small {
    font-size: 3px;
  }

  .field-photo-analysis__results strong {
    font-size: 5px;
  }

  .field-photo-analysis__results > div:first-of-type strong {
    font-size: 8px;
  }

  .field-photo-analysis__results > div > b {
    padding: 2px;
    font-size: 3px;
  }

  .field-photo-analysis__results > p {
    grid-column: 1;
    font-size: 3px;
  }

  .field-photo-analysis__results > p svg {
    width: 10px;
    min-width: 10px;
  }

  .field-transition {
    gap: 2px;
    font-size: 3px;
  }

  .field-transition i {
    width: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .field-view--map,
  .field-view--detail {
    opacity: 0 !important;
  }

  .field-view--photo,
  .field-activity-preview,
  .story-scene--field .field-toast {
    opacity: 1 !important;
    transform: none !important;
  }

  .field-photo-analysis__scan {
    display: none;
  }
}

/* Final mobile-reading composition */

@media (min-width: 981px) {
  .reading-property {
    width: 120px;
  }

  .reading-property--one {
    top: 50%;
    left: 138px;
  }

  .reading-property--two {
    top: 50%;
    left: 10px;
  }

  .reading-property__meter {
    width: 120px;
    min-height: 74px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 7px;
    padding: 7px;
  }

  .reading-property__meter > img {
    width: 42px;
    height: 46px;
  }

  .reading-property__meter small {
    color: var(--navy-900);
    font-size: 8.5px;
    font-weight: 850;
    line-height: 1.1;
  }

  .reading-property__meter b {
    margin-top: 4px;
    font-size: 8.5px;
  }

  .reading-meter-rings {
    left: 27px;
    width: 36px;
    height: 36px;
  }

  .reading-frame--one {
    top: calc(50% + 62px);
    left: 215px;
  }

  .reading-frame--two {
    top: calc(50% + 62px);
    left: 87px;
  }

  .reading-ble-preview {
    top: 4px;
    right: 50%;
    left: auto;
    width: 209px;
    transform: translateX(50%) rotate(0.8deg);
    transform-origin: top center;
  }

  .reading-ble-preview video {
    aspect-ratio: 430 / 520;
    object-position: top center;
  }

  .reading-ble-preview__caption {
    padding: 7px 8px;
  }

  .reading-ble-link {
    right: 0;
  }

  .reading-van__module {
    left: 87%;
  }
}

@media (min-width: 721px) and (max-width: 980px) and (min-height: 760px) {
  .story-visual-column {
    height: 68vh;
    min-height: 560px;
  }

  .story-visual {
    min-height: 560px;
  }
}

@media (min-width: 721px) and (max-width: 980px) {
  .reading-property--one {
    top: 44%;
  }

  .reading-property--two {
    top: 60%;
  }

  .reading-frame--one {
    top: calc(44% + 24px);
  }

  .reading-frame--two {
    top: calc(60% + 24px);
  }

  .reading-van__module {
    top: 12px;
    left: 80%;
  }

  .reading-van__module::after {
    height: 12px;
  }

  .reading-van__module::before {
    top: calc(100% + 7px);
    left: 50%;
  }
}

@media (max-width: 720px) {
  .reading-property--one {
    top: 46%;
  }

  .reading-property--two {
    top: 62%;
  }

  .reading-frame--one {
    top: calc(46% + 23px);
  }

  .reading-frame--two {
    top: calc(62% + 23px);
  }

  .reading-van {
    z-index: 10;
  }

  .reading-van__module {
    top: 22px;
    left: 100%;
    width: 108px;
    min-height: 42px;
  }

  .reading-van__module::after {
    height: 11px;
  }

  .reading-van__module::before {
    top: calc(100% + 6px);
    left: 50%;
  }
}

.reading-van__brand {
  top: 28%;
}

@media (min-width: 981px) and (max-height: 950px) {
  .reading-property--one {
    top: 58%;
    left: 134px;
  }

  .reading-property--two {
    top: 58%;
  }

  .reading-frame--one {
    top: calc(58% + 62px);
    left: 211px;
  }

  .reading-frame--two {
    top: calc(58% + 62px);
  }

  .reading-van__module {
    left: 100%;
    width: 110px;
    min-height: 50px;
    gap: 6px;
    padding: 6px;
  }

  .reading-van__module > img {
    width: 34px;
    height: 34px;
  }

  .reading-van__module b {
    font-size: 9px;
  }

  .reading-van__module small {
    font-size: 4.2px;
  }
}

/* Photo analysis remains inside the real WaySense Mobile activity interface */

.field-view--photo {
  display: block;
  background: #eef3f5;
}

.field-view--photo > .field-mobile-activity__interface {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: fill;
  inset: 0;
}

.field-mobile-activity__content {
  position: absolute;
  z-index: 2;
  top: 19.2%;
  right: 1.8%;
  bottom: 1.5%;
  left: 1.8%;
  padding: 8px;
  background: #eef3f5;
}

.field-mobile-activity__card {
  display: grid;
  height: 100%;
  grid-template-rows: 40px minmax(0, 1fr);
  overflow: hidden;
  background: var(--white);
  border: 1px solid #b9cbd4;
  border-radius: 7px;
  box-shadow: 0 3px 10px rgba(6, 41, 59, 0.08);
}

.field-mobile-activity__card > header {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 10px;
  border-bottom: 1px solid #d6e0e5;
}

.field-mobile-activity__card > header > span,
.field-mobile-activity__analysis-title {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
}

.field-mobile-activity__card > header img,
.field-mobile-activity__analysis-title img {
  width: 22px;
  height: 22px;
  border-radius: 5px;
}

.field-mobile-activity__card > header strong {
  color: var(--navy-950);
  font-size: 9px;
}

.field-mobile-activity__card > header time {
  color: var(--muted);
  font-size: 6px;
  font-weight: 700;
  white-space: nowrap;
}

.field-mobile-activity__body {
  display: grid;
  min-height: 0;
  grid-template-rows: minmax(0, 1.35fr) minmax(142px, 0.65fr);
}

.field-mobile-activity__body figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #dfe7ea;
}

.field-mobile-activity__body figure > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.field-mobile-activity__body figcaption {
  position: absolute;
  right: 8px;
  bottom: 8px;
  padding: 5px 7px;
  color: var(--white);
  background: rgba(6, 41, 59, 0.84);
  border-radius: 5px;
  font-size: 5px;
  font-weight: 750;
}

.field-mobile-activity__analysis {
  display: grid;
  min-height: 0;
  grid-template-rows: auto 1fr auto;
  gap: 8px;
  padding: 9px 10px 10px;
  background: #f8fafb;
}

.field-mobile-activity__analysis-title strong {
  color: var(--navy-950);
  font-size: 8px;
}

.field-mobile-activity__analysis dl {
  display: grid;
  min-height: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin: 0;
}

.field-mobile-activity__analysis dl > div {
  display: grid;
  align-content: center;
  padding: 7px 9px;
  background: var(--white);
  border: 1px solid #d4e2e8;
  border-radius: 6px;
}

.field-mobile-activity__analysis dl > div:first-child {
  background: #edf9fc;
  border-color: #bce7f1;
}

.field-mobile-activity__analysis dt {
  color: var(--muted);
  font-size: 5px;
}

.field-mobile-activity__analysis dd {
  margin: 3px 0 0;
  color: var(--navy-950);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.field-mobile-activity__analysis dd small {
  color: var(--muted);
  font-size: 6px;
}

.field-mobile-activity__analysis > p {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  color: var(--green-700);
  font-size: 6px;
  font-weight: 800;
}

.field-mobile-activity__analysis > p img {
  width: 13px;
  height: 13px;
  filter: invert(40%) sepia(40%) saturate(900%) hue-rotate(85deg);
}

@media (max-width: 720px) {
  .field-mobile-activity__content {
    top: 19.2%;
    right: 1%;
    bottom: 1%;
    left: 1%;
    padding: 4px;
  }

  .field-mobile-activity__card {
    grid-template-rows: 25px minmax(0, 1fr);
    border-radius: 4px;
  }

  .field-mobile-activity__card > header {
    gap: 4px;
    padding: 3px 5px;
  }

  .field-mobile-activity__card > header img,
  .field-mobile-activity__analysis-title img {
    width: 13px;
    height: 13px;
    border-radius: 3px;
  }

  .field-mobile-activity__card > header strong {
    font-size: 5px;
  }

  .field-mobile-activity__card > header time {
    font-size: 3px;
  }

  .field-mobile-activity__body {
    grid-template-rows: minmax(0, 1.25fr) minmax(85px, 0.75fr);
  }

  .field-mobile-activity__body figcaption {
    right: 4px;
    bottom: 4px;
    padding: 3px 4px;
    border-radius: 3px;
    font-size: 3px;
  }

  .field-mobile-activity__analysis {
    gap: 4px;
    padding: 4px 5px 5px;
  }

  .field-mobile-activity__analysis-title {
    gap: 4px;
  }

  .field-mobile-activity__analysis-title strong {
    font-size: 4px;
  }

  .field-mobile-activity__analysis dl {
    gap: 3px;
  }

  .field-mobile-activity__analysis dl > div {
    padding: 4px;
    border-radius: 3px;
  }

  .field-mobile-activity__analysis dt {
    font-size: 3px;
  }

  .field-mobile-activity__analysis dd {
    margin-top: 2px;
    font-size: 6px;
  }

  .field-mobile-activity__analysis dd small,
  .field-mobile-activity__analysis > p {
    font-size: 3px;
  }

  .field-mobile-activity__analysis > p {
    gap: 3px;
  }

  .field-mobile-activity__analysis > p img {
    width: 7px;
    height: 7px;
  }
}

/* Three clearly separated WM-Bus meter examples */

.reading-generic-meter {
  position: relative;
  z-index: 2;
  display: block;
  width: 42px;
  height: 46px;
}

.reading-generic-meter::before {
  position: absolute;
  z-index: 2;
  top: 4px;
  left: 50%;
  width: 34px;
  height: 34px;
  border: 4px solid #17698a;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 48%, var(--orange-500) 48% 52%, transparent 52%),
    #f8fcfd;
  box-shadow:
    inset 0 0 0 2px #c2e2ea,
    0 2px 5px rgba(7, 41, 58, 0.22);
  content: "";
  transform: translateX(-50%);
}

.reading-generic-meter::after {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 50%;
  width: 18px;
  height: 8px;
  border: 1px solid rgba(8, 47, 68, 0.28);
  border-radius: 3px;
  background: repeating-linear-gradient(90deg, #e4f2f5 0 3px, #b9d6df 3px 4px);
  content: "";
  transform: translateX(-50%);
}

.reading-generic-meter > i {
  position: absolute;
  z-index: 1;
  right: -5px;
  bottom: 10px;
  left: -5px;
  height: 10px;
  border-radius: 5px;
  background: #153f53;
}

@media (min-width: 981px) {
  .reading-property {
    width: 112px;
  }

  .reading-property--one {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .reading-property--two {
    right: auto;
    left: 8px;
    transform: none;
  }

  .reading-property--three {
    top: 50%;
    right: 8px;
    left: auto;
  }

  .reading-property__meter {
    width: 112px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 6px;
    padding: 7px 6px;
  }

  .reading-property__meter small,
  .reading-property__meter b {
    font-size: 8.5px;
  }

  .reading-demo--mobile > .reading-van__module {
    top: calc(50% + 88px);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (min-width: 981px) and (max-height: 950px) {
  .reading-ble-preview {
    width: 185px;
  }

  .reading-ble-preview video {
    aspect-ratio: 1;
    object-fit: cover;
    object-position: top center;
  }

  .reading-property--one,
  .reading-property--two,
  .reading-property--three {
    top: 43%;
  }

  .reading-frame--one,
  .reading-frame--two {
    top: calc(43% + 62px);
  }

  .reading-demo--mobile > .reading-van__module {
    top: calc(43% + 85px);
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .reading-ble-preview {
    width: 160px;
  }

  .reading-property--one,
  .reading-property--two,
  .reading-property--three {
    top: 42%;
  }

  .reading-frame--one,
  .reading-frame--two {
    top: calc(42% + 62px);
  }

  .reading-demo--mobile > .reading-van__module {
    top: calc(42% + 80px);
  }
}

@media (max-width: 980px) {
  .reading-property--one,
  .reading-property--two,
  .reading-property--three {
    top: 55%;
    width: 30%;
  }

  .reading-property--one {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .reading-property--two {
    right: auto;
    left: 2%;
    transform: none;
  }

  .reading-property--three {
    right: 2%;
    left: auto;
  }

  .reading-property__meter {
    width: 100%;
    min-height: 58px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 5px;
    padding: 5px;
  }

  .reading-property__meter small {
    font-size: 8px;
  }

  .reading-property__meter b {
    font-size: 8.5px;
  }

  .reading-generic-meter {
    width: 34px;
    height: 37px;
  }

  .reading-generic-meter::before {
    top: 3px;
    width: 28px;
    height: 28px;
    border-width: 3px;
  }

  .reading-generic-meter::after {
    top: 13px;
    left: 50%;
    width: 15px;
    height: 7px;
  }

  .reading-generic-meter > i {
    right: -4px;
    bottom: 8px;
    left: -4px;
    height: 8px;
  }

  .reading-frame--one {
    top: calc(55% + 49px);
    left: 54%;
  }

  .reading-frame--two {
    top: calc(55% + 49px);
    left: 18%;
  }

  .reading-demo--mobile > .reading-van__module {
    top: calc(55% + 66px);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  .reading-property__meter small {
    font-size: 7px;
  }

  .reading-property__meter b {
    font-size: 7.5px;
  }

  .reading-ble-preview {
    width: 88px;
    transform: translateX(50%) rotate(0.8deg);
  }
}

/* MBox3 appears only once the service vehicle has stopped */

.reading-demo--mobile > .reading-van__module {
  left: 64%;
  width: 140px;
  margin-top: 12px;
  opacity: 0;
  background: linear-gradient(135deg, #e9f8fb, #f8fdfe);
  border-color: #71cfe1;
  box-shadow:
    0 12px 24px rgba(6, 41, 59, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.reading-demo--mobile > .reading-van__module b {
  font-size: 13px;
}

.reading-demo--mobile > .reading-van__module::after {
  height: 64px;
}

.reading-demo--mobile > .reading-van__module::before {
  top: calc(100% + 58px);
}

@media (min-width: 981px) and (min-height: 951px) {
  .reading-demo--mobile > .reading-van__module {
    top: calc(50% + 104px);
  }

  .reading-demo--mobile > .reading-van__module::after {
    height: 74px;
  }

  .reading-demo--mobile > .reading-van__module::before {
    top: calc(100% + 68px);
  }
}

@media (max-width: 720px) {
  .reading-demo--mobile > .reading-van__module {
    left: 58%;
    width: 112px;
  }

  .reading-demo--mobile > .reading-van__module b {
    font-size: 10px;
  }

  .reading-demo--mobile > .reading-van__module::after {
    height: 39px;
  }

  .reading-demo--mobile > .reading-van__module::before {
    top: calc(100% + 33px);
  }
}

.reading-slide--mobile.is-active .reading-demo--mobile > .reading-van__module {
  animation: reading-module-after-stop 3.1s var(--ease-out) both;
}

@keyframes reading-module-after-stop {
  0%,
  48% {
    opacity: 0;
    transform: translateX(-50%) translateY(7px);
  }

  72% {
    opacity: 0.78;
    transform: translateX(-50%) translateY(2px);
  }

  82%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Give the sector meter priority over the two routing steps */

@media (min-width: 981px) {
  .reading-demo--cellular {
    grid-template-rows: minmax(0, 45%) 38px minmax(0, 24%) 38px minmax(0, 19%);
    padding: 24px 14px 34px;
  }

  .reading-demo--cellular .reading-direct-node--meter {
    width: min(100%, 350px);
    grid-template-columns: 152px minmax(0, 1fr);
    gap: 18px;
    padding: 18px;
  }

  .reading-direct-node--meter > img {
    width: 152px;
    height: 144px;
  }

  .reading-demo--cellular .reading-direct-node--meter small {
    font-size: 9px;
  }

  .reading-demo--cellular .reading-direct-node--meter b {
    font-size: 16px;
  }

  .reading-direct-protocols {
    gap: 7px;
    margin-top: 13px;
  }

  .reading-direct-protocols i {
    padding: 6px 9px;
    font-size: 9px;
    line-height: 1;
  }

  .reading-demo--cellular .reading-operator {
    width: min(78%, 260px);
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 12px;
    padding: 10px 14px;
  }

  .reading-demo--cellular .reading-operator > svg {
    width: 60px;
    height: 70px;
  }

  .reading-demo--cellular .reading-direct-node--waysense {
    width: min(70%, 230px);
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 10px;
    padding: 9px 13px;
  }

  .reading-demo--cellular .reading-direct-node--waysense > img {
    width: 48px;
    height: 48px;
  }

  .reading-demo--cellular .reading-operator small,
  .reading-demo--cellular .reading-direct-node--waysense small {
    font-size: 7px;
  }

  .reading-demo--cellular .reading-operator b,
  .reading-demo--cellular .reading-direct-node--waysense b {
    font-size: 12px;
  }
}

@media (min-width: 981px) and (max-height: 950px) {
  .reading-demo--cellular {
    grid-template-rows: minmax(0, 43%) 30px minmax(0, 23%) 30px minmax(0, 18%);
    padding: 16px 14px 24px;
  }
}

@media (max-width: 720px) {
  .portal-browser-bar {
    height: 18px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 4px;
    padding: 0 5px;
  }

  .portal-browser-dots {
    gap: 2px;
  }

  .portal-browser-dots i {
    width: 3px;
    height: 3px;
  }

  .portal-browser-url {
    height: 12px;
    gap: 3px;
    padding: 0 4px;
    border-radius: 3px;
  }

  .portal-browser-url img {
    width: 5px;
    height: 5px;
  }

  .portal-browser-url b,
  .portal-browser-bar > small {
    font-size: 3px;
  }

  .portal-pdl-heading {
    gap: 4px;
    padding: 0 1px;
  }

  .portal-pdl-heading small {
    font-size: 3.5px;
  }

  .portal-pdl-heading strong {
    margin-top: 1px;
    font-size: 4.5px;
  }

  .portal-pdl-heading > b {
    padding: 2px 4px;
    font-size: 3.5px;
  }

  .portal-addresses {
    gap: 4px;
  }

  .portal-address {
    gap: 4px;
    padding: 4px;
  }

  .portal-address > img {
    width: 8px;
  }

  .portal-address strong {
    font-size: 4.5px;
  }

  .portal-address > b {
    display: none;
  }

  .portal-invitation,
  .portal-preferences {
    bottom: 7px;
    width: calc(50% - 10px);
    gap: 4px;
    padding: 5px 6px;
    border-radius: 7px;
  }

  .portal-invitation {
    left: 6px;
    grid-template-columns: 12px minmax(0, 1fr);
  }

  .portal-invitation > img {
    width: 11px;
    height: 11px;
  }

  .portal-invitation small,
  .portal-invitation em {
    font-size: 3px;
  }

  .portal-invitation strong {
    margin-top: 1px;
    font-size: 4.5px;
  }

  .portal-invitation code {
    grid-column: 2;
    padding: 2px 4px;
    font-size: 4px;
    justify-self: start;
  }

  .portal-preferences {
    right: 6px;
  }

  .portal-preferences__channels {
    gap: 2px;
    margin-top: 3px;
  }

  .portal-preferences__channels b {
    gap: 2px;
    padding: 2px 3px;
    border-radius: 4px;
    font-size: 3.5px;
  }

  .portal-preferences__channels i {
    width: 11px;
    height: 6px;
  }

  .portal-preferences__channels i::after {
    width: 4px;
    height: 4px;
  }
}

/* The animated journey keeps its full composition on tablets and desktops.
   Phones use a dedicated, readable sequence instead of shrinking application
   interfaces and labels below a useful size. */

.story-mobile {
  display: none;
}

@media (max-width: 600px) {
  .story-section {
    padding: 76px 0 84px;
  }

  .story-section > .section-heading {
    width: calc(100% - 40px);
    margin-right: auto;
    margin-left: auto;
  }

  .story-section > .section-heading h2 {
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(34px, 10.5vw, 44px);
    line-height: 0.98;
  }

  .story-section > .section-heading > p:last-child {
    max-width: 340px;
    margin-top: 18px;
    font-size: 15px;
    line-height: 1.55;
  }

  .story-layout {
    display: none;
  }

  .story-mobile {
    display: grid;
    width: calc(100% - 28px);
    gap: 18px;
    margin: 36px auto 0;
  }

  .story-mobile__card {
    position: relative;
    display: grid;
    min-width: 0;
    gap: 18px;
    padding: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(6, 41, 59, 0.1);
  }

  .story-mobile__card--coverage {
    background:
      radial-gradient(circle at 85% 10%, rgba(111, 209, 227, 0.17), transparent 34%),
      var(--white);
  }

  .story-mobile__card--collect {
    background:
      radial-gradient(circle at 92% 16%, rgba(255, 133, 61, 0.12), transparent 33%),
      linear-gradient(160deg, #ffffff 22%, #f1f9fa);
  }

  .story-mobile__card--dashboard {
    background:
      radial-gradient(circle at 12% 90%, rgba(255, 133, 61, 0.08), transparent 30%),
      linear-gradient(155deg, #ffffff, #edf5f6);
  }

  .story-mobile__card--field {
    background:
      radial-gradient(circle at 86% 12%, rgba(34, 169, 203, 0.13), transparent 32%),
      linear-gradient(155deg, #ffffff, #eef5f6);
  }

  .story-mobile__card--portal {
    background:
      radial-gradient(circle at 88% 14%, rgba(34, 169, 203, 0.14), transparent 30%),
      linear-gradient(155deg, #ffffff, #edf6f7);
  }

  .story-mobile__card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-700);
  }

  .story-mobile__card-header span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--white);
    background: var(--navy-900);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.05em;
  }

  .story-mobile__card-header small {
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .story-mobile__copy h3 {
    max-width: 320px;
    color: var(--navy-950);
    font-size: clamp(27px, 8vw, 34px);
    font-weight: 760;
    letter-spacing: -0.045em;
    line-height: 1.02;
  }

  .story-mobile__copy p {
    margin-top: 10px;
    color: var(--text);
    font-size: 14px;
    line-height: 1.55;
  }

  .story-mobile__media {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(12, 59, 84, 0.12);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(6, 41, 59, 0.12);
  }

  .story-mobile__media--coverage {
    aspect-ratio: 16 / 10;
  }

  .story-mobile__media--coverage > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .story-mobile__media--coverage > span {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 9px;
    color: var(--green-700);
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
    font-size: 10px;
    font-weight: 800;
  }

  .story-mobile__media--coverage > span i,
  .story-mobile__live > div span i {
    width: 7px;
    height: 7px;
    background: #38a75c;
    border-radius: 50%;
  }

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

  .story-mobile__modes > span {
    display: grid;
    min-height: 68px;
    align-content: center;
    gap: 4px;
    padding: 11px 12px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #d5e1e6;
    border-radius: 13px;
  }

  .story-mobile__modes > span:first-child {
    color: var(--white);
    background: var(--navy-900);
    border-color: var(--navy-900);
    box-shadow: inset 0 -3px 0 var(--orange-500);
  }

  .story-mobile__modes b {
    font-size: 13px;
    line-height: 1.15;
  }

  .story-mobile__modes small {
    color: var(--muted);
    font-size: 9px;
    line-height: 1.25;
  }

  .story-mobile__modes > span:first-child small {
    color: rgba(255, 255, 255, 0.72);
  }

  .story-mobile__collect-demo {
    display: grid;
    min-height: 266px;
    grid-template-columns: minmax(124px, 0.82fr) minmax(152px, 1.18fr);
    gap: 10px;
    align-items: stretch;
    padding: 12px;
    overflow: hidden;
    background:
      linear-gradient(180deg, #f5fbfc, #e8f2f4);
    border: 1px solid #cfe0e6;
    border-radius: 17px;
  }

  .story-mobile__live {
    align-self: center;
    overflow: hidden;
    background: var(--white);
    border: 3px solid var(--navy-950);
    border-radius: 14px;
    box-shadow: 0 14px 28px rgba(6, 41, 59, 0.18);
    transform: rotate(-1deg);
  }

  .story-mobile__live > div {
    display: flex;
    min-height: 28px;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    padding: 6px 7px;
    color: var(--navy-950);
    font-size: 7px;
  }

  .story-mobile__live > div span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 800;
  }

  .story-mobile__live > div b {
    color: var(--green-700);
    font-size: 7px;
  }

  .story-mobile__live video {
    width: 100%;
    aspect-ratio: 430 / 480;
    object-fit: cover;
    object-position: top center;
    background: #eaf1f3;
  }

  .story-mobile__live > strong {
    display: block;
    padding: 7px;
    color: var(--navy-950);
    font-size: 9px;
    line-height: 1.25;
  }

  .story-mobile__vehicle {
    position: relative;
    min-width: 0;
    overflow: hidden;
  }

  .story-mobile__vehicle::after {
    position: absolute;
    right: 0;
    bottom: 23px;
    left: 0;
    height: 2px;
    background: var(--navy-800);
    content: "";
  }

  .story-mobile__vehicle > img {
    position: absolute;
    z-index: 2;
    right: -10px;
    bottom: 23px;
    width: 175px;
    max-width: none;
  }

  .story-mobile__mbox {
    position: absolute;
    z-index: 3;
    top: 37px;
    right: 4px;
    display: grid;
    width: 132px;
    grid-template-columns: 46px minmax(0, 1fr);
    align-items: center;
    gap: 7px;
    padding: 8px;
    color: var(--navy-950);
    background: #eaf9fb;
    border: 1px solid #79d2e3;
    border-radius: 12px;
    box-shadow: 0 12px 22px rgba(6, 41, 59, 0.15);
  }

  .story-mobile__mbox::after {
    position: absolute;
    top: 100%;
    right: 29px;
    width: 2px;
    height: 57px;
    background: var(--orange-500);
    content: "";
  }

  .story-mobile__mbox::before {
    position: absolute;
    z-index: 4;
    top: calc(100% + 51px);
    right: 24px;
    width: 10px;
    height: 10px;
    background: var(--orange-500);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255, 106, 26, 0.28);
    content: "";
  }

  .story-mobile__mbox img {
    width: 46px;
  }

  .story-mobile__mbox b {
    font-size: 12px;
    line-height: 1.15;
  }

  .story-mobile__link {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 16px;
    color: var(--white);
    background: var(--navy-900);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
  }

  .story-mobile__link svg {
    width: 17px;
    fill: none;
    stroke: currentcolor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
  }

  .story-mobile__dashboard {
    position: relative;
    min-height: 238px;
    padding: 34px 10px 14px;
    background: linear-gradient(145deg, #e9f2f4, #dce9ec);
    border: 1px solid #cfdee4;
    border-radius: 17px;
  }

  .story-mobile__dashboard > img {
    width: 100%;
    border: 1px solid #bdcfd7;
    border-radius: 10px;
    box-shadow: 0 16px 32px rgba(6, 41, 59, 0.15);
  }

  .story-mobile__alert,
  .story-mobile__freshness {
    position: absolute;
    z-index: 2;
    display: grid;
    gap: 1px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
  }

  .story-mobile__alert {
    top: 12px;
    right: 12px;
    grid-template-columns: 9px auto;
  }

  .story-mobile__alert i {
    width: 8px;
    height: 8px;
    margin-top: 3px;
    background: #ef5959;
    border-radius: 50%;
  }

  .story-mobile__alert b,
  .story-mobile__freshness b {
    color: var(--navy-950);
    font-size: 10px;
  }

  .story-mobile__alert small,
  .story-mobile__freshness small {
    color: var(--muted);
    font-size: 8px;
  }

  .story-mobile__alert small {
    grid-column: 2;
  }

  .story-mobile__freshness {
    right: 18px;
    bottom: 8px;
  }

  .story-mobile__swipe {
    display: grid;
    grid-auto-columns: 78%;
    grid-auto-flow: column;
    gap: 10px;
    padding: 2px 18% 8px 2px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .story-mobile__swipe::-webkit-scrollbar {
    display: none;
  }

  .story-mobile__swipe figure {
    position: relative;
    height: 340px;
    margin: 0;
    overflow: hidden;
    background: #e4edef;
    border: 1px solid #bfd1d9;
    border-radius: 17px;
    box-shadow: 0 12px 28px rgba(6, 41, 59, 0.14);
    scroll-snap-align: center;
  }

  .story-mobile__swipe figure > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }

  .story-mobile__swipe figcaption {
    position: absolute;
    right: 9px;
    bottom: 9px;
    left: 9px;
    display: grid;
    gap: 2px;
    padding: 10px 11px;
    color: var(--navy-950);
    background: rgba(255, 255, 255, 0.94);
    border-radius: 11px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
  }

  .story-mobile__swipe figcaption b {
    font-size: 12px;
  }

  .story-mobile__swipe figcaption small {
    color: var(--text);
    font-size: 9px;
  }

  .story-mobile__photo > span {
    position: absolute;
    top: 42%;
    left: 50%;
    display: grid;
    gap: 3px;
    padding: 8px 10px;
    color: var(--white);
    background: rgba(6, 41, 59, 0.88);
    border: 1px solid var(--blue-300);
    border-radius: 9px;
    box-shadow: 0 0 0 6px rgba(34, 169, 203, 0.15);
    transform: translate(-50%, -50%);
  }

  .story-mobile__photo > span b {
    color: #8ddbea;
    font-size: 8px;
    text-transform: uppercase;
  }

  .story-mobile__photo > span strong {
    font-size: 14px;
  }

  .story-mobile__swipe-hint {
    margin-top: -8px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.04em;
    text-align: center;
  }

  .story-mobile__portal {
    overflow: hidden;
    background: #f5f8fc;
    border: 1px solid #cad8e8;
    border-radius: 15px;
    box-shadow: 0 14px 30px rgba(6, 41, 59, 0.12);
  }

  .story-mobile__browser-bar {
    display: grid;
    min-height: 30px;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 8px;
    padding: 6px 9px;
    background: #e8eef3;
    border-bottom: 1px solid #d4dfe6;
  }

  .story-mobile__browser-bar > span {
    display: flex;
    gap: 3px;
  }

  .story-mobile__browser-bar i {
    width: 5px;
    height: 5px;
    background: #a9b8c1;
    border-radius: 50%;
  }

  .story-mobile__browser-bar b {
    min-width: 0;
    padding: 3px 8px;
    overflow: hidden;
    color: var(--text);
    background: var(--white);
    border-radius: 999px;
    font-size: 9px;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .story-mobile__portal > header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--white);
    border-bottom: 1px solid #d5e1e7;
  }

  .story-mobile__portal > header > img {
    width: 24px;
    height: 24px;
  }

  .story-mobile__portal > header > span {
    display: grid;
    min-width: 0;
    flex: 1;
  }

  .story-mobile__portal > header b {
    color: var(--navy-950);
    font-size: 11px;
  }

  .story-mobile__portal > header small {
    color: var(--muted);
    font-size: 8px;
  }

  .story-mobile__portal > header em {
    padding: 4px 7px;
    color: var(--blue-700);
    background: var(--blue-50);
    border-radius: 999px;
    font-size: 9px;
    font-style: normal;
    font-weight: 850;
  }

  .story-mobile__portal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 12px 12px 8px;
  }

  .story-mobile__portal-grid > span {
    display: grid;
    gap: 5px;
    padding: 11px;
    background: var(--white);
    border: 1px solid #d4deee;
    border-radius: 10px;
  }

  .story-mobile__portal-grid small {
    color: var(--muted);
    font-size: 8px;
  }

  .story-mobile__portal-grid b {
    color: var(--blue-700);
    font-size: 15px;
  }

  .story-mobile__portal-bars {
    display: flex;
    height: 86px;
    align-items: end;
    gap: 6px;
    margin: 0 12px 12px;
    padding: 8px 9px 0;
    background: var(--white);
    border: 1px solid #d4deee;
    border-radius: 10px;
  }

  .story-mobile__portal-bars i {
    height: var(--h);
    flex: 1;
    background: #91b4e8;
    border-radius: 3px 3px 0 0;
  }

  .story-mobile__portal-bars i:last-child {
    background: #245cac;
  }

  .story-mobile__portal-features {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .story-mobile__portal-features li {
    padding: 7px 9px;
    color: var(--navy-800);
    background: var(--white);
    border: 1px solid #d4e2e8;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
  }
}

@media (max-width: 350px) {
  .story-mobile__collect-demo {
    min-height: 252px;
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 6px;
    padding: 8px;
  }

  .story-mobile__mbox {
    right: 0;
    width: 108px;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 5px;
    padding: 7px;
  }

  .story-mobile__mbox img {
    width: 34px;
  }

  .story-mobile__mbox b {
    font-size: 10px;
  }

  .story-mobile__vehicle > img {
    right: -7px;
    width: 145px;
  }
}

/* Relation usager homepage overview */
.relation-teaser {
  padding: 130px var(--gutter);
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(34, 169, 203, 0.13), transparent 26%),
    #f0f7f8;
}

.relation-teaser__inner {
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: minmax(320px, 0.76fr) minmax(590px, 1.24fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  margin: 0 auto;
}

.relation-teaser__copy h2 {
  max-width: 620px;
  margin-top: 14px;
  color: var(--navy-950);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.relation-teaser__copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-top: 22px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.72;
}

.relation-teaser__copy ul {
  display: grid;
  gap: 10px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.relation-teaser__copy li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--navy-800);
  font-size: 12px;
  font-weight: 700;
}

.relation-teaser__copy li img {
  width: 15px;
  margin-top: 2px;
  filter: invert(43%) sepia(42%) saturate(740%) hue-rotate(86deg);
}

.relation-teaser__copy .button {
  margin-top: 30px;
}

.relation-teaser__visual {
  position: relative;
  display: grid;
  min-height: 450px;
  grid-template-columns: minmax(120px, 0.8fr) 72px minmax(220px, 1.2fr) 72px minmax(120px, 0.8fr);
  align-items: center;
  padding: 44px 24px;
  background:
    linear-gradient(rgba(13, 120, 151, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 120, 151, 0.055) 1px, transparent 1px),
    rgba(255, 255, 255, 0.68);
  background-size: 42px 42px;
  border: 1px solid rgba(13, 120, 151, 0.13);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(6, 41, 59, 0.1);
}

.relation-teaser__source,
.relation-teaser__result {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 15px 34px rgba(6, 41, 59, 0.1);
  text-align: center;
}

.relation-teaser__source > span,
.relation-teaser__result > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--blue-50);
  border-radius: 13px;
}

.relation-teaser__result > span {
  background: var(--orange-50);
}

.relation-teaser__source img,
.relation-teaser__result img {
  width: 21px;
  filter: brightness(0) saturate(100%) invert(39%) sepia(42%) saturate(1195%) hue-rotate(148deg);
}

.relation-teaser__result img {
  filter: brightness(0) saturate(100%) invert(47%) sepia(89%) saturate(2134%) hue-rotate(351deg) brightness(99%);
}

.relation-teaser__source > div,
.relation-teaser__result > div {
  display: grid;
}

.relation-teaser__source small,
.relation-teaser__result small {
  color: var(--muted);
  font-size: 7px;
}

.relation-teaser__source strong,
.relation-teaser__result strong {
  color: var(--navy-900);
  font-size: 9px;
}

.relation-teaser__rail {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-200), var(--blue-500));
}

.relation-teaser__rail--last {
  background: linear-gradient(90deg, var(--blue-500), var(--orange-500));
}

.relation-teaser__rail i {
  width: 5px;
  height: 5px;
  background: var(--blue-600);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(18, 148, 185, 0.1);
}

.relation-teaser__rail--last i {
  background: var(--orange-600);
  box-shadow: 0 0 0 4px rgba(240, 107, 31, 0.1);
}

.relation-teaser__case {
  position: relative;
  z-index: 2;
  padding: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 5%, rgba(34, 169, 203, 0.26), transparent 32%),
    var(--navy-950);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  box-shadow: 0 28px 60px rgba(6, 41, 59, 0.24);
}

.relation-teaser__case > header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.relation-teaser__case > header img {
  width: 31px;
  padding: 5px;
  background: var(--white);
  border-radius: 8px;
}

.relation-teaser__case > header small {
  color: #82d6e8;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.relation-teaser__case > span {
  display: block;
  margin-top: 22px;
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.relation-teaser__case > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 15px;
}

.relation-teaser__case > div small {
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
}

.relation-teaser__case > div b {
  padding: 5px 8px;
  color: #ffe3b3;
  background: rgba(240, 107, 31, 0.17);
  border-radius: 999px;
  font-size: 7px;
}

.relation-teaser__case > footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding-top: 15px;
  color: rgba(255, 255, 255, 0.7);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 8px;
  font-weight: 700;
}

.relation-teaser__case > footer img {
  width: 14px;
  filter: brightness(0) saturate(100%) invert(82%) sepia(31%) saturate(739%) hue-rotate(151deg);
}

@media (max-width: 1180px) {
  .page-home .desktop-nav {
    gap: 17px;
  }

  .relation-teaser__inner {
    grid-template-columns: minmax(300px, 0.8fr) minmax(510px, 1.2fr);
    gap: 42px;
  }

  .relation-teaser__visual {
    grid-template-columns: minmax(105px, 0.8fr) 46px minmax(190px, 1.2fr) 46px minmax(105px, 0.8fr);
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (max-width: 980px) {
  .relation-teaser {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .relation-teaser__inner {
    grid-template-columns: 1fr;
  }

  .relation-teaser__copy {
    max-width: 740px;
  }

  .relation-teaser__visual {
    width: min(100%, 720px);
    margin: 0 auto;
  }
}

@media (max-width: 720px) {
  .relation-teaser__visual {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 22px;
  }

  .relation-teaser__source,
  .relation-teaser__result {
    grid-template-columns: auto 1fr;
    justify-items: start;
    text-align: left;
  }

  .relation-teaser__source > div,
  .relation-teaser__result > div {
    align-self: center;
  }

  .relation-teaser__rail {
    width: 2px;
    height: 48px;
    flex-direction: column;
    justify-self: center;
    background: linear-gradient(180deg, var(--blue-200), var(--blue-500));
  }

  .relation-teaser__rail--last {
    background: linear-gradient(180deg, var(--blue-500), var(--orange-500));
  }
}

@media (max-width: 520px) {
  .relation-teaser__copy h2 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .relation-teaser__copy .button {
    width: 100%;
  }
}
