:root {
  --page-bg: #06080d;
  --strip-bg: #151821;
  --nav-bg: #0d111a;
  --nav-border: #242a36;
  --text: #f5f7fb;
  --muted: #b9c0cf;
  --accent: #35dd51;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page-bg);
  color: var(--text);
  font-family: "Assistant", Arial, sans-serif;
}

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

.top-strip {
  width: 100%;
  min-height: 24px;
  background: var(--strip-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-strip__inner {
  width: 85%;
  min-height: 24px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  direction: ltr;
}

.top-strip__icon,
.top-strip__auth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(235, 242, 255, 0.76);
  text-decoration: none;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.top-strip__icon {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.66rem;
  font-weight: 700;
  line-height: 1;
}

.top-strip__auth {
  margin-left: 8px;
  direction: rtl;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.top-strip__icon:hover,
.top-strip__auth:hover,
.top-strip__icon:focus-visible,
.top-strip__auth:focus-visible {
  color: #ffffff;
  border-color: rgba(53, 221, 81, 0.42);
  background: rgba(53, 221, 81, 0.08);
  transform: translateY(-1px);
}

.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border);
  overflow: visible;
}

.site-header__inner {
  position: relative;
  z-index: 101;
  width: 85%;
  min-height: 76px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  direction: ltr;
}

.header-primary {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
  direction: rtl;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  z-index: 3;
}

.brand__logo {
  width: auto;
  height: 104px;
  object-fit: contain;
  margin-block: -24px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.42));
}

.main-nav {
  display: flex;
  align-items: center;
  justify-self: auto;
  gap: 34px;
  direction: rtl;
  color: rgba(245, 247, 251, 0.86);
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.main-nav a,
.nav-dropdown button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  color: inherit;
  font: inherit;
  background: none;
  border: 0;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.main-nav a::before,
.nav-dropdown button::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(53, 221, 81, 0));
  transition: width 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.nav-dropdown button:hover,
.nav-dropdown button:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.main-nav a:hover::before,
.main-nav a:focus-visible::before,
.nav-dropdown button:hover::before,
.nav-dropdown button:focus-visible::before {
  width: 100%;
}

.nav-dropdown {
  position: relative;
  z-index: 120;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  right: -18px;
  left: -18px;
  top: 100%;
  height: 18px;
}

.nav-dropdown button::after {
  content: "⌄";
  margin-right: 8px;
  color: var(--accent);
}

.nav-dropdown button::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 2px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.9;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-dropdown:hover button::after,
.nav-dropdown:focus-within button::after {
  transform: rotate(225deg) translateY(-1px);
  opacity: 1;
}

.nav-dropdown__menu {
  position: absolute;
  z-index: 200;
  top: calc(100% + 10px);
  right: 0;
  min-width: 220px;
  padding: 12px;
  display: none;
  border: 1px solid var(--nav-border);
  border-radius: 14px;
  background: #101621;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.32);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  display: grid;
  gap: 6px;
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
}

.nav-dropdown__menu a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.header-actions {
  justify-self: start;
  grid-column: 1;
  grid-row: 1;
}

.demo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid rgba(53, 221, 81, 0.42);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(53, 221, 81, 0.18), rgba(5, 132, 107, 0.08));
  color: #f7fff8;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(53, 221, 81, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  cursor: pointer;
}

.demo-button:hover,
.demo-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(98, 237, 132, 0.72);
  box-shadow: 0 0 26px rgba(53, 221, 81, 0.28);
}

.green-divider {
  position: relative;
  z-index: 20;
  width: 100%;
  height: 3px;
  background:
    linear-gradient(
      90deg,
      rgba(5, 132, 107, 0) 0%,
      rgba(5, 132, 107, 0.55) 22%,
      rgba(53, 221, 81, 0.95) 50%,
      rgba(5, 132, 107, 0.55) 78%,
      rgba(5, 132, 107, 0) 100%
    );
  box-shadow:
    0 0 10px rgba(53, 221, 81, 0.46),
    0 0 22px rgba(5, 132, 107, 0.32);
}

body.drawer-open {
  overflow: hidden;
}

.demo-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}

.demo-drawer.is-open {
  pointer-events: auto;
}

.demo-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 10, 0);
  backdrop-filter: blur(0);
  transition: background 240ms ease, backdrop-filter 240ms ease;
}

.demo-drawer.is-open .demo-drawer__overlay {
  background: rgba(2, 5, 10, 0.68);
  backdrop-filter: blur(8px);
}

.demo-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(460px, 92vw);
  height: 100%;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(53, 221, 81, 0.72) rgba(5, 8, 13, 0.9);
  padding: 74px 18px 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(53, 221, 81, 0.16), transparent 32%),
    linear-gradient(180deg, #111827 0%, #05070b 100%);
  border-left: 1px solid rgba(53, 221, 81, 0.2);
  box-shadow: -28px 0 80px rgba(0, 0, 0, 0.45);
  transform: translateX(105%);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.demo-drawer__panel::-webkit-scrollbar {
  width: 9px;
}

.demo-drawer__panel::-webkit-scrollbar-track {
  background: rgba(5, 8, 13, 0.92);
}

.demo-drawer__panel::-webkit-scrollbar-thumb {
  border: 2px solid rgba(5, 8, 13, 0.92);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(53, 221, 81, 0.95), rgba(5, 132, 107, 0.86));
}

.demo-drawer__panel::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(98, 237, 132, 1), rgba(53, 221, 81, 0.95));
}

.demo-drawer.is-open .demo-drawer__panel {
  transform: translateX(0);
}

.demo-drawer__close {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(5, 8, 13, 0.78);
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
}

.demo-drawer__image {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(53, 221, 81, 0.24);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
}

.demo-drawer__image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
}

.demo-drawer__content {
  padding: 28px 6px 10px;
}

.demo-drawer__content > span {
  color: var(--accent);
  font-weight: 900;
}

.demo-drawer__content h2 {
  margin: 8px 0 10px;
  color: #ffffff;
  font-size: 2.1rem;
  line-height: 1.08;
}

.demo-drawer__content p {
  margin: 0;
  color: rgba(185, 192, 207, 0.9);
  line-height: 1.75;
}

.demo-drawer__form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.demo-drawer__form label {
  display: grid;
  gap: 7px;
  color: rgba(245, 247, 251, 0.78);
  font-weight: 700;
}

.demo-drawer__form input,
.demo-drawer__form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 13px 14px;
  background: rgba(3, 7, 12, 0.78);
  color: #ffffff;
  font: inherit;
  outline: none;
}

