:root {
  color-scheme: dark;
  --bg: #070a0f;
  --panel: #0f151c;
  --panel-2: #151a23;
  --text: #edf7f5;
  --muted: #9fb2b2;
  --line: rgba(255, 255, 255, 0.12);
  --teal: #1abc9c;
  --teal-deep: #09866e;
  --violet: #8f00ff;
  --amber: #d89428;
  --red: #ff5a67;
  --green: #36d982;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(26, 188, 156, 0.12), transparent 28rem),
    radial-gradient(circle at 86% 8%, rgba(143, 0, 255, 0.13), transparent 24rem),
    linear-gradient(180deg, #070a0f 0%, #0a0d12 46%, #090b10 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 32px));
  margin: 16px auto 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 10, 15, 0.82);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: 0;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a,
.header-action,
.primary-action,
.secondary-action {
  border-radius: 6px;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.nav-links a {
  padding: 9px 12px;
}

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

.header-action,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  font-weight: 760;
  white-space: nowrap;
}

.header-action,
.secondary-action {
  border: 1px solid var(--line);
  color: #d7ece8;
  background: rgba(255, 255, 255, 0.04);
}

.primary-action {
  border: 1px solid rgba(26, 188, 156, 0.62);
  color: #04110e;
  background: linear-gradient(135deg, var(--teal), #9df4df);
  box-shadow: 0 18px 40px rgba(26, 188, 156, 0.18);
}

.header-action:hover,
.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-2px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 42px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 92px);
  margin: 0 auto;
  padding: 62px 0 42px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: #83f7dd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(68px, 11vw, 136px);
  line-height: 0.86;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.6vw, 64px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  line-height: 1.15;
}

.hero-lede,
.section p,
.cta-section p {
  color: var(--muted);
  font-size: 18px;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 38px 0 0;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.hero-stats dt {
  color: #fff;
  font-size: 30px;
  font-weight: 860;
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.ambient-grid {
  position: absolute;
  inset: -18px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(26, 188, 156, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(143, 0, 255, 0.11), transparent 48%);
  filter: blur(10px);
}

.product-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(20, 27, 36, 0.98), rgba(8, 12, 18, 0.98));
  box-shadow: var(--shadow);
}

.hero-screenshot-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.hero-screenshot-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top left;
  border-bottom: 1px solid var(--line);
}

.hero-screenshot-frame figcaption {
  padding: 13px 16px;
  color: var(--muted);
  font-size: 13px;
}

.product-topbar {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: #d5e3e0;
  font-size: 13px;
}

.window-controls {
  display: flex;
  gap: 7px;
}

.window-controls span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--red);
}

.window-controls span:nth-child(2) {
  background: var(--amber);
}

.window-controls span:nth-child(3) {
  background: var(--teal);
}

.topbar-title {
  flex: 1;
}

.scan-pill {
  padding: 5px 10px;
  border: 1px solid rgba(26, 188, 156, 0.42);
  border-radius: 999px;
  color: #9df4df;
  background: rgba(26, 188, 156, 0.1);
  font-size: 12px;
}

.product-layout {
  display: grid;
  grid-template-columns: 168px 1fr;
  min-height: 520px;
}

.mock-sidebar {
  padding: 18px 12px;
  border-right: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
}

.sidebar-logo {
  width: 44px;
  height: 44px;
  margin: 0 0 20px 6px;
  object-fit: contain;
}

.side-link {
  display: block;
  margin: 7px 0;
  padding: 11px 12px;
  border-radius: 6px;
  color: #90a09e;
  font-size: 13px;
}

.side-link.active {
  color: #fff;
  background: linear-gradient(90deg, rgba(26, 188, 156, 0.24), rgba(143, 0, 255, 0.08));
  box-shadow: inset 3px 0 0 var(--teal);
}

.mock-main {
  padding: 18px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.metric-row article,
.chart-card,
.asset-table,
.scan-panel,
.asset-editor,
.feature-grid article,
.security-list article,
.edition-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
}

.metric-row article {
  min-height: 96px;
  padding: 16px;
}

.metric-row b {
  display: block;
  font-size: 28px;
}

.metric-row span,
.card-head,
.legend,
.table-row,
.schedule-line,
.asset-editor label {
  color: var(--muted);
  font-size: 12px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 12px;
}

.chart-card,
.asset-table {
  padding: 15px;
}

.asset-table {
  grid-column: 1 / -1;
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.card-head strong {
  color: #9df4df;
  font-size: 11px;
  text-transform: uppercase;
}

.donut {
  width: 156px;
  height: 156px;
  margin: 8px auto 14px;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 71%, var(--amber) 71% 86%, var(--red) 86% 100%);
  box-shadow: inset 0 0 0 34px #111821;
}

