:root {
  color-scheme: light;
  --navy-950: #04121c;
  --navy-900: #071c2a;
  --navy-850: #0a2434;
  --navy-800: #0d2d42;
  --ink: #0b2537;
  --muted: #60717c;
  --muted-dark: #9fb4bf;
  --green: #00d977;
  --green-strong: #00bd68;
  --green-soft: #dffbed;
  --orange: #ff7a2f;
  --cream: #f7f9f6;
  --white: #ffffff;
  --line: #dce6e2;
  --shadow: 0 28px 80px rgba(5, 31, 45, 0.12);
  --shell: 1180px;
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

a {
  color: inherit;
}

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

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 3px solid rgba(0, 217, 119, 0.45);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  transform: translateY(-150%);
  border-radius: 9px;
  background: var(--white);
  color: var(--navy-950);
  padding: 10px 15px;
  font-weight: 800;
}

.skip-link:focus {
  transform: none;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    backdrop-filter 180ms ease;
}

.site-header.scrolled {
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(4, 18, 28, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 125px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 31px;
}

.primary-nav > a {
  position: relative;
  color: #b9c9d0;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 160ms ease;
}

.primary-nav > a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--green);
  transition: transform 160ms ease;
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible {
  color: var(--white);
}

.primary-nav > a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 5px;
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  place-items: center;
  padding: 11px;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 2px;
  background: #fff;
  transition: 180ms ease;
}

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

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

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

.button {
  min-height: 49px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 0 20px;
  font-weight: 800;
  font-size: 0.91rem;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, #00df7a, #00be68);
  color: #032116;
  box-shadow: 0 15px 36px rgba(0, 217, 119, 0.22);
}

.button-primary:hover {
  box-shadow: 0 18px 44px rgba(0, 217, 119, 0.32);
}

.button-ghost {
  min-height: 42px;
  border-color: rgba(255, 255, 255, 0.15);
  color: #e6eff2;
  background: rgba(255, 255, 255, 0.04);
}

.button-small {
  min-height: 42px;
  padding-inline: 17px;
  font-size: 0.84rem;
}

.button-dark {
  color: #fff;
  background: var(--navy-900);
}

.button-light {
  color: var(--navy-950);
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.button-large {
  min-height: 58px;
  padding-inline: 27px;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 850px;
  padding: 164px 0 0;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(4, 18, 28, 0) 0%, rgba(4, 18, 28, 0.2) 100%),
    radial-gradient(circle at 70% 40%, rgba(0, 217, 119, 0.1), transparent 33%), var(--navy-950);
}

.hero::before {
  content: '';
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 82%);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(15px);
  pointer-events: none;
}

.hero-glow-one {
  top: -240px;
  right: -180px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(0, 217, 119, 0.2), transparent 67%);
}

.hero-glow-two {
  bottom: -270px;
  left: -230px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(255, 122, 47, 0.12), transparent 68%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 72px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #4d7868;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  color: #91e7c3;
}

.eyebrow > span {
  width: 25px;
  height: 1px;
  background: var(--green);
  box-shadow: 0 0 10px rgba(0, 217, 119, 0.65);
}

