:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --ink: #172131;
  --muted: #556377;
  --line: #d8e2ee;
  --brand: #1e56ad;
  --brand-strong: #123f85;
  --brand-soft: rgba(30, 86, 173, 0.08);
  --accent: #ef2528;
  --good: #13845b;
  --radius: 20px;
  --shadow: 0 18px 50px rgba(16, 45, 88, 0.11);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 0% 0%, rgba(30, 86, 173, 0.1), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(239, 37, 40, 0.08), transparent 22%),
    linear-gradient(180deg, #f8fbff 0%, #f3f6fb 100%);
  font-family: Manrope, "Segoe UI", sans-serif;
}

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

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

.topbar,
main,
.footer {
  width: min(var(--max), calc(100% - 2rem));
}

.topbar {
  position: sticky;
  top: 12px;
  z-index: 10;
  margin: 1rem auto 0;
  padding: 0.9rem 1.05rem;
  border: 1px solid rgba(216, 226, 238, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 14px 30px rgba(16, 45, 88, 0.06);
}

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

.brand img {
  width: clamp(156px, 18vw, 210px);
  height: auto;
  aspect-ratio: 4 / 1;
  object-fit: contain;
}

.topnav {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.15rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}

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

.topnav a.is-active {
  color: var(--brand-strong);
}

.topcta {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.btn,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease, background-color 0.14s ease;
}

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

.btn-solid {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  box-shadow: 0 10px 22px rgba(18, 63, 133, 0.25);
}

.btn-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.96);
}

main {
  margin: 1.3rem auto 2rem;
}