.legend {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.legend i {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 5px;
  border-radius: 50%;
}

.legend .up {
  background: var(--green);
}

.legend .warn {
  background: var(--amber);
}

.legend .down {
  background: var(--red);
}

.bars {
  display: flex;
  align-items: end;
  gap: 14px;
  height: 170px;
  padding: 10px 8px 0;
}

.bars span {
  flex: 1;
  min-width: 18px;
  height: var(--h);
  border-radius: 5px 5px 0 0;
  background: linear-gradient(180deg, #9df4df, var(--teal-deep));
}

.bars span:nth-child(even) {
  background: linear-gradient(180deg, #b55cff, #61249b);
}

.table-row {
  display: grid;
  grid-template-columns: 1fr 0.7fr 0.5fr;
  align-items: center;
  min-height: 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.table-head {
  color: #dcebe8;
  font-weight: 760;
}

.badge {
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  font-size: 11px;
}

.badge.online {
  color: #b8ffdd;
  background: rgba(54, 217, 130, 0.13);
}

.badge.idle {
  color: #ffd892;
  background: rgba(216, 148, 40, 0.15);
}

.trust-band,
.section,
.cta-section,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.trust-band span {
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
  color: #dcebe8;
  text-align: center;
  font-weight: 740;
}

.section {
  padding: 96px 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  align-items: start;
}

.compliance-section {
  padding-bottom: 72px;
}

.feature-grid,
.security-list,
.edition-grid,
.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article,
.security-list article,
.edition-card {
  padding: 24px;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.compliance-grid article {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(26, 188, 156, 0.09), rgba(255, 255, 255, 0.03));
}

.compliance-grid p {
  font-size: 15px;
}

.compliance-disclaimer {
  margin: 16px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(216, 148, 40, 0.34);
  border-radius: 8px;
  color: #d7c7aa;
  background: rgba(216, 148, 40, 0.08);
  font-size: 15px;
}

.architecture-section {
  padding-top: 48px;
}

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

.architecture-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
}

.architecture-grid h3 {
  font-size: 24px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 6px;
  color: #06120f;
  background: #8bf2dc;
  font-weight: 900;
}

.feature-grid article:nth-child(2) .feature-icon,
.feature-grid article:nth-child(4) .feature-icon {
  color: #fff;
  background: var(--violet);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.pipeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.pipeline article {
  position: relative;
  min-height: 142px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(26, 188, 156, 0.13), rgba(255, 255, 255, 0.03));
}

.pipeline b {
  display: block;
  margin-bottom: 36px;
  color: #9df4df;
  font-size: 13px;
}

.pipeline span {
  display: block;
  color: #fff;
  font-weight: 780;
}

.ui-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 28px;
  align-items: center;
}

.security-section {
  display: grid;
  gap: 18px;
}

.showcase-copy {
  max-width: 520px;
}

.ui-panels {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 14px;
}

.screenshot-pair {
  align-items: start;
}

.scan-panel,
.asset-editor {
  padding: 20px;
  min-height: 310px;
}

.schedule-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.schedule-line b,
.asset-editor span {
  color: #fff;
}

.asset-editor label {
  display: block;
  padding: 12px 0;
}

.asset-editor label span {
  display: block;
  margin-top: 7px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.22);
}

.asset-editor button {
  width: 100%;
  min-height: 42px;
  margin-top: 10px;
  border: 0;
  border-radius: 6px;
  color: #06120f;
  background: var(--teal);
  font-weight: 840;
}

.screenshot-section {
  padding-top: 72px;
}

.live-interface-section {
  padding-top: 52px;
}

.live-screens {
  display: grid;
  gap: 18px;
}

.screenshot-grid {
  align-items: stretch;
}

.screenshot-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.screenshot-card.wide {
  grid-column: 1 / -1;
}

.screenshot-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top left;
  border-bottom: 1px solid var(--line);
  background: #111821;
}

.screenshot-card figcaption {
  min-height: 58px;
  padding: 16px 18px;
  color: #dcebe8;
  font-size: 14px;
}

.security-card {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  align-items: start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(26, 188, 156, 0.11), rgba(143, 0, 255, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.security-copy {
  max-width: 560px;
}

.security-copy h2 {
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.05;
}

.security-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 12, 18, 0.72);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.security-screenshot {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  object-fit: cover;
  object-position: top left;
}

.security-figure figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 13px;
}

.security-list {
  grid-template-columns: 1fr;
}

.edition-card {
  min-height: 300px;
}

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

.edition-card.muted {
  opacity: 0.86;
}

.plan-topline {
  margin-bottom: 12px;
  color: #83f7dd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-price {
  margin-bottom: 16px;
  color: #fff;
  font-size: 28px !important;
  font-weight: 860;
}

.plan-price span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 680;
}

.edition-card.highlighted {
  border-color: rgba(26, 188, 156, 0.45);
  background: linear-gradient(180deg, rgba(26, 188, 156, 0.13), rgba(255, 255, 255, 0.035));
}

.edition-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: #dcebe8;
}

.edition-card li {
  padding-left: 22px;
  background: linear-gradient(var(--teal), var(--teal)) 0 0.72em / 9px 9px no-repeat;
}

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

.pricing-options article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.option-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 9px;
  border: 1px solid rgba(26, 188, 156, 0.34);
  border-radius: 999px;
  color: #9df4df;
  font-size: 12px;
  font-weight: 800;
}

