.container {
  width: min(100% - 1rem, var(--container));
  margin-inline: auto;
}
@media (min-width: 1100px) {
  .container {
    width: calc(100% - 2.25rem);
    max-width: var(--container);
  }
}
@media (min-width: 1600px) {
  .container {
    /* FullHD+: drop the max cap so the page actually fills the
       viewport with ~24px on each side. */
    width: calc(100% - 3rem);
    max-width: 1860px;
  }
}

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

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

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

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

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

.content-narrow {
  width: min(100%, 860px);
}

.eyebrow {
  display: inline-block;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.74rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.25) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
  z-index: -1;
}

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

.btn--primary {
  background: var(--color-primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.btn--secondary {
  background: #fff;
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn--secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--ghost {
  background: transparent;
  border-color: var(--color-border);
}

.btn--ghost:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.lang-switcher__details {
  position: relative;
}

.lang-switcher__details[open] .lang-switcher__caret {
  transform: rotate(180deg);
}

.lang-switcher__trigger {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: 40px;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid #d7dbe2;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0f1320;
  transition: var(--transition);
  background: #f2f3f6;
}

.lang-switcher__trigger::-webkit-details-marker,
.lang-switcher__trigger::marker {
  display: none;
  content: "";
}

.lang-switcher__trigger:hover {
  border-color: var(--color-primary);
  background: #fff;
  color: var(--color-primary);
}

.lang-switcher__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke-width: 2.2;
}

.lang-switcher__code {
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.lang-switcher__full {
  display: none;
}

.lang-switcher__caret {
  font-size: 0.68rem;
  line-height: 1;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.lang-switcher__menu {
  list-style: none;
  margin: 0;
  padding: 0.35rem;
  position: absolute;
  top: calc(100% + 0.45rem);
  right: 0;
  left: auto;
  min-width: 168px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 16px 32px rgba(15, 15, 15, 0.14);
  z-index: 20;
}

.lang-switcher__menu a {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 38px;
  border-radius: 8px;
  padding: 0 0.7rem;
  font-family: "Rajdhani", sans-serif;
  font-weight: 600;
  color: #1d2232;
  transition: background 0.18s ease, color 0.18s ease;
}

.lang-switcher__menu a .lang-switcher__code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(198, 31, 38, 0.08);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.lang-switcher__menu a .lang-switcher__full {
  display: inline;
  font-size: 0.98rem;
}

.lang-switcher__menu li.is-current a .lang-switcher__code {
  background: var(--color-primary);
  color: #fff;
}

.lang-switcher__menu li.is-current a,
.lang-switcher__menu a:hover {
  background: rgba(198, 31, 38, 0.08);
  color: var(--color-primary);
}

.site-header__actions--right .lang-switcher {
  margin-right: 0.2rem;
  flex-shrink: 0;
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  cursor: pointer;
  font-size: 1rem;
  color: var(--color-text);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.icon-btn:hover,
.icon-btn.is-active {
  color: var(--color-primary);
  border-color: var(--color-primary-light);
}

.header-cta {
  min-width: 118px;
  min-height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #111216 0%, #2a1115 42%, #c61f26 100%);
  border: 1px solid rgba(198, 31, 38, 0.42);
  color: #fff;
  letter-spacing: 0.04em;
  font-size: 1.08rem;
  padding-inline: 1.5rem;
}

.header-cta:hover {
  background: linear-gradient(135deg, #15161c 0%, #351317 44%, #e1484f 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(198, 31, 38, 0.34);
}

.cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.68rem;
  top: -4px;
  right: -4px;
  margin: 0;
}

.hamburger {
  display: none;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  width: 42px;
  height: 42px;
  padding: 9px;
  background: #fff;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-text);
}

.hamburger span + span {
  margin-top: 5px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.48);
  opacity: 0;
  transition: var(--transition);
  z-index: 999;
}

.mobile-overlay.is-visible {
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(88vw, 360px);
  height: 100%;
  background: #fff;
  z-index: 1000;
  padding: max(1.2rem, env(safe-area-inset-top)) 1.2rem 1.2rem;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-drawer.is-open {
  right: 0;
}

.mobile-drawer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
}

.mobile-drawer__lang {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

.mobile-drawer__lang .lang-switcher__details {
  display: inline-block;
}

.mobile-drawer__lang .lang-switcher__trigger {
  height: 44px;
  padding: 0 1rem;
}

.mobile-drawer__lang .lang-switcher__full {
  display: inline;
  font-size: 0.98rem;
}

.mobile-drawer__lang .lang-switcher__caret {
  display: inline;
}

.mobile-drawer__lang .lang-switcher__menu {
  left: 0;
  right: auto;
}

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

.menu--mobile a {
  display: block;
  padding: 0.6rem 0;
  font-weight: 700;
  font-family: "Rajdhani", sans-serif;
  text-transform: uppercase;
}

.has-mobile-menu {
  overflow: hidden;
}

.section-header {
  margin-bottom: 2rem;
}

.section-header--inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(198, 31, 38, 0.28), transparent 45%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 38px rgba(22, 22, 22, 0.14);
  border-color: rgba(198, 31, 38, 0.3);
}

.feature-card {
  min-height: 240px;
}

.tile-grid {
  display: grid;
  gap: 1rem;
}

.tile-grid--features {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.08));
  gap: 1px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.tile-grid--modules {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.8rem;
  gap: 1.05rem;
}

.tile {
  position: relative;
  overflow: hidden;
}

.tile--feature {
  background: #fff;
  border: 0;
  border-radius: 0;
  padding: 1.8rem 1.5rem 1.45rem;
  box-shadow: none;
  min-height: 300px;
  transition: background 0.28s ease;
}

.tile--feature:hover {
  background: #f7f7f8;
}

.tile__topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.tile:hover .tile__topline {
  transform: scaleX(1);
}

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

.tile__badge {
  display: inline-flex;
  padding: 0.23rem 0.62rem;
  border: 1px solid rgba(198, 31, 38, 0.24);
  border-radius: 4px;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-primary-dark);
  text-transform: uppercase;
}

.tile__arrow {
  color: #c7c7c7;
  transition: color 0.25s ease, transform 0.25s ease;
}

.tile:hover .tile__arrow {
  color: var(--color-primary);
  transform: translate(2px, -2px);
}

.tile__list {
  margin: 0.9rem 0 0;
  padding-left: 1rem;
  color: var(--color-text-secondary);
  list-style: none;
  padding-left: 0;
}

.tile__list li {
  font-size: 0.82rem;
  position: relative;
  padding-left: 1rem;
  letter-spacing: 0.01em;
}

.tile__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 1px;
  background: var(--color-primary);
}

.tile__list li + li {
  margin-top: 0.3rem;
}

.modules-band {
  background: linear-gradient(150deg, #191822 0%, #242137 35%, #2a243e 60%, #1d1a29 100%);
  position: relative;
  overflow: hidden;
}

.modules-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(198, 31, 38, 0.15), transparent 48%);
  pointer-events: none;
}