.demo-drawer__form input:focus,
.demo-drawer__form select:focus {
  border-color: rgba(53, 221, 81, 0.56);
  box-shadow: 0 0 0 4px rgba(53, 221, 81, 0.12);
}

.demo-drawer__form button {
  grid-column: 1 / -1;
  margin-top: 6px;
  padding: 14px 18px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent), #15a778);
  color: #041007;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.hero-section {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 660px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 22%, rgba(53, 221, 81, 0.18), transparent 20%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #101723 0%, #071018 44%, #03080d 100%);
  background-size: auto, 34px 34px, auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(53, 221, 81, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(6, 8, 13, 0) 0%, rgba(6, 8, 13, 0.72) 72%, #05070b 100%);
  pointer-events: none;
}

.hero-section__effects {
  position: absolute;
  top: 110px;
  left: 50%;
  width: 520px;
  height: 520px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(53, 221, 81, 0.08);
  box-shadow:
    0 0 120px rgba(53, 221, 81, 0.14),
    inset 0 0 90px rgba(53, 221, 81, 0.05);
  animation: pulse-orb 6s ease-in-out infinite;
}

.hero-section__effects::before,
.hero-section__effects::after {
  content: "";
  position: absolute;
  inset: 72px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-section__effects::after {
  inset: 148px;
  border-color: rgba(53, 221, 81, 0.1);
}

.hero-section__content {
  position: relative;
  z-index: 2;
  width: min(100%, 680px);
  justify-self: left;
  margin: 0;
  padding-top: 0;
  text-align: right;
}

.hero-section__layout {
  position: relative;
  z-index: 2;
  width: 85%;
  min-height: 660px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(420px, 680px) minmax(360px, 560px);
  justify-content: center;
  align-items: center;
  gap: clamp(12px, 1.6vw, 28px);
}

.hero-section__content h1 {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.6vw, 3.45rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  text-shadow: 0 16px 60px rgba(0, 0, 0, 0.56);
  animation: hero-title-in 900ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-section__subtitle {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(185, 192, 207, 0.92);
  font-size: clamp(0.84rem, 0.98vw, 0.98rem);
  font-weight: 500;
  line-height: 1.85;
  animation: hero-title-in 900ms 90ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-section__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(14px, 2.4vw, 34px);
  margin-top: 34px;
  animation: hero-actions-in 900ms 180ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.hero-button {
  min-width: 136px;
  padding: 13px 26px;
  border-radius: 15px;
  border: 1px solid rgba(53, 221, 81, 0.72);
  background:
    linear-gradient(180deg, rgba(13, 17, 26, 0.86), rgba(5, 8, 13, 0.96)),
    radial-gradient(circle at 50% 0%, rgba(53, 221, 81, 0.26), transparent 70%);
  color: #f8fff9;
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow:
    0 0 18px rgba(53, 221, 81, 0.36),
    inset 0 0 22px rgba(53, 221, 81, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hero-button:hover,
.hero-button:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(116, 255, 142, 0.92);
  box-shadow:
    0 0 26px rgba(53, 221, 81, 0.5),
    0 18px 40px rgba(0, 0, 0, 0.34),
    inset 0 0 24px rgba(53, 221, 81, 0.12);
}

.browser-preview {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 610px;
  margin: 0;
  overflow: hidden;
  justify-self: right;
  border-radius: 28px;
  border: 1px solid rgba(53, 221, 81, 0.22);
  background: #03070c;
  box-shadow:
    0 -12px 80px rgba(53, 221, 81, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 40px 80px rgba(0, 0, 0, 0.42);
  animation: browser-in 1000ms 340ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.browser-preview::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 90px rgba(53, 221, 81, 0.1);
  pointer-events: none;
}

.browser-preview img {
  width: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center top;
}

.comparison-section,
.platform-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 96px 7.5%;
  background:
    radial-gradient(circle at 50% 0%, rgba(53, 221, 81, 0.08), transparent 34%),
    linear-gradient(180deg, #05080d 0%, #071018 100%);
}

.comparison-section {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: #05070b;
}

.section-kicker {
  display: table;
  margin: 0 auto 14px;
  padding: 8px 16px;
  border: 1px solid rgba(53, 221, 81, 0.28);
  border-radius: 999px;
  background: rgba(53, 221, 81, 0.07);
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.comparison-section h2,
.platform-section h2 {
  max-width: 820px;
  margin: 0 auto 48px;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.comparison-track {
  position: relative;
  width: min(100%, 1480px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 22px;
  align-items: stretch;
}

.comparison-card {
  position: relative;
  min-height: 520px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(16, 23, 34, 0.9), rgba(7, 10, 15, 0.96));
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.32);
  animation: section-rise 850ms ease both;
}

.comparison-card--risk {
  border-color: rgba(255, 84, 84, 0.24);
}

.comparison-card--safe {
  border-color: rgba(53, 221, 81, 0.34);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.34),
    0 0 70px rgba(53, 221, 81, 0.08);
  animation-delay: 130ms;
}

.comparison-card__label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.comparison-card--risk .comparison-card__label {
  color: #ff9a9a;
  background: rgba(255, 84, 84, 0.08);
}

.comparison-card--safe .comparison-card__label {
  color: #96ffab;
  background: rgba(53, 221, 81, 0.1);
}

.comparison-card h3 {
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(1.45rem, 1.8vw, 2rem);
  line-height: 1.25;
}

.comparison-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-card li {
  position: relative;
  padding-right: 28px;
  color: rgba(245, 247, 251, 0.78);
  line-height: 1.55;
}

.comparison-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 84, 84, 0.82);
  box-shadow: 0 0 16px rgba(255, 84, 84, 0.42);
}

.comparison-card--safe li::before {
  background: var(--accent);
  box-shadow: 0 0 16px rgba(53, 221, 81, 0.5);
}

.comparison-divider {
  display: grid;
  place-items: center;
  min-width: 92px;
}

.comparison-divider span {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(53, 221, 81, 0.42);
  background: radial-gradient(circle, rgba(53, 221, 81, 0.18), rgba(6, 8, 13, 0.94));
  color: #ffffff;
  font-family: Arial, sans-serif;
  font-weight: 800;
  box-shadow: 0 0 40px rgba(53, 221, 81, 0.22);
  animation: soft-float 4s ease-in-out infinite;
}

.platform-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.92fr) minmax(440px, 1fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.platform-section__visual {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid rgba(53, 221, 81, 0.24);
  background: #05080d;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    0 0 70px rgba(53, 221, 81, 0.1);
  animation: section-rise 900ms ease both;
}

.platform-section__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(5, 8, 13, 0.76) 100%);
  pointer-events: none;
}

.platform-section__visual img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
}

.platform-section__content {
  animation: section-rise 900ms 120ms ease both;
}