.hero h1 {
  max-width: 650px;
  margin: 22px 0 25px;
  font-size: clamp(3.4rem, 6.5vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  font-weight: 770;
}

.hero h1 em {
  display: block;
  color: var(--green);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 31px;
  color: #aebfc6;
  font-size: clamp(1.05rem, 1.5vw, 1.21rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.text-link {
  color: #dbe7eb;
  font-size: 0.91rem;
  font-weight: 750;
  text-decoration: none;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  color: var(--green);
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateY(3px);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 27px;
  color: #8098a3;
  font-size: 0.79rem;
}

.hero-notes span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-notes i {
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: rgba(0, 217, 119, 0.12);
  font-size: 0.64rem;
  font-style: normal;
}

.product-scene {
  position: relative;
  min-height: 530px;
  perspective: 1100px;
}

.scene-orbit {
  position: absolute;
  border: 1px solid rgba(0, 217, 119, 0.12);
  border-radius: 50%;
}

.orbit-one {
  width: 510px;
  height: 510px;
  top: -4px;
  left: 54px;
}

.orbit-two {
  width: 370px;
  height: 370px;
  top: 68px;
  left: 126px;
}

.dashboard-preview {
  position: absolute;
  z-index: 2;
  top: 26px;
  left: 12px;
  width: min(620px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 23px;
  background: rgba(9, 32, 46, 0.92);
  box-shadow:
    0 60px 120px rgba(0, 0, 0, 0.4),
    inset 0 1px rgba(255, 255, 255, 0.06);
  transform: rotateY(-5deg) rotateX(2deg);
  backdrop-filter: blur(18px);
}

.preview-topbar {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.025);
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

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

.preview-brand strong,
.preview-brand span {
  display: block;
}

.preview-brand strong {
  color: #f5fafb;
  font-size: 0.82rem;
}

.preview-brand span {
  margin-top: 3px;
  color: #708894;
  font-size: 0.61rem;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(0, 217, 119, 0.17);
  border-radius: 999px;
  padding: 7px 10px;
  color: #99dfc1;
  background: rgba(0, 217, 119, 0.07);
  font-size: 0.62rem;
  font-weight: 800;
}

.live-pill i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(0, 217, 119, 0.1);
}

.preview-body {
  padding: 18px;
}

.signal-card,
.chart-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 15px;
  background: rgba(3, 17, 25, 0.55);
  padding: 17px;
}

.chart-card {
  margin-top: 12px;
}

.signal-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.signal-heading span {
  color: #dce8ec;
  font-size: 0.7rem;
  font-weight: 800;
}

.signal-heading b {
  color: #637f8b;
  font-size: 0.57rem;
  font-weight: 700;
}

.signal-main {
  display: grid;
  grid-template-columns: 126px 1fr;
  align-items: center;
  gap: 24px;
  padding: 20px 0 3px;
}

.risk-ring {
  position: relative;
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--green) 0 94%, rgba(255, 255, 255, 0.08) 94% 100%);
  box-shadow: 0 0 35px rgba(0, 217, 119, 0.1);
}

.risk-ring::before {
  content: '';
  width: 82px;
  height: 82px;
  border-radius: inherit;
  background: #09202e;
}

.risk-ring > span {
  position: absolute;
  text-align: center;
}

.risk-ring strong,
.risk-ring small {
  display: block;
}

.risk-ring strong {
  color: #fff;
  font-size: 1.65rem;
  line-height: 1;
}

.risk-ring small {
  margin-top: 5px;
  color: #6e8b96;
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.signal-stats {
  display: grid;
  gap: 8px;
}

.signal-stats > span,
.activity-card > span {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.signal-stats b {
  color: #8499a2;
  font-size: 0.62rem;
}

.signal-stats strong {
  color: #dfe9ec;
  font-size: 0.64rem;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dot-green {
  background: var(--green);
}

.dot-amber {
  background: #f1aa43;
}

.dot-red {
  background: #ef6d68;
}

.chart {
  height: 98px;
  display: flex;
  align-items: end;
  gap: 7px;
  margin-top: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: repeating-linear-gradient(to top, transparent 0 31px, rgba(255, 255, 255, 0.035) 32px);
}

.chart span {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, rgba(0, 217, 119, 0.12), rgba(0, 217, 119, 0.72));
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  color: #536f7b;
  font-size: 0.51rem;
}

.floating-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  padding: 12px 15px;
  background: rgba(13, 43, 58, 0.93);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(14px);
}

.floating-decision {
  right: -38px;
  bottom: 72px;
}

.floating-site {
  bottom: 4px;
  left: -34px;
}

.floating-icon,
.pulse {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 10px;
  color: var(--green);
  background: rgba(0, 217, 119, 0.1);
  font-weight: 900;
}

.pulse i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(0, 217, 119, 0.1);
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  margin-bottom: 4px;
  color: #6f8b97;
  font-size: 0.57rem;
}

.floating-card strong {
  color: #eff8fa;
  font-size: 0.69rem;
}