.modules-band .section-header h2,
.modules-band .section-header p {
  color: #fff;
  position: relative;
  z-index: 1;
}

.tile--module {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 290px;
  transition: transform 0.36s ease, box-shadow 0.36s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.tile--module:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 40px rgba(198, 31, 38, 0.2), 0 0 0 2px rgba(198, 31, 38, 0.85);
  z-index: 3;
}

.tile-module__visual {
  position: relative;
  padding: 0.95rem 1rem;
  min-height: 128px;
  background: linear-gradient(145deg, #1a1825 0%, #23203a 55%, #1e1b2e 100%);
  color: #fff;
}

.tile-module__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(198, 31, 38, 0.24), transparent 65%);
}

.tile-module__visual h3,
.tile-module__chip {
  position: relative;
  z-index: 1;
}

.tile-module__visual h3 {
  margin-top: 0.8rem;
  margin-bottom: 0;
  font-size: 1.45rem;
  line-height: 1;
}

.tile-module__chip {
  display: inline-flex;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(198, 31, 38, 0.52);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.9);
  padding: 0.21rem 0.5rem;
}

.tile-module__visual::after {
  content: "TX  CAN  LIVE";
  position: absolute;
  right: 0.85rem;
  top: 0.9rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.35);
}

.tile-module__body {
  padding: 1rem 1rem 1.1rem;
  min-height: 150px;
}

.tile-module__body p {
  font-size: 0.84rem;
  margin: 0;
  line-height: 1.6;
}

.tile-module__body::after {
  content: "STATUS: READY";
  display: inline-block;
  margin-top: 0.75rem;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  color: rgba(198, 31, 38, 0.8);
}

.tile-module__hover {
  position: absolute;
  inset: auto 0 0;
  min-height: 160px;
  background: linear-gradient(155deg, #1f1d2b, #2a2740);
  color: #fff;
  padding: 1rem 1rem 1.1rem;
  transform: translateY(100%);
  transition: transform 0.36s cubic-bezier(0.2, 0.8, 0.3, 1);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.tile-module__hover p {
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  font-size: 0.88rem;
}

.tile-module__hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
}

.tile--module:hover .tile-module__hover {
  transform: translateY(0);
}

.badge {
  display: inline-flex;
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-primary);
}

.intro-split {
  align-items: center;
}

.article-card {
  padding: 0;
  overflow: hidden;
}

.article-card__thumb img,
.thumb-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: linear-gradient(125deg, #dcdcdc, #f4f4f4);
  transition: transform 0.45s ease;
}

.article-card:hover .article-card__thumb img {
  transform: scale(1.06);
}

.article-card__body {
  padding: 1.2rem;
}

.article-card__title {
  font-size: 1.45rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
  font-size: 0.92rem;
  color: var(--color-text-secondary);
}

.article-meta a {
  color: var(--color-primary-dark);
}

.article-header .entry-cover {
  margin-top: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
}

.entry {
  width: min(100%, 860px);
}

.entry--page,
.entry--single {
  margin-inline: auto;
}

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

.entry-content blockquote {
  border-left: 4px solid var(--color-primary);
  margin: 1.5rem 0;
  padding: 0.5rem 1.1rem;
  background: var(--color-bg-secondary);
}

.related-posts {
  margin-top: 2.5rem;
}

.breadcrumbs {
  border-bottom: 1px solid var(--color-border);
  background: #fff;
}

.breadcrumbs .container {
  padding: 0.75rem 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.92rem;
}

.breadcrumbs a {
  color: var(--color-text-secondary);
}

.breadcrumbs__sep {
  color: #9a9a9a;
}

.overlay-banner {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  background: linear-gradient(135deg, #111 0%, #1a1a1a 45%, #2a2a2a 100%);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.overlay-banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 38px rgba(18, 18, 18, 0.35);
}

.overlay-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(198, 31, 38, 0.58), rgba(17, 17, 17, 0.36));
}

.overlay-banner__content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: clamp(2rem, 5vw, 4rem);
  max-width: 620px;
}

.overlay-banner__content p,
.overlay-banner__content h2 {
  color: #fff;
}

.about-media {
  min-height: 360px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(198, 31, 38, 0.75), rgba(24, 24, 24, 0.9));
  box-shadow: 0 16px 28px rgba(17, 17, 17, 0.2);
}

.pagination,
.nav-links {
  margin-top: 1.8rem;
  display: flex;
  gap: 0.45rem;
  align-items: center;
}

.page-numbers {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 0.5rem;
}

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

.search-form {
  display: flex;
  gap: 0.7rem;
}

.search-field,
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  min-height: 140px;
}