.platform-section__content .section-kicker {
  margin-right: 0;
  margin-left: auto;
}

.platform-section__content h2 {
  margin: 0 0 24px;
  text-align: right;
}

.platform-section__content p {
  max-width: 760px;
  margin: 0 0 18px;
  color: rgba(185, 192, 207, 0.9);
  font-size: 1.05rem;
  line-height: 1.9;
}

.platform-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.platform-points span {
  padding: 12px 18px;
  border: 1px solid rgba(53, 221, 81, 0.24);
  border-radius: 999px;
  background: rgba(53, 221, 81, 0.08);
  color: #eaffee;
  font-weight: 800;
}

.contact-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 460px;
  padding: 54px 10%;
  display: grid;
  grid-template-columns: minmax(380px, 520px) minmax(300px, 430px);
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.5vw, 42px);
  background:
    radial-gradient(circle at 18% 20%, rgba(53, 221, 81, 0.14), transparent 26%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, #101723 0%, #071018 48%, #03080d 100%);
  background-size: auto, 34px 34px, auto;
}

.contact-hero__glow {
  position: absolute;
  inset: 12% auto auto 8%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 221, 81, 0.14), transparent 68%);
  filter: blur(8px);
  animation: pulse-orb 7s ease-in-out infinite;
}

.contact-hero__content,
.contact-hero__image {
  position: relative;
  z-index: 2;
}

.contact-hero__content .section-kicker {
  margin-right: 0;
  margin-left: auto;
}

.contact-hero h1 {
  max-width: 560px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.65rem, 2.7vw, 3.15rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.04em;
  animation: hero-title-in 900ms ease both;
}

.contact-hero p {
  max-width: 520px;
  margin: 14px 0 0;
  color: rgba(185, 192, 207, 0.9);
  font-size: 0.95rem;
  line-height: 1.7;
  animation: hero-actions-in 900ms 120ms ease both;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
  animation: hero-actions-in 900ms 210ms ease both;
}

.contact-highlights span {
  padding: 8px 13px;
  border: 1px solid rgba(53, 221, 81, 0.26);
  border-radius: 999px;
  background: rgba(53, 221, 81, 0.08);
  color: #eaffee;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-hero__image {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(53, 221, 81, 0.26);
  background: #05080d;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.36),
    0 0 54px rgba(53, 221, 81, 0.1);
  animation: browser-in 1000ms 220ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.contact-hero__image img {
  width: 100%;
  min-height: 300px;
  max-height: 360px;
  object-fit: cover;
  object-position: center;
}

.contact-panel {
  width: 100%;
  padding: 90px 7.5%;
  display: grid;
  grid-template-columns: minmax(420px, 1.1fr) minmax(300px, 0.75fr);
  gap: clamp(34px, 5vw, 80px);
  align-items: start;
  background: #05070b;
}

.contact-form,
.contact-cards article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(17, 24, 35, 0.92), rgba(7, 10, 15, 0.96));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
}

.contact-form {
  padding: 34px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  border-radius: 34px;
}

.form-heading {
  grid-column: 1 / -1;
  margin-bottom: 8px;
}

.form-heading span {
  color: var(--accent);
  font-weight: 800;
}

.form-heading h2 {
  margin: 8px 0 0;
  color: #ffffff;
  font-size: clamp(1.7rem, 2.4vw, 2.7rem);
  line-height: 1.12;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(245, 247, 251, 0.78);
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 14px 15px;
  background: rgba(3, 7, 12, 0.78);
  color: #ffffff;
  font: inherit;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(53, 221, 81, 0.56);
  box-shadow: 0 0 0 4px rgba(53, 221, 81, 0.12);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form__wide,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form button {
  margin-top: 8px;
  padding: 15px 22px;
  border: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--accent), #15a778);
  color: #041007;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(53, 221, 81, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(53, 221, 81, 0.26);
}

.contact-cards {
  display: grid;
  gap: 18px;
}

.contact-cards article {
  padding: 26px;
  border-radius: 26px;
  animation: section-rise 850ms ease both;
}

.contact-cards article:nth-child(2) {
  animation-delay: 120ms;
}

.contact-cards article:nth-child(3) {
  animation-delay: 240ms;
}

.contact-cards span {
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.contact-cards h3 {
  margin: 10px 0 8px;
  color: #ffffff;
  font-size: 1.35rem;
}

.contact-cards p {
  margin: 0;
  color: rgba(185, 192, 207, 0.88);
  line-height: 1.75;
}

.contact-cards a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--accent);
  font-weight: 700;
  direction: ltr;
}

.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 58px;
  background:
    radial-gradient(circle at 62% 16%, rgba(53, 221, 81, 0.14), transparent 32%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #101723 0%, #05070b 100%);
  background-size: auto, 34px 34px, auto;
}

.blog-hero__layout {
  width: 85%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 420px);
  gap: 26px;
  align-items: start;
}

.blog-hero__intro {
  display: grid;
  align-content: start;
  justify-items: start;
}

.blog-hero .section-kicker {
  margin-right: 0;
  margin-left: auto;
}

.blog-hero h1 {
  max-width: 840px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.3vw, 3.55rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  animation: hero-title-in 900ms ease both;
  text-align: right;
}

.blog-hero p {
  max-width: 700px;
  margin: 18px 0 0;
  color: rgba(185, 192, 207, 0.9);
  font-size: 1rem;
  line-height: 1.85;
  animation: hero-actions-in 900ms 120ms ease both;
  text-align: right;
}

.blog-category-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 24px;
}

.blog-category-filter button {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(245, 247, 251, 0.82);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.blog-category-filter button:hover,
.blog-category-filter button:focus-visible,
.blog-category-filter button.is-active {
  color: #f8fff9;
  border-color: rgba(53, 221, 81, 0.34);
  background: rgba(53, 221, 81, 0.1);
  box-shadow: 0 0 22px rgba(53, 221, 81, 0.12);
  transform: translateY(-2px);
}

.blog-hero__featured {
  align-self: stretch;
}

.blog-featured-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(53, 221, 81, 0.2);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(53, 221, 81, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(17, 24, 35, 0.94), rgba(7, 10, 15, 0.98));
  box-shadow: 0 30px 78px rgba(0, 0, 0, 0.34);
  animation: section-rise 900ms 120ms ease both;
}

.blog-featured-card__image {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-featured-card__image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
}

.blog-featured-card__body {
  position: relative;
  z-index: 2;
}

.blog-featured-card__label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(53, 221, 81, 0.12);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 800;
}

.blog-featured-card h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.36rem, 1.6vw, 1.8rem);
  line-height: 1.24;
}