.proof-strip {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 55px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.proof-strip p {
  margin: 0;
  color: #627c88;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-strip div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 28px;
}

.proof-strip span {
  color: #a6b9c1;
  font-size: 0.75rem;
  font-weight: 700;
}

.proof-strip span::before {
  content: '·';
  margin-right: 8px;
  color: var(--green);
}

.section {
  padding: 124px 0;
}

.section-light {
  background: #f8faf8;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 62px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.process-copy h2,
.trust-copy h2,
.faq-heading h2,
.cta-inner h2 {
  margin: 16px 0 18px;
  color: var(--ink);
  font-size: clamp(2.45rem, 5vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.section-heading p,
.process-copy > p,
.trust-copy > p,
.faq-heading > p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 365px;
  border: 1px solid #dfe8e4;
  border-radius: 22px;
  background: #fff;
  padding: 34px;
  box-shadow: 0 16px 45px rgba(7, 36, 49, 0.045);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: #c8ded4;
  box-shadow: var(--shadow);
}

.feature-card::after {
  content: '';
  position: absolute;
  right: -95px;
  bottom: -100px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 217, 119, 0.08), transparent 68%);
}

.feature-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border: 1px solid #cfe9dc;
  border-radius: 13px;
  color: #008b56;
  background: var(--green-soft);
  font-size: 1.4rem;
  font-weight: 900;
}

.feature-number {
  position: absolute;
  top: 38px;
  right: 35px;
  color: #c9d5d1;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.feature-card h3 {
  margin: 29px 0 13px;
  color: var(--ink);
  font-size: 1.48rem;
  letter-spacing: -0.035em;
}

.feature-card > p,
.feature-card > div > p {
  max-width: 530px;
  color: var(--muted);
  line-height: 1.7;
}

.mini-signal-list {
  display: grid;
  gap: 8px;
  margin-top: 27px;
}

.mini-signal-list > span {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr auto;
  align-items: center;
  gap: 15px;
  border: 1px solid #e7eeeb;
  border-radius: 9px;
  padding: 10px 13px;
  background: #fbfcfb;
  font-size: 0.7rem;
}

.mini-signal-list i {
  color: #82908c;
  font-style: normal;
}

.mini-signal-list b {
  color: #294255;
}

.mini-signal-list em {
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 0.57rem;
  font-style: normal;
  font-weight: 850;
}

.mini-signal-list .safe {
  color: #087f55;
  background: #e3f8ed;
}

.policy-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 29px;
}

.policy-pills span {
  border: 1px solid #dae6e1;
  border-radius: 999px;
  padding: 8px 12px;
  color: #60716b;
  background: #fafcfb;
  font-size: 0.68rem;
  font-weight: 800;
}

.policy-pills span:nth-child(3) {
  border-color: #f4d9bf;
  color: #a35c22;
  background: #fff7ee;
}

.latency-line {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 48px;
  padding-top: 14px;
  color: #74857f;
  font-size: 0.65rem;
}

.latency-line::before,
.latency-line i {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  border-radius: 4px;
}

.latency-line::before {
  right: 0;
  background: #e5ece9;
}

.latency-line i {
  width: 76%;
  background: linear-gradient(90deg, var(--green), #86ebbb);
}

.latency-line b {
  color: #1e3a4a;
}

.feature-card-wide {
  min-height: 300px;
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr minmax(330px, 0.72fr);
  align-items: center;
  gap: 55px;
}

.activity-card {
  display: grid;
  gap: 8px;
  border: 1px solid #e0eae6;
  border-radius: 14px;
  padding: 13px;
  background: #f7faf8;
}

.activity-card > span {
  border: 1px solid #e5ece9;
  background: #fff;
}

.activity-card b,
.activity-card em {
  font-size: 0.65rem;
}

.activity-card b {
  color: #536a64;
}

.activity-card em {
  color: #0a7a53;
  font-style: normal;
  font-weight: 800;
}

.process-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 10% 90%, rgba(255, 122, 47, 0.12), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(0, 217, 119, 0.11), transparent 28%), var(--navy-900);
}

.process-section::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.06) 40.2%, transparent 40.5%);
  background-size: 72px 72px;
  pointer-events: none;
}

.process-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 105px;
}

.kicker-light {
  color: #8be5be;
}

.process-copy h2,
.cta-inner h2 {
  color: #fff;
}

.process-copy > p {
  color: #9eb1ba;
}

.process-copy .button {
  margin-top: 16px;
}

.process-list {
  position: relative;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  content: '';
  position: absolute;
  top: 44px;
  bottom: 44px;
  left: 30px;
  width: 1px;
  background: linear-gradient(var(--green), rgba(0, 217, 119, 0.08));
}

.process-list li {
  position: relative;
  display: grid;
  grid-template-columns: 61px 1fr;
  gap: 22px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 17px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(8px);
}

