:root {
  --bg: #f4f9fc;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --ink: #17354b;
  --muted: #537083;
  --line: rgba(23, 53, 75, 0.12);
  --brand: #0084c1;
  --brand-strong: #00b4d8;
  --brand-warm: #0094cc;
  --brand-cool: #48cae4;
  --accent: #f7d83b;
  --shadow: 0 18px 50px rgba(0, 100, 160, 0.12);
  --radius: 24px;
  --radius-sm: 16px;
  --container: min(1120px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(0, 132, 193, 0.14), transparent 28%),
    radial-gradient(circle at 30% 0%, rgba(72, 202, 228, 0.12), transparent 22%),
    radial-gradient(circle at top right, rgba(0, 180, 216, 0.16), transparent 30%),
    linear-gradient(180deg, #f9fcfe 0%, #e8f5fb 100%);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(252, 252, 251, 0.82);
  border-bottom: 1px solid var(--line);
}

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

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.5rem;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

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

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

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

.site-header__switch {
  justify-self: end;
}

.brand__mark {
  width: 3rem;
  height: 3rem;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 10px 16px rgba(34, 98, 139, 0.16));
}

.brand strong,
.site-nav a,
.button,
.eyebrow {
  font-family: "Trebuchet MS", Arial, sans-serif;
}

.brand__powered {
  display: inline-flex;
  gap: 0.28rem;
  align-items: baseline;
  color: var(--muted);
  white-space: nowrap;
}

.brand__powered a {
  color: var(--brand-strong);
  text-decoration: none;
  font-weight: 700;
}

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

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

.site-nav a {
  text-decoration: none;
  color: var(--muted);
}

.lang-switch,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.lang-switch {
  padding: 0.6rem 0.95rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
}

.button {
  gap: 0.55rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid transparent;
  font-weight: 700;
}

.button:hover,
.lang-switch:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: white;
  box-shadow: 0 16px 30px rgba(22, 114, 167, 0.22);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  border-color: var(--line);
}

.hero {
  padding: 5rem 0 3rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 123, 36, 0.12), rgba(16, 198, 232, 0.12));
  color: #0f6f98;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  font-size: clamp(2.8rem, 5.4vw, 5rem);
  max-width: 14ch;
}

.hero__copy h1 {
  font-size: clamp(2.9rem, 4.7vw, 4.4rem);
  max-width: 10ch;
  line-height: 0.96;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero__copy p {
  font-size: 1.1rem;
  max-width: 60ch;
}

.hero__bullets,
.faq-list,
.article__content ul {
  padding-left: 1.15rem;
  color: var(--ink);
}

.hero__bullets {
  padding-left: 0;
  list-style: none;
  margin: 1.5rem 0 0;
}

.hero__bullets li {
  position: relative;
  padding-left: 1.7rem;
  font: inherit;
  color: var(--ink);
  line-height: 1.5;
}

.hero__bullets li + li {
  margin-top: 0.45rem;
}

.hero__bullets li::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 0.12rem;
  background: var(--bullet-color, var(--brand));
  position: absolute;
  left: 0;
  top: 0.74rem;
  transform: translateY(-50%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42), 0 8px 18px rgba(26, 63, 88, 0.12);
}

.hero__bullets li:nth-child(1)::before {
  --bullet-color: var(--brand);
}

.hero__bullets li:nth-child(2)::before {
  --bullet-color: var(--brand-strong);
}

.hero__bullets li:nth-child(3)::before {
  --bullet-color: var(--brand-warm);
}

.hero__actions,
.cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.hero__panel,
.content-card,
.article-card,
.stats,
.cta,
.article__content,
.blog-hero,
.article-hero {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__panel {
  padding: 0;
  position: relative;
  overflow: hidden;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.screen-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2rem;
  align-items: center;
}

.screen-copy p {
  max-width: 58ch;
}

.demo-form {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 36px rgba(26, 63, 88, 0.08);
  backdrop-filter: blur(10px);
}

.demo-form h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.demo-form p {
  margin-top: 0;
}

.demo-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
}

.demo-form__actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 1.25rem;
}

.screen-steps {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 1.5rem 0 0;
}

.screen-steps li {
  list-style: none;
  display: grid;
  grid-template-columns: 2.25rem 1fr;
  gap: 0.9rem;
  align-items: start;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.screen-steps strong {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.35rem;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42), 0 8px 18px rgba(26, 63, 88, 0.12);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.95rem;
}