.blog-featured-card p {
  margin: 0;
  color: rgba(185, 192, 207, 0.88);
  font-size: 0.95rem;
  line-height: 1.72;
}

.blog-grid {
  width: 85%;
  margin: 0 auto;
  padding: 36px 0 88px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  background: #05070b;
}

.blog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(17, 24, 35, 0.92), rgba(7, 10, 15, 0.98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  animation: section-rise 850ms ease both;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  border-color: rgba(53, 221, 81, 0.34);
  box-shadow: 0 28px 76px rgba(0, 0, 0, 0.4), 0 0 30px rgba(53, 221, 81, 0.12);
}

.blog-card__hit-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.blog-card:nth-child(2) {
  animation-delay: 100ms;
}

.blog-card:nth-child(3) {
  animation-delay: 180ms;
}

.blog-card:nth-child(4) {
  animation-delay: 260ms;
}

.blog-card:nth-child(5) {
  animation-delay: 340ms;
}

.blog-card:nth-child(6) {
  animation-delay: 420ms;
}

.blog-card--featured {
  grid-column: span 2;
}

.blog-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  object-position: center;
}

.blog-card--featured img {
  height: 170px;
  min-height: 0;
}

.blog-card__body {
  padding: 20px;
}

.blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
  color: rgba(185, 192, 207, 0.78);
  font-size: 0.8rem;
  font-weight: 700;
}

.blog-card__meta span {
  color: var(--accent);
}

.blog-card h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.12rem, 1.25vw, 1.42rem);
  line-height: 1.25;
}

.blog-card p {
  margin: 0;
  color: rgba(185, 192, 207, 0.9);
  font-size: 0.9rem;
  line-height: 1.65;
}

.blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.blog-card__tags span {
  padding: 6px 10px;
  border: 1px solid rgba(53, 221, 81, 0.22);
  border-radius: 999px;
  background: rgba(53, 221, 81, 0.07);
  color: rgba(234, 255, 238, 0.92);
  font-size: 0.76rem;
  font-weight: 800;
}

.blog-card__read-more {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 800;
}

.blog-card__read-more:hover,
.blog-card__read-more:focus-visible {
  color: #ffffff;
}

.article-page {
  background: #05070b;
}

.product-page {
  background: #05070b;
  color: #ffffff;
}

.product-page button {
  font: inherit;
}

.product-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 52px 10%;
  display: grid;
  grid-template-columns: minmax(380px, 560px) minmax(340px, 480px);
  justify-content: center;
  gap: clamp(16px, 2.4vw, 38px);
  align-items: center;
  background:
    radial-gradient(circle at 34% 26%, rgba(53, 221, 81, 0.15), transparent 28%),
    radial-gradient(circle at 72% 62%, rgba(5, 132, 107, 0.13), transparent 30%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, #101723 0%, #05070b 78%);
  background-size: auto, auto, 34px 34px, auto;
}

.product-hero::before,
.product-console::before,
.product-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(53, 221, 81, 0.1), transparent 34%);
}

.product-hero__content,
.product-hero__visual,
.product-console__content,
.product-console__image,
.product-cta > * {
  position: relative;
  z-index: 1;
}

.product-hero h1 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.75rem, 2.9vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -0.045em;
  animation: hero-title-in 900ms ease both;
}

.product-beta-badge {
  display: inline-flex;
  margin-top: 18px;
  padding: 9px 14px;
  border: 1px solid rgba(53, 221, 81, 0.32);
  border-radius: 999px;
  background: rgba(53, 221, 81, 0.08);
  color: #eaffee;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 0 28px rgba(53, 221, 81, 0.1);
  animation: hero-actions-in 900ms 80ms ease both;
}

.product-hero p,
.product-section-head p,
.product-split__content p,
.product-console__content p,
.product-cta p {
  color: rgba(201, 209, 224, 0.9);
  line-height: 1.82;
}

.product-hero p {
  max-width: 560px;
  margin: 16px 0 0;
  font-size: 0.96rem;
  line-height: 1.72;
  animation: hero-actions-in 900ms 120ms ease both;
}

.product-hero__actions,
.product-split__content button,
.product-console__content button,
.product-cta button {
  animation: hero-actions-in 900ms 220ms ease both;
}

.product-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.product-hero__actions button,
.product-hero__actions a,
.product-split__content button,
.product-console__content button,
.product-cta button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.product-hero__actions button,
.product-split__content button,
.product-console__content button,
.product-cta button {
  border: 0;
  background: linear-gradient(135deg, var(--accent), #16b57e);
  color: #041007;
  box-shadow: 0 20px 44px rgba(53, 221, 81, 0.22);
}

.product-hero__actions a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}

.product-hero__visual,
.product-split__image,
.product-console__image {
  overflow: hidden;
  border: 1px solid rgba(53, 221, 81, 0.24);
  background: rgba(5, 8, 13, 0.9);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42), 0 0 72px rgba(53, 221, 81, 0.1);
  animation: browser-in 1000ms 240ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.product-hero__visual {
  border-radius: 24px;
}

.product-hero__visual img,
.product-split__image img,
.product-console__image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.product-hero__visual img {
  min-height: 300px;
  max-height: 360px;
}

.product-signal {
  width: 85%;
  margin: 0 auto;
  padding: 54px 0 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.product-signal article,
.product-layer-grid article {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(17, 24, 35, 0.92), rgba(7, 10, 15, 0.96));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.product-signal article {
  padding: 24px;
  border-radius: 24px;
}

.product-signal span,
.product-layer-grid h3,
.product-section-head .section-kicker {
  color: var(--accent);
}

.product-signal span {
  font-weight: 800;
}

.product-signal h2,
.product-layer-grid h3 {
  margin: 10px 0 8px;
}

.product-signal p,
.product-layer-grid p {
  margin: 0;
  color: rgba(201, 209, 224, 0.86);
  line-height: 1.72;
}

.product-split,
.product-console {
  width: 85%;
  margin: 0 auto;
  padding: 72px 0;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 0.92fr);
  gap: clamp(28px, 4vw, 72px);
  align-items: center;
}

.product-split__image,
.product-console__image {
  border-radius: 28px;
}

.product-split__image img,
.product-console__image img {
  min-height: 360px;
}

.product-split__content h2,
.product-section-head h2,
.product-console__content h2,
.product-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.85rem, 3vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.035em;
}

.product-split__content p,
.product-console__content p {
  margin: 18px 0 0;
}

.product-split__content ul {
  margin: 24px 0 28px;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.product-split__content li {
  position: relative;
  padding-right: 24px;
  color: rgba(235, 242, 255, 0.9);
}

.product-split__content li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  right: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(53, 221, 81, 0.55);
}

