:root {
  --ink: #07111f;
  --ink-2: #0d1b2e;
  --ink-3: #152840;
  --text: #172033;
  --muted: #66758b;
  --line: #dce4ee;
  --soft: #f3f7fb;
  --white: #ffffff;
  --green: #19c987;
  --green-dark: #087a55;
  --green-pale: #dff9ed;
  --gold: #f4c95d;
  --gold-pale: #fff5d8;
  --blue: #6ba8ff;
  --shadow-sm: 0 10px 30px rgba(7, 17, 31, 0.07);
  --shadow-lg: 0 24px 70px rgba(7, 17, 31, 0.16);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --container: 1180px;
  --header-height: 76px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: var(--green-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #075e43;
}

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

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.6em;
  color: var(--ink);
  font-weight: 780;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

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

h3 {
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

p {
  margin: 0 0 1.1rem;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.container-narrow {
  max-width: 820px;
}

.container-article {
  max-width: 920px;
}

.container-wide {
  max-width: 1320px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.screen-reader-text:focus {
  top: 8px;
  left: 8px;
  z-index: 100000;
  display: block;
  width: auto;
  height: auto;
  padding: 14px 18px;
  clip: auto !important;
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
  font-weight: 700;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 10000;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  top: 12px;
}

.icon {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

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

.button .icon {
  width: 18px;
  height: 18px;
}

.button-primary {
  color: #032116;
  background: var(--green);
  box-shadow: 0 12px 28px rgba(25, 201, 135, 0.22);
}

.button-primary:hover {
  color: #031b12;
  background: #3ce2a6;
  box-shadow: 0 16px 36px rgba(25, 201, 135, 0.3);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}

.button-secondary:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--white);
  background: var(--ink-3);
}

.button-light {
  color: var(--ink);
  background: var(--white);
}

.button-light:hover {
  color: var(--ink);
  background: #effff8;
}

.button-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
}

.button-ghost:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.button-large {
  min-height: 54px;
  padding: 15px 23px;
}

.button-small {
  min-height: 42px;
  padding: 10px 17px;
}

.button-full {
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #a5f4d3;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(25, 201, 135, 0.12);
}

.eyebrow--dark {
  color: var(--green-dark);
}

.section {
  padding: 104px 0;
}

.section-soft {
  background: var(--soft);
}

.section-heading {
  max-width: 690px;
  margin-bottom: 48px;
}

.section-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.section-heading--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  color: var(--white);
  background: rgba(7, 17, 31, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.admin-bar .site-header {
  top: 32px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-branding,
.brand {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  color: var(--white);
  font-size: 1.22rem;
  font-weight: 780;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand:hover {
  color: var(--white);
}

.brand img {
  width: 42px;
  height: 42px;
}

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

.custom-logo-link {
  display: flex;
}

.custom-logo {
  width: auto;
  max-width: 190px;
  height: 46px;
  object-fit: contain;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 22px;
}

.primary-navigation .menu {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-navigation .menu li {
  position: relative;
}

.primary-navigation .menu a {
  display: block;
  padding: 10px 11px;
  color: #c6d2e2;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-navigation .menu a:hover,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.primary-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 220px;
  padding: 8px;
  margin: 0;
  background: var(--ink-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  list-style: none;
}

.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu {
  display: block;
}

.button-header {
  color: var(--ink) !important;
  background: var(--green) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
}

.nav-toggle span:not(.screen-reader-text) {
  display: grid;
  place-items: center;
}

.nav-toggle .icon {
  width: 24px;
  height: 24px;
}

.nav-toggle__close {
  display: none !important;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__open {
  display: none !important;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__close {
  display: grid !important;
}

/* Hero */
.hero {
  position: relative;
  min-height: 720px;
  padding: 98px 0 112px;
  overflow: hidden;
  color: #d8e4f2;
  background:
    radial-gradient(circle at 68% 46%, rgba(25, 201, 135, 0.12), transparent 28%),
    linear-gradient(145deg, #07111f 0%, #0c1c31 58%, #07111f 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb--one {
  top: 70px;
  right: -160px;
  width: 430px;
  height: 430px;
  background: rgba(107, 168, 255, 0.09);
}

.hero-orb--two {
  bottom: -220px;
  left: 34%;
  width: 480px;
  height: 480px;
  background: rgba(25, 201, 135, 0.08);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, 0.97fr);
  gap: 72px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 780px;
  color: var(--white);
}

.hero-lead {
  max-width: 660px;
  margin: 25px 0 30px;
  color: #b9c8da;
  font-size: clamp(1.08rem, 1.6vw, 1.27rem);
  line-height: 1.65;
}

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

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  padding: 0;
  margin: 28px 0 0;
  color: #d2deeb;
  font-size: 0.9rem;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-points .icon {
  width: 17px;
  color: var(--green);
}

.hero-visual {
  position: relative;
  min-height: 470px;
}

.screen-card {
  position: absolute;
  top: 26px;
  right: 0;
  left: 0;
  width: min(100%, 490px);
  margin: auto;
  overflow: hidden;
  background: rgba(17, 35, 57, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 26px;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.38);
  transform: perspective(900px) rotateY(-4deg) rotateX(1deg);
}

.screen-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.09), transparent 28%);
}

.screen-card__bar {
  display: flex;
  justify-content: space-between;
  padding: 18px 20px;
  color: #c5d2e2;
  background: rgba(4, 10, 18, 0.46);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 700;
}

.screen-card__status {
  display: flex;
  align-items: center;
  gap: 8px;
}

.screen-card__status i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(25, 201, 135, 0.12);
}

.screen-card__time {
  color: var(--gold);
  letter-spacing: 0.12em;
}

.screen-card__stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 40px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(25, 201, 135, 0.2), transparent 28%),
    linear-gradient(140deg, #142842, #0b182a);
}

.screen-card__stage p {
  margin: 18px 0 4px;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 760;
}

.screen-card__stage > span {
  color: #9db0c8;
  font-size: 0.88rem;
}

.play-disc {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: var(--ink);
  background: var(--green);
  border: 10px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 18px rgba(25, 201, 135, 0.07);
  background-clip: padding-box;
}

.play-disc .icon {
  width: 28px;
  height: 28px;
  margin-left: 3px;
  fill: currentColor;
  stroke: none;
}

.screen-card__footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #0b1728;
}

.screen-card__footer > div {
  padding: 18px 14px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-card__footer > div:last-child {
  border-right: 0;
}

.screen-card__footer span,
.screen-card__footer strong {
  display: block;
}

.screen-card__footer span {
  color: #778ca6;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.screen-card__footer strong {
  margin-top: 4px;
  color: var(--white);
  font-size: 0.98rem;
}

.floating-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  color: var(--text);
  background: var(--white);
  border: 1px solid rgba(7, 17, 31, 0.08);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
}

.floating-chip > .icon {
  width: 25px;
  height: 25px;
  color: var(--green-dark);
}

.floating-chip span,
.floating-chip small {
  display: block;
}

.floating-chip span {
  font-size: 0.83rem;
  font-weight: 750;
}

.floating-chip small {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 650;
}

.floating-chip--support {
  right: -18px;
  bottom: 5px;
}

.floating-chip--network {
  bottom: 70px;
  left: -28px;
}

/* Facts */
.fact-strip {
  position: relative;
  z-index: 3;
  color: var(--text);
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

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

.fact-grid > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 98px;
  padding: 22px 26px;
  border-right: 1px solid var(--line);
}

.fact-grid > div:first-child {
  padding-left: 0;
}

.fact-grid > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.fact-grid .icon {
  width: 28px;
  height: 28px;
  color: var(--green-dark);
}

.fact-grid span,
.fact-grid strong,
.fact-grid small {
  display: block;
}

.fact-grid strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.fact-grid small {
  color: var(--muted);
  font-size: 0.77rem;
}

/* Pricing */
.pricing-section {
  background: var(--white);
}

.pricing-app {
  max-width: 1120px;
  margin-inline: auto;
}

.device-switcher {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 760px;
  padding: 9px 10px 9px 22px;
  margin: 0 auto 42px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.device-switcher__label {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.device-switcher__buttons {
  display: flex;
  gap: 5px;
}

.device-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 720;
  cursor: pointer;
}

.device-tab .icon {
  width: 17px;
}

.device-tab:hover {
  color: var(--ink);
  background: var(--white);
}

.device-tab.is-active {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(7, 17, 31, 0.18);
}

.pricing-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-grid.is-active {
  display: grid;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.price-card--featured {
  border-color: var(--green);
  box-shadow: 0 18px 52px rgba(25, 201, 135, 0.14);
}

.price-card__badge {
  position: absolute;
  top: -13px;
  right: 20px;
  padding: 5px 11px;
  color: #073824;
  background: var(--green);
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.price-card__topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.price-card__topline span:last-child {
  color: var(--green-dark);
}

.price-card h3 {
  margin-bottom: 18px;
  font-size: 1.42rem;
}

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-card__price strong {
  color: var(--ink);
  font-size: clamp(2.25rem, 4vw, 3.1rem);
  line-height: 1;
  letter-spacing: -0.055em;
}

.price-card__price span {
  color: var(--muted);
  font-size: 0.8rem;
}

.price-card__monthly {
  margin: 9px 0 20px;
  color: var(--muted);
  font-size: 0.8rem;
}

.price-card__device {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--soft);
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 700;
}

.price-card__device .icon {
  color: var(--green-dark);
}

.feature-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 26px;
  color: #46566c;
  font-size: 0.86rem;
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.feature-list .icon {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  color: var(--green-dark);
}

.price-card .button {
  margin-top: auto;
}

.pricing-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 900px;
  padding: 16px 18px;
  margin: 25px auto 0;
  color: #4c5d72;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.82rem;
}

.pricing-note > .icon {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  color: var(--green-dark);
}

.pricing-note p {
  margin: 0;
}

.price-matrix {
  max-width: 900px;
  margin: 16px auto 0;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.price-matrix summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 750;
  list-style: none;
  cursor: pointer;
}

.price-matrix summary::-webkit-details-marker {
  display: none;
}

.price-matrix[open] summary .icon {
  transform: rotate(180deg);
}

.table-scroll {
  overflow-x: auto;
  border-top: 1px solid var(--line);
}

.price-matrix table,
.entry-content table {
  width: 100%;
  border-collapse: collapse;
}

.price-matrix caption {
  padding: 12px;
  color: var(--muted);
  font-size: 0.75rem;
  text-align: left;
}

.price-matrix th,
.price-matrix td,
.entry-content th,
.entry-content td {
  padding: 13px 16px;
  border: 1px solid var(--line);
  text-align: left;
}

.price-matrix th,
.entry-content th {
  color: var(--ink);
  background: var(--soft);
  font-weight: 760;
}

/* Value cards */
.split-intro {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 50px;
}

.split-intro .section-heading {
  margin: 0;
}

.split-intro > p {
  max-width: 510px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.value-card {
  position: relative;
  min-height: 340px;
  padding: 30px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.value-card__number {
  position: absolute;
  top: 19px;
  right: 24px;
  color: #e5ebf2;
  font-size: 2.7rem;
  font-weight: 850;
  letter-spacing: -0.08em;
}

.value-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  color: var(--green-dark);
  background: var(--green-pale);
  border-radius: 14px;
}

.value-card__icon .icon {
  width: 25px;
  height: 25px;
}

.value-card h3 {
  max-width: 240px;
}

.value-card p {
  color: var(--muted);
  font-size: 0.92rem;
}

.value-card > a,
.text-link,
.network-copy > a,
.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-size: 0.85rem;
  font-weight: 760;
  text-decoration: none;
}

.value-card > a {
  position: absolute;
  right: 30px;
  bottom: 28px;
  left: 30px;
}

.value-card a .icon,
.text-link .icon,
.network-copy > a .icon,
.post-card__link .icon {
  width: 17px;
  transition: transform 180ms ease;
}

.value-card a:hover .icon,
.text-link:hover .icon,
.network-copy > a:hover .icon,
.post-card__link:hover .icon {
  transform: translateX(4px);
}

/* Devices */
.devices-section {
  background: var(--white);
}

.devices-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 80px;
  align-items: center;
}

.devices-copy p:not(.eyebrow) {
  max-width: 470px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.02rem;
}

.device-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.device-grid article {
  padding: 25px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.device-grid article > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  color: var(--green-dark);
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.device-grid article > span .icon {
  width: 23px;
  height: 23px;
}

.device-grid h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.device-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
}

/* Network */
.network-section {
  color: #c1cedd;
  background: var(--ink);
}

.network-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 90px;
  align-items: center;
}

.network-panel {
  padding: 30px;
  background: linear-gradient(145deg, #12263e, #0b192b);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.3);
}

.network-panel__head {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 22px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.network-panel__head > span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: var(--green);
  border-radius: 13px;
}

.network-panel__head .icon {
  width: 25px;
  height: 25px;
}

.network-panel__head small,
.network-panel__head strong {
  display: block;
}

.network-panel__head small {
  color: #7890aa;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.network-panel__head strong {
  color: var(--white);
}

.speed-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-bottom: 15px;
  margin-bottom: 23px;
  color: #a8b8ca;
  font-size: 0.84rem;
}

.speed-row strong {
  color: var(--white);
}

.speed-row::after,
.speed-row i {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 7px;
  border-radius: 10px;
  content: "";
}

.speed-row::after {
  z-index: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.08);
}

.speed-row i {
  z-index: 1;
  width: var(--level);
  background: linear-gradient(90deg, var(--green), #6be3ff);
}

.network-tip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  color: #aebfd0;
  background: rgba(25, 201, 135, 0.08);
  border: 1px solid rgba(25, 201, 135, 0.18);
  border-radius: 12px;
  font-size: 0.8rem;
}

.network-tip p {
  margin: 0;
}

.network-tip strong,
.network-tip .icon {
  color: var(--green);
}

.network-tip .icon {
  margin-top: 2px;
}

.network-copy h2 {
  color: var(--white);
}

.network-copy > p:not(.eyebrow) {
  color: #9eb0c4;
}

.dark-check-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.dark-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d2dfeb;
  font-size: 0.9rem;
}

