:root {
  --bg: #f3f7fd;
  --surface: #ffffff;
  --ink: #0f172a;
  --muted: #475569;
  --line: #d6e4f4;
  --brand: #0069ff;
  --brand-strong: #0053cc;
  --brand-soft: #eaf2ff;
  --max: 1240px;
  --radius: 14px;
  --shadow: 0 20px 44px rgba(15, 23, 42, 0.1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f6f9ff 0%, #eef4ff 52%, #f8fbff 100%);
  line-height: 1.55;
}

.bg-motion,
.orb {
  display: none;
}

.container {
  width: min(100% - 2.2rem, var(--max));
  margin-inline: auto;
}

.top-strip {
  background: #0a2f7c;
  color: #dbeafe;
  font-size: 0.85rem;
}

.top-strip-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-strip p {
  margin: 0;
}

.top-strip a {
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(214, 228, 244, 0.2);
  background: rgba(246, 250, 255, 0.86);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  border-color: rgba(214, 228, 244, 0.85);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #d4e5ff;
  background: #eef5ff;
  color: #0f2e68;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-left: auto;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s var(--ease);
  z-index: 55;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  object-fit: contain;
}

nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

nav a {
  text-decoration: none;
  color: #1e293b;
  font-size: 0.94rem;
  font-weight: 600;
}

nav a:hover {
  color: var(--brand);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.62rem 0.95rem;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: transform 0.24s var(--ease), box-shadow 0.24s var(--ease), background-color 0.24s var(--ease);
}

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

.btn-primary {
  color: #ffffff;
  background: linear-gradient(120deg, #0077ff, #005bdb);
  box-shadow: 0 12px 24px rgba(0, 105, 255, 0.25);
}

.btn-light {
  color: #0f2e68;
  background: #eef5ff;
  border-color: #d4e5ff;
}

.btn-ghost {
  color: #0f2e68;
  background: #ffffff;
  border-color: #ceddf2;
}

.hero {
  padding: 1.5rem 0 4.2rem;
  display: grid;
  gap: 2.6rem;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
}

.pill {
  display: inline-block;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: #e8f1ff;
  color: #0d3f9f;
  font-weight: 700;
  font-size: 0.8rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.18;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.45rem);
  letter-spacing: -0.02em;
  max-width: 15ch;
}

.hero-support {
  margin: 0.95rem 0 0;
  color: #334155;
  max-width: 54ch;
}

.actions {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.hero-notes {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-notes li {
  border: 1px solid #d2e2f6;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.8rem;
  color: #1e3a8a;
  background: #ffffff;
}

.hero-panel {
  border-radius: 18px;
  border: 1px solid #cddff5;
  background: linear-gradient(180deg, #0c3f9f 0%, #0a327d 100%);
  color: #ffffff;
  padding: 1rem;
  box-shadow: var(--shadow);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0.15rem 0.65rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.panel-head strong {
  font-size: 1rem;
}

.panel-head span {
  font-size: 0.8rem;
  color: #bfdbfe;
}

.kpi-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.kpi-grid article {
  border-radius: 12px;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.kpi-grid span {
  display: block;
  font-size: 0.75rem;
  color: #dbeafe;
}

.kpi-grid strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.02rem;
}

.kpi-grid small {
  display: block;
  margin-top: 0.2rem;
  color: #bfdbfe;
  font-size: 0.74rem;
}

.panel-feed {
  margin-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 0.8rem;
}

.panel-feed p {
  margin: 0;
  display: flex;
  justify-content: space-between;
  gap: 0.65rem;
  font-size: 0.84rem;
  padding: 0.35rem 0;
}

.panel-feed strong {
  color: #86efac;
}

.section {
  padding: 2.7rem 0;
  border-top: 1px solid var(--line);
}

.landing-main .section {
  padding: 5rem 0;
}

.logo-strip {
  padding-top: 2rem;
}

.logo-strip p {
  margin: 0;
  font-weight: 600;
  color: var(--muted);
}

.logo-row {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.7rem;
}

.logo-row span {
  display: inline-grid;
  place-items: center;
  min-height: 48px;
  border-radius: 10px;
  border: 1px solid #d5e4f6;
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  background: #ffffff;
}

.section h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.1rem);
}

.split-wrap {
  display: grid;
  gap: 5rem;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.2rem;
  align-items: center;
}

.feature-split.reverse .feature-copy {
  order: 2;
}

.feature-split.reverse .feature-media {
  order: 1;
}

.feature-copy h2 {
  max-width: 16ch;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.feature-copy p {
  margin: 1rem 0 0;
  max-width: 40ch;
  color: #334155;
  font-size: 1.15rem;
}

.feature-media {
  min-height: 340px;
  border-radius: 18px;
  position: relative;
  overflow: hidden;
  border: 1px solid #cadcf5;
  box-shadow: var(--shadow);
}

.media-one {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 255, 255, 0.2), transparent 36%),
    linear-gradient(145deg, #0f3a97 0%, #1356d6 52%, #2e8bff 100%);
}

.media-one::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 35%, rgba(255, 255, 255, 0.07) 100%);
}

.media-one::after {
  content: "";
  position: absolute;
  width: 160px;
  height: 160px;
  right: -30px;
  top: -36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.media-chip {
  position: absolute;
  top: auto;
  bottom: 10%;
  background: rgba(255, 255, 255, 0.95);
  color: #0f2f73;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
}

.chip-a {
  left: 8%;
}

.chip-b {
  left: 36%;
}

.chip-c {
  left: 63%;
}

.media-two {
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 255, 255, 0.18), transparent 38%),
    linear-gradient(130deg, #0f4db8 0%, #0b3b97 52%, #072d77 100%);
}

.media-two::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 40%);
}