.product-layers {
  width: 100%;
  padding: 78px 7.5%;
  background:
    radial-gradient(circle at 50% 18%, rgba(53, 221, 81, 0.1), transparent 30%),
    #05070b;
}

.product-section-head {
  max-width: 900px;
  margin: 0 auto 36px;
  text-align: center;
}

.product-section-head p {
  margin: 18px auto 0;
  max-width: 760px;
}

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

.product-layer-grid article {
  min-height: 190px;
  padding: 24px;
  border-radius: 24px;
}

.product-console {
  position: relative;
  overflow: hidden;
  width: 85%;
  padding: 54px;
  border: 1px solid rgba(53, 221, 81, 0.18);
  border-radius: 36px;
  background: linear-gradient(135deg, rgba(16, 23, 35, 0.94), rgba(5, 7, 11, 0.98));
}

.product-console__content button {
  margin-top: 26px;
}

.product-cta {
  position: relative;
  overflow: hidden;
  width: 85%;
  margin: 72px auto 96px;
  padding: 58px;
  border: 1px solid rgba(53, 221, 81, 0.24);
  border-radius: 36px;
  background:
    linear-gradient(120deg, rgba(53, 221, 81, 0.13), transparent 42%),
    linear-gradient(145deg, rgba(17, 24, 35, 0.96), rgba(5, 7, 11, 0.98));
  text-align: center;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.product-cta h2 {
  max-width: 940px;
  margin: 0 auto;
}

.product-cta p {
  max-width: 760px;
  margin: 18px auto 28px;
}

.article-hero {
  padding: 92px 7.5% 56px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 16%, rgba(53, 221, 81, 0.13), transparent 32%),
    linear-gradient(180deg, #101723 0%, #05070b 100%);
}

.article-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent);
  font-weight: 800;
}

.article-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(185, 192, 207, 0.82);
  font-weight: 700;
}

.article-meta span {
  color: var(--accent);
}

.article-hero h1 {
  max-width: 980px;
  margin: 18px auto 0;
  color: #ffffff;
  font-size: clamp(2.1rem, 4vw, 4.3rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.article-hero p {
  max-width: 760px;
  margin: 22px auto 0;
  color: rgba(185, 192, 207, 0.9);
  font-size: 1.08rem;
  line-height: 1.8;
}

.article-cover {
  width: min(85%, 1180px);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(53, 221, 81, 0.2);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.article-cover img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center top;
}

.article-layout {
  width: min(85%, 1180px);
  margin: 56px auto 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: start;
}

.article-content {
  color: rgba(245, 247, 251, 0.84);
  font-size: 1.08rem;
  line-height: 1.95;
}

.article-content h2 {
  margin: 34px 0 12px;
  color: #ffffff;
  font-size: 1.65rem;
}

.article-content p {
  margin: 0 0 18px;
}

.article-content blockquote {
  margin: 34px 0 0;
  padding: 24px;
  border-right: 3px solid var(--accent);
  border-radius: 18px;
  background: rgba(53, 221, 81, 0.07);
  color: #ffffff;
  font-weight: 700;
}

.article-sidebar {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(13, 18, 28, 0.82);
}

.article-sidebar h2 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1rem;
}

.article-sidebar p {
  margin: 0;
  color: rgba(185, 192, 207, 0.9);
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.article-tags span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(53, 221, 81, 0.08);
  color: #eaffee;
  font-size: 0.82rem;
  font-weight: 800;
}

.article-cta {
  display: inline-flex;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #15a778);
  color: #041007;
  font-weight: 900;
}

.support-hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 54px 7.5% 48px;
  display: grid;
  grid-template-columns: minmax(420px, 700px) minmax(260px, 420px);
  justify-content: center;
  gap: clamp(16px, 2vw, 34px);
  align-items: center;
  background:
    radial-gradient(circle at 58% 50%, rgba(53, 221, 81, 0.14), transparent 22%),
    radial-gradient(circle at 18% 20%, rgba(53, 221, 81, 0.08), transparent 25%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
    linear-gradient(135deg, #101723 0%, #05070b 100%);
  background-size: auto, 34px 34px, auto;
}

.support-hero::before {
  content: "";
  position: absolute;
  inset: 14% 7.5% auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(53, 221, 81, 0.42), transparent);
  box-shadow: 0 0 28px rgba(53, 221, 81, 0.28);
}

.support-hero::after {
  content: "";
  position: absolute;
  inset: auto 10% 12%;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(53, 221, 81, 0.1), transparent 70%);
  filter: blur(18px);
}

.support-hero__content .section-kicker,
.support-section-head .section-kicker {
  margin-right: 0;
  margin-left: auto;
}

.support-hero h1,
.support-section-head h2 {
  margin: 0;
  color: #ffffff;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.support-hero h1 {
  max-width: 680px;
  font-size: clamp(1.9rem, 3vw, 3.25rem);
}

.support-hero p,
.support-section-head p {
  max-width: 740px;
  margin: 14px 0 0;
  color: rgba(185, 192, 207, 0.9);
  font-size: 0.98rem;
  line-height: 1.75;
}

.support-search {
  max-width: 560px;
  margin-top: 22px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 8px;
  border: 1px solid rgba(53, 221, 81, 0.24);
  border-radius: 20px;
  background: rgba(5, 8, 13, 0.72);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.28);
}

.support-search input {
  min-width: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  font: inherit;
  padding: 10px 13px;
  outline: none;
}

.support-search button {
  border: 0;
  border-radius: 15px;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--accent), #15a778);
  color: #041007;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.support-hero__image {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  justify-self: start;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(53, 221, 81, 0.22);
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.38),
    0 0 70px rgba(53, 221, 81, 0.1);
}

.support-hero__image img {
  width: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center;
}

.guide-section,
.faq-section {
  padding: 86px 7.5%;
  background: #05070b;
}

.support-section-head {
  max-width: 920px;
  margin-bottom: 38px;
}

.audience-tabs {
  width: min(100%, 720px);
  margin: -10px 0 34px auto;
  padding: 8px;
  display: flex;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(13, 18, 28, 0.72);
}

