:root {
  --navy: #071d37;
  --navy-2: #0c2a4c;
  --orange: #ff6b16;
  --orange-2: #ff8a3d;
  --ink: #132033;
  --muted: #536173;
  --soft: #eef3f8;
  --surface: #ffffff;
  --surface-2: #f8fafc;
  --line: #d9e1ea;
  --line-strong: #c4d0dd;
  --shadow: 0 18px 50px rgba(7, 29, 55, 0.1);
  --radius: 8px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

strong,
b {
  font-weight: 500;
}

.page-shell {
  background:
    linear-gradient(180deg, #ffffff 0, #ffffff 520px, #f8fafc 520px, #ffffff 100%);
}

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section__header,
.split-copy {
  max-width: 760px;
  margin-bottom: 34px;
}

.section__header h2,
.split-copy h2,
.cta-card h2 {
  margin: 12px 0 14px;
  color: var(--navy);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
}

.section__header p,
.split-copy p,
.cta-card p {
  margin: 0;
  max-width: 68ch;
  color: var(--muted);
  font-size: 17px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

.button--primary {
  color: #ffffff;
  background: var(--orange);
  border-color: var(--orange);
}

.button--primary:hover {
  background: #e85f10;
  border-color: #e85f10;
}

.button--secondary,
.button--ghost {
  color: var(--navy);
  border-color: var(--line-strong);
  background: #ffffff;
}

.button--secondary:hover,
.button--ghost:hover {
  border-color: var(--navy);
}

.button--sm {
  min-height: 40px;
  padding: 0 14px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(217, 225, 234, 0.76);
  backdrop-filter: blur(14px);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(7, 29, 55, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand__logo {
  width: 190px;
  height: auto;
}

.brand__logo--footer {
  width: 180px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
}

.site-nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 160ms ease;
}

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

.nav-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.nav-toggle span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--navy);
  transition: transform 160ms ease, top 160ms ease;
}

.nav-toggle span:first-child {
  top: 16px;
}

.nav-toggle span:last-child {
  top: 24px;
}

.nav-toggle.is-open span:first-child {
  top: 20px;
  transform: rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  top: 20px;
  transform: rotate(-45deg);
}

.hero {
  padding-top: 72px;
  padding-bottom: 74px;
  background:
    linear-gradient(90deg, rgba(255, 107, 22, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 54px;
  align-items: start;
}

.hero__title {
  margin: 18px 0 18px;
  max-width: 690px;
  color: var(--navy);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero__title-accent {
  display: block;
  color: var(--orange);
}

.hero__subtitle {
  margin: 0;
  max-width: 74ch;
  color: var(--muted);
  font-size: 18px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 24px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.hero-showcase {
  position: relative;
}

.floating-badge {
  display: inline-flex;
  align-items: center;
  margin: 0 0 10px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.floating-badge--bottom {
  margin: 10px 0 0;
}

.showcase {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.showcase__header,
.showcase__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.showcase__header {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.showcase__status {
  color: var(--orange);
}

.showcase__cluster {
  display: grid;
  gap: 18px;
}

.cluster-center {
  display: grid;
  gap: 6px;
  padding: 20px;
  border-left: 4px solid var(--orange);
  background: var(--surface-2);
}

.cluster-center span,
.cluster-center small {
  color: var(--muted);
}

.cluster-center strong {
  color: var(--navy);
  font-size: 26px;
  font-weight: 500;
}

.showcase__modules {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.module-card {
  min-height: 150px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.module-card__tag {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 500;
}

.module-card strong {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
}

.module-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.showcase__footer {
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 18px;
}

.showcase__footer span {
  padding: 7px 9px;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
  font-size: 13px;
}

.services-grid,
.industries-grid,
.quotes-grid {
  display: grid;
  gap: 16px;
}

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

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

.quotes-grid {
  grid-template-columns: minmax(0, 1fr);
  max-width: 780px;
  margin-bottom: 20px;
}

.service-card,
.industry-card,
.quote-card,
.callout-card,
.cta-card,
.feature-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.service-card,
.industry-card,
.quote-card {
  padding: 22px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.service-card:hover,
.industry-card:hover,
.quote-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 12px 30px rgba(7, 29, 55, 0.08);
}

.service-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 22px;
}

.service-card__index {
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
}

.service-card__label {
  padding: 6px 8px;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.service-card h3,
.industry-card h3,
.feature-item h3 {
  margin: 0 0 9px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.service-card p,
.industry-card p,
.feature-item p,
.quote-card p,
.footer-copy {
  margin: 0;
  color: var(--muted);
}

.section--split {
  background: var(--surface-2);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 34px;
  align-items: start;
}

.callout-card {
  margin-top: 26px;
  padding: 24px;
  border-left: 4px solid var(--orange);
}

.callout-card span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
}

.callout-card strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.45;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-item {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
}

.feature-item__count {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: #fff2ea;
  color: var(--orange);
  font-size: 17px;
  font-weight: 500;
}

.industry-card {
  min-height: 210px;
}

.industry-card__badge {
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  border-radius: var(--radius);
  background: #fff2ea;
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
}

.quote-card {
  border-left: 4px solid var(--orange);
}

.quote-card__mark {
  display: none;
}

.quote-card strong,
.quote-card span {
  display: block;
}

.quote-card strong {
  margin-top: 18px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 500;
}

.quote-card span {
  color: var(--muted);
  font-size: 14px;
}

.trust-band {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.trust-band span {
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--soft);
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  background: var(--navy);
}

.cta-card h2,
.cta-card p {
  color: #ffffff;
}

.cta-card p {
  color: #c8d3df;
}

.cta-card .eyebrow {
  color: var(--orange-2);
}

.cta-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.cta-card .button--secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.38);
  background: transparent;
}

.site-footer {
  padding: 38px 0 34px;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.legal-page {
  padding: 86px 0 96px;
  background:
    linear-gradient(90deg, rgba(255, 107, 22, 0.06), transparent 32%),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px);
}

.legal-card {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.legal-card h1 {
  margin: 14px 0 24px;
  color: var(--navy);
  font-size: 44px;
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
}

.legal-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 17px;
}

.legal-card .legal-updated {
  margin: 28px 0 0;
  color: var(--navy);
  font-weight: 500;
}

.blog-hero,
.post-header {
  padding: 82px 0 58px;
  background:
    linear-gradient(90deg, rgba(255, 107, 22, 0.07), transparent 32%),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

.blog-hero__inner,
.post-header__inner {
  max-width: 820px;
}

.blog-hero h1,
.post-header h1 {
  margin: 14px 0 18px;
  color: var(--navy);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.blog-hero p,
.post-header p {
  margin: 0;
  max-width: 70ch;
  color: var(--muted);
  font-size: 18px;
}

.blog-section {
  background: #ffffff;
}

.blog-preview {
  background: var(--surface-2);
}

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

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

.blog-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.blog-card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 12px 30px rgba(7, 29, 55, 0.08);
}

.blog-card__image-link {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--soft);
  overflow: hidden;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.blog-meta,
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.blog-meta span,
.post-meta span {
  padding: 5px 8px;
  border-radius: var(--radius);
  background: var(--soft);
}

.blog-card h2,
.blog-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
}

.blog-card h3 {
  font-size: 20px;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
}

.blog-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.blog-card__footer a,
.post-back {
  color: var(--orange);
  font-weight: 500;
}

.blog-preview__action {
  margin-top: 24px;
}

.post-back {
  display: inline-flex;
  margin-bottom: 18px;
}

.post-meta {
  margin-top: 24px;
}

.post-image {
  width: 100%;
  height: auto;
  margin: 34px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.post-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(240px, 1fr);
  gap: 42px;
  align-items: start;
  padding-bottom: 72px;
}

.post-content {
  display: grid;
  gap: 20px;
}

.post-content p {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.75;
}

.post-share {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.post-share h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 500;
}

.post-share p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.post-share__excerpt {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.post-share__excerpt span {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
}

.post-share__excerpt p {
  color: var(--ink);
}

.post-share__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.share-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--navy);
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.share-button:hover {
  transform: translateY(-1px);
  border-color: var(--navy);
}

.share-button--facebook {
  color: #1559c7;
}

.share-button--linkedin {
  color: #0a66c2;
}

.share-button--copy {
  color: var(--navy);
}

.share-button--instagram {
  color: #c13584;
}

.post-share__status {
  min-height: 20px;
  color: var(--muted);
  font-size: 14px;
}

.post-aside {
  position: sticky;
  top: 104px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.post-aside h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 500;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.post-tags span {
  padding: 7px 9px;
  border-radius: var(--radius);
  background: #fff2ea;
  color: var(--orange);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(320px, 1.25fr) minmax(190px, 0.72fr) minmax(160px, 0.55fr);
  gap: 46px;
  align-items: start;
}

.brand--footer {
  margin-bottom: 18px;
}

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 500;
}

.footer-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.footer-list li,
.footer-list a,
.footer-copy {
  overflow-wrap: anywhere;
  word-break: normal;
}

.footer-list a {
  color: var(--muted);
  transition: color 160ms ease;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

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

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

@media (max-width: 1120px) {
  .hero__grid,
  .split-grid,
  .cta-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 34px;
  }

  .hero-showcase {
    max-width: 640px;
  }

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

  .cta-card__actions {
    justify-content: flex-start;
  }

  .post-layout {
    grid-template-columns: 1fr;
  }

  .post-aside {
    position: static;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 70px 0;
  }

  .site-header {
    padding: 10px 0;
  }

  .brand__logo {
    width: 156px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
  }

  .nav-panel.is-open {
    display: flex;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .site-nav a {
    white-space: normal;
  }

  .hero {
    padding-top: 54px;
    padding-bottom: 60px;
  }

  .hero__title {
    font-size: 42px;
  }

  .section__header h2,
  .split-copy h2,
  .cta-card h2,
  .blog-hero h1,
  .post-header h1 {
    font-size: 34px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(var(--max-width), calc(100% - 28px));
  }

  .hero__title {
    font-size: 34px;
  }

  .hero__subtitle,
  .section__header p,
  .split-copy p,
  .cta-card p {
    font-size: 16px;
  }

  .hero__actions,
  .cta-card__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .showcase {
    padding: 18px;
  }

  .showcase__modules,
  .services-grid,
  .industries-grid,
  .blog-grid,
  .blog-grid--compact {
    grid-template-columns: 1fr;
  }

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

  .feature-item {
    grid-template-columns: 1fr;
  }

  .feature-item__count {
    width: 46px;
    height: 46px;
  }

  .cta-card {
    padding: 24px;
  }

  .legal-page {
    padding: 58px 0 70px;
  }

  .legal-card {
    padding: 24px;
  }

  .legal-card h1 {
    font-size: 32px;
  }

  .legal-card p {
    font-size: 16px;
  }

  .blog-hero,
  .post-header {
    padding: 58px 0 42px;
  }

  .blog-hero p,
  .post-header p,
  .post-content p {
    font-size: 16px;
  }

  .post-share__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .post-image {
    margin: 24px 0;
  }
}
