:root {
  --ink: #172445;
  --muted: #556078;
  --blue: #132668;
  --accent: #dce5ff;
  --paper: #f4f6fb;
  --line: #dce2ee;
  --dark: #101f54;
  --red: #cf0925;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
p,
h1,
h2,
h3,
figure {
  margin: 0;
}
p + p {
  margin-top: 18px;
}
h1,
h2,
h3 {
  line-height: 1.14;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(38px, 4.2vw, 60px);
}
h2 {
  font-size: clamp(30px, 3vw, 43px);
}
h3 {
  font-size: 23px;
  letter-spacing: -0.025em;
}
a:focus-visible {
  outline: 3px solid #e89825;
  outline-offset: 5px;
}
.container {
  width: min(1200px, calc(100% - 80px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  padding: 12px 20px;
  background: white;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  min-height: 94px;
}
.brand {
  display: block;
  width: 260px;
  max-width: 100%;
  flex-shrink: 0;
}
.brand img {
  width: 100%;
  height: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}
nav a {
  padding-block: 12px;
}
nav a:hover,
.text-link:hover {
  color: var(--blue);
}
nav .nav-contact {
  border: 1px solid var(--blue);
  color: var(--blue);
  padding: 10px 18px;
  border-radius: 5px;
}
.hero {
  padding-top: 68px;
  background: var(--paper);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 48px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 23px;
}
h1 span {
  color: var(--blue);
}
.hero-description {
  font-size: 17px;
  color: var(--muted);
  max-width: 490px;
  margin-top: 25px;
  line-height: 1.8;
}
.actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 29px;
}
.button {
  display: inline-block;
  background: var(--blue);
  color: white;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 700;
  padding: 16px 20px;
}
.button:hover {
  background: #006462;
}
.text-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding-block: 10px;
}
.hero-footnote {
  margin-top: 25px;
  font-size: 12px;
  color: var(--muted);
  border-left: 25px solid #a5d2ca;
  padding-left: 12px;
}
.hero-visual {
  position: relative;
  padding-bottom: 24px;
}
.hero-visual > img {
  height: 460px;
  object-fit: cover;
  object-position: 56% center;
  border-radius: 6px;
}
.hero-visual figcaption {
  position: absolute;
  bottom: 0;
  left: 24px;
  right: 24px;
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--dark);
  color: white;
  padding: 21px 24px;
  border-radius: 6px;
}
.hero-visual figcaption strong {
  display: block;
  font-size: 15px;
}
.hero-visual figcaption p {
  color: #c3d9d9;
  font-size: 12px;
  margin-top: 4px;
}
.hero-visual figcaption > span {
  font-size: 28px;
  color: var(--accent);
}
.expertise-strip {
  margin-top: 58px;
  padding-block: 24px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  align-items: center;
  border-top: 1px solid var(--line);
  gap: 20px;
}
.expertise-strip > span {
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--muted);
}
.expertise-strip p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  border-left: 1px solid #ccd9d6;
  padding-left: 24px;
}
.section {
  padding-block: 90px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 50px;
  margin-bottom: 38px;
}
.section-heading > p {
  max-width: 370px;
  font-size: 15px;
  color: var(--muted);
}
.services-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.service-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-image {
  height: 200px;
  position: relative;
  background: var(--paper);
}
.service-image img {
  height: 100%;
  object-fit: cover;
}
.service-image > span {
  position: absolute;
  bottom: 12px;
  left: 18px;
  background: white;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 3px;
}
.card-body {
  padding: 27px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-body > p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 15px;
}
.card-body ul {
  padding-left: 18px;
  margin: 20px 0 24px;
  font-size: 13px;
  color: var(--muted);
}
.card-body li {
  margin-bottom: 9px;
}
.card-body li::marker {
  color: var(--blue);
}
.card-body .text-link {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--blue);
}
.about-section {
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 90px;
}
.about-grid > div > p:not(.eyebrow) {
  font-size: 15px;
  color: var(--muted);
}
.about-grid .about-lead {
  margin-top: 25px;
}
.about-grid .text-link {
  margin-top: 19px;
  color: var(--blue);
}
.values article {
  display: flex;
  gap: 23px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.values article > span {
  font-size: 12px;
  color: var(--blue);
  padding-top: 4px;
}
.values h3 {
  font-size: 21px;
}
.values p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 12px;
}
.since {
  display: flex;
  align-items: center;
  gap: 24px;
}
.since strong {
  font-size: 53px;
  line-height: 1;
  color: var(--blue);
  letter-spacing: -0.05em;
}
.since p {
  font-size: 12px;
  margin: 0;
}
.team-card {
  border-bottom: 1px solid var(--line);
}
.team-card img {
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 6px;
}
.team-card > div {
  padding: 23px 0;
}
.team-card h3 {
  font-size: 21px;
}
.team-card p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.contact-section {
  background: var(--dark);
  color: white;
}
.contact-section .eyebrow {
  color: var(--accent);
}
.contact-section .section-heading > p {
  color: #c3d6d7;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-card {
  border: 1px solid #476368;
  border-radius: 6px;
  padding: 32px;
}
.contact-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid #476368;
}
.contact-title h3 {
  font-size: 24px;
}
.contact-title > span {
  color: var(--accent);
  font-size: 12px;
}
.contact-card dl {
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  column-gap: 22px;
  row-gap: 22px;
  font-size: 14px;
}
.contact-card dt {
  color: #a9c6c8;
  font-size: 12px;
}
.contact-card dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.contact-card a {
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: #5f8a8d;
  text-underline-offset: 4px;
  padding-block: 3px;
}
.contact-card a:hover {
  color: var(--accent);
}
footer {
  padding-block: 35px;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.footer-brand {
  width: 210px;
}
footer p {
  font-size: 12px;
  color: var(--muted);
}
@media (max-width: 1000px) {
  .container {
    width: calc(100% - 48px);
  }
  nav {
    gap: 14px;
    font-size: 13px;
  }
  .header-inner > .brand {
    width: 200px;
  }
  .hero-grid {
    gap: 28px;
    grid-template-columns: 1fr 1fr;
  }
  .hero-visual > img {
    height: 450px;
  }
  .hero-visual figcaption {
    left: 12px;
    right: 12px;
    padding: 18px;
  }
  .hero h1 {
    font-size: 42px;
  }
  .about-grid {
    gap: 45px;
  }
  .services-grid,
  .team-grid {
    gap: 16px;
  }
  .card-body {
    padding: 20px;
  }
  .contact-card {
    padding: 25px;
  }
  .contact-card dl {
    grid-template-columns: 1fr;
    row-gap: 5px;
  }
  .contact-card dd {
    margin-bottom: 15px;
  }
  .expertise-strip p {
    padding-left: 15px;
  }
  .section-heading > p {
    max-width: 310px;
  }
}
@media (max-width: 720px) {
  html {
    scroll-padding-top: 190px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    padding-block: 15px;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
  .brand {
    width: 220px;
  }
  .footer-brand {
    width: 180px;
  }
  nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    justify-content: space-between;
    gap: 8px;
    font-size: 12px;
  }
  nav a {
    grid-column: span 2;
    text-align: center;
  }
  nav .nav-contact,
  nav .nav-app {
    grid-column: span 3;
  }
  nav a {
    padding: 8px 0;
  }
  nav .nav-contact {
    padding: 7px 10px;
  }
  .hero {
    padding-top: 36px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero h1 {
    font-size: clamp(35px, 7vw, 48px);
  }
  .hero-description {
    font-size: 16px;
  }
  .eyebrow {
    font-size: 10px;
    margin-bottom: 18px;
  }
  .hero-visual > img {
    height: auto;
    aspect-ratio: 3/2;
    object-fit: cover;
  }
  .hero-visual figcaption {
    left: 14px;
    right: 14px;
    padding: 17px;
  }
  .hero-footnote {
    margin-top: 20px;
  }
  .expertise-strip {
    margin-top: 30px;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .expertise-strip > span {
    font-size: 9px;
  }
  .expertise-strip p {
    font-size: 11px;
  }
  .section {
    padding-block: 58px;
  }
  .section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .section-heading > p {
    max-width: 100%;
    margin-top: 20px;
  }
  .services-grid,
  .team-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .service-image {
    height: auto;
    aspect-ratio: 1.8;
  }
  .card-body {
    padding: 25px;
  }
  .card-body ul {
    font-size: 14px;
  }
  .about-grid {
    gap: 35px;
  }
  .team-card > div {
    padding: 20px 0;
  }
  .contact-card dl {
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 18px 10px;
  }
  .contact-card dd {
    margin: 0;
    font-size: 13px;
  }
  .contact-card {
    padding: 22px;
  }
  .footer-inner {
    flex-wrap: wrap;
    gap: 20px;
  }
  footer p {
    order: 3;
    width: 100%;
    border-top: 1px solid var(--line);
    padding-top: 20px;
  }
  .footer-inner .text-link {
    font-size: 12px;
  }
  .hero-visual figcaption strong {
    font-size: 14px;
  }
  .hero-visual figcaption p {
    font-size: 11px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
/* Brand presentation and interactions. CSS only: no executable scripts. */
header {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 3px 22px rgba(19, 38, 104, 0.05);
}
body {
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
}
nav a,
.button,
.text-link {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}
nav .nav-contact {
  border-color: var(--red);
  color: var(--red);
  font-weight: 700;
}
nav .nav-contact:hover,
nav .nav-contact:focus-visible {
  background: var(--red);
  color: #fff;
  box-shadow: 0 5px 15px rgba(207, 9, 37, 0.15);
}
nav a:not(.nav-contact):hover {
  color: var(--red);
}
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(ellipse at 85% 5%, #263e88 0, transparent 53%),
    linear-gradient(120deg, #101b44, #132668);
  padding-top: 76px;
}
.hero::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  right: -220px;
  top: 60px;
  pointer-events: none;
}
.hero-grid {
  position: relative;
}
.hero .eyebrow {
  color: #dee6ff;
}
.hero h1 {
  font-size: clamp(36px, 3.8vw, 55px);
  line-height: 1.1;
}
.hero h1 span {
  color: #c6d5ff;
}
.hero-description {
  color: #e0e6f6;
}
.hero .text-link {
  color: #fff;
}
.hero .text-link:hover {
  color: #c6d5ff;
  transform: translateX(3px);
}
.button {
  background: var(--red);
  border-radius: 7px;
  padding: 17px 22px;
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.16);
}
.button:hover,
.button:focus-visible {
  background: #ac071e;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.23);
}
.hero-footnote {
  color: #dce5ff;
  border-left: 24px solid #ee2945;
}
.hero-visual > img {
  border: 5px solid rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(4, 12, 38, 0.25);
}
.hero-visual figcaption {
  background: #fff;
  color: var(--ink);
  border-left: 4px solid var(--red);
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(4, 12, 38, 0.2);
}
.hero-visual figcaption > span {
  color: var(--red);
}
.hero-visual figcaption p {
  color: var(--muted);
}
.expertise-strip {
  border-top-color: #465583;
}
.expertise-strip > span {
  color: #c6d5ff;
}
.expertise-strip p {
  color: #fff;
  border-left-color: #465583;
}
.section-heading h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  background: var(--red);
  margin-top: 22px;
  border-radius: 3px;
}
.service-card {
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(19, 38, 104, 0.035);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}
.service-image {
  overflow: hidden;
}
.service-image img {
  transition: transform 450ms ease;
}
.service-image > span {
  background: var(--blue);
  color: #fff;
  padding: 5px 12px;
  border-radius: 5px;
}
.card-body li::marker {
  color: var(--red);
}
.card-body .text-link {
  color: var(--red);
}
.card-body .text-link:hover {
  color: #9f061c;
}
.about-section {
  background: linear-gradient(130deg, #f0f3fa, #fafbfe);
}
.values article > span {
  color: var(--red);
  font-weight: 700;
}
.since strong {
  color: var(--blue);
}
.team-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}
.team-card img {
  border-radius: 0;
}
.team-card > div {
  padding: 24px;
  border-top: 3px solid var(--red);
}
.contact-section {
  background: linear-gradient(125deg, #101b44, #132668);
}
.contact-section .section-heading > p {
  color: #d7dff2;
}
.contact-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: #53628d;
  border-radius: 12px;
  transition:
    background-color 220ms ease,
    border-color 220ms ease;
}
.contact-title {
  border-bottom-color: #53628d;
}
.contact-card dt {
  color: #cbd7f4;
}
.contact-card a {
  text-decoration-color: #8496c3;
}
.contact-card a:hover {
  color: #fff;
  text-decoration-color: #fff;
}
.contact-card:focus-within {
  border-color: #b4c4ef;
  background: rgba(255, 255, 255, 0.08);
}
a:focus-visible {
  outline-color: #ce253e;
}
.hero a:focus-visible,
.contact-section a:focus-visible {
  outline-color: #fff;
}
@media (hover: hover) {
  .service-card:hover,
  .service-card:focus-within {
    transform: translateY(-6px);
    border-color: #a8b6d9;
    box-shadow: 0 16px 35px rgba(19, 38, 104, 0.12);
  }
  .service-card:hover .service-image img {
    transform: scale(1.035);
  }
  .team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(19, 38, 104, 0.1);
  }
  .contact-card:hover {
    border-color: #8fa2d4;
    background: rgba(255, 255, 255, 0.07);
  }
}
@keyframes brand-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-grid > div {
    animation: brand-enter 650ms ease both;
  }
  .hero-visual {
    animation: brand-enter 650ms 100ms ease both;
  }
}
@media (max-width: 720px) {
  .hero {
    padding-top: 42px;
  }
  .hero h1 {
    font-size: clamp(34px, 7vw, 48px);
  }
  .team-card > div {
    padding: 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .service-card:hover,
  .service-card:focus-within,
  .team-card:hover,
  .button:hover,
  .button:focus-visible,
  .hero .text-link:hover,
  .service-card:hover .service-image img {
    transform: none;
  }
}
