:root {
  --brand-blue: #005ca9;
  --brand-blue-deep: #083d78;
  --brand-blue-dark: #052b58;
  --brand-blue-soft: #dceafb;
  --brand-orange: #f39200;
  --brand-orange-soft: #fff1db;
  --ink-strong: #163b6b;
  --ink: #35597f;
  --ink-soft: #6982a0;
  --surface: #f3f8fe;
  --surface-strong: #ffffff;
  --surface-soft: #edf4fc;
  --line: rgba(0, 92, 169, 0.1);
  --line-strong: rgba(0, 92, 169, 0.16);
  --shadow-soft: 0 20px 48px rgba(7, 45, 91, 0.08);
  --shadow-strong: 0 28px 64px rgba(7, 45, 91, 0.14);
  --radius-2xl: 38px;
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: 1280px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(243, 146, 0, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(0, 92, 169, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #f3f8fe 52%, #eef5fc 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

body::before {
  left: 3.5%;
  bottom: 12%;
  width: 16rem;
  height: 16rem;
  border-radius: 44% 56% 49% 51% / 56% 42% 58% 44%;
  background: rgba(243, 146, 0, 0.08);
  filter: blur(18px);
}

body::after {
  top: 20%;
  right: 3%;
  width: 19rem;
  height: 19rem;
  border-radius: 52% 48% 58% 42% / 44% 56% 40% 60%;
  background: rgba(0, 92, 169, 0.08);
  filter: blur(22px);
}

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

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

ul,
dl {
  margin: 0;
  padding: 0;
}

p,
li,
dd {
  margin: 0;
  font-size: 1rem;
  line-height: 1.68;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink-strong);
  letter-spacing: -0.045em;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--content));
  margin: 0 auto;
  padding: 1rem 0 4rem;
}

.site-header {
  position: sticky;
  top: 1rem;
  z-index: 20;
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 34px rgba(8, 61, 120, 0.08);
}

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

.brand-frame {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.25rem;
  height: 4.25rem;
  padding: 0.3rem;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(236, 244, 252, 0.96));
  box-shadow: inset 0 0 0 1px rgba(0, 92, 169, 0.08);
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-clean {
  clip-path: inset(3px round 12px);
  transform: scale(1.02);
  transform-origin: center;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 2rem;
  color: var(--brand-blue-deep);
}

.site-nav a {
  position: relative;
  font-size: 1.06rem;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-mail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.95rem;
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-orange), #ffad31);
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(243, 146, 0, 0.2);
}

.hero {
  margin-top: 1.2rem;
}

.hero-panel,
.section-shell,
.contact-panel,
.site-footer,
.not-found-card {
  border: 1px solid rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.92);
}

.hero-copy {
  padding: 3.5rem 3.5rem 3rem;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-orange);
}

.hero h1 {
  max-width: 9ch;
  margin-top: 1rem;
  font-size: clamp(3rem, 5vw, 5.2rem);
  line-height: 0.95;
  text-wrap: balance;
}

.hero-text {
  max-width: 36rem;
  margin-top: 1.15rem;
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.82rem 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand-orange), #ffad31);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(243, 146, 0, 0.22);
}

.button-secondary {
  border: 1px solid rgba(0, 92, 169, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-blue-deep);
}

.button-secondary-light {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero-highlights,
.summary-list,
.contact-list {
  display: grid;
  gap: 0.65rem;
  list-style: none;
}

.hero-highlights {
  margin-top: 1.65rem;
}

.hero-highlights li,
.summary-list li,
.contact-list li {
  position: relative;
  padding-left: 1rem;
}

.hero-highlights li::before,
.summary-list li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--brand-orange);
}

.hero-visual {
  position: relative;
  min-height: 100%;
  padding: 1.25rem 1.25rem 1.25rem 0;
}

.hero-shape {
  position: absolute;
  z-index: 0;
}

.hero-shape-blue {
  left: -1.5rem;
  top: 1rem;
  bottom: 1rem;
  width: 43%;
  background: linear-gradient(180deg, var(--brand-blue), var(--brand-blue-deep));
  clip-path: polygon(44% 0, 100% 0, 58% 100%, 0 100%);
}

.hero-shape-orange {
  left: 5%;
  bottom: 1.25rem;
  width: 24%;
  height: 34%;
  background: linear-gradient(180deg, var(--brand-orange), #ffad31);
  clip-path: polygon(36% 0, 100% 0, 62% 100%, 0 100%);
}

.hero-image-wrap {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 31rem;
  overflow: hidden;
  border-radius: 34px;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-top: 1rem;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.16));
  box-shadow: var(--shadow-strong);
}

.signal-item {
  padding: 1.35rem 1.3rem;
  background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue));
  color: rgba(255, 255, 255, 0.86);
}

.signal-label,
.card-kicker {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.signal-label {
  color: #ffffff;
}

.signal-item p:last-child {
  margin-top: 0.5rem;
}

.section {
  padding-top: 2rem;
}

.section-shell {
  padding: 2.2rem;
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.9);
}

.section-tone .section-shell {
  background: linear-gradient(180deg, rgba(233, 243, 253, 0.96), rgba(255, 255, 255, 0.96));
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 1.5rem;
}

.section-heading-wide {
  max-width: 56rem;
}

.section-heading h2 {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 3.3vw, 2.8rem);
  line-height: 1.02;
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 1rem;
}

