:root {
  --guardian-green: #18b26a;
  --trust-blue: #2d6cdf;
  --deep-ink: #0e1a22;
  --white: #ffffff;
  --cloud: #f5f7f8;
  --alert-coral: #e85d5d;
  --ink-soft: #263746;
  --radius: 14px;
  --radius-lg: 22px;
  --line: rgba(14, 26, 34, 0.12);
  --shadow-soft: 0 16px 45px rgba(10, 31, 44, 0.09);
  --shadow-strong: 0 22px 70px rgba(10, 31, 44, 0.22);
  --header-height: 58px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
}

body {
  margin: 0;
  color: var(--deep-ink);
  background: linear-gradient(180deg, #eef7f2 0%, #edf4fe 30%, #f7fafc 100%);
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

.stage-glow,
.stage-noise {
  position: fixed;
  pointer-events: none;
  z-index: -2;
}

.stage-glow {
  border-radius: 999px;
  filter: blur(12px);
}

.stage-glow-a {
  width: 540px;
  height: 540px;
  top: -100px;
  right: -160px;
  background: radial-gradient(circle at center, rgba(45, 108, 223, 0.35), rgba(45, 108, 223, 0));
}

.stage-glow-b {
  width: 500px;
  height: 500px;
  left: -200px;
  top: 220px;
  background: radial-gradient(circle at center, rgba(24, 178, 106, 0.28), rgba(24, 178, 106, 0));
}

.stage-noise {
  inset: 0;
  z-index: -1;
  opacity: 0.3;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0) 40%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0) 38%);
}

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

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 2.6rem));
  margin-inline: auto;
}

.section {
  padding: 5.3rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(14, 26, 34, 0.1);
  background: rgba(245, 247, 248, 0.92);
  backdrop-filter: blur(10px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  height: clamp(33px, 3.2vw, 45px);
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.05rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--deep-ink);
  font-weight: 650;
  font-size: 0.89rem;
}

.site-nav a:not(.btn):hover {
  color: var(--trust-blue);
}

section[id],
main[id] {
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.nav-toggle {
  display: none;
  min-height: 44px;
  min-width: 44px;
  border-radius: 10px;
  border: 1px solid rgba(14, 26, 34, 0.2);
  background: #ffffff;
  color: var(--deep-ink);
  font-weight: 700;
}

.hero {
  padding-top: 5.8rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.1rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--trust-blue);
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--deep-ink);
}

h1,
h2 {
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.75rem);
  line-height: 1.06;
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1.12;
}

h3 {
  font-size: 1.13rem;
  line-height: 1.3;
}

.hero-lead {
  margin: 1.2rem 0 0;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
}

.hero-sublead {
  margin: 0.95rem 0 0;
  font-weight: 700;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.86rem;
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.18rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 750;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, #2ac97a, #1fb86a);
  box-shadow: 0 14px 30px rgba(31, 184, 106, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #23be71, #1aa15c);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(45, 108, 223, 0.35);
  color: #12479e;
}

.btn-ghost:hover {
  background: #ffffff;
}

.site-nav .btn-primary {
  padding-inline: 1.18rem;
  border-radius: 12px;
}

.hero-kpis {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.hero-kpis article {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(14, 26, 34, 0.08);
  border-radius: 12px;
  padding: 0.72rem 0.75rem;
}

.hero-kpis strong {
  display: block;
  font-size: 1.03rem;
}

.hero-kpis span {
  font-size: 0.8rem;
  color: #3f5160;
}

.hero-visual {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.9rem;
  width: min(520px, 100%);
  margin-left: auto;
}

.float-card {
  transition: transform 250ms ease;
}

.device-card {
  position: relative;
  width: 100%;
  margin-left: 0;
  border-radius: 26px;
  background: linear-gradient(160deg, #071622 0%, #132a3a 75%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-strong);
  padding: 1.2rem;
}

.device-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
}

.device-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.78rem;
  color: #b8c8d4;
  margin-bottom: 0.9rem;
}

.device-head p {
  margin: 0;
  font-weight: 700;
  color: #dceaf6;
}

.signal-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.56rem;
}