.audience-tabs button {
  flex: 1;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(245, 247, 251, 0.72);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.audience-tabs button:hover,
.audience-tabs button:focus-visible,
.audience-tabs button.is-active {
  background: linear-gradient(135deg, rgba(53, 221, 81, 0.92), rgba(21, 167, 120, 0.92));
  color: #041007;
  box-shadow: 0 12px 28px rgba(53, 221, 81, 0.18);
}

[data-audience].is-hidden {
  display: none;
}

.support-section-head h2 {
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

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

.guide-card {
  min-height: 270px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(17, 24, 35, 0.92), rgba(7, 10, 15, 0.98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
  animation: section-rise 850ms ease both;
}

.guide-card span {
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.guide-card h3 {
  margin: 14px 0 12px;
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1.25;
}

.guide-card p {
  margin: 0;
  color: rgba(185, 192, 207, 0.88);
  line-height: 1.75;
}

.guide-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--accent);
  font-weight: 800;
}

.faq-section {
  padding-top: 40px;
}

.faq-list {
  display: grid;
  gap: 14px;
  width: min(100%, 980px);
}

.faq-list details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(13, 18, 28, 0.78);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 20px 24px;
  color: #ffffff;
  font-weight: 800;
}

.faq-list details[open] summary {
  color: var(--accent);
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: rgba(185, 192, 207, 0.9);
  line-height: 1.8;
}

.guide-article-hero {
  padding: 82px 7.5% 56px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 14%, rgba(53, 221, 81, 0.14), transparent 30%),
    linear-gradient(180deg, #101723 0%, #05070b 100%);
}

.guide-article-hero a {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 800;
}

.guide-article-hero span {
  display: block;
  color: rgba(185, 192, 207, 0.86);
  font-weight: 800;
}

.guide-article-hero h1 {
  max-width: 900px;
  margin: 14px auto 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.6vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.guide-article-hero p {
  max-width: 700px;
  margin: 18px auto 0;
  color: rgba(185, 192, 207, 0.9);
  font-size: 1.05rem;
  line-height: 1.8;
}

.guide-article-layout {
  width: 85%;
  margin: 0 auto;
  padding: 60px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 60%) minmax(260px, 1fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: start;
  background: #05070b;
}

.guide-article-content {
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  background: rgba(13, 18, 28, 0.72);
  color: rgba(245, 247, 251, 0.86);
  font-size: 1.06rem;
  line-height: 1.95;
}

.guide-article-content h2 {
  margin: 34px 0 12px;
  color: #ffffff;
  font-size: 1.55rem;
}

.guide-article-content h2:first-child {
  margin-top: 0;
}

.guide-article-content p {
  margin: 0 0 18px;
}

.guide-note {
  margin-top: 32px;
  padding: 22px;
  border-right: 3px solid var(--accent);
  border-radius: 18px;
  background: rgba(53, 221, 81, 0.08);
  color: #ffffff;
}

.guide-related {
  position: sticky;
  top: 120px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(17, 24, 35, 0.92), rgba(7, 10, 15, 0.98));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.guide-related h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.2rem;
}

.guide-related a {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(245, 247, 251, 0.82);
  font-weight: 700;
}

.guide-related span {
  color: var(--accent);
  font-family: Arial, sans-serif;
  font-weight: 800;
}

.updates-page,
.release-page {
  background: #05070b;
  color: #ffffff;
}

.updates-hero {
  position: relative;
  overflow: hidden;
  padding: 86px 7.5% 62px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 18%, rgba(53, 221, 81, 0.14), transparent 28%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(135deg, #101723 0%, #05070b 78%);
  background-size: auto, 34px 34px, auto;
}

.updates-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.updates-hero p {
  max-width: 760px;
  margin: 20px auto 0;
  color: rgba(201, 209, 224, 0.9);
  font-size: 1.05rem;
  line-height: 1.78;
}

.release-board,
.customer-updates {
  width: 85%;
  margin: 0 auto;
  padding: 68px 0;
}

.release-board__head {
  max-width: 780px;
  margin-bottom: 28px;
}

.release-board__head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 1.14;
}

.release-board__head p {
  margin: 12px 0 0;
  color: rgba(201, 209, 224, 0.86);
  line-height: 1.75;
}

.release-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid rgba(53, 221, 81, 0.22);
  border-radius: 28px;
  background:
    linear-gradient(120deg, rgba(53, 221, 81, 0.09), transparent 44%),
    linear-gradient(180deg, rgba(17, 24, 35, 0.94), rgba(7, 10, 15, 0.98));
  color: inherit;
  text-decoration: none;
  box-shadow: 0 28px 74px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.release-card:hover,
.release-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(53, 221, 81, 0.46);
  box-shadow: 0 34px 86px rgba(0, 0, 0, 0.42), 0 0 34px rgba(53, 221, 81, 0.13);
}

.release-card__label,
.customer-update-grid article span {
  color: var(--accent);
  font-weight: 800;
}

.release-card h3 {
  margin: 8px 0 8px;
  font-size: clamp(1.5rem, 2.4vw, 2.6rem);
}

.release-card p {
  max-width: 720px;
  margin: 0;
  color: rgba(201, 209, 224, 0.86);
  line-height: 1.7;
}

.release-card__meta {
  min-width: 150px;
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(5, 8, 13, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.release-card__meta time {
  direction: ltr;
  color: #ffffff;
  font-weight: 800;
}

.release-card__meta strong {
  color: rgba(201, 209, 224, 0.86);
}

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

.customer-update-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17, 24, 35, 0.92), rgba(7, 10, 15, 0.98));
  box-shadow: 0 26px 68px rgba(0, 0, 0, 0.28);
}

.customer-update-grid h3 {
  margin: 12px 0 10px;
  color: #ffffff;
  font-size: 1.32rem;
}

.customer-update-grid p {
  margin: 0 0 18px;
  color: rgba(201, 209, 224, 0.86);
  line-height: 1.72;
}

.customer-update-grid time {
  direction: ltr;
  color: rgba(245, 247, 251, 0.62);
  font-weight: 700;
}

.release-detail {
  width: min(760px, 86%);
  margin: 0 auto;
  padding: 86px 0 104px;
}

.release-detail header {
  padding: 34px;
  border: 1px solid rgba(53, 221, 81, 0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 24% 0%, rgba(53, 221, 81, 0.13), transparent 34%),
    linear-gradient(180deg, rgba(17, 24, 35, 0.94), rgba(7, 10, 15, 0.98));
}

.release-detail h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
}

.release-detail header p,
.release-detail section p,
.release-detail li {
  color: rgba(201, 209, 224, 0.88);
  line-height: 1.82;
}

.release-detail section {
  margin-top: 34px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 26px;
  background: rgba(13, 18, 28, 0.72);
}

.release-detail h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: 1.6rem;
}

.release-detail ul {
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.release-detail li {
  position: relative;
  padding-right: 22px;
}

.release-detail li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(53, 221, 81, 0.55);
}

