:root {
  --ink: #0b1f33;
  --muted: #526477;
  --navy: #083f76;
  --blue: #1267a8;
  --teal: #17a69b;
  --mint: #dff8f2;
  --yellow: #ffc928;
  --paper: #ffffff;
  --wash: #f4f8fb;
  --line: #dbe6ee;
  --shadow: 0 24px 70px rgba(5, 45, 78, 0.14);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
}

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

a:hover {
  color: var(--navy);
}

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(219, 230, 238, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.nav-wrap,
.section,
.hero,
.crumbs,
.site-footer__inner {
  width: min(1160px, calc(100% - 40px));
  margin-inline: auto;
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.brand-link img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.brand-link span {
  font-size: 1.05rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.main-nav a {
  color: #334b60;
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--blue);
}

.button,
.main-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(8, 63, 118, 0.2);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.main-nav .nav-cta:hover {
  background: #052f5d;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(8, 63, 118, 0.24);
}

.button--secondary {
  border-color: #b9cfdd;
  background: #fff;
  color: var(--navy);
  box-shadow: none;
}

.button--secondary:hover {
  background: var(--wash);
  color: var(--navy);
  box-shadow: none;
}

.crumbs {
  padding-top: 24px;
  color: #6c7d8d;
  font-size: 0.86rem;
}

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

.crumbs span {
  margin-inline: 8px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: clamp(40px, 7vw, 92px);
  padding-block: 70px 88px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  border-radius: 99px;
  background: var(--teal);
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 6vw, 5.1rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.8vw, 3.2rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero__lead {
  max-width: 690px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.trust-line {
  margin: 0;
  color: #607486;
  font-size: 0.9rem;
}

.product-card {
  position: relative;
  min-height: 470px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid #cfe0e9;
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 201, 40, 0.28), transparent 30%),
    linear-gradient(150deg, #e7fbf7 0%, #f5f9fc 58%, #eaf1f9 100%);
  box-shadow: var(--shadow);
}

.product-card::after {
  position: absolute;
  right: -70px;
  bottom: -75px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(18, 103, 168, 0.15);
  border-radius: 50%;
  content: "";
}

.product-card__window {
  position: relative;
  z-index: 1;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid #b9cbd8;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 20px 50px rgba(8, 63, 118, 0.18);
  transform: rotate(1.6deg);
}

.mock-titlebar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding-inline: 14px;
  background: var(--navy);
}

.mock-titlebar i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.mock-ribbon {
  height: 58px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  background: #f7fafc;
}

.mock-ribbon b {
  width: 46px;
  height: 30px;
  border: 1px solid #d4e0e7;
  border-radius: 5px;
  background: #fff;
}

.mock-workspace {
  min-height: 308px;
  display: grid;
  grid-template-columns: 55px 1fr;
  background: #dfe8ed;
}

.mock-tools {
  border-right: 1px solid #cbd8df;
  background: #f9fbfc;
}

.mock-page {
  width: 76%;
  max-width: 250px;
  min-height: 260px;
  margin: 24px auto;
  padding: 24px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(11, 31, 51, 0.16);
}

.mock-page__kicker {
  width: 46%;
  height: 8px;
  border-radius: 99px;
  background: var(--teal);
}

.mock-page__heading {
  width: 85%;
  height: 22px;
  margin-top: 18px;
  background: var(--navy);
}

.mock-page__image {
  height: 76px;
  margin-top: 18px;
  background: linear-gradient(135deg, #a9e6dc, #1267a8);
}

.mock-page__line {
  height: 6px;
  margin-top: 10px;
  border-radius: 99px;
  background: #d7e1e7;
}

.mock-page__line.short {
  width: 68%;
}

.section {
  padding-block: 86px;
}

.section--wash {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1160px) / 2));
  background: var(--wash);
}

.section--dark {
  width: 100%;
  max-width: none;
  padding-inline: max(20px, calc((100% - 1160px) / 2));
  background: var(--ink);
  color: #fff;
}

.section--dark p,
.section--dark .section-intro {
  color: #c7d4df;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

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

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

.feature-card,
.step-card,
.answer-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.feature-card {
  padding: 28px;
}

.feature-card p,
.step-card p,
.answer-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 12px;
  background: var(--mint);
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 900;
}

.step-card {
  position: relative;
  padding: 32px 28px 28px;
}

.step-number {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
}

.prose {
  max-width: 800px;
}

