:root {
  --brand: #1769ff;
  --accent: #54d5ff;
  --ink: #0b1833;
  --ink-soft: #172846;
  --text: #526079;
  --muted: #708099;
  --line: #dce5ef;
  --surface: #ffffff;
  --surface-soft: #f5f8fc;
  --background: #fbfcfe;
  --radius: 1.15rem;
  --radius-small: 0.75rem;
  --shadow: 0 24px 70px rgb(11 24 51 / 10%);
  --shadow-soft: 0 14px 40px rgb(11 24 51 / 7%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--background);
  color: var(--text);
  font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

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

button,
summary {
  font: inherit;
}

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

h1,
h2,
h3,
strong {
  color: var(--ink);
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  margin-bottom: 1.25rem;
  font-size: clamp(2.7rem, 6vw, 5.6rem);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: 1.3rem;
}

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

.narrow {
  max-width: 780px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: -6rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: relative;
  z-index: 20;
  border-bottom: 1px solid rgb(220 229 239 / 85%);
  background: rgb(255 255 255 / 94%);
  box-shadow: 0 8px 30px rgb(11 24 51 / 3%);
}

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

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

.brand-symbol {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  place-items: center;
  border-radius: 0.65rem;
  background: var(--brand);
  color: #fff;
  font-size: 0.95rem;
}

.brand-logo {
  width: auto;
  max-width: min(250px, 52vw);
  height: 44px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.desktop-nav a {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

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

.desktop-nav .header-contact {
  padding: 0.65rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: #fff;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  padding: 0.6rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.55rem;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 0.7rem);
  right: 0;
  display: grid;
  width: min(260px, calc(100vw - 2.5rem));
  padding: 0.6rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: #fff;
  box-shadow: var(--shadow);
}

.mobile-menu a {
  padding: 0.7rem 0.8rem;
  border-radius: 0.5rem;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
}

.mobile-menu a:hover {
  background: var(--surface-soft);
}

.home-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
  background:
    radial-gradient(circle at 85% 15%, color-mix(in srgb, var(--accent) 25%, transparent), transparent 28%),
    linear-gradient(145deg, color-mix(in srgb, var(--brand) 7%, #fff), #fff 62%);
}

.home-hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(11 24 51 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(11 24 51 / 3%) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  mask-image: linear-gradient(to right, transparent, #000 65%, transparent);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: clamp(3rem, 7vw, 7rem);
}

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

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.summary {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--text);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  border: 1px solid var(--brand);
  border-radius: 0.65rem;
  background: var(--brand);
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

.button:hover {
  background: color-mix(in srgb, var(--brand), #000 13%);
  box-shadow: 0 10px 24px color-mix(in srgb, var(--brand) 24%, transparent);
  transform: translateY(-1px);
}

.button-light {
  border-color: #fff;
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  background: #fff;
  color: var(--brand);
}

.text-link,
.card-link {
  color: var(--ink);
  font-weight: 850;
  text-decoration: none;
}

.text-link span,
.card-link span {
  display: inline-block;
  color: var(--brand);
  transition: transform 150ms ease;
}

.text-link:hover span,
.card-link:hover span {
  transform: translateX(0.2rem);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  margin: 2rem 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
  list-style: none;
}

.hero-proof li::before {
  margin-right: 0.45rem;
  color: var(--brand);
  content: "•";
}

.hero-visual {
  position: relative;
  min-height: 470px;
}

.visual-orbit {
  position: absolute;
  border: 1px solid color-mix(in srgb, var(--brand) 20%, transparent);
  border-radius: 50%;
}

.orbit-one {
  inset: 2% 9% 8% 5%;
}

.orbit-two {
  inset: 15% -2% -2% 18%;
}

.strategy-card {
  position: absolute;
  inset: 8% 4% auto 10%;
  padding: clamp(1.7rem, 4vw, 2.5rem);
  border: 1px solid rgb(255 255 255 / 60%);
  border-radius: 1.5rem;
  background: rgb(255 255 255 / 92%);
  box-shadow: var(--shadow);
}

.strategy-card::after {
  position: absolute;
  z-index: -1;
  right: -1.5rem;
  bottom: -1.5rem;
  width: 8rem;
  height: 8rem;
  border-radius: 1.3rem;
  background: var(--brand);
  content: "";
  opacity: 0.11;
}

.strategy-kicker,
.card-number {
  margin-bottom: 0.5rem;
  color: var(--brand);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.strategy-card h2 {
  max-width: 430px;
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

.strategy-list {
  display: grid;
  margin-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.strategy-list > div {
  display: grid;
  align-items: center;
  grid-template-columns: 2.5rem 1fr;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}

.strategy-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.strategy-number {
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 900;
}

.trust-strip {
  border-block: 1px solid var(--line);
  background: #fff;
}

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

.trust-grid span {
  padding: 1rem;
  border-right: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 800;
  text-align: center;
}

.trust-grid span:last-child {
  border-right: 0;
}

.section {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
}

.section-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 3rem;
  margin-bottom: 2.5rem;
}

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

.section-heading > p {
  margin-bottom: 0.35rem;
}

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

.service-card {
  min-height: 360px;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.featured-service {
  border-color: color-mix(in srgb, var(--brand) 34%, var(--line));
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--brand) 7%, #fff), #fff 58%);
  transform: translateY(-0.7rem);
}

.service-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 3.2rem;
  place-items: center;
  border-radius: 0.8rem;
  background: color-mix(in srgb, var(--brand) 10%, #fff);
  color: var(--brand);
}

.service-icon svg {
  width: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.service-card h3 {
  margin-bottom: 0.85rem;
  font-size: 1.45rem;
}

.service-card p:last-child {
  margin-bottom: 0;
}

.contrast-section {
  background: var(--ink);
  color: #adbad0;
}

.contrast-section h2,
.contrast-section strong,
.contrast-section .text-link {
  color: #fff;
}

.contrast-section .eyebrow {
  color: var(--accent);
}

.split-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.72fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.split-copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.08rem;
}

.benefit-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.benefit-list li {
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  gap: 0.9rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgb(255 255 255 / 12%);
}

.benefit-list li > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  color: var(--accent);
  font-weight: 900;
}

.benefit-list p {
  margin: 0.2rem 0 0;
  color: #8fa0ba;
  font-size: 0.9rem;
}

.latest-section {
  background: var(--surface-soft);
}

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

.card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.card-image-link {
  display: block;
  overflow: hidden;
}

.card-image,
.card-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.card-image {
  object-fit: cover;
  transition: transform 250ms ease;
}

.card:hover .card-image {
  transform: scale(1.025);
}

.card-placeholder {
  display: grid;
  position: relative;
  overflow: hidden;
  place-items: center;
  background:
    radial-gradient(circle at 75% 18%, color-mix(in srgb, var(--accent) 55%, transparent), transparent 24%),
    linear-gradient(145deg, color-mix(in srgb, var(--brand) 13%, #fff), #fff);
}

.card-placeholder::before,
.card-placeholder::after {
  position: absolute;
  width: 8rem;
  height: 8rem;
  border: 1px solid color-mix(in srgb, var(--brand) 20%, transparent);
  border-radius: 50%;
  content: "";
}

.card-placeholder::before {
  top: -3rem;
  right: -2rem;
}

.card-placeholder::after {
  bottom: -4rem;
  left: -2rem;
}

.card-placeholder span {
  z-index: 1;
  color: var(--brand);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.4rem;
}

.card-meta,
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 750;
}

.card-meta span,
.article-meta span {
  color: var(--brand);
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.card h2,
.card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
}

.card h2 a,
.card h3 a {
  color: inherit;
  text-decoration: none;
}

.card-body > p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 1.2rem;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.card-link {
  margin-top: auto;
  font-size: 0.9rem;
}

.cta-section {
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
  background:
    radial-gradient(circle at 85% 15%, color-mix(in srgb, var(--accent) 38%, transparent), transparent 30%),
    var(--brand);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.cta-section .eyebrow {
  color: #fff;
  opacity: 0.78;
}

.cta-section h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: #fff;
}

.page-hero,
.article-hero {
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 86% 18%, color-mix(in srgb, var(--accent) 23%, transparent), transparent 28%),
    linear-gradient(145deg, color-mix(in srgb, var(--brand) 7%, #fff), #fff 66%);
}

.page-hero {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.page-hero-grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 4rem;
}

.page-hero h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.page-hero .summary {
  margin-bottom: 0.5rem;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination span {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

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

.pagination span[aria-current] {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.article-hero {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.article-hero-inner {
  width: min(860px, calc(100% - 2.5rem));
}

.article-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.breadcrumb {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.2rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

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

.article-meta {
  margin: 1.5rem 0 0;
}

.article {
  width: min(900px, calc(100% - 2.5rem));
  padding-block: clamp(3rem, 7vw, 5rem);
}

.featured-image {
  width: 100%;
  margin-bottom: 2.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-content {
  color: #3e4c63;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.82;
}

.article-content > * {
  max-width: 760px;
  margin-inline: auto;
}

.article-content h2,
.article-content h3 {
  margin-top: 2.6rem;
}

.article-content h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.article-content h3 {
  font-size: 1.35rem;
}

.article-content a {
  color: var(--brand);
}

.article-content blockquote {
  padding: 1rem 1.4rem;
  border-left: 4px solid var(--brand);
  background: var(--surface-soft);
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.article-content img,
.article-content figure,
.article-content table {
  max-width: 100%;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
}

.article-content th,
.article-content td {
  padding: 0.75rem;
  border: 1px solid var(--line);
  text-align: left;
}

.article-footer {
  max-width: 760px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.site-footer {
  padding: 4rem 0 1.3rem;
  background: #071226;
  color: #9eacc2;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(160px, 0.55fr));
  gap: 4rem;
}

.footer-grid > div:first-child {
  max-width: 430px;
}

.footer-brand {
  margin-bottom: 1rem;
  color: #fff;
}

.footer-grid h2 {
  margin-bottom: 1rem;
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid a:not(.brand) {
  display: block;
  margin-bottom: 0.55rem;
  color: #c8d2e1;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #fff;
}

.footer-nav {
  display: grid;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgb(255 255 255 / 10%);
  font-size: 0.78rem;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid,
  .section-heading,
  .split-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .split-grid {
    gap: 3rem;
  }

  .hero-visual {
    width: min(100%, 580px);
    min-height: 420px;
    margin-inline: auto;
  }

  .section-heading,
  .page-hero-grid {
    gap: 1.3rem;
  }

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

  .service-card {
    min-height: 0;
  }

  .featured-service {
    transform: none;
  }

  .service-icon {
    margin-bottom: 2rem;
  }

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

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

  .trust-grid span:nth-child(2) {
    border-right: 0;
  }

  .trust-grid span:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 650px) {
  .container,
  .article,
  .article-hero-inner {
    width: min(100% - 1.5rem, 1180px);
  }

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

  .home-hero {
    padding-top: 3.7rem;
  }

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

  .hero-actions,
  .cta-inner,
  .footer-bottom {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-visual {
    min-height: 390px;
  }

  .strategy-card {
    inset: 4% 0 auto;
  }

  .strategy-card::after {
    display: none;
  }

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

  .cta-inner {
    display: flex;
  }

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

  .footer-bottom {
    display: flex;
    margin-top: 2rem;
  }
}

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