.signal-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.7rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.14);
  padding-bottom: 0.56rem;
}

.signal-list li:last-child {
  border-bottom: 0;
}

.tag {
  font-size: 0.74rem;
  border-radius: 999px;
  padding: 0.26rem 0.56rem;
  white-space: nowrap;
}

.tag-info {
  background: rgba(45, 108, 223, 0.22);
  color: #b9d6ff;
}

.tag-ok {
  background: rgba(24, 178, 106, 0.24);
  color: #baf4d9;
}

.tag-alert {
  background: rgba(232, 93, 93, 0.26);
  color: #ffc7c7;
}

.device-note {
  margin: 0.9rem 0 0;
  font-size: 0.88rem;
  color: #c8d8e5;
}

.floating-callout {
  position: relative;
  left: auto;
  bottom: auto;
  max-width: none;
  width: 100%;
  background: var(--white);
  color: var(--deep-ink);
  border-radius: 14px;
  border: 1px solid var(--line);
  padding: 0.84rem;
  box-shadow: var(--shadow-soft);
}

.floating-callout p {
  margin: 0;
  font-size: 0.8rem;
  color: #4d6070;
}

.floating-callout strong {
  display: block;
  margin-top: 0.36rem;
  line-height: 1.35;
}

.signal-strip {
  padding: 0.8rem 0 0;
}

.signal-strip-inner {
  border-radius: 14px;
  background: linear-gradient(95deg, #122838, #1c3f59 56%, #2f5f8a);
  color: #e8f4ff;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.signal-strip-inner p {
  margin: 0;
  font-weight: 750;
}

.signal-strip-inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.48rem;
}

.signal-strip-inner li {
  border: 1px solid rgba(232, 244, 255, 0.25);
  border-radius: 999px;
  padding: 0.24rem 0.55rem;
  font-size: 0.77rem;
}

.social-proof-section {
  padding-top: 3.3rem;
  padding-bottom: 3.8rem;
}

.social-proof-head {
  max-width: 840px;
}

.social-proof-head h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.65rem);
}

.social-proof-head p:not(.eyebrow) {
  margin: 0.85rem 0 0;
  color: #2f4453;
  max-width: 64ch;
}

.testimonial-slider {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  gap: 0.85rem;
  align-items: center;
}

.slider-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(14, 26, 34, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: #123f70;
  font-size: 2rem;
  line-height: 1;
  display: inline-grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.slider-btn:hover {
  transform: translateY(-1px);
  background: #ffffff;
  color: #0f3155;
}

.slider-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.testimonial-viewport {
  overflow: hidden;
  border-radius: 20px;
}

.testimonial-track {
  display: flex;
  gap: 0.9rem;
  transition: transform 450ms ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 0.9rem) / 2);
  min-width: 0;
  border-radius: 20px;
  border: 1px solid rgba(14, 26, 34, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(235, 245, 255, 0.84));
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 2.4vw, 1.5rem);
}

.testimonial-category {
  margin: 0;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.22rem 0.66rem;
  border-radius: 999px;
  border: 1px solid rgba(45, 108, 223, 0.24);
  background: rgba(45, 108, 223, 0.08);
  color: #1e4e92;
  font-weight: 760;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  margin: 0.92rem 0 0;
  font-size: clamp(1.02rem, 1.7vw, 1.34rem);
  line-height: 1.45;
  color: #172632;
  font-weight: 550;
}

.testimonial-author {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: #32536f;
  font-weight: 700;
}

.testimonial-dots {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  justify-content: center;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(24, 73, 125, 0.25);
  cursor: pointer;
  padding: 0;
  transition: transform 160ms ease, background 160ms ease;
}

.testimonial-dot.is-active {
  background: #1f5ead;
  transform: scale(1.2);
}

.section-heading {
  max-width: 760px;
}

.section-heading p:not(.eyebrow) {
  margin: 0.82rem 0 0;
}