.hero {
  padding: clamp(1.2rem, 2.3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 0% 0%, rgba(30, 86, 173, 0.07), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(239, 37, 40, 0.06), transparent 22%),
    linear-gradient(145deg, #ffffff 0%, #f5f9ff 100%);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  gap: 1.6rem;
  align-items: start;
}

.hero-copy,
.hero-visual,
.section,
.footer {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-visual,
.section {
  padding: clamp(1.15rem, 2.2vw, 2rem);
}

.hero-copy {
  display: grid;
  align-content: start;
  gap: 0.25rem;
  padding: 0.35rem 0.1rem 0.35rem 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.eyebrow {
  margin: 0;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 900;
  font-size: 0.73rem;
}

h1,
h2,
h3,
p,
ul {
  margin: 0;
}

.hero-copy h1 {
  margin-top: 0.75rem;
  max-width: 11ch;
  font-size: clamp(2.3rem, 4.1vw, 3.55rem);
  line-height: 0.98;
}

.hero-subtitle {
  margin-top: 0.8rem;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.hero-body {
  margin-top: 0.9rem;
  max-width: 58ch;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.hero-trust {
  margin-top: 1rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.hero-trust li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
  line-height: 1.55;
}

.hero-trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.hero-visual {
  padding: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  align-items: start;
  background:
    transparent;
}

.visual-card {
  width: 100%;
  height: auto;
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(201, 216, 236, 0.92);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
}

.visual-card-home {
  align-content: start;
  grid-template-rows: auto auto auto auto auto auto;
  background:
    radial-gradient(circle at top right, rgba(30, 86, 173, 0.05), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
  box-shadow: 0 22px 48px rgba(17, 54, 103, 0.08);
}

.visual-status-row,
.route-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: #f4f7fc;
  border: 1px solid #d7e0ec;
  color: var(--brand-strong);
  font-size: 0.8rem;
  font-weight: 800;
}

.status-chip-live {
  background: rgba(19, 132, 91, 0.1);
  border-color: rgba(19, 132, 91, 0.2);
  color: var(--good);
}

.visual-head,
.meter-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 800;
}

.visual-stream-line {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.visual-source,
.visual-core,
.metric-row article,
.feature-grid article,
.audience-grid article,
.flow article,
.plan,
.trust-card {
  border: 1px solid rgba(214, 224, 239, 0.95);
  border-radius: 14px;
  background: #fff;
}

.visual-source,
.visual-core {
  padding: 0.85rem;
}

.visual-label {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.visual-arrow {
  width: 56px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--brand));
}

.visual-grid,
.metric-row,
.feature-grid,
.audience-grid,
.flow,
.plan-grid,
.trust-grid,
.trust-links {
  display: grid;
}

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

.visual-stage-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 0.75rem;
}

.route-panel {
  padding: 0.85rem;
  border: 1px solid rgba(214, 224, 239, 0.95);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.route-panel-soft {
  background: linear-gradient(180deg, #fbfdff 0%, #f3f8ff 100%);
}

.route-panel-head {
  display: grid;
  gap: 0.22rem;
  margin-bottom: 0.75rem;
}

.route-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.6rem 0;
  border-top: 1px solid #e6edf7;
  color: var(--muted);
  font-size: 0.92rem;
}

.route-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.route-item strong {
  color: var(--ink);
  font-size: 0.92rem;
}

.chip {
  padding: 0.52rem 0.7rem;
  border-radius: 10px;
  border: 1px solid #d7e0ec;
  background: #fbfdff;
  font-size: 0.85rem;
  font-weight: 800;
}

.chip.on {
  background: #eef5ff;
  border-color: #bfd2f2;
  color: var(--brand-strong);
}

.chip.idle {
  color: #6b7484;
}

.meter {
  padding: 0.7rem;
  border: 1px solid #dce6f2;
  border-radius: 12px;
  background: #f9fbff;
}

.meter-label {
  color: #45566d;
  font-size: 0.82rem;
}

.meter-bar {
  margin-top: 0.48rem;
  height: 10px;
  border-radius: 999px;
  background: #e6edf7;
  overflow: hidden;
}

.meter-bar span {
  display: block;
  width: 84%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand) 0%, #3a8ae0 62%, #6cb5ff 100%);
}

.metric-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.metric-row article {
  padding: 0.75rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.metric-row p {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.metric-row strong {
  display: block;
  margin-top: 0.38rem;
  font-size: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.24rem 0.62rem;
  font-size: 0.72rem;
  font-weight: 900;
}

.badge.running {
  color: var(--good);
  background: rgba(19, 132, 91, 0.12);
}

.section {
  margin-top: 1rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 248, 255, 0.98) 100%);
}

.answer-strip {
  background:
    radial-gradient(circle at top left, rgba(30, 86, 173, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 251, 255, 0.98) 100%);
}

.section-head {
  display: grid;
  gap: 0.55rem;
}

.section-head h2 {
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
  line-height: 1.08;
}

.section-head p:not(.eyebrow) {
  max-width: 70ch;
  color: var(--muted);
  line-height: 1.6;
}

.audience-grid,
.feature-grid {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.answer-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: start;
}

.answer-grid article {
  padding: 1rem;
  border: 1px solid rgba(214, 224, 239, 0.95);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.answer-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.topic-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.topic-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.9rem;
  border: 1px solid rgba(191, 206, 227, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-strong);
  font-size: 0.9rem;
  font-weight: 800;
  transition: transform 0.14s ease, border-color 0.14s ease, box-shadow 0.14s ease;
}

.topic-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(30, 86, 173, 0.28);
  box-shadow: 0 10px 22px rgba(16, 45, 88, 0.08);
}

.solution-page {
  display: grid;
  gap: 1rem;
}

.page-hero {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at top right, rgba(30, 86, 173, 0.07), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 255, 0.98) 100%);
  box-shadow: var(--shadow);
  padding: clamp(1.15rem, 2.2vw, 2rem);
}

.page-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.page-breadcrumbs a {
  color: var(--brand-strong);
}

.page-breadcrumbs span {
  color: #7a8799;
}

.page-hero-grid,
.page-summary-grid,
.page-card-grid {
  display: grid;
  gap: 0.9rem;
  align-items: start;
}

.page-hero-grid {
  margin-top: 1rem;
  grid-template-columns: minmax(0, 1.14fr) minmax(280px, 0.86fr);
  align-items: start;
}

.page-hero-copy {
  display: grid;
  align-content: start;
  gap: 0.2rem;
}

.page-hero-grid .visual-card {
  height: auto;
  min-height: 0;
  max-width: 430px;
  justify-self: end;
}

.page-hero-grid .contact-hero-card {
  max-width: 560px;
}

.page-hero-copy h1 {
  margin-top: 0.75rem;
  max-width: 12ch;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.04;
}

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