.screen-steps li:nth-child(2) strong {
  background: var(--brand-strong);
}

.screen-steps li:nth-child(3) strong {
  background: var(--brand-warm);
}

.screen-stage {
  position: relative;
  min-height: 39rem;
}

.screen-glow {
  position: absolute;
  inset: 6% 10% auto;
  height: 18rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(16, 198, 232, 0.18), transparent 65%);
  filter: blur(18px);
}

.screen-card {
  position: absolute;
  inset: 0;
  padding: 0.95rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 26px;
  box-shadow: 0 22px 60px rgba(26, 63, 88, 0.16);
  backdrop-filter: blur(14px);
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  animation: screen-cycle 15s ease-in-out infinite;
}

.screen-card:nth-child(2) {
  animation-delay: 0s;
}

.screen-card:nth-child(3) {
  animation-delay: 5s;
}

.screen-card:nth-child(4) {
  animation-delay: 10s;
}

.screen-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
}

.screen-card__dots {
  display: flex;
  gap: 0.35rem;
}

.screen-card__dots span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
}

.screen-card__dots span:nth-child(1) {
  background: #ff8d4a;
}

.screen-card__dots span:nth-child(2) {
  background: #ffd65e;
}

.screen-card__dots span:nth-child(3) {
  background: #4bc4e5;
}

.screen-card__label {
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.95rem;
  color: #0f6f98;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.screen-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid rgba(23, 53, 75, 0.08);
}

@keyframes screen-cycle {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }
  7%,
  27% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  33%,
  100% {
    opacity: 0;
    transform: translateY(-18px) scale(1.02);
  }
}

.hero__panel::before {
  content: "";
  position: absolute;
  inset: auto -15% -30% 40%;
  height: 18rem;
  background: radial-gradient(circle, rgba(255, 123, 36, 0.22), transparent 55%);
}

.hero__panel::after {
  content: "";
  position: absolute;
  inset: -10% 30% auto auto;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(16, 198, 232, 0.18), transparent 60%);
}

.hero-diagram {
  display: grid;
  gap: 0.85rem;
}

.hero-diagram__row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.pill {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.65rem 0.9rem;
  color: var(--ink);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.95rem;
}

.pill--warm {
  background: linear-gradient(135deg, rgba(255, 123, 36, 0.14), rgba(255, 178, 36, 0.12));
}

.pill--cool {
  background: linear-gradient(135deg, rgba(16, 198, 232, 0.12), rgba(10, 168, 216, 0.12));
}

.hero-flow {
  position: relative;
  min-height: 24rem;
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 22%, rgba(16, 198, 232, 0.12), transparent 26%),
    radial-gradient(circle at 20% 18%, rgba(72, 202, 228, 0.12), transparent 24%),
    radial-gradient(circle at 68% 74%, rgba(255, 123, 36, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74));
  border: 1px solid rgba(23, 53, 75, 0.08);
  overflow: hidden;
  padding: 1rem;
}

.hero-flow__meter,
.hero-flow__signal,
.hero-flow__alarm,
.hero-flow__chart {
  position: absolute;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 53, 75, 0.08);
  box-shadow: 0 14px 28px rgba(26, 63, 88, 0.1);
}

.hero-flow__meter {
  left: 1.2rem;
  top: 3.8rem;
  width: 9.4rem;
  padding: 1rem 0.9rem;
  border-radius: 1.6rem;
  display: grid;
  gap: 0.65rem;
  z-index: 2;
}

.hero-flow__meter-badge {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 45%, #ffd43b 0 44%, #e6b400 45% 70%, #0c3248 71% 73%, transparent 74%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(229, 242, 250, 0.92));
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.75), 0 12px 22px rgba(26, 63, 88, 0.12);
}

.hero-flow__meter strong,
.hero-flow__signal strong,
.hero-flow__alarm strong,
.hero-flow__chart strong {
  display: block;
  font-family: "Trebuchet MS", Arial, sans-serif;
}

.hero-flow__meter span,
.hero-flow__signal span,
.hero-flow__chart span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-flow__signal {
  top: 1.5rem;
  right: 1.2rem;
  min-width: 6.8rem;
  padding: 0.8rem 0.95rem;
  border-radius: 1.2rem;
}