.benefit-stack {
  margin-top: 1.8rem;
  display: grid;
  gap: 1.15rem;
}

.benefit-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
  gap: 1rem;
  border-radius: 20px;
  border: 1px solid rgba(14, 26, 34, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(237, 246, 255, 0.62));
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  align-items: center;
}

.benefit-section:nth-child(even) {
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
}

.benefit-section:nth-child(even) .benefit-content {
  order: 2;
}

.benefit-section:nth-child(even) .benefit-media {
  order: 1;
}

.benefit-content {
  padding: 0.2rem 0.2rem 0.2rem 0.3rem;
}

.benefit-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  font-size: 0.7rem;
  color: #145b8f;
}

.benefit-content h3 {
  margin-top: 0.45rem;
  font-size: clamp(1.2rem, 2.1vw, 1.62rem);
}

.benefit-content p {
  margin: 0.72rem 0 0;
  max-width: 56ch;
  color: #2f4352;
}

.benefit-media {
  min-height: 210px;
  border-radius: 16px;
  border: 1px dashed rgba(45, 108, 223, 0.35);
  background:
    radial-gradient(circle at 24% 18%, rgba(24, 178, 106, 0.24), rgba(24, 178, 106, 0)),
    radial-gradient(circle at 80% 78%, rgba(45, 108, 223, 0.24), rgba(45, 108, 223, 0)),
    linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(236, 243, 252, 0.9));
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
}

.benefit-media--filled {
  border-style: solid;
  border-color: rgba(14, 26, 34, 0.12);
  background: #ffffff;
}

.benefit-media img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  display: block;
}

.benefit-media span {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #315273;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(14, 26, 34, 0.08);
}

.flow-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.8));
}

.flow-timeline {
  margin: 2rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.flow-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0.92rem;
  padding: 1.05rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.flow-index {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-grid;
  place-items: center;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-weight: 800;
  color: #145b8f;
  background: linear-gradient(180deg, #dff0ff, #cfe3ff);
}

.flow-step p {
  margin: 0.35rem 0 0;
}

.report-section {
  padding-top: 4.4rem;
}

.report-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: start;
}

.report-panel {
  border-radius: var(--radius-lg);
  background: linear-gradient(162deg, #0b2030 0%, #153248 70%);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow-strong);
  padding: 1rem;
}

.report-panel header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.6rem;
}

.report-panel header p {
  margin: 0;
  font-weight: 780;
}

.report-panel header span {
  font-size: 0.76rem;
  color: #c0d4e5;
}

.report-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.18);
  padding: 0.62rem 0;
}

.report-row:last-child {
  border-bottom: 0;
}

.status {
  border-radius: 8px;
  padding: 0.24rem 0.5rem;
  font-size: 0.77rem;
  white-space: nowrap;
}

.status-ok {
  background: rgba(24, 178, 106, 0.24);
  color: #b9f3d8;
}

.status-watch {
  background: rgba(45, 108, 223, 0.26);
  color: #bdd8ff;
}

.status-alert {
  background: rgba(232, 93, 93, 0.26);
  color: #ffc8c8;
}