.process-list li > span {
  position: relative;
  z-index: 2;
  width: 61px;
  height: 61px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 217, 119, 0.18);
  border-radius: 16px;
  color: var(--green);
  background: #0b2b3a;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.process-list h3 {
  margin: 3px 0 7px;
  color: #eef6f8;
  font-size: 1.08rem;
}

.process-list p {
  margin: 0;
  color: #8299a3;
  font-size: 0.88rem;
  line-height: 1.62;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(430px, 0.92fr) 1.08fr;
  align-items: center;
  gap: 105px;
}

.trust-visual {
  position: relative;
  min-height: 490px;
  display: grid;
  place-items: center;
  border: 1px solid #e0e9e5;
  border-radius: 28px;
  background:
    radial-gradient(circle, rgba(0, 217, 119, 0.1), transparent 48%),
    repeating-radial-gradient(circle, transparent 0 48px, rgba(10, 76, 57, 0.045) 49px 50px), #fff;
  box-shadow: var(--shadow);
}

.shield-core {
  position: relative;
  width: 182px;
  height: 182px;
  display: grid;
  place-items: center;
  border: 1px solid #cfe6db;
  border-radius: 50%;
  background: #f9fcfa;
  box-shadow: 0 23px 60px rgba(0, 124, 77, 0.12);
}

.shield-core img {
  width: 108px;
  height: 108px;
  object-fit: contain;
}

.shield-ring {
  position: absolute;
  border: 1px solid rgba(0, 185, 101, 0.16);
  border-radius: 50%;
}

.ring-a {
  inset: -47px;
}

.ring-b {
  inset: -97px;
}

.trust-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 158px;
  border: 1px solid #dbe8e2;
  border-radius: 13px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 35px rgba(7, 42, 34, 0.1);
}

.trust-badge > i {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #087a52;
  background: #def8eb;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 900;
}

.trust-badge small,
.trust-badge b {
  display: block;
}

.trust-badge small {
  color: #879690;
  font-size: 0.55rem;
}

.trust-badge b {
  margin-top: 3px;
  color: #1f3b4a;
  font-size: 0.67rem;
}

.badge-one {
  top: 61px;
  left: 27px;
}

.badge-two {
  top: 93px;
  right: 20px;
}

.badge-three {
  right: 48px;
  bottom: 53px;
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 33px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 14px;
}

.check-list li > i {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #087d54;
  background: #e0f8ec;
  font-size: 0.73rem;
  font-style: normal;
  font-weight: 900;
}

.check-list strong {
  display: block;
  margin-bottom: 5px;
  color: #183546;
  font-size: 0.94rem;
}

.check-list span {
  color: #71817c;
  font-size: 0.85rem;
  line-height: 1.58;
}

.trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-links a {
  color: #087853;
  font-size: 0.8rem;
  font-weight: 850;
  text-decoration: none;
}

.pricing-section {
  background: #eef4f0;
}

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

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid #d9e4df;
  border-radius: 21px;
  padding: 32px;
  background: #fff;
  box-shadow: 0 16px 45px rgba(9, 45, 37, 0.04);
}

.price-card-featured {
  border-color: var(--navy-850);
  color: #fff;
  background: var(--navy-900);
  box-shadow: 0 28px 70px rgba(5, 31, 45, 0.18);
}