.hero-flow__signal strong {
  color: #15915f;
  font-size: 1.12rem;
}

.hero-flow__alarm {
  left: 11.8rem;
  top: 5.3rem;
  right: 1.2rem;
  padding: 1rem 1.05rem 1.05rem;
  border-radius: 1.35rem;
  background: linear-gradient(180deg, rgba(255, 246, 244, 0.98), rgba(255, 255, 255, 0.9));
  border-color: rgba(226, 90, 67, 0.16);
  opacity: 0;
  transform: translateY(12px);
  animation: hero-alert-appear 3.2s ease forwards;
}

.hero-flow__alarm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.hero-flow__alarm-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(226, 90, 67, 0.12);
  color: #c34734;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-flow__alarm-dot {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: #e25a43;
  box-shadow: 0 0 0 0 rgba(226, 90, 67, 0.4);
  animation: hero-alert-pulse 1.8s ease-out 2.2s infinite;
}

.hero-flow__alarm strong {
  font-size: 1.15rem;
}

.hero-flow__alarm p,
.hero-flow__chart p {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
}

.hero-flow__chart {
  left: 11.8rem;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 1rem 1.05rem;
  border-radius: 1.35rem;
}

.hero-flow__chart-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.8rem;
}

.hero-flow__chart-head strong {
  font-size: 1.45rem;
  color: var(--ink);
}

.hero-flow__bars {
  height: 6.2rem;
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.42rem;
  align-items: end;
}

.hero-flow__bar {
  display: block;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(72, 202, 228, 0.92), rgba(0, 132, 193, 0.88));
  min-height: 0.8rem;
  transform-origin: bottom center;
  animation: hero-bar-grow 0.9s ease-out backwards, hero-bar-breathe 2.4s ease-in-out 0.9s infinite;
}

.hero-flow__bar:nth-child(2n) {
  animation-delay: 0.3s;
}

.hero-flow__bar:nth-child(3n) {
  animation-delay: 0.6s;
}

.hero-flow__bar--alert {
  background: linear-gradient(180deg, rgba(255, 166, 0, 0.95), rgba(226, 90, 67, 0.9));
}

.hero-flow__pulse {
  position: absolute;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  border: 1px solid rgba(72, 202, 228, 0.22);
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
}

.hero-flow__pulse--a {
  left: 3rem;
  top: 4.6rem;
  animation: hero-radio-pulse 2.6s ease-out infinite;
}

.hero-flow__pulse--b {
  left: 2.15rem;
  top: 3.75rem;
  animation: hero-radio-pulse 2.6s ease-out infinite 1.2s;
}

@keyframes hero-alert-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(226, 90, 67, 0);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(226, 90, 67, 0);
  }
}