.services-summary {
  padding: 2rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at left bottom, rgba(243, 146, 0, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(0, 92, 169, 0.97), rgba(8, 61, 120, 0.99));
  box-shadow: var(--shadow-strong);
  color: #ffffff;
}

.card-kicker {
  color: var(--brand-orange);
}

.card-kicker-light {
  color: rgba(255, 255, 255, 0.7);
}

.services-summary h3,
.case-highlight h3,
.contact-side h3 {
  margin-top: 0.85rem;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  line-height: 1.06;
  color: #ffffff;
}

.services-summary p:not(.card-kicker),
.case-highlight p:not(.card-kicker),
.contact-side p:not(.card-kicker) {
  margin-top: 0.95rem;
  color: rgba(255, 255, 255, 0.84);
}

.services-summary .summary-list,
.case-highlight .summary-list,
.contact-list {
  margin-top: 1.2rem;
}

.module-grid,
.fit-grid,
.case-layout {
  display: grid;
  gap: 1rem;
}

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

.module-card,
.fit-card,
.process-card,
.case-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
}

.module-card {
  position: relative;
  overflow: hidden;
}

.module-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 0.32rem;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-orange));
}

.module-card:nth-child(2n)::before {
  background: linear-gradient(90deg, var(--brand-orange), var(--brand-blue));
}

.module-card h3,
.fit-card h3,
.process-card h3,
.case-card h3,
.contact-copy h2,
.not-found-card h1 {
  margin-top: 0.8rem;
  font-size: clamp(1.24rem, 2vw, 1.7rem);
  line-height: 1.08;
}

.module-card p:last-child,
.fit-card p:last-child,
.process-card p:last-child,
.case-card p:last-child,
.site-footer .footer-text,
.footer-text {
  margin-top: 0.7rem;
  color: var(--ink-soft);
}

.fit-grid {
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
}

.fit-card-wide {
  background:
    radial-gradient(circle at top right, rgba(243, 146, 0, 0.14), transparent 26%),
    rgba(255, 255, 255, 0.94);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-track::before {
  content: "";
  position: absolute;
  left: 4.5rem;
  right: 4.5rem;
  top: 1.65rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 92, 169, 0.22), rgba(243, 146, 0, 0.28));
}

.process-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 252, 0.96));
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand-orange), #ffad31);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(243, 146, 0, 0.22);
}

.case-layout {
  grid-template-columns: 1.05fr 0.95fr 0.95fr;
}

.case-highlight {
  padding: 2rem;
  border-radius: 30px;
  background:
    radial-gradient(circle at left bottom, rgba(243, 146, 0, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(0, 92, 169, 0.98), rgba(8, 61, 120, 0.99));
  box-shadow: var(--shadow-strong);
}

.result-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  margin-top: 1.35rem;
  padding: 0.72rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 800;
}

.summary-list-compact {
  margin-top: 0.85rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(circle at top right, rgba(243, 146, 0, 0.22), transparent 26%),
    linear-gradient(145deg, rgba(0, 92, 169, 0.97), rgba(8, 61, 120, 0.99));
}

.contact-copy,
.contact-side {
  padding: 1.8rem;
}

.contact-copy h2 {
  color: #ffffff;
}

.contact-copy p:last-of-type {
  margin-top: 0.95rem;
  color: rgba(255, 255, 255, 0.84);
}

.contact-side {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem 1.2rem;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
}

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

.footer-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink-strong);
}

.not-found-main {
  display: grid;
  min-height: calc(100vh - 9rem);
  place-items: center;
  padding-top: 1.5rem;
}

.not-found-card {
  width: min(100%, 44rem);
  padding: 2.3rem;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(243, 146, 0, 0.2), transparent 26%),
    linear-gradient(145deg, rgba(0, 92, 169, 0.97), rgba(8, 61, 120, 0.99));
}

.not-found-card h1 {
  max-width: 9ch;
  color: #ffffff;
}

.not-found-card .hero-text {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.82);
}

.not-found-secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

@media (max-width: 1180px) {
  .hero-panel,
  .services-layout,
  .fit-grid,
  .case-layout,
  .contact-panel,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-bottom: 1.25rem;
  }

  .hero-visual {
    padding: 0 1.25rem 1.25rem;
  }

  .hero-image-wrap {
    min-height: 24rem;
    border-radius: 30px;
  }

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

  .process-track::before {
    display: none;
  }
}

@media (max-width: 820px) {
  .page-shell {
    width: min(calc(100% - 1rem), var(--content));
    padding-top: 0.65rem;
  }

  .header-inner,
  .module-grid,
  .process-track,
  .signal-strip {
    grid-template-columns: 1fr;
  }

  .header-inner {
    gap: 0.9rem;
    justify-items: start;
  }

  .site-nav {
    flex-wrap: wrap;
    justify-self: start;
    gap: 0.8rem 1rem;
  }

  .header-mail {
    justify-self: start;
  }

  .hero-copy,
  .section-shell,
  .services-summary,
  .contact-copy,
  .contact-side,
  .not-found-card {
    padding: 1.45rem;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.25rem, 10vw, 3.3rem);
  }

  .hero-image-wrap {
    min-height: 18rem;
  }

  .section-heading h2,
  .contact-copy h2 {
    font-size: clamp(1.7rem, 7vw, 2.25rem);
  }

  .site-footer {
    display: grid;
  }
}