.popular-label {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  border-radius: 999px;
  padding: 7px 13px;
  color: #052017;
  background: var(--green);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.price-top > span {
  font-size: 1.13rem;
  font-weight: 900;
}

.price-top small {
  border-radius: 999px;
  padding: 6px 9px;
  color: #677a73;
  background: #edf3f0;
  font-size: 0.56rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.price-card-featured .price-top small {
  color: #9ee4c5;
  background: rgba(0, 217, 119, 0.1);
}

.price {
  display: flex;
  align-items: flex-start;
  margin: 27px 0 15px;
  color: var(--ink);
}

.price-card-featured .price {
  color: #fff;
}

.price sup {
  margin-top: 10px;
  font-size: 1.08rem;
  font-weight: 900;
}

.price strong {
  font-size: 3.65rem;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.price span {
  align-self: flex-end;
  margin: 0 0 4px 8px;
  color: #80908a;
  font-size: 0.72rem;
}

.price-summary {
  min-height: 52px;
  color: #6c7e77;
  font-size: 0.85rem;
  line-height: 1.6;
}

.price-card-featured .price-summary {
  color: #9eb2bb;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 22px 0 31px;
  padding: 22px 0 0;
  border-top: 1px solid #e6ece9;
  list-style: none;
}

.price-card-featured ul {
  border-color: rgba(255, 255, 255, 0.09);
}

.price-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #40564d;
  font-size: 0.79rem;
}

.price-card-featured li {
  color: #c3d1d6;
}

.price-card li i {
  width: 20px;
  height: 20px;
  display: grid;
  flex: 0 0 20px;
  place-items: center;
  border-radius: 6px;
  color: #087f55;
  background: #dff8eb;
  font-size: 0.56rem;
  font-style: normal;
  font-weight: 900;
}

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

.pricing-note {
  max-width: 790px;
  margin: 29px auto 0;
  color: #74837e;
  font-size: 0.72rem;
  line-height: 1.65;
  text-align: center;
}

.faq-section {
  background: #f8faf8;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq-heading {
  position: sticky;
  top: 125px;
  align-self: start;
}

.faq-heading a {
  color: #087b54;
  font-weight: 800;
}

.accordion {
  border-top: 1px solid #d7e2dd;
}

.accordion details {
  border-bottom: 1px solid #d7e2dd;
}

.accordion summary {
  display: grid;
  grid-template-columns: 1fr 32px;
  align-items: center;
  gap: 20px;
  padding: 25px 0;
  color: #173445;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  list-style: none;
}

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

.accordion summary span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: #0b704f;
  background: #e1f5eb;
  font-size: 1.1rem;
  font-weight: 500;
  transition: transform 180ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  margin: -7px 54px 25px 0;
  color: #6c7e78;
  font-size: 0.91rem;
  line-height: 1.72;
}

.cta-section {
  position: relative;
  overflow: hidden;
  padding: 82px 0;
  color: #fff;
  background: var(--navy-850);
}

.cta-section::after {
  content: '';
  position: absolute;
  right: -90px;
  bottom: -150px;
  width: 390px;
  height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  box-shadow:
    0 0 0 65px rgba(255, 255, 255, 0.018),
    0 0 0 130px rgba(255, 255, 255, 0.012);
}

.cta-glow {
  position: absolute;
  top: -210px;
  left: 32%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 217, 119, 0.16), transparent 68%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
}

.cta-inner h2 {
  margin-bottom: 12px;
}

.cta-inner p {
  max-width: 650px;
  margin: 0;
  color: #9eb3bc;
  line-height: 1.65;
}

.cta-inner .button {
  flex: 0 0 auto;
}

.site-footer {
  padding: 72px 0 25px;
  color: #fff;
  background: var(--navy-950);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1.55fr) repeat(3, minmax(125px, 0.65fr));
  gap: 60px;
  padding-bottom: 57px;
}

.footer-brand img {
  width: 132px;
  height: auto;
}