@keyframes hero-alert-appear {
  0%,
  58% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-bar-grow {
  from {
    transform: scaleY(0.18);
    opacity: 0.45;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes hero-bar-breathe {
  0%,
  100% {
    filter: saturate(1);
    transform: translateY(0);
  }
  50% {
    filter: saturate(1.08);
    transform: translateY(-2px);
  }
}

@keyframes hero-radio-pulse {
  0% {
    opacity: 0.45;
    transform: scale(0.52);
  }
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

.section {
  padding: 2rem 0 4rem;
}

.section__intro {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.content-card,
.article-card,
.stats,
.cta,
.blog-hero,
.article-hero,
.article__content {
  padding: 1.5rem;
}

.content-card,
.article-card,
.stats,
.cta,
.blog-hero,
.article-hero,
.article__content,
.hero__panel {
  backdrop-filter: blur(12px);
}

.content-card h3,
.article-card h3 {
  font-size: 1.35rem;
}

.article-card h3 {
  margin-top: 0.45rem;
}

.article-card {
  display: flex;
  flex-direction: column;
}

.article-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.content-card {
  position: relative;
}

.content-card .button {
  margin-top: 1rem;
}

.content-card__brands {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.content-card__brand-link {
  display: inline-flex;
}

.content-card__brand {
  display: block;
  width: auto;
  height: 3.8rem;
}

.card-meta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  align-content: flex-start;
  min-height: 2.4rem;
  color: var(--muted);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.88rem;
}

.article-card .card-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  column-gap: 0.8rem;
  row-gap: 0.2rem;
  align-items: start;
  min-height: auto;
}

.article-card .card-meta span:nth-child(2),
.article-card .card-meta span:nth-child(3) {
  white-space: nowrap;
}

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

.stat {
  border-left: 1px solid var(--line);
  padding-left: 1rem;
}

.stat:first-child {
  border-left: 0;
  padding-left: 0;
}

.stat strong {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.2rem;
}

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

.faq-list li {
  list-style: none;
  padding: 1.2rem 1.3rem;
  margin-left: -1.15rem;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.faq-list strong {
  display: block;
  margin-bottom: 0.35rem;
}

.cta {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
}

.pricing-hero,
.pricing-compare {
  margin: 3rem 0 2rem;
}

.pricing-hero__highlights {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.pricing-hero__highlights li {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--ink);
}

.pricing-switch {
  margin: 0 0 1.25rem;
  display: flex;
  justify-content: center;
}

.pricing-switch__group {
  display: inline-flex;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(26, 63, 88, 0.08);
}

.pricing-switch__button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  padding: 0.75rem 1.15rem;
  border-radius: 999px;
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.98rem;
  cursor: pointer;
}

.pricing-switch__button.is-active {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: white;
  box-shadow: 0 10px 20px rgba(22, 114, 167, 0.18);
}

.pricing-offers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.pricing-offer,
.pricing-compare {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
}

.pricing-offer {
  flex: 0 1 360px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
}

.pricing-offer--featured {
  background:
    linear-gradient(135deg, rgba(255, 123, 36, 0.1), rgba(16, 198, 232, 0.09)),
    var(--surface-strong);
}

.pricing-offer__subtitle {
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: #0f6f98;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.pricing-offer__price {
  display: flex;
  align-items: end;
  gap: 0.65rem;
  margin: 1rem 0 0.4rem;
  flex-wrap: wrap;
}

.pricing-offer__price strong {
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1;
}

.pricing-offer__price span {
  color: var(--muted);
  max-width: 16rem;
}

.pricing-offer__note {
  margin: 0 0 1rem;
}

.pricing-offer ul {
  padding-left: 1.1rem;
  margin-bottom: 1.5rem;
}

.pricing-offer .button {
  margin-top: auto;
  align-self: flex-start;
}

.pricing-compare__intro {
  margin-bottom: 1rem;
}

.pricing-compare__table-wrap {
  overflow-x: auto;
}

.pricing-compare__table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-compare__table th,
.pricing-compare__table td {
  padding: 1rem 0.85rem;
  border-top: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.pricing-compare__table thead th {
  border-top: 0;
  font-family: "Trebuchet MS", Arial, sans-serif;
}

.pricing-compare__table tbody th {
  width: 18%;
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--ink);
}

.pricing-compare__source {
  margin-top: 1rem;
  font-size: 0.92rem;
}

.pricing-note {
  margin-top: 1.5rem;
}

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

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

.sales-dialog__form {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 24px 60px rgba(26, 63, 88, 0.22);
  border-radius: 24px;
  padding: 1.5rem;
}

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

.sales-dialog__header h2 {
  margin-bottom: 0;
}

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

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

.sales-dialog__field span {
  font-family: "Trebuchet MS", Arial, sans-serif;
  color: var(--ink);
}

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

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

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

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.55));
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

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

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

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

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

.site-footer__links a:hover,
.site-footer__button:hover {
  color: var(--ink);
}

.blog-hero,
.article-hero {
  margin: 3rem 0 2rem;
}

.article-hero h1 {
  font-size: clamp(2.35rem, 3.8vw, 3.5rem);
  max-width: 18ch;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.article-list {
  display: grid;
  gap: 1.25rem;
}

.article__content {
  margin-bottom: 2rem;
}

.article__content h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
}

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

.article__content a {
  color: var(--brand-strong);
}

.section__actions {
  margin-top: 1.5rem;
}

.feature-hero {
  padding: 4.5rem 0 2rem;
}

.feature-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  align-items: stretch;
  max-width: 70rem;
}

.feature-hero__copy,
.feature-overview-card,
.feature-shot {
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow);
}