.search-submit,
button,
input[type="submit"] {
  border: 1px solid transparent;
  background: var(--color-primary);
  color: #fff;
  border-radius: 999px;
  min-height: 46px;
  padding: 0.7rem 1.2rem;
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.search-submit:hover,
button:hover,
input[type="submit"]:hover {
  background: var(--color-primary-dark);
}

.wp-block-button__link {
  border-radius: 999px;
}

.wp-block-quote {
  border-left: 4px solid var(--color-primary);
  padding-left: 1rem;
}

.wp-block-cover,
.wp-block-group,
.wp-block-table,
.wp-block-image,
.wp-block-gallery {
  margin-bottom: 1.4rem;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-list li + li {
  margin-top: 0.35rem;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  border-color: var(--color-primary-light);
  color: var(--color-primary-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) repeat(3, minmax(0, 1fr));
  gap: clamp(1.8rem, 4vw, 4rem);
}

.footer-brand {
  max-width: 470px;
}

.site-footer__top {
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
}

.footer-brand__logo {
  margin-bottom: 1.35rem;
}

.footer-brand__logo img {
  display: block;
  max-height: 52px;
  width: auto;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.9rem;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
}

.site-footer__brand-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(198, 31, 38, 0.18);
  flex-shrink: 0;
}

.site-footer p {
  margin: 0;
  max-width: 26rem;
  color: rgba(241, 241, 241, 0.68);
  font-size: 1.05rem;
  line-height: 1.8;
}

.footer-col h3 {
  margin-bottom: 1.15rem;
  color: #d8686d;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.menu--footer li + li {
  margin-top: 0.72rem;
}

.menu--footer a,
.contact-list li,
.contact-list a {
  font-family: "Open Sans", sans-serif;
  color: rgba(241, 241, 241, 0.58);
  font-size: 1.04rem;
  line-height: 1.5;
}

.menu--footer a,
.contact-list a {
  transition: var(--transition);
}

.menu--footer a:hover,
.contact-list a:hover {
  color: var(--color-primary-light);
}

.social-tags {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.social-tags a {
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 2px;
  min-height: 42px;
  min-width: 122px;
  padding: 0 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(241, 241, 241, 0.84);
}

.social-tags a:hover {
  border-color: var(--color-primary-light);
  color: #fff;
  background: rgba(198, 31, 38, 0.16);
}

.contact-list {
  display: grid;
  gap: 0.92rem;
}

.contact-list li:last-child,
.contact-list li:nth-last-child(2) {
  color: rgba(241, 241, 241, 0.52);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(241, 241, 241, 0.46);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
}

.f-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.f-certs span {
  min-height: 34px;
  padding: 0 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(241, 241, 241, 0.86);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .tile-grid--modules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .tile-grid--features {
    grid-template-columns: 1fr;
  }

  .tile-grid--modules {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .f-certs {
    width: 100%;
  }
}

.custom-logo-link img {
  max-height: 46px;
  width: auto;
}

.menu--sections {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.35rem;
  border-radius: 999px;
  background: rgba(20, 21, 26, 0.04);
  border: 1px solid rgba(20, 21, 26, 0.06);
}

.menu--sections a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 1rem;
  border-radius: 999px;
  color: #4e515d;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu--sections a:hover,
.menu--sections a.is-current {
  color: #fff;
  background: linear-gradient(135deg, #171921 0%, #262a36 100%);
  box-shadow: 0 12px 26px rgba(17, 19, 26, 0.16);
}

.header-cta {
  min-width: 118px;
  min-height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #e1484f 0%, #c61f26 40%, #99171d 100%);
  border: 1px solid rgba(198, 31, 38, 0.6);
  color: #fff;
  letter-spacing: 0.04em;
  font-size: 1.02rem;
  padding-inline: 1.4rem;
  box-shadow: 0 12px 24px rgba(198, 31, 38, 0.2);
}

.header-cta:hover {
  background: linear-gradient(135deg, #ed585f 0%, #ce232a 40%, #a1181e 100%);
  color: #fff;
  box-shadow: 0 16px 28px rgba(198, 31, 38, 0.28);
}

.hero__layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 560px);
  justify-content: space-between;
  align-items: end;
  gap: clamp(2rem, 3.5vw, 3.25rem);
  width: 100%;
  min-height: clamp(620px, 82vh, 820px);
  padding-block: clamp(4rem, 7vw, 5.6rem) clamp(2rem, 3vw, 2.8rem);
}

.hero__content {
  max-width: 620px;
}

.hero__copy-card {
  max-width: 620px;
  position: relative;
}

.hero__copy-card::before {
  content: none;
}

.hero__eyebrow-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 0.9rem;
}

.hero__eyebrow-row .eyebrow {
  margin-bottom: 0;
}

.hero__status {
  min-height: 32px;
  padding: 0 0.9rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.82);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__copy-card h1 {
  max-width: 11.5ch;
  margin-bottom: 0.34em;
  font-size: clamp(3.1rem, 5vw, 5.35rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-wrap: balance;
}

.hero__copy-card > p:last-of-type {
  max-width: 34rem;
  margin-bottom: 0;
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.84);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.35rem;
}

.hero__chips span {
  min-height: 34px;
  padding: 0 0.95rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero__points {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  max-width: 31rem;
}

.hero__points li {
  position: relative;
  padding-left: 1.55rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.55;
}

.hero__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.74em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary-light);
  box-shadow: 0 0 0 8px rgba(198, 31, 38, 0.1);
}

.hero__actions {
  margin-top: 1.5rem;
}

.hero__statline {
  margin-top: 1.9rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stat {
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
}

.hero__stat strong {
  display: block;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.hero__stat span {
  display: block;
  margin-top: 0.28rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  line-height: 1.45;
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 0;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% 8% 10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(198, 31, 38, 0.24) 0%, rgba(198, 31, 38, 0.04) 44%, transparent 74%);
  filter: blur(14px);
}

.hero__backdrops {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
}

.hero__backdrop.is-active {
  opacity: 1;
}

.hero__backdrop::before,
.hero__backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero__backdrop--bench::before {
  background:
    radial-gradient(circle at 15% 20%, rgba(198, 31, 38, 0.28), transparent 36%),
    radial-gradient(circle at 78% 28%, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(120deg, rgba(85, 17, 21, 0.92), rgba(11, 15, 24, 0.96));
}

.hero__backdrop--bench::after,
.hero__backdrop--gateway::after,
.hero__backdrop--analyzer::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.35;
}

.hero__backdrop--gateway::before {
  background:
    radial-gradient(circle at 68% 20%, rgba(198, 31, 38, 0.2), transparent 28%),
    radial-gradient(circle at 20% 70%, rgba(84, 110, 255, 0.12), transparent 24%),
    linear-gradient(130deg, rgba(38, 16, 24, 0.92), rgba(12, 16, 26, 0.98));
}

.hero__backdrop--analyzer::before {
  background:
    radial-gradient(circle at 72% 16%, rgba(44, 120, 214, 0.18), transparent 24%),
    radial-gradient(circle at 24% 42%, rgba(198, 31, 38, 0.18), transparent 32%),
    linear-gradient(120deg, rgba(26, 18, 24, 0.92), rgba(10, 14, 22, 0.98));
}

.hero-carousel {
  width: min(100%, 560px);
}

.hero-carousel__viewport {
  position: relative;
  min-height: 610px;
}

.hero-media-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.15rem;
  border-radius: 28px;
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.7s ease, transform 0.7s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(16, 20, 29, 0.95), rgba(11, 14, 21, 0.98));
  box-shadow: 0 42px 90px rgba(5, 7, 12, 0.42);
}