.prose p,
.prose li {
  color: #40566a;
}

.prose p {
  margin-block: 0 20px;
}

.prose h2 {
  margin-top: 64px;
}

.prose h3 {
  margin-top: 34px;
}

.prose ul,
.prose ol {
  padding-left: 1.25rem;
}

.prose li + li {
  margin-top: 9px;
}

.note {
  margin-block: 28px;
  padding: 22px 24px;
  border-left: 5px solid var(--teal);
  border-radius: 0 12px 12px 0;
  background: var(--mint);
}

.note strong {
  display: block;
  margin-bottom: 4px;
}

.comparison {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.comparison th,
.comparison td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  background: #edf5f8;
  color: var(--navy);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.check {
  color: #087b68;
  font-weight: 900;
}

.faq {
  max-width: 900px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding-block: 20px;
}

.faq details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
}

.faq details p {
  max-width: 760px;
  margin: 12px 0 0;
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 46px;
  border-radius: 24px;
  background: linear-gradient(125deg, #083f76, #0b5e89 62%, #11958e);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin-bottom: 10px;
}

.cta-band p {
  max-width: 650px;
  margin: 0;
  color: #d7ebf3;
}

.cta-band .button {
  flex: 0 0 auto;
  background: #fff;
  color: var(--navy);
}

.site-footer {
  margin-top: 76px;
  border-top: 1px solid var(--line);
  background: #f7fafc;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  padding-block: 46px;
}

.site-footer p {
  max-width: 560px;
  margin: 14px 0 0;
  color: #5f7283;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  align-content: start;
}

.footer-links a {
  color: #385167;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.analytics-preferences-button {
  width: max-content;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #385167;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.analytics-preferences-button:hover,
.analytics-preferences-button:focus-visible {
  color: var(--navy);
  text-decoration: underline;
}

.analytics-consent {
  position: fixed;
  z-index: 10000;
  right: 20px;
  bottom: 20px;
  left: 20px;
  width: min(720px, calc(100% - 40px));
  display: flex;
  align-items: center;
  gap: 24px;
  margin-inline: auto;
  padding: 20px;
  border: 1px solid #bfd1dc;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(5, 38, 68, 0.25);
}

.analytics-consent__copy {
  flex: 1 1 auto;
}

.analytics-consent__copy strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1rem;
}

.analytics-consent__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.analytics-consent__actions {
  flex: 0 0 auto;
  display: flex;
  gap: 9px;
}

.analytics-consent__actions button {
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid #b9cbd8;
  border-radius: 9px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
}

.analytics-consent__actions .analytics-consent__accept {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
}

.analytics-consent__actions button:hover,
.analytics-consent__actions button:focus-visible {
  outline: 3px solid rgba(23, 166, 155, 0.2);
  outline-offset: 2px;
}

.fine-print {
  margin-top: 24px;
  color: #718190;
  font-size: 0.82rem;
}

@media (max-width: 900px) {
  .main-nav a:not(.nav-cta) {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .product-card {
    min-height: 400px;
  }

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

@media (max-width: 620px) {
  .nav-wrap,
  .section,
  .hero,
  .crumbs,
  .site-footer__inner {
    width: min(100% - 28px, 1160px);
  }

  .nav-wrap {
    min-height: 68px;
    gap: 14px;
  }

  .brand-link img {
    width: 40px;
    height: 40px;
  }

  .brand-link span,
  .main-nav a:not(.nav-cta) {
    display: none;
  }

  .main-nav {
    margin-left: auto;
  }

  .main-nav .nav-cta {
    min-height: 42px;
    padding-inline: 15px;
    font-size: 0.86rem;
  }

  .hero {
    padding-block: 44px 64px;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 3.45rem);
  }

  .product-card {
    min-height: 350px;
    padding: 14px;
    border-radius: 20px;
  }

  .product-card__window {
    min-height: 320px;
  }

  .mock-workspace {
    min-height: 238px;
  }

  .mock-page {
    min-height: 202px;
    margin-block: 18px;
    padding: 18px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .section {
    padding-block: 64px;
  }

  .section--wash,
  .section--dark {
    padding-inline: 14px;
  }

  .cta-band {
    display: block;
    padding: 30px 24px;
  }

  .cta-band .button {
    margin-top: 24px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .analytics-consent {
    width: calc(100% - 24px);
    display: block;
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .analytics-consent__actions {
    margin-top: 15px;
  }
}