.dark-check-list .icon {
  color: var(--green);
}

.network-copy > a {
  color: var(--green);
}

/* Steps */
.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.steps-grid::before {
  position: absolute;
  top: 34px;
  right: 16.66%;
  left: 16.66%;
  height: 1px;
  content: "";
  background: var(--line);
}

.steps-grid article {
  position: relative;
  text-align: center;
}

.steps-grid article > span {
  position: absolute;
  top: -5px;
  left: calc(50% + 25px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--white);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 850;
}

.steps-grid article > div {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 22px;
  color: var(--green-dark);
  background: var(--green-pale);
  border: 8px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.steps-grid article > div .icon {
  width: 25px;
  height: 25px;
}

.steps-grid h3 {
  margin-bottom: 9px;
}

.steps-grid p {
  max-width: 300px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.89rem;
}

/* Articles */
.heading-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: none;
}

.heading-row > div {
  max-width: 680px;
}

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

.posts-grid--archive {
  row-gap: 32px;
}

.post-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.post-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink-2);
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.post-card:hover .post-card__media img {
  transform: scale(1.035);
}

.post-card__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--green);
  background:
    radial-gradient(circle at 65% 20%, rgba(25, 201, 135, 0.27), transparent 24%),
    linear-gradient(145deg, #112640, #081522);
}