.release-detail button {
  margin-top: 18px;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #16b57e);
  color: #041007;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.not-found-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 6%;
  background:
    radial-gradient(circle at 50% 20%, rgba(53, 221, 81, 0.14), transparent 30%),
    linear-gradient(135deg, #101723 0%, #05070b 78%);
  color: #ffffff;
  text-align: center;
}

.not-found-page section {
  width: min(620px, 100%);
  padding: 44px;
  border: 1px solid rgba(53, 221, 81, 0.22);
  border-radius: 32px;
  background: rgba(7, 10, 15, 0.86);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.4);
}

.not-found-page img {
  width: 150px;
  margin-bottom: 18px;
}

.not-found-page span {
  display: block;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
}

.not-found-page h1 {
  margin: 10px 0 12px;
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.not-found-page p {
  margin: 0 0 26px;
  color: rgba(201, 209, 224, 0.86);
}

.not-found-page a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #16b57e);
  color: #041007;
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  width: 100%;
  padding: 58px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #080c14;
  color: rgba(245, 247, 251, 0.72);
}

.site-footer__inner {
  width: 85%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) repeat(2, minmax(190px, 0.7fr));
  gap: clamp(34px, 6vw, 96px);
  align-items: start;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 800;
}

.site-footer__company p {
  max-width: 430px;
  margin: 0 0 16px;
  color: rgba(245, 247, 251, 0.68);
  font-size: 0.98rem;
  font-weight: 400;
  line-height: 1.8;
}

.site-footer__company a {
  display: inline-flex;
  color: var(--accent);
  font-weight: 800;
  direction: ltr;
}

.site-footer__company a + a {
  margin-top: 10px;
}

.site-footer__links {
  display: grid;
  gap: 11px;
}

.site-footer__links a {
  color: rgba(245, 247, 251, 0.66);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: #ffffff;
  transform: translateX(-3px);
}