.hero-media-slide.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.hero-media-slide__header,
.hero-carousel__meta,
.hero-carousel__label,
.hero-carousel__progress,
.hero-media-slide__glass span,
.hero-media-slide__chips span {
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-media-slide__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-media-slide__header strong {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-media-slide__scene {
  position: relative;
  flex: 1 1 auto;
  margin: 1rem 0 1.1rem;
  border-radius: 24px;
  overflow: hidden;
}

.hero-media-slide__scene::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.hero-media-slide--bench .hero-media-slide__scene::before {
  background:
    radial-gradient(circle at 22% 18%, rgba(225, 72, 79, 0.32), transparent 28%),
    linear-gradient(160deg, rgba(45, 18, 26, 0.9), rgba(13, 17, 25, 0.98));
}

.hero-media-slide--gateway .hero-media-slide__scene::before {
  background:
    radial-gradient(circle at 80% 25%, rgba(66, 146, 222, 0.18), transparent 22%),
    linear-gradient(160deg, rgba(24, 20, 34, 0.9), rgba(12, 16, 25, 0.98));
}

.hero-media-slide--analyzer .hero-media-slide__scene::before {
  background:
    radial-gradient(circle at 78% 20%, rgba(44, 120, 214, 0.2), transparent 20%),
    linear-gradient(160deg, rgba(20, 18, 28, 0.9), rgba(11, 14, 21, 0.98));
}

.hero-media-slide__scene::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.45;
}

.hero-media-slide__glass {
  position: absolute;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.24);
}

.hero-media-slide__glass--main {
  inset: 1.2rem 1.2rem 5.4rem 1.2rem;
  padding: 1.35rem;
}

.hero-media-slide__glass--floating {
  top: 2rem;
  right: 1.8rem;
  width: min(46%, 210px);
  padding: 0.95rem 1rem;
}

.hero-media-slide__glass--detail {
  left: 1.8rem;
  bottom: 1.8rem;
  width: min(56%, 280px);
  padding: 1rem 1.05rem;
}

.hero-media-slide__glass span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-media-slide__glass strong {
  display: block;
  margin-top: 0.45rem;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.15;
}

.hero-media-slide__line {
  height: 18px;
  margin-bottom: 0.85rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
}