.media-two::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -55px;
  bottom: -60px;
  border-radius: 50%;
  background: rgba(148, 197, 255, 0.22);
}

.mock-device {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 12%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.96);
  padding: 0.8rem;
  box-shadow: 0 16px 35px rgba(0, 22, 76, 0.3);
}

.mock-head {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}

.mock-head i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #93c5fd;
}

.mock-head i:first-child {
  background: #2563eb;
}

.bill-lines {
  display: grid;
  gap: 0.45rem;
}

.line {
  display: block;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #dbeafe, #eff6ff);
}

.l1 { width: 88%; }
.l2 { width: 60%; }
.l3 { width: 78%; }
.l4 { width: 70%; }

.total-card {
  margin-top: 0.7rem;
  border-radius: 10px;
  border: 1px solid #dbeafe;
  padding: 0.55rem 0.6rem;
  background: #f8fbff;
}

.total-card p {
  margin: 0;
  font-size: 0.73rem;
  color: #1d4ed8;
}

.total-card strong {
  display: block;
  margin-top: 0.2rem;
  color: #0f172a;
  font-size: 0.9rem;
}

.dash-grid {
  position: absolute;
  left: 7.5%;
  right: 7.5%;
  top: 12%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.dash-grid article {
  border-radius: 12px;
  padding: 0.62rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.dash-grid p {
  margin: 0;
  font-size: 0.72rem;
  color: #1e3a8a;
}

.dash-grid strong {
  display: block;
  margin-top: 0.24rem;
  color: #0f172a;
  font-size: 0.88rem;
}

.trend-bars {
  position: absolute;
  left: 7.5%;
  right: 7.5%;
  bottom: 10%;
  height: 74px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: flex-end;
  gap: 0.42rem;
  padding: 0.58rem;
}

.trend-bars i {
  display: block;
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, #7dd3fc, #ffffff);
}

.trend-bars i:nth-child(1) { height: 36%; }
.trend-bars i:nth-child(2) { height: 62%; }
.trend-bars i:nth-child(3) { height: 48%; }
.trend-bars i:nth-child(4) { height: 78%; }
.trend-bars i:nth-child(5) { height: 58%; }

.trust-band {
  background: linear-gradient(135deg, #0f47c7 0%, #1d4ed8 55%, #2357e3 100%);
  color: #ffffff;
  padding: 4.5rem 0;
  margin-top: 1rem;
}

.trust-band-inner {
  display: grid;
  gap: 2.3rem;
}

.trust-band p {
  margin: 0;
  text-align: center;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  max-width: 56ch;
  justify-self: center;
}

.trust-band-logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.9rem;
}

.trust-band-logos span {
  display: inline-grid;
  place-items: center;
  min-height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-weight: 700;
  font-size: 0.98rem;
  background: rgba(255, 255, 255, 0.08);
}

.intro {
  margin: 0.8rem 0 1.2rem;
  max-width: 70ch;
  color: var(--muted);
}

.product-demo .intro {
  max-width: 56ch;
}

.product-demo .demo-intro {
  margin: 0.8rem 0 1.2rem;
  max-width: 56ch;
  color: var(--muted);
}

.product-demo .video-wrap {
  margin-inline: 0;
}

.video-wrap {
  max-width: 1250px;
  margin-inline: auto;
  aspect-ratio: 16 / 9;
  border: 1px solid #cadcf5;
  border-radius: 18px;
  overflow: hidden;
  background: #0b1220;
  box-shadow: var(--shadow);
}

.video-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.grid {
  display: grid;
  gap: 0.9rem;
}

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

.card,
.glass,
.policy-card {
  border-radius: var(--radius);
  border: 1px solid #d5e4f7;
  background: #ffffff;
  padding: 1rem;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s var(--ease);
}

.card:hover,
.glass:hover,
.policy-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  border-color: #bdd7f4;
}

.card h3,
.glass h3,
.timeline h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.card p,
.glass p,
.timeline p {
  margin: 0;
  color: var(--muted);
}

.compare-table {
  border: 1px solid #d5e4f7;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
}

.compare-table .row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 0.75rem;
  padding: 0.85rem 0.95rem;
  border-top: 1px solid #e3edf9;
}