.post-card__placeholder .icon {
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 11px;
  color: var(--ink);
  background: var(--green);
  border-radius: 50%;
  fill: currentColor;
  stroke: none;
}

.post-card__placeholder i {
  position: absolute;
  width: 90px;
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  transform: rotate(-35deg);
}

.post-card__placeholder i:first-of-type {
  margin: -80px 0 0 -170px;
}

.post-card__placeholder i:nth-of-type(2) {
  width: 150px;
  margin: 80px 0 0 170px;
}

.post-card__placeholder i:nth-of-type(3) {
  width: 55px;
  margin: 95px 0 0 -80px;
}

.post-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.post-card__kicker,
.article-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-card h3 {
  font-size: 1.25rem;
  line-height: 1.28;
}

.post-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.post-card h3 a:hover {
  color: var(--green-dark);
}

.post-card p {
  color: var(--muted);
  font-size: 0.86rem;
}

.post-card__link {
  margin-top: auto;
}

.post-card--empty {
  grid-column: 1 / -1;
}

/* FAQ */
.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 90px;
  align-items: start;
}

.faq-copy {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.faq-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 4px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 730;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--green-dark);
  background: var(--green-pale);
  border-radius: 8px;
}

.faq-item summary .icon {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.faq-item[open] summary .icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-width: 680px;
  padding: 0 46px 20px 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-answer p {
  margin: 0;
}

/* Final CTA */
.final-cta-section {
  padding-top: 25px;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  padding: 56px 62px;
  overflow: hidden;
  color: #c8d5e3;
  background:
    radial-gradient(circle at 88% 25%, rgba(25, 201, 135, 0.22), transparent 25%),
    var(--ink);
  border-radius: var(--radius-lg);
}

.final-cta::after {
  position: absolute;
  right: -100px;
  bottom: -170px;
  width: 340px;
  height: 340px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 0;
}

.final-cta__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

/* Interior pages */
.page-hero,
.article-hero {
  padding: 74px 0 78px;
  color: #c3d0df;
  background:
    radial-gradient(circle at 80% 20%, rgba(25, 201, 135, 0.14), transparent 24%),
    var(--ink);
}

.page-hero h1,
.article-hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.page-hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: #aebed0;
  font-size: 1.05rem;
}

