:root {
  --navy: #111936;
  --navy-2: #1a274b;
  --ink: #182038;
  --muted: #657083;
  --paper: #f6f2eb;
  --paper-2: #eee8df;
  --white: #ffffff;
  --orange: #f36a21;
  --orange-dark: #cf4f12;
  --blue: #1778f2;
  --cyan: #4aa8c8;
  --line: rgba(17, 25, 54, 0.13);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow: 0 26px 70px rgba(17, 25, 54, 0.14);
  --shadow-soft: 0 14px 40px rgba(17, 25, 54, 0.08);
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shell: min(1200px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, "IBM Plex Sans", "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC",
    Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.license-open {
  overflow: hidden;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(243, 106, 33, 0.48);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.section-shell,
.header-inner,
.footer-inner {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 76px;
  border-bottom: 1px solid transparent;
  background: rgba(246, 242, 235, 0.92);
  backdrop-filter: blur(16px);
  transition:
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 30px rgba(17, 25, 54, 0.07);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  gap: 36px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(23, 120, 242, 0.12);
}

.brand-mark img {
  width: 34px;
  height: 36px;
  object-fit: contain;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 20px;
  letter-spacing: -0.03em;
}

.brand-copy small {
  margin-top: 5px;
  color: #7a8291;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.primary-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 34px;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
  color: #3d465b;
  font-size: 14px;
  font-weight: 600;
}

.primary-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.header-cta {
  min-height: 42px;
  padding-inline: 20px;
  color: var(--white);
  background: var(--navy);
}

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

.header-cta:hover {
  box-shadow: 0 10px 24px rgba(17, 25, 54, 0.2);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 10px;
  background: var(--navy);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(540px, 1.1fr);
  align-items: center;
  min-height: 820px;
  padding-block: 86px 104px;
  gap: 68px;
}

.hero::before {
  position: absolute;
  top: 36px;
  right: calc(100% + 32px);
  width: 180px;
  height: 180px;
  border: 38px solid var(--orange);
  border-radius: 50%;
  content: "";
  opacity: 0.08;
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  margin-right: 10px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.security-intro h2,
.pricing-heading h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 750;
  letter-spacing: -0.055em;
  line-height: 1.15;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(50px, 5.2vw, 76px);
}

.hero-lead {
  max-width: 610px;
  margin: 28px 0 0;
  color: #505b70;
  font-size: 18px;
  line-height: 1.9;
}

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

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 16px 30px rgba(243, 106, 33, 0.2);
}

.button-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 18px 38px rgba(243, 106, 33, 0.28);
}

.button-secondary {
  color: var(--navy);
  border-color: rgba(17, 25, 54, 0.24);
  background: transparent;
}

.button-secondary:hover {
  border-color: var(--navy);
  background: var(--white);
}

.hero-facts {
  display: flex;
  margin: 48px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.hero-facts div {
  min-width: 130px;
  padding-right: 32px;
}

.hero-facts div + div {
  padding-left: 32px;
  border-left: 1px solid var(--line);
}

.hero-facts dt {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  line-height: 1;
}

.hero-facts dd {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

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

.shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.shape-one {
  top: 2px;
  right: -28px;
  width: 430px;
  height: 430px;
  background: #e5eaf1;
}

.shape-two {
  right: 310px;
  bottom: 10px;
  width: 190px;
  height: 190px;
  background: #f3d9c8;
}

.product-frame {
  position: absolute;
  z-index: 2;
  top: 70px;
  right: 0;
  width: min(680px, 100%);
  overflow: hidden;
  border: 10px solid var(--white);
  border-radius: 26px;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.product-frame-bar {
  display: flex;
  align-items: center;
  height: 42px;
  padding-inline: 12px;
  gap: 6px;
  border-bottom: 1px solid var(--line);
  background: #fbfcfd;
}

.product-frame-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c7ccd5;
}

.product-frame-bar span:first-child {
  background: var(--orange);
}

.product-frame-bar p {
  margin: 0 auto;
  padding-right: 34px;
  color: #8a92a1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.product-frame > img {
  width: 100%;
  aspect-ratio: 1.82 / 1;
  object-fit: cover;
  object-position: center center;
}

.product-caption {
  position: absolute;
  right: 16px;
  bottom: 12px;
  margin: 0;
  padding: 5px 9px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(17, 25, 54, 0.78);
  font-size: 9px;
}

.feature-note {
  position: absolute;
  z-index: 3;
  display: grid;
  min-width: 190px;
  padding: 16px 18px;
  border: 1px solid rgba(17, 25, 54, 0.09);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-note span {
  color: var(--orange-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.feature-note strong {
  margin-top: 2px;
  color: var(--navy);
  font-size: 14px;
}

.feature-note-top {
  top: 16px;
  left: -20px;
}

.feature-note-bottom {
  right: -18px;
  bottom: 18px;
}

.value-section {
  padding-block: 112px;
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}

.section-heading h2,
.security-intro h2,
.pricing-heading h2 {
  font-size: clamp(36px, 4vw, 54px);
}

.security-intro h2 {
  font-size: clamp(36px, 3.2vw, 46px);
}

.security-intro h2 span {
  white-space: nowrap;
}

.section-heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.value-card {
  position: relative;
  min-height: 310px;
  padding: 32px 28px 30px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  transition:
    color 220ms ease,
    background-color 220ms ease,
    transform 220ms ease;
}

.value-card:hover {
  z-index: 1;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-6px);
}

.value-index {
  margin: 0;
  color: var(--orange);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  line-height: 1;
}

.value-card h3 {
  margin: 38px 0 12px;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.03em;
  transition: color 220ms ease;
}

.value-card > p:last-of-type {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  transition: color 220ms ease;
}

.value-card:hover h3,
.value-card:hover > p:last-of-type {
  color: var(--white);
}

.value-line {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0.2);
  transform-origin: left;
  transition: transform 220ms ease;
}

.value-card:hover .value-line {
  transform: scaleX(1);
}

.modules-section {
  padding-block: 120px;
}

.module-tabs {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.module-tablist {
  display: grid;
  grid-template-columns: repeat(9, minmax(100px, 1fr));
  padding: 10px;
  gap: 6px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}

.module-tablist button {
  min-width: 104px;
  min-height: 46px;
  padding: 8px 14px;
  border: 0;
  border-radius: 11px;
  color: #606b7d;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.module-tablist button:hover {
  color: var(--navy);
  background: var(--paper);
}

.module-tablist button[aria-selected="true"] {
  color: var(--white);
  background: var(--navy);
}

.module-panel {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  min-height: 570px;
  padding: 52px;
  gap: 48px;
}

.module-panel[hidden] {
  display: none;
}

.module-number {
  margin: 0 0 14px;
  color: var(--orange-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  letter-spacing: 0.08em;
}

.module-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px, 4vw, 58px);
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.module-intro {
  margin: 12px 0 28px;
  color: var(--muted);
  font-size: 16px;
}

.module-copy ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 15px;
  list-style: none;
}

.module-copy li {
  position: relative;
  display: grid;
  padding-left: 20px;
}

.module-copy li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.module-copy li strong {
  color: var(--navy);
  font-size: 14px;
}

.module-copy li span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.module-figure {
  position: relative;
  margin: 0;
  padding: 14px;
  border: 1px solid rgba(17, 25, 54, 0.1);
  border-radius: 24px;
  background: #f3f5f7;
}

.module-figure::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -22px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: #f3d9c8;
  content: "";
}

.module-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 15px;
  background: var(--white);
}

.module-figure figcaption {
  padding: 10px 4px 0;
  color: #838b99;
  font-size: 11px;
}

.module-figure--full {
  padding: 0;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 42px rgba(17, 25, 54, 0.12);
}

.module-figure--full::before {
  display: none;
}

.module-figure--full img {
  object-fit: cover;
  border-radius: 23px;
}

.module-figure--contain img {
  object-fit: contain;
  background: #f3f6fa;
}

.module-figure--portrait img {
  object-fit: cover;
  object-position: center top;
  background: var(--white);
}

.module-figure--full figcaption {
  position: absolute;
  z-index: 2;
  bottom: 12px;
  left: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(17, 25, 54, 0.82);
  font-size: 9px;
  line-height: 1.4;
}

.comparison-section {
  padding-block: 118px;
  color: var(--white);
  background: var(--navy);
}

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

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

.eyebrow-light {
  color: #ff9863;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-light);
  border-radius: 24px;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

.comparison-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
  padding: 22px 20px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  text-align: left;
  vertical-align: top;
  font-size: 13px;
  line-height: 1.7;
}

.comparison-table tr > *:last-child {
  border-right: 0;
}

.comparison-table tbody tr:last-child > * {
  border-bottom: 0;
}

.comparison-table thead th {
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.05);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.comparison-table thead th:first-child,
.comparison-table tbody th {
  width: 15%;
}

.comparison-table tbody th {
  color: var(--white);
  font-weight: 700;
}

.comparison-table tbody td {
  color: rgba(255, 255, 255, 0.62);
}

.comparison-table .workrule-column {
  color: var(--white);
  background: rgba(243, 106, 33, 0.16);
}

.comparison-table thead .workrule-column {
  color: #ffb38c;
  background: rgba(243, 106, 33, 0.22);
}

.security-section {
  position: relative;
  padding-block: 120px;
  overflow: hidden;
  color: var(--white);
  background: #0e1730;
}

.security-section::before,
.security-section::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.security-section::before {
  top: -270px;
  right: -220px;
  width: 620px;
  height: 620px;
}

.security-section::after {
  bottom: -180px;
  left: -140px;
  width: 380px;
  height: 380px;
  border-color: rgba(243, 106, 33, 0.16);
}

.security-shell {
  position: relative;
  z-index: 1;
}

.security-spotlight {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(440px, 1.22fr);
  align-items: center;
  margin-bottom: 70px;
  gap: 74px;
}

.security-intro {
  max-width: 510px;
}

.security-intro h2 {
  color: var(--white);
}

.security-intro h2 span {
  color: #ff9a61;
}

.security-intro > p {
  max-width: 470px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.64);
}

.security-assurance {
  display: flex;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.security-assurance > span {
  position: relative;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border: 1px solid rgba(243, 106, 33, 0.64);
  border-radius: 50%;
}

.security-assurance > span::before,
.security-assurance > span::after {
  position: absolute;
  background: var(--orange);
  content: "";
}

.security-assurance > span::before {
  top: 21px;
  left: 13px;
  width: 20px;
  height: 2px;
  transform: rotate(-45deg);
}

.security-assurance > span::after {
  top: 24px;
  left: 10px;
  width: 9px;
  height: 2px;
  transform: rotate(45deg);
}

.security-assurance p {
  display: grid;
  margin: 0;
  line-height: 1.4;
}

.security-assurance strong {
  color: var(--white);
  font-size: 14px;
}

.security-assurance small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.security-emblem {
  position: relative;
  display: grid;
  min-height: 430px;
  place-items: center;
}

.security-emblem::before,
.security-emblem::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.security-emblem::before {
  width: 410px;
  height: 410px;
}

.security-emblem::after {
  width: 318px;
  height: 318px;
  border-style: dashed;
  border-color: rgba(243, 106, 33, 0.32);
}

.security-shield {
  position: relative;
  z-index: 2;
  width: 278px;
  height: 326px;
  padding: 9px;
  background: var(--orange);
  clip-path: polygon(50% 0, 94% 16%, 88% 68%, 50% 100%, 12% 68%, 6% 16%);
}

.security-shield-inner {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #111d38;
  clip-path: polygon(50% 0, 94% 16%, 88% 68%, 50% 100%, 12% 68%, 6% 16%);
}

.security-shield-number {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 138px;
  line-height: 0.78;
  letter-spacing: -0.08em;
}

.security-shield-inner strong {
  margin-top: 24px;
  color: #ff9a61;
  font-size: 18px;
  letter-spacing: 0.12em;
}

.security-shield-inner small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.security-emblem-tag {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: #17233f;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.security-emblem-tag::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
}

.security-emblem-tag-one {
  top: 50px;
  left: 4%;
}

.security-emblem-tag-two {
  top: 102px;
  right: 0;
}

.security-emblem-tag-three {
  right: 8%;
  bottom: 48px;
}

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

.security-item {
  position: relative;
  overflow: hidden;
  min-height: 228px;
  padding: 26px 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background: #151f39;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.security-item::after {
  position: absolute;
  right: 26px;
  bottom: 0;
  left: 26px;
  height: 3px;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: scaleX(0.28);
  transform-origin: left;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.security-item:hover {
  border-color: rgba(243, 106, 33, 0.52);
  background: #192541;
  transform: translateY(-4px);
}

.security-item:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.security-item-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.security-item-top span {
  color: #ff9a61;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.security-item-top small {
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.security-item h3 {
  margin: 30px 0 0;
  color: var(--white);
  font-size: 17px;
  line-height: 1.45;
}

.security-item p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.72;
}

.pricing-section {
  position: relative;
  padding-block: 116px;
  overflow: hidden;
  background: var(--paper-2);
}

.pricing-section::before {
  position: absolute;
  top: -90px;
  right: -22px;
  color: rgba(17, 25, 54, 0.035);
  content: "20";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 330px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.1em;
  pointer-events: none;
}

.pricing-shell {
  position: relative;
  z-index: 1;
}

.pricing-heading {
  max-width: 700px;
  margin: 0 auto 54px;
  text-align: center;
}

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

.pricing-heading p:last-child {
  max-width: 620px;
  margin: 22px auto 0;
}

.pricing-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(330px, 0.72fr);
  align-items: stretch;
  gap: 22px;
}

.pricing-free-card,
.pricing-paid-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 580px;
  padding: 42px;
  overflow: hidden;
  border-radius: 30px;
}

.pricing-free-card {
  border: 2px solid rgba(243, 106, 33, 0.78);
  background: var(--white);
  box-shadow: var(--shadow);
}

.pricing-free-card::before {
  position: absolute;
  top: -52px;
  right: -42px;
  width: 190px;
  height: 190px;
  border: 32px solid rgba(243, 106, 33, 0.08);
  border-radius: 50%;
  content: "";
}

.pricing-free-card-head,
.pricing-paid-card-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pricing-free-card-head p,
.pricing-paid-card-head p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pricing-free-card-head span,
.pricing-paid-card-head span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pricing-free-card-head span {
  color: var(--white);
  background: var(--orange);
}

.pricing-free-hero {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  margin-top: 30px;
  gap: 18px;
}

.pricing-free-hero strong {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(112px, 12vw, 168px);
  line-height: 0.76;
  letter-spacing: -0.09em;
}

.pricing-free-hero span {
  padding-bottom: 4px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.pricing-free-card h3 {
  position: relative;
  z-index: 1;
  margin: 34px 0 0;
  color: var(--orange-dark);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.1;
}

.pricing-free-copy {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.pricing-module-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 28px 0 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.pricing-module-list li {
  position: relative;
  padding: 9px 10px 9px 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: #4d576a;
  background: #faf8f4;
  font-size: 11px;
  font-weight: 700;
}

.pricing-module-list li::before {
  position: absolute;
  top: 50%;
  left: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  transform: translateY(-50%);
}

.pricing-free-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 30px;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.pricing-free-footer > p {
  display: flex;
  align-items: baseline;
  margin: 0;
  color: var(--navy);
  line-height: 1;
}

.pricing-free-footer > p span {
  font-size: 18px;
  font-weight: 800;
}

.pricing-free-footer > p strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  letter-spacing: -0.08em;
}

.pricing-free-footer > p small {
  margin-left: 7px;
  color: var(--orange-dark);
  font-size: 12px;
  font-weight: 800;
}

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

.button-dark:hover {
  background: var(--navy-2);
  box-shadow: 0 16px 32px rgba(17, 25, 54, 0.2);
}

.pricing-paid-card {
  color: var(--white);
  background: var(--navy);
}

.pricing-paid-card::after {
  position: absolute;
  right: -88px;
  bottom: -78px;
  width: 250px;
  height: 250px;
  border: 46px solid rgba(243, 106, 33, 0.13);
  border-radius: 50%;
  content: "";
}

.pricing-paid-card-head,
.pricing-paid-price,
.pricing-paid-card > p,
.pricing-paid-rule,
.pricing-paid-message,
.pricing-paid-card .button {
  position: relative;
  z-index: 1;
}

.pricing-paid-card-head p {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-paid-card-head span {
  color: var(--white);
  background: var(--orange);
}

.pricing-paid-price {
  display: flex;
  align-items: baseline;
  margin-top: 62px;
  color: var(--white);
  line-height: 1;
}

.pricing-paid-price span {
  font-size: 20px;
  font-weight: 800;
}

.pricing-paid-price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 6vw, 78px);
  letter-spacing: -0.07em;
}

.pricing-paid-price small {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.pricing-paid-card > p {
  max-width: 310px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
}

.pricing-paid-rule {
  width: 100%;
  height: 1px;
  margin-top: 36px;
  background: rgba(255, 255, 255, 0.14);
}

.pricing-paid-message {
  margin-top: 32px;
  color: var(--white);
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.35;
}

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

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

.button-orange:hover {
  background: var(--orange-dark);
  box-shadow: 0 16px 32px rgba(243, 106, 33, 0.25);
}

.site-footer {
  position: relative;
  z-index: 2;
  padding-block: 66px 62px;
  border-top: 1px solid #edf0f4;
  background: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.38fr) minmax(0, 2.62fr);
  align-items: start;
  gap: clamp(58px, 7vw, 102px);
}

.footer-company {
  min-width: 0;
}

.footer-logo {
  display: block;
  width: 146px;
}

.footer-logo img {
  width: 100%;
}

.footer-socials {
  display: flex;
  align-items: center;
  margin-top: 28px;
  gap: 19px;
  color: #9aa8bc;
}

.footer-icon-link,
.footer-text-link,
.footer-license-link {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.footer-icon-link {
  display: inline-grid;
  width: 22px;
  height: 22px;
  padding: 0;
  place-items: center;
  line-height: 1;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.footer-icon-link:hover,
.footer-icon-link:focus-visible {
  color: var(--blue);
  transform: translateY(-2px);
}

.footer-icon-link svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.footer-icon-link--text {
  width: auto;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.footer-icon-link--badge {
  width: 31px;
  padding-inline: 3px;
  border-radius: 4px;
  background: #9aa8bc;
  color: var(--white);
  font-size: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.footer-icon-link--badge:hover,
.footer-icon-link--badge:focus-visible {
  background: var(--blue);
  color: var(--white);
}

.footer-registration {
  display: grid;
  justify-items: start;
  margin-top: 27px;
  gap: 6px;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.55;
}

.footer-registration p {
  margin: 0 0 3px;
}

.footer-registration a,
.footer-license-link {
  transition: color 160ms ease;
}

.footer-registration a:hover,
.footer-registration a:focus-visible,
.footer-license-link:hover,
.footer-license-link:focus-visible {
  color: var(--blue);
}

.footer-license-link {
  display: inline-flex;
  align-items: center;
  padding: 0;
  gap: 6px;
  text-align: left;
}

.footer-license-link span {
  color: var(--orange);
  font-size: 9px;
}

.footer-link-groups {
  display: grid;
  grid-template-columns: 1.22fr 1.05fr 0.78fr 0.95fr;
  align-items: start;
  gap: clamp(28px, 4vw, 64px);
}

.footer-link-group {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
}

.footer-link-group h2 {
  margin: 0 0 5px;
  color: #334155;
  font-size: 13px;
  line-height: 1.6;
}

.footer-link-group > a,
.footer-text-link {
  padding: 0;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.footer-link-group > a:hover,
.footer-link-group > a:focus-visible,
.footer-text-link:hover,
.footer-text-link:focus-visible {
  color: var(--blue);
  transform: translateX(2px);
}

.footer-popover-wrap {
  position: relative;
  display: inline-flex;
  width: max-content;
}

.footer-popover-wrap--text {
  display: flex;
}

.footer-popover {
  position: absolute;
  z-index: 30;
  bottom: calc(100% + 12px);
  left: 50%;
  display: grid;
  width: 210px;
  padding: 10px;
  place-items: center;
  overflow: visible;
  border: 1px solid #e8edf4;
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 20px 45px rgba(17, 25, 54, 0.18);
  color: #64748b;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px) scale(0.96);
  transform-origin: bottom center;
  transition:
    opacity 160ms ease,
    transform 180ms ease;
}

.footer-popover::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  width: 14px;
  height: 14px;
  margin-inline: auto;
  border-right: 1px solid #e8edf4;
  border-bottom: 1px solid #e8edf4;
  background: var(--white);
  content: "";
  transform: rotate(45deg);
}

.footer-popover img {
  width: 188px;
  height: 188px;
  object-fit: cover;
}

.footer-popover > span {
  margin-top: 7px;
}

.footer-popover--square {
  width: 210px;
  padding: 10px;
}

.footer-popover--square img {
  width: 188px;
  height: 188px;
}

.footer-popover-wrap:hover .footer-popover,
.footer-popover-wrap:focus-within .footer-popover,
.footer-popover-wrap.is-open .footer-popover {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.footer-license-overlay {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  padding: 24px;
  place-items: center;
  background: rgba(9, 17, 38, 0.62);
  backdrop-filter: blur(6px);
}

.footer-license-overlay[hidden] {
  display: none;
}

.footer-license-dialog {
  width: min(860px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 28px 80px rgba(9, 17, 38, 0.32);
}

.footer-license-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px;
  border-bottom: 1px solid #edf0f4;
}

.footer-license-head h2 {
  margin: 0;
  color: var(--navy);
  font-size: 16px;
}

.footer-license-head button {
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.footer-license-dialog > img {
  width: 100%;
  max-height: calc(100vh - 124px);
  object-fit: contain;
  background: #f8fafc;
}

.is-reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 40px, 1040px);
  }

  .primary-nav {
    gap: 22px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
    min-height: 740px;
    gap: 34px;
  }

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

  .feature-note-top {
    left: 0;
  }

  .feature-note-bottom {
    right: 0;
  }

  .value-card {
    min-height: 340px;
    padding-inline: 22px;
  }

  .module-panel {
    padding: 42px;
    gap: 34px;
  }

  .security-spotlight {
    grid-template-columns: minmax(300px, 0.82fr) minmax(400px, 1.18fr);
    gap: 42px;
  }

  .security-emblem {
    min-height: 400px;
  }

  .security-item {
    min-height: 218px;
    padding: 22px;
  }

  .pricing-showcase {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  }

  .pricing-free-card,
  .pricing-paid-card {
    padding: 34px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: 76px;
    right: 0;
    left: 0;
    display: grid;
    justify-content: stretch;
    padding: 18px 24px 28px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-soft);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .primary-nav a {
    padding: 12px 4px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-block: 68px 100px;
    gap: 48px;
  }

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

  .hero-lead {
    max-width: 720px;
  }

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

  .product-frame {
    right: 4%;
    width: 92%;
  }

  .shape-one {
    right: 0;
    width: 390px;
    height: 390px;
  }

  .feature-note-top {
    left: 1%;
  }

  .feature-note-bottom {
    right: 1%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-heading > p {
    max-width: 680px;
  }

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

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

  .module-panel {
    grid-template-columns: 1fr;
    min-height: 0;
  }

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

  .security-spotlight {
    grid-template-columns: 1fr;
    margin-bottom: 54px;
    gap: 34px;
  }

  .security-intro {
    max-width: 650px;
  }

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

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

  .pricing-showcase {
    grid-template-columns: 1fr;
  }

  .pricing-free-card,
  .pricing-paid-card {
    min-height: 560px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 32px);
    --radius-lg: 24px;
  }

  html {
    scroll-padding-top: 78px;
  }

  .site-header,
  .header-inner {
    min-height: 68px;
    height: 68px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand-mark img {
    width: 30px;
    height: 32px;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .primary-nav {
    top: 68px;
  }

  .hero {
    padding-block: 54px 74px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
    line-height: 1.12;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    justify-content: space-between;
    margin-top: 40px;
  }

  .hero-facts div {
    min-width: 0;
    padding-right: 18px;
  }

  .hero-facts div + div {
    padding-left: 18px;
  }

  .hero-facts dt {
    font-size: 30px;
  }

  .hero-facts dd {
    font-size: 11px;
  }

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

  .product-frame {
    top: 45px;
    right: 0;
    width: 100%;
    border-width: 6px;
    border-radius: 20px;
    transform: none;
  }

  .product-frame-bar {
    height: 34px;
  }

  .shape-one {
    top: 0;
    width: 260px;
    height: 260px;
  }

  .shape-two {
    right: auto;
    bottom: 4px;
    left: 4px;
    width: 120px;
    height: 120px;
  }

  .feature-note {
    min-width: 0;
    padding: 10px 12px;
    border-radius: 12px;
  }

  .feature-note strong {
    font-size: 11px;
  }

  .feature-note-top {
    top: 4px;
    left: 8px;
  }

  .feature-note-bottom {
    right: 8px;
    bottom: 2px;
  }

  .product-caption {
    display: none;
  }

  .value-section,
  .modules-section,
  .comparison-section,
  .security-section {
    padding-block: 82px;
  }

  .section-heading,
  .modules-section .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .security-intro h2,
  .pricing-heading h2 {
    font-size: 36px;
  }

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

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

  .value-card h3 {
    margin-top: 28px;
  }

  .module-tabs {
    margin-inline: -4px;
  }

  .module-tablist {
    display: flex;
    padding: 8px;
  }

  .module-panel {
    padding: 28px 22px 24px;
    gap: 30px;
  }

  .module-copy h3 {
    font-size: 42px;
  }

  .module-copy ul {
    grid-template-columns: 1fr;
  }

  .module-figure {
    padding: 8px;
    border-radius: 17px;
  }

  .module-figure img {
    border-radius: 11px;
  }

  .module-figure--full {
    padding: 0;
  }

  .module-figure--full img {
    border-radius: 16px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 18px 16px;
  }

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

  .security-spotlight {
    margin-bottom: 42px;
  }

  .security-intro h2 span {
    white-space: normal;
  }

  .security-assurance {
    margin-top: 28px;
  }

  .security-emblem {
    min-height: 340px;
  }

  .security-emblem::before {
    width: 318px;
    height: 318px;
  }

  .security-emblem::after {
    width: 246px;
    height: 246px;
  }

  .security-shield {
    width: 214px;
    height: 252px;
    padding: 7px;
  }

  .security-shield-number {
    font-size: 106px;
  }

  .security-shield-inner strong {
    margin-top: 18px;
    font-size: 14px;
  }

  .security-shield-inner small {
    font-size: 9px;
  }

  .security-emblem-tag {
    min-height: 31px;
    padding-inline: 10px;
    font-size: 9px;
  }

  .security-emblem-tag-one {
    top: 32px;
    left: 0;
  }

  .security-emblem-tag-two {
    top: 78px;
    right: 0;
  }

  .security-emblem-tag-three {
    right: 2%;
    bottom: 36px;
  }

  .security-item {
    min-height: 0;
    padding: 22px;
  }

  .security-item h3 {
    margin-top: 22px;
  }

  .pricing-section {
    padding-block: 82px;
  }

  .pricing-section::before {
    top: -20px;
    right: -18px;
    font-size: 180px;
  }

  .pricing-heading {
    margin-bottom: 36px;
    text-align: left;
  }

  .pricing-heading .eyebrow {
    justify-content: flex-start;
  }

  .pricing-free-card,
  .pricing-paid-card {
    min-height: 0;
    padding: 26px 22px;
    border-radius: 24px;
  }

  .pricing-free-hero {
    margin-top: 30px;
  }

  .pricing-free-hero strong {
    font-size: 112px;
  }

  .pricing-free-hero span {
    font-size: 15px;
  }

  .pricing-free-card h3 {
    margin-top: 28px;
    font-size: 36px;
  }

  .pricing-module-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

  .pricing-free-footer {
    display: grid;
    align-items: stretch;
    margin-top: 30px;
  }

  .pricing-paid-price {
    margin-top: 48px;
  }

  .pricing-paid-message {
    margin-bottom: 42px;
  }

  .site-footer {
    padding-block: 52px 48px;
  }

  .footer-logo {
    width: 138px;
  }

  .footer-link-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .footer-socials {
    gap: 18px;
  }

  .footer-socials .footer-popover {
    right: auto;
    left: 0;
    transform: translateY(8px) scale(0.96);
    transform-origin: bottom left;
  }

  .footer-popover-wrap--text .footer-popover {
    right: 0;
    left: auto;
    transform: translateY(8px) scale(0.96);
    transform-origin: bottom right;
  }

  .footer-socials .footer-popover-wrap:hover .footer-popover,
  .footer-socials .footer-popover-wrap:focus-within .footer-popover,
  .footer-socials .footer-popover-wrap.is-open .footer-popover,
  .footer-popover-wrap--text:hover .footer-popover,
  .footer-popover-wrap--text:focus-within .footer-popover,
  .footer-popover-wrap--text.is-open .footer-popover {
    transform: translateY(0) scale(1);
  }

  .footer-license-overlay {
    padding: 12px;
  }

  .footer-license-dialog {
    max-height: calc(100vh - 24px);
  }

  .footer-license-dialog > img {
    max-height: calc(100vh - 100px);
  }
}

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

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

  .is-reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