.privacy-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.privacy-shell {
  border-radius: 28px;
  border: 1px solid rgba(133, 169, 204, 0.25);
  background:
    radial-gradient(circle at 20% 85%, rgba(24, 178, 106, 0.2), rgba(24, 178, 106, 0) 45%),
    radial-gradient(circle at 78% 14%, rgba(45, 108, 223, 0.34), rgba(45, 108, 223, 0) 48%),
    linear-gradient(130deg, #08162b 0%, #0a1f3a 42%, #0f2f57 100%);
  box-shadow: 0 28px 80px rgba(6, 17, 39, 0.35);
  padding: clamp(1.1rem, 2.8vw, 2rem);
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 1rem;
  color: #e7f0fb;
}

.privacy-left {
  display: grid;
  grid-template-rows: auto auto auto 1fr;
}

.privacy-left .eyebrow {
  color: #8bc0ff;
}

.privacy-left h2 {
  color: #f5f8fc;
  font-size: clamp(1.85rem, 3.4vw, 3.3rem);
  line-height: 1.06;
}

.privacy-left h2 span {
  color: #2cd492;
}

.privacy-lead {
  margin: 1rem 0 0;
  max-width: 58ch;
  color: #b9cadc;
  font-size: clamp(1rem, 1.3vw, 1.08rem);
}

.privacy-visual {
  position: relative;
  margin: 1.35rem 0 0;
  border-radius: 20px;
  border: 1px solid rgba(167, 193, 219, 0.4);
  min-height: clamp(260px, 30vw, 390px);
  background:
    radial-gradient(circle at 25% 22%, rgba(65, 217, 155, 0.16), rgba(65, 217, 155, 0) 50%),
    radial-gradient(circle at 75% 75%, rgba(74, 142, 228, 0.16), rgba(74, 142, 228, 0) 50%),
    linear-gradient(145deg, #e9edf1, #d2dde9);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.privacy-visual-glow {
  position: absolute;
  width: 62%;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(44, 212, 146, 0.5), rgba(44, 212, 146, 0));
  filter: blur(12px);
}

.privacy-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: clamp(260px, 30vw, 390px);
  object-fit: cover;
  object-position: center;
}

.privacy-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.privacy-card {
  border-radius: 18px;
  border: 1px solid rgba(167, 193, 219, 0.3);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  padding: 1.4rem 1.2rem;
  backdrop-filter: blur(1px);
}

.privacy-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(44, 212, 146, 0.24), rgba(45, 108, 223, 0.16));
  border: 1px solid rgba(124, 225, 188, 0.35);
  display: inline-grid;
  place-items: center;
}

.privacy-icon svg {
  width: 26px;
  height: 26px;
  stroke: #49e3ab;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.privacy-card h3 {
  margin-top: 1rem;
  color: #f4f8fe;
  font-size: clamp(1.2rem, 1.6vw, 1.8rem);
}

.privacy-card p {
  margin: 0.68rem 0 0;
  color: #a8bdd2;
  line-height: 1.5;
}

.payments-section {
  padding-top: 4rem;
  padding-bottom: 1.2rem;
}

.payments-card {
  border-radius: 24px;
  border: 1px solid rgba(14, 26, 34, 0.1);
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.9), rgba(235, 245, 255, 0.8));
  box-shadow: var(--shadow-soft);
  padding: clamp(1.1rem, 3.4vw, 2rem);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
  align-items: center;
}

.payments-copy p:not(.eyebrow) {
  margin: 0.8rem 0 0;
  color: #324756;
}

.payments-action {
  display: grid;
  gap: 0.75rem;
  justify-items: start;
}

.mp-logo {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.85rem;
  border-radius: 14px;
  border: 1px solid rgba(14, 26, 34, 0.1);
  background: #ffffff;
}

.mp-logo img {
  width: clamp(132px, 18vw, 172px);
  height: auto;
}

.btn-mp {
  color: #ffffff;
  background: linear-gradient(135deg, #00a9e0, #0087c7);
  box-shadow: 0 12px 26px rgba(0, 103, 153, 0.3);
}

.btn-mp:hover {
  background: linear-gradient(135deg, #0098d0, #0077b5);
}

.cta-section {
  padding-top: 3.8rem;
  padding-bottom: 4.8rem;
}

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 14%, rgba(120, 250, 197, 0.28), rgba(120, 250, 197, 0) 42%),
    radial-gradient(circle at 86% 92%, rgba(45, 108, 223, 0.2), rgba(45, 108, 223, 0) 45%),
    linear-gradient(125deg, #0d8f64 0%, #17a276 50%, #139a6f 100%);
  border: 1px solid rgba(203, 255, 235, 0.32);
  color: var(--white);
  padding: clamp(1.7rem, 4.6vw, 3.2rem);
  box-shadow: 0 30px 90px rgba(8, 24, 30, 0.3);
  text-align: center;
}

.cta-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 56%),
    radial-gradient(circle at center, rgba(0, 0, 0, 0.15), transparent 76%);
  opacity: 0.38;
}