.page-hero .page-updated {
  margin-top: 14px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.page-hero--blog .container {
  max-width: var(--container);
}

.breadcrumbs {
  margin-bottom: 24px;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
  color: #8599b1;
  font-size: 0.75rem;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  margin-left: 8px;
  color: #546a84;
  content: "/";
}

.breadcrumbs a {
  color: #b5c5d6;
  text-decoration: none;
}

.content-wrap {
  padding-top: 72px;
  padding-bottom: 100px;
}

.entry-content {
  color: #344256;
  font-size: 1.02rem;
}

.entry-content > * {
  max-width: 100%;
}

.entry-content > * + * {
  margin-top: 1.35rem;
}

.entry-content h2 {
  margin-top: 2.8rem;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.entry-content h3 {
  margin-top: 2.2rem;
  color: var(--ink);
  font-size: 1.4rem;
}

.entry-content .lead,
.entry-content > .lead {
  color: #44546a;
  font-size: 1.2rem;
  line-height: 1.65;
}

.entry-content ul,
.entry-content ol {
  padding-left: 1.35rem;
}

.entry-content li {
  margin-bottom: 0.55rem;
  padding-left: 0.25rem;
}

.entry-content a:not(.button):not(.contact-card) {
  color: var(--green-dark);
  font-weight: 650;
}

.entry-content .pricing-app {
  width: min(1120px, calc(100vw - 40px));
  margin: 46px 50% 50px;
  transform: translateX(-50%);
}

.entry-content .pricing-note p,
.entry-content .price-card__monthly,
.entry-content .feature-list,
.entry-content .device-switcher {
  font-size: inherit;
}

.entry-content .wp-block-table {
  margin: 28px 0;
  overflow-x: auto;
}

.entry-content blockquote {
  padding: 20px 24px;
  margin-left: 0;
  color: #38485e;
  background: var(--soft);
  border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0;
}

.entry-content .button {
  margin-top: 16px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 34px 0 52px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 28px;
  color: var(--text);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.contact-card:hover {
  color: var(--text);
  border-color: var(--green);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.contact-card__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 24px;
  color: var(--green-dark);
  background: var(--green-pale);
  border-radius: 13px;
}

.contact-card strong,
.contact-card > span:not(.contact-card__icon),
.contact-card small {
  display: block;
}

.contact-card strong {
  color: var(--ink);
  font-size: 1.15rem;
}

.contact-card > span:not(.contact-card__icon) {
  margin-top: 6px;
  color: var(--green-dark);
  font-size: 0.93rem;
  overflow-wrap: anywhere;
}

.contact-card small {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.75rem;
}

/* Single article */
.article-hero {
  padding-bottom: 96px;
}

.article-hero h1 {
  max-width: 860px;
  font-size: clamp(2.5rem, 5vw, 4.35rem);
}

.article-deck {
  max-width: 760px;
  margin: 22px 0;
  color: #acbdd0;
  font-size: 1.12rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 22px;
  color: #8297af;
  font-size: 0.78rem;
}

.article-meta span + span::before {
  margin-right: 22px;
  color: var(--green);
  content: "•";
}

.article-image {
  margin-top: -52px;
}

.article-image img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  gap: 64px;
  max-width: 1050px;
  padding-top: 74px;
  padding-bottom: 40px;
}

.article-content {
  min-width: 0;
}

.article-aside {
  position: relative;
}

.aside-card {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding: 22px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 15px;
}

.aside-card > span {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--green-dark);
  background: var(--green-pale);
  border-radius: 10px;
}

.aside-card h2 {
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.aside-card p {
  color: var(--muted);
  font-size: 0.78rem;
}

.aside-card a {
  font-size: 0.8rem;
  font-weight: 750;
}

.post-navigation-wrap {
  padding-top: 35px;
  padding-bottom: 100px;
}

.post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.post-navigation a {
  display: block;
  padding: 20px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.post-navigation .nav-next {
  text-align: right;
}

.post-navigation a span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Search, pagination and empty states */
.search-form {
  display: flex;
  gap: 10px;
  max-width: 620px;
  margin-top: 26px;
}

.search-form label {
  flex: 1;
}

.search-field {
  width: 100%;
  min-height: 48px;
  padding: 11px 15px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.page-hero .search-field {
  border-color: rgba(255, 255, 255, 0.25);
}

.navigation.pagination {
  margin-top: 42px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-numbers {
  display: grid;
  place-items: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.empty-state {
  padding: 70px 30px;
  text-align: center;
}

.empty-state p {
  color: var(--muted);
}

.not-found-page {
  min-height: 650px;
  padding: 80px 0;
  background: var(--soft);
}

.not-found-page .search-form {
  margin: 28px auto;
}

.error-code {
  display: block;
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0.2em;
}

/* Footer */
.site-footer {
  padding: 78px 0 0;
  color: #9fb0c4;
  background: #050c16;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.65fr repeat(3, 0.78fr);
  gap: 55px;
  padding-bottom: 58px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand > p {
  max-width: 340px;
  color: #8295ad;
  font-size: 0.87rem;
}

.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}

.footer-contact:hover {
  color: #75efbd;
}

.footer-grid h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-grid li,
.footer-grid a {
  color: #8295ad;
  font-size: 0.83rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.footer-grid a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0;
  color: #60738a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  max-width: 560px;
  text-align: right;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr 0.88fr;
    gap: 35px;
  }

  .primary-navigation {
    gap: 12px;
  }

  .primary-navigation .menu a {
    padding-inline: 8px;
    font-size: 0.82rem;
  }

  .floating-chip--support {
    right: 0;
  }

  .floating-chip--network {
    left: 0;
  }

  .footer-grid {
    gap: 35px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .admin-bar .site-header {
    top: 46px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .primary-navigation {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    max-height: calc(100vh - var(--header-height));
    padding: 18px 20px 26px;
    overflow-y: auto;
    background: rgba(7, 17, 31, 0.99);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.25);
  }

  .admin-bar .primary-navigation {
    top: calc(var(--header-height) + 46px);
  }

  .primary-navigation.is-open {
    display: flex;
    flex-direction: column;
  }

  .primary-navigation .menu {
    display: block;
  }

  .primary-navigation .menu a {
    padding: 12px 10px;
    font-size: 1rem;
  }

  .primary-navigation .sub-menu {
    position: static;
    display: block;
    padding: 0 0 0 16px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .button-header {
    width: 100%;
    margin-top: 8px;
  }

  .hero {
    min-height: 0;
    padding: 78px 0 90px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 55px;
  }

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

  .hero-visual {
    width: min(100%, 590px);
    min-height: 460px;
    margin-inline: auto;
  }

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

  .fact-grid > div,
  .fact-grid > div:first-child,
  .fact-grid > div:last-child {
    padding: 20px;
    border: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .fact-grid > div:nth-child(2n) {
    border-right: 0;
  }

  .fact-grid > div:nth-child(n+3) {
    border-bottom: 0;
  }

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

  .price-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 10px);
    width: 100%;
    margin-inline: auto;
  }

  .split-intro,
  .devices-layout,
  .network-grid,
  .faq-layout,
  .final-cta {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .faq-copy {
    position: static;
  }

  .devices-copy {
    max-width: 650px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .aside-card {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section {
    padding: 76px 0;
  }

  h1 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.55rem);
  }

  .hero {
    padding-top: 62px;
  }

  .hero-actions {
    display: grid;
  }

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

  .hero-points {
    display: grid;
    gap: 9px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .screen-card {
    transform: none;
  }

  .screen-card__stage {
    min-height: 240px;
    padding: 30px 20px;
  }

  .screen-card__footer {
    grid-template-columns: 1fr 1fr;
  }

  .screen-card__footer > div:nth-child(2) {
    border-right: 0;
  }

  .screen-card__footer > div:last-child {
    display: none;
  }

  .floating-chip {
    padding: 10px 12px;
  }

  .floating-chip--support {
    right: -4px;
    bottom: -7px;
  }

  .floating-chip--network {
    bottom: 54px;
    left: -4px;
  }

  .fact-grid,
  .pricing-grid,
  .value-grid,
  .device-grid,
  .steps-grid,
  .posts-grid,
  .contact-grid,
  .post-navigation .nav-links,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fact-grid > div,
  .fact-grid > div:first-child,
  .fact-grid > div:last-child,
  .fact-grid > div:nth-child(2n),
  .fact-grid > div:nth-child(n+3) {
    min-height: 82px;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact-grid > div:last-child {
    border-bottom: 0;
  }

  .device-switcher {
    display: block;
    padding: 10px;
  }

  .device-switcher__label {
    display: block;
    padding: 4px 5px 10px;
    text-align: center;
  }

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

  .device-tab {
    justify-content: center;
    padding-inline: 8px;
  }

  .device-tab .icon {
    display: none;
  }

  .price-card,
  .price-card:last-child {
    grid-column: auto;
    max-width: none;
    padding: 26px 23px;
  }

  .entry-content .pricing-app {
    width: calc(100vw - 28px);
  }

  .split-intro {
    margin-bottom: 35px;
  }

  .value-card {
    min-height: 315px;
  }

  .steps-grid {
    gap: 46px;
  }

  .steps-grid::before {
    display: none;
  }

  .heading-row {
    display: block;
  }

  .heading-row .text-link {
    margin-top: 12px;
  }

  .final-cta {
    padding: 38px 25px;
    border-radius: 20px;
  }

  .page-hero,
  .article-hero {
    padding: 55px 0 62px;
  }

  .content-wrap,
  .article-layout {
    padding-top: 55px;
    padding-bottom: 70px;
  }

  .entry-content {
    font-size: 0.98rem;
  }

  .article-meta {
    display: grid;
    gap: 5px;
  }

  .article-meta span + span::before {
    display: none;
  }

  .post-navigation .nav-next {
    text-align: left;
  }

  .footer-grid {
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }

  .search-form {
    display: grid;
  }
}

@media (max-width: 420px) {
  .screen-card__stage {
    min-height: 210px;
  }

  .floating-chip--network {
    display: none;
  }

  .hero-visual {
    min-height: 370px;
  }

  .device-switcher__buttons {
    gap: 3px;
  }

  .device-tab {
    font-size: 0.76rem;
  }
}

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

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

@media print {
  .site-header,
  .site-footer,
  .hero-actions,
  .final-cta-section,
  .article-aside,
  .button {
    display: none !important;
  }

  body,
  .page-hero,
  .article-hero {
    color: #000;
    background: #fff;
  }

  .page-hero h1,
  .article-hero h1 {
    color: #000;
  }
}