.page-summary-grid article,
.page-card-grid article,
.faq-stack article {
  padding: 1rem;
  border: 1px solid rgba(214, 224, 239, 0.95);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.page-card-grid {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.faq-stack {
  margin-top: 1rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.faq-stack article:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.contact-detail-grid {
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 0.75rem;
}

.contact-detail-grid article {
  min-height: 0;
}

.contact-detail-grid strong {
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.page-summary-grid p,
.page-card-grid p,
.faq-stack p {
  color: var(--muted);
  line-height: 1.6;
}

.page-summary-grid h2,
.page-card-grid h3,
.faq-stack h3 {
  margin-bottom: 0.45rem;
}

.page-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background:
    radial-gradient(circle at right top, rgba(30, 86, 173, 0.08), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 248, 255, 0.98) 100%);
}

.audience-card-link {
  display: inline-flex;
  align-items: center;
  margin-top: 0.9rem;
  color: var(--brand-strong);
  font-size: 0.92rem;
  font-weight: 800;
}

.audience-card-link:hover {
  color: var(--brand);
}

.audience-grid article,
.feature-grid article {
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.audience-grid h3,
.feature-grid h3,
.flow h3,
.plan h3,
.trust-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.audience-grid p,
.feature-grid p,
.flow p,
.plan li,
.trust-card p,
.trust-list li {
  color: var(--muted);
  line-height: 1.6;
}

.flow {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.flow article {
  padding: 1rem;
}

.flow span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-soft), rgba(239, 37, 40, 0.08));
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 900;
}

.plan-grid {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.plan {
  padding: 1.1rem;
}

.plan-trial {
  background: linear-gradient(165deg, #ffffff 0%, #f5f8ff 100%);
}

.plan-pro {
  border-color: rgba(68, 121, 203, 0.28);
  background: linear-gradient(160deg, #f9fbff 0%, #eef4ff 100%);
}

.price {
  margin-bottom: 0.9rem;
  color: var(--accent);
  font-size: 1.12rem;
  font-weight: 900;
}

.plan ul,
.trust-list {
  padding-left: 1.1rem;
}

.plan-btn {
  width: 100%;
  margin-top: 1rem;
}

.trust-grid {
  margin-top: 1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: start;
}

.trust-card {
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.trust-links {
  margin-top: 0.85rem;
  gap: 0.65rem;
}

.trust-links-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
}

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

.trust-proof-grid article {
  padding: 0.95rem;
  border: 1px solid rgba(214, 224, 239, 0.95);
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
}

.trust-proof-grid strong {
  display: block;
  font-size: 1.5rem;
  line-height: 1;
}

.trust-proof-grid span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.button-link {
  border-color: rgba(191, 206, 227, 0.92);
  background: rgba(255, 255, 255, 0.96);
  color: var(--brand-strong);
  justify-content: flex-start;
}

.button-link:hover {
  border-color: rgba(30, 86, 173, 0.28);
}

.inline-link {
  color: var(--brand-strong);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.14em;
}

.inline-link:hover {
  color: var(--brand);
}

.trust-note {
  margin-top: 0.9rem;
}

.trust-proof-list strong {
  color: var(--ink);
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background:
    radial-gradient(circle at right top, rgba(239, 37, 40, 0.06), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(243, 248, 255, 0.98) 100%);
}

.final-cta p:not(.eyebrow) {
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.6;
}

.footer {
  margin: 0 auto 2rem;
  padding: 1.1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  display: grid;
  gap: 0.7rem;
}

.footer-brand img {
  width: clamp(150px, 18vw, 200px);
  height: auto;
  aspect-ratio: 4 / 1;
  object-fit: contain;
}

.footer-brand p {
  max-width: 58ch;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-property-note {
  display: block;
}

.footer-actions {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
  color: var(--brand-strong);
  font-weight: 800;
}

.footer-actions a.is-active {
  color: var(--brand);
}

@media (max-width: 1080px) {
  .topbar {
    flex-wrap: wrap;
  }

  .topnav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
  }

  .hero,
  .trust-grid,
  .page-hero-grid,
  .page-summary-grid,
  .page-card-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
  }

  .final-cta,
  .page-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .audience-grid,
  .feature-grid,
  .answer-grid,
  .flow,
  .plan-grid,
  .page-summary-grid,
  .page-card-grid,
  .faq-stack,
  .trust-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

  .topcta {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero,
  .audience-grid,
  .feature-grid,
  .answer-grid,
  .flow,
  .plan-grid,
  .page-summary-grid,
  .page-card-grid,
  .faq-stack,
  .visual-grid,
  .metric-row,
  .trust-grid,
  .trust-proof-grid {
    grid-template-columns: 1fr;
  }

  .visual-stream-line {
    grid-template-columns: 1fr;
  }

  .visual-arrow {
    width: 100%;
  }

  .btn {
    width: 100%;
  }

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

  .footer-actions {
    justify-content: flex-start;
  }
}