.cta-card > * {
  position: relative;
  z-index: 1;
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.9rem;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  font-weight: 760;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #dffff4;
  border: 1px solid rgba(223, 255, 246, 0.44);
  background: rgba(8, 43, 31, 0.22);
}

.cta-card h2,
.cta-card p {
  color: var(--white);
}

.cta-card p {
  margin: 0.85rem auto 0;
  color: #e4fff5;
  max-width: 52ch;
}

.cta-card .hero-actions {
  justify-content: center;
}

.cta-card .btn-ghost {
  border-color: rgba(232, 245, 255, 0.8);
  color: #062f44;
  background: rgba(245, 251, 255, 0.96);
}

/* Philosophy page */
.philosophy-hero {
  padding-top: 5.8rem;
  padding-bottom: 2rem;
  text-align: center;
}

.philosophy-hero-content {
  max-width: 760px;
  margin-inline: auto;
}

.philosophy-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
  max-width: 820px;
  margin-inline: auto;
}

.philosophy-card {
  border-radius: 20px;
  border: 1px solid rgba(14, 26, 34, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(235, 245, 255, 0.84));
  box-shadow: var(--shadow-soft);
  padding: clamp(1.2rem, 2.4vw, 1.8rem);
}

.philosophy-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(140deg, rgba(44, 212, 146, 0.18), rgba(45, 108, 223, 0.12));
  border: 1px solid rgba(45, 108, 223, 0.2);
  display: inline-grid;
  place-items: center;
}

.philosophy-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--trust-blue);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.philosophy-card h2 {
  margin-top: 1rem;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  line-height: 1.2;
}

.philosophy-card p {
  margin: 0.72rem 0 0;
  color: #2f4352;
  line-height: 1.6;
}

.philosophy-highlight {
  font-weight: 700;
  color: var(--deep-ink) !important;
}

.philosophy-section {
  padding-top: 0;
}

/* Legal pages */
.legal-hero {
  padding-top: 5.8rem;
  padding-bottom: 2rem;
  text-align: center;
}

.legal-hero-content {
  max-width: 760px;
  margin-inline: auto;
}

.legal-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.legal-hero p:not(.eyebrow) {
  margin: 0.85rem 0 0;
  color: #2f4453;
}

.legal-body {
  padding-top: 0;
  padding-bottom: 3rem;
}

.legal-content {
  max-width: 820px;
  margin-inline: auto;
  border-radius: 20px;
  border: 1px solid rgba(14, 26, 34, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(235, 245, 255, 0.84));
  box-shadow: var(--shadow-soft);
  padding: clamp(1.4rem, 3.2vw, 2.4rem);
}

.legal-content h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 1.4rem;
}

.legal-content p {
  margin: 0.7rem 0 0;
  color: #2f4352;
  line-height: 1.65;
}

.legal-content ul,
.legal-content ol {
  margin: 0.7rem 0 0;
  padding-left: 1.3rem;
  color: #2f4352;
  line-height: 1.65;
}

.legal-content li {
  margin-top: 0.35rem;
}

.legal-content strong {
  color: var(--deep-ink);
}