.license-matrix {
  margin-top: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.matrix-row {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(2, minmax(180px, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.matrix-row:first-child {
  border-top: 0;
}

.matrix-row span {
  padding: 15px 16px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-size: 14px;
}

.matrix-row span:first-child,
.matrix-head span {
  color: #edf7f5;
  font-weight: 780;
}

.matrix-head span {
  background: rgba(26, 188, 156, 0.1);
}

.license-note {
  margin-top: 16px;
  padding: 22px;
  border: 1px solid rgba(26, 188, 156, 0.3);
  border-radius: 8px;
  background: rgba(26, 188, 156, 0.055);
}

.license-note h3 {
  margin-bottom: 8px;
}

.license-note p {
  margin-bottom: 14px;
  font-size: 16px;
}

.inline-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid rgba(26, 188, 156, 0.44);
  border-radius: 6px;
  color: #07120f;
  background: #8bf2dc;
  font-weight: 820;
}

.custom-features-section {
  padding-top: 48px;
}

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

.custom-feature-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025));
}

.custom-feature-grid h3 {
  font-size: 34px;
}

.feature-disclaimer {
  margin: 16px 0 0;
  padding: 16px 18px;
  border: 1px solid rgba(26, 188, 156, 0.26);
  border-radius: 8px;
  color: var(--muted);
  background: rgba(26, 188, 156, 0.055);
  font-size: 15px;
}

.feature-disclaimer p {
  margin-bottom: 14px;
}

.cta-section {
  margin-bottom: 32px;
  padding: 72px;
  border: 1px solid rgba(26, 188, 156, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(26, 188, 156, 0.16), transparent 46%),
    linear-gradient(315deg, rgba(143, 0, 255, 0.13), transparent 48%),
    rgba(255, 255, 255, 0.045);
  text-align: center;
}

.cta-section p {
  max-width: 650px;
  margin-inline: auto;
}

.cta-section .primary-action {
  margin-top: 14px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px 0 42px;
  color: var(--muted);
  font-size: 14px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

/* Calculator Styles */
.calculator-section {
  margin-top: 40px;
  padding: 30px;
  border: 1px solid rgba(26, 188, 156, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(26, 188, 156, 0.10), rgba(143, 0, 255, 0.07) 60%, transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.calc-header {
  margin-bottom: 24px;
}

.calc-header h3 {
  margin-bottom: 6px;
  font-size: 22px;
}

.calc-header p {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 0;
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.calc-inputs {
  display: grid;
  gap: 16px;
}

.calc-inputs label {
  display: block;
}

.calc-inputs label span {
  display: block;
  margin-bottom: 6px;
  color: #dcebe8;
  font-size: 13px;
  font-weight: 680;
}

.calc-inputs input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.32);
  color: #fff;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.calc-inputs input:focus {
  border-color: rgba(26, 188, 156, 0.55);
  box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.12);
}

.calc-results {
  display: grid;
  gap: 14px;
}

.calc-result-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.calc-result-card.highlighted {
  border-color: rgba(26, 188, 156, 0.45);
  background: linear-gradient(180deg, rgba(26, 188, 156, 0.13), rgba(255, 255, 255, 0.035));
  box-shadow: 0 12px 36px rgba(26, 188, 156, 0.08);
}

.calc-result-card h4 {
  margin: 0 0 8px;
  color: #83f7dd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.calc-price {
  color: #fff;
  font-size: 32px;
  font-weight: 860;
  line-height: 1.1;
  transition: color 200ms ease;
}

.calc-price.na {
  color: var(--red);
  font-size: 22px;
}

.calc-detail {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

  .hero,
  .split-section,
  .ui-showcase,
  .security-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

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

  .hero-visual {
    max-width: 780px;
    width: 100%;
  }

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

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

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

@media (max-width: 700px) {
  .site-header {
    width: min(100% - 20px, 1180px);
    margin-top: 10px;
  }

  .header-action {
    display: none;
  }

  .hero,
  .trust-band,
  .section,
  .cta-section,
  .site-footer {
    width: min(100% - 24px, 1180px);
  }

  h1 {
    font-size: clamp(60px, 24vw, 92px);
  }

  h2 {
    font-size: clamp(32px, 12vw, 48px);
  }

  .hero-stats,
  .feature-grid,
  .compliance-grid,
  .architecture-grid,
  .edition-grid,
  .pricing-grid,
  .pricing-options,
  .custom-feature-grid,
  .screenshot-grid,
  .ui-panels,
  .metric-row,
  .dashboard-grid,
  .trust-band,
  .security-card,
  .calculator-grid {
    grid-template-columns: 1fr;
  }

  .license-matrix {
    overflow-x: auto;
  }

  .matrix-row {
    min-width: 680px;
  }

  .screenshot-card.wide {
    grid-column: auto;
  }

  .product-layout {
    grid-template-columns: 1fr;
  }

  .mock-sidebar {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .sidebar-logo {
    display: none;
  }

  .side-link {
    margin: 0;
    padding: 9px 8px;
    text-align: center;
    font-size: 11px;
  }

  .metric-row article {
    min-height: 78px;
  }

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

  .cta-section {
    padding: 46px 20px;
  }

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

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}