.hero-media-slide__line.is-accent {
  width: 78%;
  background: linear-gradient(90deg, #c61f26 0%, #e1484f 100%);
  box-shadow: 0 0 22px rgba(198, 31, 38, 0.32);
}

.hero-media-slide__chips {
  position: absolute;
  left: 1.35rem;
  right: 1.35rem;
  bottom: 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.hero-media-slide__chips span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-media-slide__content h3 {
  margin: 0;
  color: #fff;
  font-size: 1.45rem;
  line-height: 1.04;
}

.hero-media-slide__content p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.97rem;
  line-height: 1.65;
}

.hero-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-carousel__dots {
  display: inline-flex;
  gap: 0.55rem;
}

.hero-carousel__dot {
  width: 44px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero-carousel__dot.is-active {
  background: linear-gradient(90deg, #c61f26 0%, #e1484f 100%);
  transform: scaleX(1.05);
}

.hero-carousel__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-carousel__progress {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.hero-carousel__label {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-console {
  width: min(100%, 560px);
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(15, 18, 25, 0.98), rgba(10, 12, 18, 0.98));
  box-shadow: 0 38px 90px rgba(5, 7, 12, 0.44);
}

.hero-console__bar,
.hero-console__toolbar,
.hero-console__head,
.hero-console__status,
.hero-console__tags {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-console__bar {
  justify-content: space-between;
  padding: 0.95rem 1rem;
  background: linear-gradient(90deg, rgba(198, 31, 38, 0.22), rgba(255, 255, 255, 0.03));
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-console__identity {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-console__identity strong,
.hero-console__live,
.hero-console__toolbar span,
.hero-console__head,
.hero-console__status,
.hero-console__tags span {
  font-family: "Rajdhani", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-console__identity strong {
  color: #fff;
  font-size: 0.96rem;
  font-weight: 700;
}

.hero-console__dots {
  display: inline-flex;
  gap: 0.32rem;
}

.hero-console__dots i {
  width: 9px;
  height: 9px;
  display: block;
  border-radius: 999px;
}

.hero-console__dots i:nth-child(1) {
  background: #ff605c;
}

.hero-console__dots i:nth-child(2) {
  background: #ffbd44;
}

.hero-console__dots i:nth-child(3) {
  background: #00ca4e;
}

.hero-console__live {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 700;
}

.hero-console__toolbar {
  padding: 0.8rem 1rem;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-console__toolbar span,
.hero-console__tags span {
  min-height: 32px;
  padding: 0 0.8rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-console__toolbar .is-live {
  background: linear-gradient(135deg, rgba(198, 31, 38, 0.96), rgba(225, 72, 79, 0.9));
  border-color: rgba(225, 72, 79, 0.8);
  color: #fff;
}

.hero-console__head {
  padding: 0.8rem 1rem 0.65rem;
  display: grid;
  grid-template-columns: 110px 52px 92px 1fr 72px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-console__rows {
  padding: 0 0.8rem;
}

.hero-console__row {
  min-height: 48px;
  padding: 0 0.2rem;
  display: grid;
  grid-template-columns: 110px 52px 92px 1fr 72px;
  align-items: center;
  gap: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.68);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.76rem;
}

.hero-console__row strong {
  color: #7ec7ff;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-console__bytes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.32rem;
}

.hero-console__bytes i {
  min-width: 32px;
  min-height: 26px;
  padding: 0 0.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.84);
  font-style: normal;
}

.hero-console__status {
  justify-content: space-between;
  padding: 0.8rem 1rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  font-weight: 700;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

.hero-console__tags {
  padding: 0.8rem 1rem 1rem;
  flex-wrap: wrap;
}

.section-anchor {
  scroll-margin-top: 110px;
}

.section-lead {
  max-width: 520px;
  margin: 0;
  font-size: 1rem;
}

.bench-overview {
  background: linear-gradient(180deg, #fff, #f8f8fa);
}

.overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.overview-copy p + p {
  margin-top: 1rem;
}

.device-shell {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: 26px;
  border: 1px solid rgba(18, 19, 24, 0.08);
  background: linear-gradient(155deg, #14161d 0%, #1d2029 50%, #101116 100%);
  box-shadow: 0 30px 65px rgba(15, 17, 23, 0.18);
}

.device-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 15%, rgba(198, 31, 38, 0.22), transparent 28%);
  pointer-events: none;
}

.device-shell__head,
.analyzer-window__head,
.analyzer-window__toolbar,
.analyzer-window__footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.68);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.device-shell__screen {
  position: relative;
  z-index: 1;
  margin: 1rem 0;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.device-shell__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 44px;
  padding: 0 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.72);
}

.device-shell__row:last-child {
  border-bottom: 0;
}

.device-shell__row strong {
  color: #fff;
}

.device-shell__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.device-shell__stat {
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.device-shell__stat strong {
  display: block;
  color: #fff;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.6rem;
}

.device-shell__stat span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
}

.bench-config .config-grid {
  align-items: stretch;
}

.config-card {
  border-radius: 22px;
  min-height: 100%;
  background: linear-gradient(180deg, #ffffff, #fafafc);
}

.config-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.8rem;
}

.pillars-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0f1116 0%, #191b23 48%, #111318 100%);
}

.pillars-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 22%, rgba(198, 31, 38, 0.14), transparent 28%);
}

.pillars-band .eyebrow,
.pillars-band h2 {
  position: relative;
  z-index: 1;
}

.pillars-band h2 {
  color: #fff;
}

.pillars-grid {
  position: relative;
  z-index: 1;
}

.pillar-card {
  position: relative;
  overflow: hidden;
  padding: 2rem 1.6rem;
  border-radius: 24px;
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.32s ease, border-color 0.32s ease, box-shadow 0.32s ease;
}

.pillar-card h3,
.pillar-card p,
.pillar-card li {
  color: #fff;
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(198, 31, 38, 0.5);
  box-shadow: 0 26px 48px rgba(8, 10, 14, 0.3);
}

.modules-showcase {
  background: linear-gradient(180deg, #fff, #f7f7f9);
}

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

.module-card-pro {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 1.35rem 1.2rem;
  border-radius: 22px;
  background: linear-gradient(160deg, #161820 0%, #202430 45%, #11131a 100%);
  border: 1px solid rgba(17, 20, 28, 0.08);
  box-shadow: 0 16px 32px rgba(16, 18, 26, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.module-card-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(198, 31, 38, 0.3), transparent 34%);
  opacity: 0.9;
}

.module-card-pro:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(16, 18, 26, 0.18);
  border-color: rgba(198, 31, 38, 0.4);
}

.module-card-pro__top,
.module-card-pro__line,
.module-card-pro h3,
.module-card-pro p {
  position: relative;
  z-index: 1;
}

.module-card-pro__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.module-card-pro__code,
.module-card-pro__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 0.62rem;
  border-radius: 999px;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.module-card-pro__code {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
}

.module-card-pro__status {
  background: rgba(198, 31, 38, 0.18);
  color: #fff;
}

.module-card-pro h3 {
  margin-bottom: 0.8rem;
  color: #fff;
  font-size: 1.42rem;
}

.module-card-pro p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.module-card-pro__line {
  width: 100%;
  height: 2px;
  margin-top: 1.4rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(198, 31, 38, 0.95), rgba(225, 72, 79, 0.1));
}

.analyzer-section {
  background: linear-gradient(180deg, #f4f5f8, #ffffff);
}

.analyzer-section__head {
  margin-bottom: 1.8rem;
}

.analyzer-section__head .content-narrow {
  margin-inline: auto;
}

.analyzer-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.analyzer-metrics--top {
  margin-bottom: 1.3rem;
}

.analyzer-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin-bottom: 1.35rem;
}

.analyzer-feature-card {
  padding: 1.15rem 1.1rem;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f9fafc);
  border: 1px solid rgba(17, 20, 28, 0.08);
  box-shadow: 0 16px 30px rgba(16, 18, 26, 0.05);
}

.analyzer-feature-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: rgba(198, 31, 38, 0.08);
  color: var(--color-primary);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analyzer-feature-card h3 {
  margin: 0.8rem 0 0;
  color: #17181d;
  font-size: 1.2rem;
  line-height: 1.1;
}

.analyzer-feature-card p {
  margin: 0.75rem 0 0;
  color: #616778;
  font-size: 0.94rem;
  line-height: 1.65;
}

.analyzer-metric {
  padding: 1rem 0.95rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(17, 20, 28, 0.08);
  box-shadow: 0 14px 28px rgba(16, 18, 26, 0.05);
}

.analyzer-metric strong {
  display: block;
  color: #17181d;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.analyzer-metric span {
  display: block;
  margin-top: 0.24rem;
  color: #656974;
  font-size: 0.84rem;
  line-height: 1.45;
}

.analyzer-app {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(32, 38, 52, 0.12);
  background: #f4f5f9;
  box-shadow: 0 36px 80px rgba(24, 28, 38, 0.14);
}

.analyzer-app__titlebar {
  padding: 0.8rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: linear-gradient(90deg, #1565c0 0%, #1d78d6 100%);
}

.analyzer-app__brand,
.analyzer-app__meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.analyzer-app__brand strong {
  color: #fff;
  font-family: "Open Sans", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.analyzer-app__icon {
  display: grid;
  grid-template-columns: repeat(2, 8px);
  gap: 3px;
}

.analyzer-app__icon i {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 2px;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.analyzer-app__beta,
.analyzer-app__meta span {
  min-height: 24px;
  padding: 0 0.55rem;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.analyzer-app__meta .is-online {
  background: transparent;
  position: relative;
  padding-left: 1rem;
}

.analyzer-app__meta .is-online::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: #7de389;
  box-shadow: 0 0 10px rgba(125, 227, 137, 0.6);
}

.analyzer-app__toolbar,
.analyzer-app__subbar {
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
  background: #eef0f5;
  border-bottom: 1px solid rgba(32, 38, 52, 0.1);
}

.analyzer-app__subbar {
  background: #f8f9fc;
}

.analyzer-app__selects,
.analyzer-app__actions,
.analyzer-app__toggles {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.analyzer-app__selects span,
.analyzer-app__toggles span,
.analyzer-app__actions button,
.analyzer-app__traffic-head span,
.analyzer-app__statusbar span {
  min-height: 32px;
  padding: 0 0.8rem;
  display: inline-flex;
  align-items: center;
  border-radius: 7px;
  background: #fff;
  border: 1px solid rgba(32, 38, 52, 0.1);
  color: #4e5563;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.analyzer-app__actions button,
.analyzer-app__traffic-actions button,
.analyzer-app__send-actions button {
  cursor: pointer;
}

.analyzer-app__actions .is-red,
.analyzer-app__send-actions .is-darkred {
  background: #da2e2e;
  color: #fff;
  border-color: #da2e2e;
}

.analyzer-app__actions .is-darkred {
  background: #b72525;
  color: #fff;
  border-color: #b72525;
}

.analyzer-app__actions .is-slate {
  background: #5f7187;
  color: #fff;
  border-color: #5f7187;
}

.analyzer-app__actions .is-purple {
  background: #7b38c9;
  color: #fff;
  border-color: #7b38c9;
}

.analyzer-app__actions .is-orange {
  background: #e7781a;
  color: #fff;
  border-color: #e7781a;
}

.analyzer-app__actions .is-blue,
.analyzer-app__traffic-actions .is-blue {
  background: #2b78d6;
  color: #fff;
  border-color: #2b78d6;
}

.analyzer-app__actions .is-dark {
  background: #24303c;
  color: #fff;
  border-color: #24303c;
}

.analyzer-app__body {
  display: grid;
  grid-template-columns: 278px minmax(0, 1fr) 320px;
  gap: 0;
  background: #fff;
}

.analyzer-app__panel {
  min-width: 0;
  min-height: 100%;
}

.analyzer-app__panel--filter {
  border-right: 1px solid rgba(32, 38, 52, 0.1);
  background: #fcfcfe;
}

.analyzer-app__panel--send {
  border-left: 1px solid rgba(32, 38, 52, 0.1);
  background: #fcfcfe;
}

.analyzer-app__panel-head,
.analyzer-app__traffic-head {
  min-height: 52px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(32, 38, 52, 0.08);
}

.analyzer-app__panel-head strong,
.analyzer-app__traffic-head strong {
  color: #2a2f3d;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.analyzer-app__panel-head div {
  display: flex;
  gap: 0.6rem;
}

.analyzer-app__panel-head div span {
  color: #7d8391;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
}

.analyzer-app__filter-list {
  display: grid;
}

.analyzer-app__filter-list div {
  min-height: 42px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(32, 38, 52, 0.06);
  color: #25628f;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  font-weight: 700;
}

.analyzer-app__filter-list div::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 0.65rem;
  border-radius: 999px;
  background: #2b78d6;
  box-shadow: 0 0 0 2px rgba(43, 120, 214, 0.16);
}

.analyzer-app__filter-list div span {
  margin-right: auto;
}

.analyzer-app__filter-list em {
  color: #979dad;
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 400;
}

.analyzer-app__filter-count {
  min-height: 34px;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  color: #8f96a5;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analyzer-app__panel--traffic {
  background: #fbfcfe;
}

.analyzer-app__traffic-actions {
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.analyzer-app__traffic-actions .is-green,
.analyzer-app__send-actions .is-green {
  background: #3f9d4a;
  color: #fff;
  border: 1px solid #3f9d4a;
}

.analyzer-app__traffic-head div {
  display: flex;
  gap: 0.4rem;
}

.analyzer-app__table-head,
.analyzer-app__row {
  display: grid;
  grid-template-columns: 104px 28px 28px 40px 108px 44px minmax(220px, 1fr) 78px 82px;
  gap: 0.55rem;
  align-items: center;
}

.analyzer-app__table-head {
  min-height: 42px;
  padding: 0 1rem;
  border-top: 1px solid rgba(32, 38, 52, 0.06);
  border-bottom: 1px solid rgba(32, 38, 52, 0.08);
  color: #8b92a1;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analyzer-app__rows {
  display: grid;
}

.analyzer-app__row {
  min-height: 46px;
  padding: 0 1rem;
  color: #6b7281;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.78rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(32, 38, 52, 0.05);
}

.analyzer-app__row span:nth-child(5) {
  color: #22749f;
}

.analyzer-app__row strong {
  color: #626977;
  text-align: right;
}

.analyzer-app__row em {
  color: #9da5b4;
  font-style: normal;
  text-align: right;
}

.analyzer-app__row.is-active {
  background: rgba(66, 146, 222, 0.12);
}

.analyzer-app__bytes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
}

.analyzer-app__bytes i {
  min-width: 32px;
  min-height: 26px;
  padding: 0 0.3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #f4f6fb;
  border: 1px solid rgba(32, 38, 52, 0.09);
  color: #5b6271;
  font-style: normal;
}

.analyzer-app__bytes i.is-red {
  background: #d93a3a;
  border-color: #d93a3a;
  color: #fff;
}

.analyzer-app__statusbar {
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  border-top: 1px solid rgba(32, 38, 52, 0.08);
  background: #f5f6fa;
}

.analyzer-app__send-block {
  margin: 1rem;
  padding: 1rem;
  border-radius: 14px;
  background: #fbfbfd;
  border: 1px solid rgba(32, 38, 52, 0.08);
}

.analyzer-app__send-block--secondary {
  margin-top: 0;
}

.analyzer-app__send-block > span {
  display: block;
  margin-bottom: 0.8rem;
  color: #6f7685;
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
}

.analyzer-app__send-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  margin-top: 0.7rem;
  color: #6a7180;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
}

.analyzer-app__send-meta em {
  font-style: normal;
  color: #2a2f3d;
}

.analyzer-app__send-inline {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.analyzer-app__inline-field {
  min-height: 56px;
  padding: 0.65rem 0.7rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(32, 38, 52, 0.09);
}

.analyzer-app__inline-field strong,
.analyzer-app__inline-field em {
  display: block;
}

.analyzer-app__inline-field strong {
  color: #8a92a1;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.analyzer-app__inline-field em {
  margin-top: 0.4rem;
  color: #24303c;
  font-style: normal;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 0.82rem;
  font-weight: 700;
}

.analyzer-app__byte-grid {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0.35rem;
}

.analyzer-app__byte-grid i {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(32, 38, 52, 0.12);
  color: #4a5160;
  font-style: normal;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.analyzer-app__range {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.45rem;
  align-items: center;
  color: #969dad;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
}

.analyzer-app__range div {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2b78d6 0%, #5ea1ee 100%);
}

.analyzer-app__send-actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.55rem;
}

.analyzer-app__send-actions button {
  flex: 1 1 0;
  min-height: 38px;
  border-radius: 8px;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.analyzer-app__send-target {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.3rem;
}

.analyzer-app__send-target span {
  color: #5a6270;
  font-family: "Rajdhani", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
}

.analyzer-app__send-target em {
  color: #467cce;
  font-style: italic;
  font-size: 0.82rem;
}

.contact-landing .btn--ghost,
.contact-landing .btn--ghost:visited {
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.contact-landing .btn--ghost:hover {
  color: var(--color-primary) !important;
  border-color: #fff;
  background: #fff;
}

.contact-card strong {
  color: #fff;
  font-size: 1rem;
}

.contact-card a,
.contact-card strong {
  color: #fff;
  text-decoration: none;
}

.contact-card a:hover {
  color: #fff;
  opacity: 0.85;
}

.compatibility-section {
  background: linear-gradient(180deg, #fff, #f8f8fa);
}

.compat-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.compat-stats div {
  min-width: 110px;
  padding: 0.9rem 1rem;
  border-radius: 18px;
  border: 1px solid rgba(17, 20, 28, 0.08);
  background: #fff;
  box-shadow: 0 12px 26px rgba(16, 18, 26, 0.06);
}

.compat-stats strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.45rem;
}

.compat-stats span {
  color: var(--color-text-secondary);
  font-size: 0.88rem;
}

.brand-cloud {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.brand-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 1rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(17, 20, 28, 0.08);
  box-shadow: 0 10px 18px rgba(16, 18, 26, 0.05);
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-cloud span:hover {
  border-color: rgba(198, 31, 38, 0.32);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.specs-premium {
  background: linear-gradient(180deg, #f4f4f6, #ffffff 30%, #f7f7f9 100%);
}

.specs-premium__head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.2rem;
}

.specs-premium__lead {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.8;
}

.specs-premium__board {
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff, #fbfbfc);
  border: 1px solid rgba(18, 19, 24, 0.08);
  box-shadow: 0 24px 55px rgba(18, 20, 28, 0.08);
}

.specs-premium__kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 0.5rem 0.35rem 1rem;
  border-bottom: 1px solid rgba(18, 19, 24, 0.08);
}

.specs-premium__kicker span,
.spec-sheet__eyebrow {
  color: var(--color-primary);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.specs-premium__kicker strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.spec-sheet {
  padding: 1.45rem 1.35rem;
  min-height: 100%;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff, #fafafc);
  border: 1px solid rgba(18, 19, 24, 0.08);
}

.spec-sheet h3 {
  margin: 0.7rem 0 1rem;
  font-size: 1.55rem;
  color: #17181d;
}

.spec-sheet__rows {
  display: grid;
  gap: 0;
}

.spec-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  min-height: 52px;
  border-top: 1px solid rgba(18, 19, 24, 0.08);
}

.spec-row span {
  color: #555865;
  font-size: 0.98rem;
}

.spec-row strong {
  color: #17181d;
  font-family: "Rajdhani", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: right;
}

.contact-landing {
  background: linear-gradient(180deg, #ffffff, #f7f7f9);
}

.contact-landing__wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 28px;
  background: linear-gradient(135deg, #14161d 0%, #1c1f28 45%, #101217 100%);
  box-shadow: 0 32px 70px rgba(18, 20, 28, 0.18);
}

.contact-landing__wrap h2,
.contact-landing__wrap p,
.contact-landing__wrap .eyebrow {
  color: #fff;
}

.contact-cards {
  display: grid;
  gap: 0.85rem;
}

.contact-card {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card span {
  display: block;
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.64);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-card strong {
  color: #fff;
  font-size: 1rem;
}

@media (max-width: 1320px) {
  .module-grid-pro {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .hero__layout,
  .overview-grid,
  .contact-landing__wrap {
    grid-template-columns: 1fr;
  }

  .hero__layout {
    min-height: auto;
  }

  .hero__visual {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .hero-carousel__viewport {
    min-height: 560px;
  }

  .hero__content,
  .hero__copy-card {
    max-width: none;
  }

  .analyzer-app__body {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .analyzer-app__panel--send {
    grid-column: 1 / -1;
    border-left: 0;
    border-top: 1px solid rgba(32, 38, 52, 0.1);
  }

  .menu--sections a {
    padding-inline: 0.75rem;
    font-size: 0.8rem;
  }

  .specs-premium__head {
    grid-template-columns: 1fr;
    align-items: start;
  }

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

@media (max-width: 980px) {
  .grid--4.config-grid,
  .module-grid-pro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compat-stats {
    width: 100%;
  }

  .hero__statline,
  .analyzer-metrics,
  .analyzer-feature-grid,
  .analyzer-app__body,
  .analyzer-app__send-inline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero__visual {
    min-height: auto;
  }

  .hero__copy-card {
    padding: 0;
  }

  .hero__copy-card h1 {
    max-width: 12ch;
    font-size: clamp(2.7rem, 11vw, 4.15rem);
  }

  .hero-carousel {
    width: 100%;
  }

  .hero-carousel__viewport {
    min-height: 520px;
  }

  .hero__statline,
  .analyzer-metrics,
  .device-shell__stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-media-slide {
    padding: 1rem;
    border-radius: 24px;
  }

  .hero-media-slide__glass--main {
    inset: 1rem 1rem 5rem 1rem;
  }

  .hero-media-slide__glass--floating {
    width: min(48%, 190px);
  }

  .hero-badge {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 0.9rem;
  }

  .grid--3.pillars-grid {
    grid-template-columns: 1fr;
  }

  .specs-premium__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .grid--4.config-grid,
  .module-grid-pro,
  .hero__statline,
  .analyzer-metrics,
  .analyzer-feature-grid,
  .analyzer-app__send-inline,
  .device-shell__stats {
    grid-template-columns: 1fr;
  }

  .hero__layout {
    padding-block: 2rem 1rem;
  }

  .hero__points li {
    font-size: 0.98rem;
  }

  .hero__metric {
    padding: 0.9rem;
  }

  .hero-carousel__nav,
  .analyzer-app__titlebar,
  .analyzer-app__brand,
  .analyzer-app__meta,
  .analyzer-app__toolbar,
  .analyzer-app__subbar {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }

  .analyzer-app__body {
    grid-template-columns: 1fr;
  }

  .analyzer-app__panel--filter,
  .analyzer-app__panel--send {
    border: 0;
    border-top: 1px solid rgba(32, 38, 52, 0.1);
  }

  .analyzer-app__table-head {
    display: none;
  }

  .analyzer-app__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.75rem;
  }

  .analyzer-app__row strong,
  .analyzer-app__row em {
    text-align: left;
  }

  .hero-carousel__viewport {
    min-height: 500px;
  }

  .hero-media-slide__glass--main {
    inset: 0.85rem 0.85rem 7.2rem 0.85rem;
    padding: 1rem;
  }

  .hero-media-slide__glass--floating {
    top: auto;
    right: 0.85rem;
    bottom: 4.8rem;
    width: 180px;
  }

  .hero-media-slide__glass--detail {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
    width: auto;
  }

  .hero-media-slide__chips {
    grid-template-columns: 1fr;
  }

  .hero-carousel__meta {
    width: 100%;
    justify-content: space-between;
  }

  .analyzer-app__send-actions {
    flex-direction: column;
  }

  .compat-stats div {
    min-width: 0;
    flex: 1 1 100%;
  }

  .site-header__actions {
    gap: 0.45rem;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
  }

  .header-cta {
    min-width: 0;
    padding-inline: 1rem;
    font-size: 0.94rem;
  }

  .spec-row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
    padding: 0.65rem 0;
  }

  .spec-row strong {
    text-align: left;
  }
}

.comments-area {
  margin-top: 2rem;
}

.comment-list {
  margin: 0 0 1.2rem;
  padding: 0;
  list-style: none;
}

.comment-list li {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 1rem;
}

.comment-list li + li {
  margin-top: 0.7rem;
}

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

.reveal-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hamburger {
    display: inline-block;
  }

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

  /* Keep the language switcher visible on mobile — collapse to
     an icon-only pill so it fits next to the hamburger. */
  .site-header__actions .lang-switcher {
    display: inline-flex;
    margin-right: 0.25rem;
  }
  .site-header__actions .lang-switcher__trigger {
    height: 40px;
    padding: 0 0.6rem;
    gap: 0.3rem;
  }
  .site-header__actions .lang-switcher__caret {
    display: none;
  }
}

@media (max-width: 480px) {
  .site-header__actions .lang-switcher__trigger {
    padding: 0 0.55rem;
  }
  .site-header__actions .lang-switcher__code {
    font-size: 0.78rem;
  }
}

@media (max-width: 900px) {
  .tile-grid--features,
  .tile-grid--modules {
    grid-template-columns: 1fr;
  }

  .tile-grid--features {
    gap: 1rem;
    border: 0;
    background: transparent;
  }

  .tile--feature {
    border: 1px solid var(--color-border);
    border-radius: 14px;
  }

  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }

  .section-header--inline {
    align-items: flex-start;
  }

  .search-form {
    flex-direction: column;
  }

  .card:hover,
  .overlay-banner:hover,
  .tile--module:hover {
    transform: none;
  }

  .tile-module__hover {
    position: static;
    transform: none;
    min-height: auto;
  }
}

@media (max-width: 600px) {
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn::before,
  .card,
  .overlay-banner,
  .article-card__thumb img,
  .reveal-up {
    transition: none !important;
  }

  .reveal-up {
    opacity: 1;
    transform: none;
  }
}