.legal-content a {
  color: var(--trust-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: #1b4d94;
}

.legal-updated {
  margin: 0;
  font-size: 0.88rem;
  color: #4d6070;
  font-weight: 600;
}


@media (max-width: 720px) {
  .philosophy-hero {
    padding-top: 4.8rem;
    padding-bottom: 1.5rem;
  }

  .legal-hero {
    padding-top: 4.8rem;
    padding-bottom: 1.5rem;
  }
}

.site-footer {
  padding: 3rem 0 2rem;
  color: #d6e7f8;
  background:
    radial-gradient(circle at 14% -20%, rgba(40, 122, 235, 0.22), rgba(40, 122, 235, 0) 38%),
    radial-gradient(circle at 88% 0%, rgba(27, 191, 123, 0.2), rgba(27, 191, 123, 0) 40%),
    linear-gradient(180deg, #021428 0%, #041021 100%);
  border-top: 1px solid rgba(79, 124, 170, 0.32);
}

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

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

.footer-brand-logo img {
  height: clamp(30px, 3vw, 40px);
}

.footer-brand p {
  margin: 0.95rem 0 0;
  color: #9fbbd8;
}

.footer-meta {
  list-style: none;
  padding: 0;
  margin: 0.95rem 0 0;
  display: grid;
  gap: 0.5rem;
  color: #c5daef;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(131, 167, 207, 0.15);
}

.footer-social a {
  color: #6a8eb5;
  transition: color 0.25s, transform 0.25s;
  display: flex;
}

.footer-social a:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-meta a,
.footer-links a {
  color: #b8d3ee;
  text-decoration: none;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 0.56rem;
}

.footer-links h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: #eff7ff;
}

.footer-links a:hover,
.footer-meta a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 1.7rem;
  padding-top: 0.95rem;
  border-top: 1px solid rgba(131, 167, 207, 0.24);
  color: #8faccc;
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: transform 620ms cubic-bezier(0.2, 0.75, 0.2, 1), opacity 620ms ease;
}

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

:focus-visible {
  outline: 3px solid var(--trust-blue);
  outline-offset: 2px;
}

@media (max-width: 1024px) {
  :root {
    --header-height: 56px;
  }

  .hero-layout,
  .report-layout,
  .privacy-shell,
  .payments-card {
    grid-template-columns: 1fr;
  }

  .privacy-cards {
    grid-template-columns: 1fr 1fr;
  }

  .floating-callout {
    margin-top: 0;
  }

  .hero-visual {
    min-height: auto;
    align-items: stretch;
    width: 100%;
    margin-left: 0;
  }

  .device-card,
  .floating-callout {
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .signal-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .signal-strip-inner ul {
    justify-content: flex-start;
  }

  .testimonial-slider {
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
  }

  .slider-btn {
    width: 46px;
    height: 46px;
  }

  .testimonial-viewport {
    grid-column: 1 / -1;
    order: 1;
  }

  .slider-btn-prev {
    order: 2;
    justify-self: end;
  }

  .slider-btn-next {
    order: 3;
    justify-self: start;
  }

  .benefit-section,
  .benefit-section:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .benefit-section:nth-child(even) .benefit-content,
  .benefit-section:nth-child(even) .benefit-media {
    order: initial;
  }

  .flow-timeline {
    grid-template-columns: 1fr;
  }

  .site-nav {
    position: absolute;
    right: 1.3rem;
    top: calc(var(--header-height) + 8px);
    width: min(330px, calc(100% - 2.6rem));
    border-radius: 14px;
    border: 1px solid rgba(14, 26, 34, 0.14);
    background: #f7f9fb;
    padding: 0.8rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow-soft);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

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

@media (max-width: 720px) {
  .section {
    padding: 4.4rem 0;
  }

  .hero {
    padding-top: 4.8rem;
  }

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

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

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

  .benefit-section {
    padding: 0.85rem;
    gap: 0.8rem;
  }

  .social-proof-section {
    padding-top: 2.5rem;
    padding-bottom: 3.1rem;
  }

  .social-proof-head h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .testimonial-track {
    gap: 0;
  }

  .testimonial-card {
    flex-basis: 100%;
    padding: 0.95rem;
  }

  .testimonial-card blockquote {
    font-size: 1.02rem;
  }

  .benefit-media {
    min-height: 170px;
  }

  .privacy-section {
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
  }

  .privacy-shell {
    padding: 0.9rem;
    border-radius: 20px;
  }

  .privacy-cards {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .privacy-card {
    padding: 1rem;
  }

  .payments-action {
    justify-items: stretch;
  }

  .btn-mp {
    width: 100%;
  }

  .signal-list li,
  .report-row {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .footer-brand {
    max-width: none;
  }
}

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

  .reveal,
  .float-card,
  .btn {
    transition: none !important;
    animation: none !important;
  }
}