.footer-brand p {
  max-width: 310px;
  margin: 22px 0 17px;
  color: #8097a2;
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-brand > a {
  color: #a4e6c8;
  font-size: 0.8rem;
  font-weight: 750;
  text-decoration: none;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-column strong {
  margin-bottom: 5px;
  color: #dfe9ed;
  font-size: 0.76rem;
}

.footer-column a {
  color: #78909a;
  font-size: 0.73rem;
  text-decoration: none;
  transition: color 150ms ease;
}

.footer-column a:hover {
  color: var(--green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
  margin: 0;
  color: #607984;
  font-size: 0.63rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 550ms ease,
    transform 550ms ease;
}

.reveal.revealed {
  opacity: 1;
  transform: none;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #fff;
  background: radial-gradient(circle at 50% 30%, rgba(0, 217, 119, 0.12), transparent 35%), var(--navy-950);
}

.error-card {
  max-width: 650px;
  text-align: center;
}

.error-card img {
  width: 90px;
  margin: 0 auto 28px;
}

.error-card h1 {
  margin: 14px 0 18px;
  font-size: clamp(2.7rem, 7vw, 5rem);
  line-height: 1;
  letter-spacing: -0.065em;
}

.error-card p {
  margin-bottom: 30px;
  color: #9cb0ba;
}

@media (max-width: 1080px) {
  .primary-nav {
    gap: 19px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.9fr) minmax(450px, 1.1fr);
    gap: 30px;
  }

  .product-scene {
    transform: scale(0.9);
    transform-origin: center;
  }

  .floating-decision {
    right: -10px;
  }

  .process-layout,
  .trust-grid {
    gap: 60px;
  }

  .trust-grid {
    grid-template-columns: minmax(390px, 0.95fr) 1.05fr;
  }
}

@media (max-width: 900px) {
  .shell {
    width: min(var(--shell), calc(100% - 36px));
  }

  .menu-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 74px;
    right: 14px;
    left: 14px;
    max-height: calc(100vh - 92px);
    display: grid;
    align-items: stretch;
    gap: 2px;
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 18px;
    background: rgba(5, 24, 35, 0.98);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
    transform: translateY(-15px);
    visibility: hidden;
    opacity: 0;
    transition: 180ms ease;
  }

  .primary-nav.open {
    transform: none;
    visibility: visible;
    opacity: 1;
  }

  .primary-nav > a {
    padding: 13px 10px;
    font-size: 0.95rem;
  }

  .primary-nav > a::after {
    display: none;
  }

  .nav-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin: 12px 0 0;
  }

  .hero {
    padding-top: 135px;
  }

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

  .hero-copy {
    max-width: 720px;
    padding-bottom: 20px;
  }

  .product-scene {
    width: min(650px, 100%);
    margin: 0 auto;
    transform: none;
  }

  .dashboard-preview {
    position: relative;
  }

  .proof-strip {
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 0;
  }

  .proof-strip div {
    justify-content: flex-start;
  }

  .process-layout,
  .trust-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .trust-visual {
    width: min(590px, 100%);
    margin-inline: auto;
    order: 2;
  }

  .faq-heading {
    position: static;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    width: min(580px, 100%);
    margin-inline: auto;
    gap: 24px;
  }

  .price-summary {
    min-height: 0;
  }

  .footer-grid {
    grid-template-columns: 1.25fr repeat(2, 0.8fr);
  }
}

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

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 106px;
    height: auto;
  }

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

  .hero h1 {
    font-size: clamp(3.05rem, 16vw, 4.5rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

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

  .hero-notes {
    gap: 12px 16px;
  }

  .product-scene {
    min-height: 470px;
    margin-top: 18px;
  }

  .dashboard-preview {
    top: 0;
    left: 0;
    transform: none;
  }

  .preview-body {
    padding: 12px;
  }

  .signal-main {
    grid-template-columns: 98px 1fr;
    gap: 10px;
  }

  .risk-ring {
    width: 90px;
    height: 90px;
  }

  .risk-ring::before {
    width: 66px;
    height: 66px;
  }

  .risk-ring strong {
    font-size: 1.3rem;
  }

  .floating-decision {
    right: -4px;
    bottom: 18px;
  }

  .floating-site,
  .scene-orbit {
    display: none;
  }

  .proof-strip {
    margin-top: 15px;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 40px;
  }

  .section-heading h2,
  .process-copy h2,
  .trust-copy h2,
  .faq-heading h2,
  .cta-inner h2 {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
  }

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

  .feature-card,
  .feature-card-wide {
    min-height: 0;
    grid-column: auto;
    display: block;
    padding: 26px;
  }

  .activity-card {
    margin-top: 27px;
  }

  .process-layout,
  .trust-grid,
  .faq-layout {
    gap: 50px;
  }

  .process-list li {
    grid-template-columns: 49px 1fr;
    gap: 14px;
    padding: 18px;
  }

  .process-list li > span {
    width: 49px;
    height: 49px;
  }

  .process-list::before {
    left: 24px;
  }

  .trust-visual {
    min-height: 410px;
  }

  .shield-core {
    width: 145px;
    height: 145px;
  }

  .shield-core img {
    width: 85px;
    height: 85px;
  }

  .ring-b {
    display: none;
  }

  .trust-badge {
    min-width: 140px;
    transform: scale(0.9);
  }

  .badge-one {
    top: 37px;
    left: 1px;
  }

  .badge-two {
    top: 77px;
    right: -4px;
  }

  .badge-three {
    right: 12px;
    bottom: 31px;
  }

  .price-card {
    padding: 28px 24px;
  }

  .cta-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 25px;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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

@media print {
  .site-header,
  .hero-actions,
  .cta-section,
  .menu-toggle {
    display: none !important;
  }

  .hero,
  .process-section,
  .site-footer {
    color: #111;
    background: #fff;
  }

  .hero {
    min-height: 0;
    padding-top: 30px;
  }
}