.feature-hero__copy {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: 2rem;
  background:
    radial-gradient(circle at top left, rgba(72, 202, 228, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(237, 247, 252, 0.9));
}

.feature-hero__copy h1 {
  max-width: 17ch;
  margin-top: 1rem;
  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: 0.94;
}

.feature-hero__copy p {
  max-width: 60ch;
}

.feature-overview-card {
  height: 100%;
  padding: clamp(1.4rem, 2.8vw, 2rem);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.88);
}

.feature-overview-card h2 {
  font-size: clamp(1.7rem, 2.2vw, 2.25rem);
}

.feature-highlights,
.feature-points {
  margin: 1.1rem 0 0;
  padding-left: 1.15rem;
}

.feature-highlights li,
.feature-points li {
  color: var(--ink);
  line-height: 1.7;
  margin-top: 0.5rem;
}

.feature-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.6rem;
}

.feature-stat {
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(0, 132, 193, 0.14);
}

.feature-stat strong {
  display: block;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1;
}

.feature-stat span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 0.92rem;
}

.feature-story-list {
  display: grid;
  gap: 2rem;
}

.feature-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.2rem, 2.8vw, 2.4rem);
  align-items: center;
}

.feature-story--reverse .feature-story__media {
  order: 2;
}

.feature-story--reverse .feature-story__copy {
  order: 1;
}

.feature-story__copy h2 {
  max-width: 18ch;
  font-size: clamp(1.8rem, 2.35vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}

.feature-shot {
  margin: 0;
  border-radius: 1.8rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(235, 245, 251, 0.92));
}

.feature-shot img {
  display: block;
  width: 100%;
  height: auto;
}

.cta--feature {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(18rem, 0.8fr);
  gap: 1.2rem;
  align-items: stretch;
  background:
    radial-gradient(circle at top right, rgba(72, 202, 228, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(228, 244, 251, 0.96));
}

.cta__copy,
.cta__side {
  min-width: 0;
}

.cta__copy {
  max-width: 36rem;
}

.cta__side {
  padding: 1.4rem 1.5rem;
  border-radius: 1.4rem;
  border: 1px solid rgba(0, 132, 193, 0.14);
  background: rgba(255, 255, 255, 0.58);
  align-self: stretch;
}

.cta__side h3 {
  margin-top: 0.9rem;
  margin-bottom: 0.2rem;
  font-size: clamp(1.5rem, 2vw, 2rem);
}

.cta__side .feature-highlights {
  margin-top: 0.9rem;
}

.fade-in {
  opacity: 0;
  transform: translateY(18px);
  animation: fade-in 560ms ease forwards;
}

.fade-in[data-delay="2"] {
  animation-delay: 120ms;
}

.fade-in[data-delay="3"] {
  animation-delay: 240ms;
}

.fade-in[data-delay="4"] {
  animation-delay: 360ms;
}

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

@media (max-width: 760px) {
  .hero__grid,
  .screen-showcase,
  .feature-hero__grid,
  .feature-story,
  .cta,
  .pricing-offers,
  .grid--3,
  .grid--2,
  .stats {
    grid-template-columns: 1fr;
  }

  .section__intro,
  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .site-header__switch,
  .site-nav {
    justify-self: start;
  }

  h1 {
    max-width: 100%;
  }

  .screen-stage {
    min-height: 29rem;
  }

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

  .feature-stats {
    grid-template-columns: 1fr;
  }

  .cta__copy {
    max-width: none;
  }

  .hero-flow {
    min-height: 28rem;
  }

  .hero-flow__meter {
    left: 1rem;
    top: 4.4rem;
    width: 8rem;
  }

  .hero-flow__signal {
    left: 1rem;
    right: auto;
    top: 1rem;
  }

  .hero-flow__alarm,
  .hero-flow__chart {
    left: 1rem;
    right: 1rem;
  }

  .hero-flow__alarm {
    top: 11.2rem;
  }

  .hero-flow__chart {
    bottom: 1rem;
  }

  .hero-flow__pulse--a,
  .hero-flow__pulse--b {
    left: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .screen-card,
  .fade-in,
  .button,
  .lang-switch,
  .hero-flow__alarm-dot,
  .hero-flow__bar,
  .hero-flow__pulse {
    animation: none !important;
    transition: none !important;
  }

  .screen-card {
    opacity: 1;
    transform: none;
    position: relative;
    margin-bottom: 1rem;
  }

  .screen-stage {
    min-height: auto;
  }
}