.site-footer__bottom {
  width: 85%;
  margin: 46px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.site-footer__bottom a {
  display: inline-flex;
  margin-top: 10px;
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 700;
  direction: ltr;
}

@keyframes hero-title-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes hero-actions-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes browser-in {
  from {
    opacity: 0;
    transform: translateY(70px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes pulse-orb {
  0%,
  100% {
    opacity: 0.62;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 0.95;
    transform: translateX(-50%) scale(1.08);
  }
}

@keyframes section-rise {
  from {
    opacity: 0;
    transform: translateY(38px);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes soft-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 820px) {
  .site-header__inner {
    width: 92%;
    min-height: auto;
    padding: 18px 0;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 18px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 22px;
  }

  .brand {
    justify-content: center;
  }

  .brand__logo {
    height: 64px;
    margin-block: -8px;
  }

  .header-primary {
    grid-column: auto;
    grid-row: auto;
    justify-self: center;
    flex-direction: column;
    gap: 12px;
  }

  .hero-section {
    min-height: auto;
    padding: 82px 0 70px;
  }

  .hero-section__layout {
    width: 90%;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-section__content {
    width: 90%;
    padding-top: 0;
    margin: 0 auto;
    text-align: center;
  }

  .hero-section__content h1 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .hero-section__actions {
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    margin-top: 34px;
  }

  .hero-button {
    width: min(100%, 320px);
  }

  .browser-preview {
    width: 92%;
    margin: 0 auto;
    border-radius: 24px;
  }

  .comparison-section,
  .platform-section {
    padding: 70px 5%;
  }

  .comparison-track,
  .platform-section {
    grid-template-columns: 1fr;
  }

  .comparison-divider {
    min-width: 0;
    min-height: 74px;
  }

  .comparison-card {
    min-height: auto;
    padding: 26px;
  }

  .platform-section__content h2,
  .platform-section__content p {
    text-align: center;
  }

  .platform-section__content .section-kicker {
    margin-right: auto;
  }

  .platform-points {
    justify-content: center;
  }

  .platform-section__visual img {
    min-height: 300px;
  }

  .contact-hero,
  .contact-panel {
    grid-template-columns: 1fr;
    padding: 44px 5%;
  }

  .product-hero,
  .product-split,
  .product-console {
    width: 90%;
    grid-template-columns: 1fr;
  }

  .product-hero {
    padding: 44px 5%;
  }

  .product-hero__visual img,
  .product-split__image img,
  .product-console__image img {
    min-height: 220px;
    max-height: 300px;
  }

  .product-signal,
  .product-layer-grid {
    grid-template-columns: 1fr;
  }

  .product-split,
  .product-console {
    padding: 54px 0;
  }

  .product-console,
  .product-cta {
    width: 90%;
    padding: 34px;
  }

  .product-layers {
    padding: 64px 5%;
  }

  .release-board,
  .customer-updates,
  .release-detail {
    width: 90%;
  }

  .release-card,
  .customer-update-grid {
    grid-template-columns: 1fr;
  }

  .release-card__meta {
    justify-items: start;
  }

  .contact-hero__content,
  .contact-hero__content .section-kicker,
  .contact-hero p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .contact-highlights {
    justify-content: center;
  }

  .contact-hero__image img {
    min-height: 240px;
    max-height: 300px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .blog-hero {
    padding: 72px 0 48px;
  }

  .blog-hero__layout {
    width: 90%;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .blog-hero__intro {
    justify-items: center;
  }

  .blog-hero .section-kicker,
  .blog-hero h1,
  .blog-hero p {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .blog-category-filter {
    justify-content: center;
  }

  .blog-featured-card__image img {
    height: 210px;
  }

  .blog-grid {
    width: 90%;
    padding: 32px 0 78px;
    grid-template-columns: 1fr;
  }

  .blog-card--featured {
    grid-column: auto;
  }

  .blog-card--featured img,
  .blog-card img {
    height: 240px;
    min-height: 0;
  }

  .article-hero {
    padding: 74px 5% 44px;
  }

  .article-cover,
  .article-layout {
    width: 90%;
  }

  .article-layout {
    grid-template-columns: 1fr;
    margin-top: 42px;
    gap: 34px;
  }

  .article-sidebar {
    position: static;
  }

  .support-hero {
    grid-template-columns: 1fr;
    padding: 48px 5%;
  }

  .support-hero__content,
  .support-hero__content .section-kicker,
  .support-section-head,
  .support-section-head .section-kicker {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .support-search {
    grid-template-columns: 1fr;
    margin-right: auto;
    margin-left: auto;
  }

  .support-hero__image img {
    min-height: 240px;
  }

  .guide-section,
  .faq-section {
    padding: 64px 5%;
  }

  .guide-grid {
    grid-template-columns: 1fr;
  }

  .audience-tabs {
    margin-right: auto;
    margin-left: auto;
    flex-direction: column;
    border-radius: 22px;
  }

  .faq-list {
    margin-right: auto;
    margin-left: auto;
  }

  .guide-article-hero {
    padding: 70px 5% 44px;
  }

  .guide-article-layout {
    width: 90%;
    grid-template-columns: 1fr;
    padding: 46px 0 72px;
  }

  .guide-article-content {
    padding: 26px;
  }

  .guide-related {
    position: static;
  }

  .site-footer {
    padding-top: 42px;
  }

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

  .site-footer__inner {
    width: 90%;
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .site-footer__company p {
    margin-right: auto;
    margin-left: auto;
  }

  .site-footer__bottom {
    width: 90%;
    margin-top: 34px;
  }
}

.policy-page,
.legal-page {
  position: relative;
  overflow: hidden;
  padding: 74px 0 96px;
}

.policy-page::before,
.legal-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 24% 12%, rgba(53, 221, 81, 0.16), transparent 24%),
    radial-gradient(circle at 76% 22%, rgba(5, 132, 107, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(6, 8, 13, 0.95), rgba(6, 8, 13, 0.98));
  pointer-events: none;
}

.policy-hero,
.legal-hero {
  position: relative;
  z-index: 1;
  width: min(1120px, 88vw);
  margin: 0 auto 30px;
  padding: 42px 44px;
  border: 1px solid rgba(53, 221, 81, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(13, 17, 26, 0.98), rgba(8, 11, 18, 0.94)),
    radial-gradient(circle at 78% 18%, rgba(53, 221, 81, 0.08), transparent 24%);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.policy-hero h1,
.legal-hero h1 {
  margin: 14px 0 16px;
  max-width: 900px;
  font-size: clamp(2rem, 4.4vw, 3.45rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.policy-hero p,
.legal-hero p {
  margin: 0;
  max-width: 860px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.policy-hero__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
}

.policy-hero__actions button,
.policy-hero__actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 700;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.policy-hero__actions button {
  border: 1px solid rgba(53, 221, 81, 0.5);
  background: linear-gradient(135deg, rgba(53, 221, 81, 0.95), rgba(18, 178, 92, 0.92));
  color: #05110a;
  box-shadow: 0 12px 30px rgba(53, 221, 81, 0.18);
}

.policy-hero__actions a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.policy-hero__actions button:hover,
.policy-hero__actions a:hover,
.policy-hero__actions button:focus-visible,
.policy-hero__actions a:focus-visible {
  transform: translateY(-2px);
}

.policy-content,
.legal-content {
  position: relative;
  z-index: 1;
  width: min(1120px, 88vw);
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.policy-content section,
.legal-content section {
  padding: 30px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 26px;
  background: rgba(10, 14, 22, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
}

.policy-content h2,
.legal-content h2 {
  margin: 0 0 14px;
  font-size: clamp(1.36rem, 2.5vw, 1.9rem);
  line-height: 1.2;
}

.policy-content h3,
.legal-content h3 {
  margin: 22px 0 10px;
  color: #dff9e5;
  font-size: 1.02rem;
}

.policy-content p,
.legal-content p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.95;
}

.policy-content ul,
.legal-content ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.policy-content li,
.legal-content li {
  position: relative;
  padding-right: 18px;
  color: var(--muted);
  line-height: 1.85;
}

.policy-content li::before,
.legal-content li::before {
  content: "";
  position: absolute;
  top: 13px;
  right: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(98, 237, 132, 1), rgba(5, 132, 107, 0.9));
  box-shadow: 0 0 14px rgba(53, 221, 81, 0.26);
}

.policy-content strong,
.legal-content strong {
  color: var(--text);
}

.policy-content a,
.legal-content a {
  color: #8ff7a4;
}

.policy-note {
  margin-top: 10px;
  padding: 16px 18px;
  border: 1px solid rgba(53, 221, 81, 0.14);
  border-radius: 18px;
  background: rgba(53, 221, 81, 0.05);
}

.policy-table-wrap,
.legal-table-wrap {
  overflow-x: auto;
  margin: 18px 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.02);
}

.policy-table,
.legal-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}

.policy-table th,
.policy-table td,
.legal-table th,
.legal-table td {
  padding: 16px 18px;
  text-align: right;
  vertical-align: top;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.policy-table tr:last-child td,
.legal-table tr:last-child td {
  border-bottom: 0;
}

.policy-table th,
.legal-table th {
  color: #effff3;
  font-weight: 700;
  background: rgba(53, 221, 81, 0.06);
}

.policy-table td,
.legal-table td {
  color: var(--muted);
  line-height: 1.8;
}

.policy-section-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.policy-section-nav a {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(17, 24, 35, 0.82), rgba(8, 11, 18, 0.92));
  color: var(--text);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.policy-section-nav a strong {
  color: #ffffff;
  font-size: 1rem;
}

.policy-section-nav a span {
  color: var(--muted);
  line-height: 1.7;
}

.policy-section-nav a:hover,
.policy-section-nav a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(53, 221, 81, 0.24);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24), 0 0 24px rgba(53, 221, 81, 0.1);
}

.policy-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.policy-card-grid article {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(53, 221, 81, 0.05), transparent 32%),
    linear-gradient(180deg, rgba(17, 24, 35, 0.82), rgba(8, 11, 18, 0.92));
}

.policy-card-grid h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.08rem;
}

.policy-card-grid p {
  margin: 0;
}

@media (max-width: 920px) {
  .policy-page,
  .legal-page {
    padding: 54px 0 74px;
  }

  .policy-hero,
  .legal-hero,
  .policy-content,
  .legal-content {
    width: 92%;
  }

  .policy-hero,
  .legal-hero {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .policy-content section,
  .legal-content section {
    padding: 24px 22px;
    border-radius: 22px;
  }

  .policy-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .policy-hero__actions button,
  .policy-hero__actions a {
    width: 100%;
  }

  .policy-section-nav,
  .policy-card-grid {
    grid-template-columns: 1fr;
  }
}

.form-feedback {
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.form-feedback.is-success {
  border-color: rgba(53, 221, 81, 0.26);
  background: rgba(53, 221, 81, 0.08);
  color: #e3ffe8;
}

.form-feedback.is-error {
  border-color: rgba(255, 120, 120, 0.22);
  background: rgba(255, 120, 120, 0.08);
  color: #ffd9d9;
}

.blog-empty,
.article-empty {
  width: min(1120px, 88vw);
  margin: 0 auto;
  padding: 28px 24px;
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  text-align: center;
  line-height: 1.8;
}

.article-related {
  display: grid;
  gap: 12px;
}

.article-related a {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.article-related a:hover,
.article-related a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(53, 221, 81, 0.24);
  background: rgba(53, 221, 81, 0.06);
}

.article-related strong {
  color: var(--text);
  font-size: 1rem;
}

.article-related span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}