.compare-table .row.head {
  border-top: 0;
  font-weight: 700;
  background: #edf4ff;
}

.compare-table .yes {
  font-weight: 700;
  color: #0d46a1;
}

.timeline {
  display: grid;
  gap: 0.75rem;
}

.timeline article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.8rem;
  border: 1px solid #d5e4f7;
  border-radius: 12px;
  padding: 0.85rem;
  background: #ffffff;
}

.timeline span {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #0d46a1;
  color: #ffffff;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid #d5e4f7;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.68rem 0.82rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::after {
  content: "+";
  color: #0d46a1;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  margin-top: 0.6rem;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
}

.cta-band,
.final-cta {
  text-align: center;
  border-radius: 14px;
  border: 1px solid #c8dbf5;
  background: linear-gradient(180deg, #fafdff, #edf5ff);
}

.cta-band p,
.final-cta p {
  margin: 0.75rem auto 1rem;
  max-width: 64ch;
  color: var(--muted);
}

.final-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.final-benefits span {
  padding: 0.32rem 0.58rem;
  border-radius: 999px;
  background: #eaf2ff;
  color: #17408f;
  font-size: 0.8rem;
  font-weight: 600;
}

.store-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.policy-page .policy-hero {
  padding: 1.2rem 0 1.6rem;
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
}

.policy-meta p {
  margin: 0;
  color: #334155;
}

.policy-page h3 {
  margin: 0.9rem 0 0.35rem;
  font-size: 1rem;
}

.policy-page p {
  margin: 0 0 0.65rem;
}

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

.toc a {
  text-decoration: none;
  color: #0d46a1;
  font-weight: 600;
}

.toc a:hover {
  text-decoration: underline;
}

ul {
  margin: 0.45rem 0 0.9rem;
  padding-left: 1.2rem;
}

li + li {
  margin-top: 0.24rem;
}

a {
  color: var(--brand);
}

footer {
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 1.5rem;
}

.foot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.7rem;
  color: #475569;
}

.foot p {
  margin: 0;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}

.js .reveal.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .feature-split,
  .feature-split.reverse {
    grid-template-columns: 1fr;
    gap: 1.3rem;
  }

  .feature-split.reverse .feature-copy,
  .feature-split.reverse .feature-media {
    order: initial;
  }

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

  .logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .top-strip {
    display: none;
  }

  .hero {
    padding: 1rem 0 3rem;
  }

  .nav-wrap {
    min-height: 66px;
    align-items: center;
    flex-wrap: nowrap;
    padding: 0.6rem 0;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(82vw, 320px);
    height: 100dvh;
    background: #f8fbff;
    border-left: 1px solid #d6e4f4;
    box-shadow: -18px 0 34px rgba(15, 23, 42, 0.14);
    padding: 5rem 1rem 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    transform: translateX(100%);
    transition: transform 0.28s var(--ease);
    z-index: 60;
  }

  .nav-panel.open {
    transform: translateX(0);
  }

  .menu-backdrop.open {
    opacity: 1;
    pointer-events: auto;
  }

  .nav-panel nav {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    overflow: visible;
    padding: 0;
  }

  .nav-panel .nav-actions {
    width: 100%;
    display: grid;
    gap: 0.55rem;
    margin-left: 0;
  }

  .nav-panel .btn {
    width: 100%;
  }

  body.menu-open {
    overflow: hidden;
  }

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

  .logo-row,
  .grid.four,
  .toc {
    grid-template-columns: 1fr;
  }

  .landing-main .section {
    padding: 3.4rem 0;
  }

  .feature-copy p {
    font-size: 1rem;
  }

  .feature-media {
    min-height: 260px;
  }

  .media-one {
    min-height: 0;
    display: block;
    padding: 0.9rem;
  }

  .media-one .mock-device {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    margin: 0;
  }

  .media-one .media-chip {
    position: static;
    display: inline-flex;
    margin-top: 0.55rem;
    margin-right: 0.4rem;
    font-size: 0.78rem;
    padding: 0.28rem 0.6rem;
  }

  .media-one .chip-a {
    left: auto;
    bottom: auto;
  }

  .media-one .chip-b {
    left: auto;
    bottom: auto;
  }

  .media-one .chip-c {
    left: auto;
    bottom: auto;
  }

  .trust-band {
    padding: 3rem 0;
  }

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

  .compare-table .row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 2.2rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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