:root {
  --ec2-navy: #06244c;
  --ec2-footer: #003d63;
  --ec2-footer-deep: #002f51;
  --ec2-blue: #0578bc;
  --ec2-blue-soft: #cfeaf4;
  --ec2-sky: #69bad5;
  --ec2-sky-muted: #9dccda;
  --ec2-red: #c33d2c;
  --ec2-red-strong: #df2c16;
  --ec2-sea: #4f9eb8;
  --ec2-ink: #0b1f44;
  --ec2-muted: #526278;
  --ec2-cloud: #f6fbfd;
  --ec2-card: #ffffff;
  --ec2-border: rgba(6, 36, 76, 0.12);
  --ec2-shadow: 0 18px 50px rgba(6, 36, 76, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ec2-ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% 8%, rgba(105, 186, 213, 0.13), transparent 28rem),
    radial-gradient(circle at 84% 24%, rgba(195, 61, 44, 0.08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, var(--ec2-cloud) 100%);
}

a {
  color: inherit;
}

.section-space {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.ec2-page {
  overflow: hidden;
}

.ec2-hero {
  position: relative;
  padding: clamp(1rem, 3vw, 2.25rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.ec2-hero-brand {
  min-height: 4.5rem;
}

.ec2-top-logo {
  width: clamp(6.5rem, 12vw, 10rem);
  height: auto;
}

.ec2-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: clamp(1.25rem, 2.5vw, 2rem);
  background: var(--ec2-sky);
  box-shadow: var(--ec2-shadow);
  isolation: isolate;
}

.ec2-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
  border-radius: inherit;
}

.ec2-hero-card img {
  display: block;
  min-height: 17rem;
  object-fit: cover;
  object-position: center;
}

.ec2-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.1rem;
  transform: translateX(-50%);
  width: 3.5rem;
  height: 3.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--ec2-navy);
  background: #fff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(6, 36, 76, 0.18);
  transition: transform .2s ease, color .2s ease;
}

.ec2-scroll-cue:hover,
.ec2-scroll-cue:focus-visible {
  color: var(--ec2-red-strong);
  transform: translateX(-50%) translateY(2px);
}

.ec2-title-mark {
  width: 7.5rem;
  height: 4rem;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.ec2-title-mark img {
  width: 6.8rem;
  height: auto;
}

.ec2-kicker {
  color: var(--ec2-blue);
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ec2-kicker::before,
.ec2-kicker::after {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 2px;
  margin: 0 .85rem .25rem;
  background: linear-gradient(90deg, transparent, var(--ec2-sky));
}

.ec2-kicker::after {
  background: linear-gradient(90deg, var(--ec2-sky), transparent);
}

.ec2-intro-icon {
  width: min(14rem, 75vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(105, 186, 213, 0.18), rgba(255, 255, 255, 0.92));
  box-shadow: inset 0 0 0 1px rgba(105, 186, 213, 0.22);
}

.ec2-intro-icon img {
  width: 78%;
  height: auto;
  mix-blend-mode: multiply;
}

.ec2-copy-card {
  position: relative;
  padding-left: clamp(1.25rem, 4vw, 2.25rem);
}

.ec2-copy-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35rem;
  bottom: .35rem;
  width: 1px;
  background: linear-gradient(180deg, transparent, var(--ec2-blue-soft), transparent);
}

.ec2-copy-card h2,
.ec2-partners-panel h2 {
  color: var(--ec2-navy);
}

.ec2-copy-card h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  font-weight: 800;
}

.ec2-copy-card p,
.ec2-partners-panel p,
.ec2-footer p,
.ec2-funding-card p {
  line-height: 1.7;
}

.ec2-work-card {
  display: grid;
  grid-template-columns: minmax(5.5rem, 10rem) 1fr;
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: center;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  border: 1px solid var(--ec2-border);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 32px rgba(6, 36, 76, 0.08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ec2-work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 120, 188, 0.28);
  box-shadow: 0 20px 42px rgba(6, 36, 76, 0.14);
}

.ec2-card-icon {
  display: grid;
  place-items: center;
}

.ec2-card-icon img {
  width: 100%;
  max-width: 9.5rem;
  height: auto;
  mix-blend-mode: multiply;
}

.ec2-card-content h3 {
  position: relative;
  margin-bottom: .85rem;
  padding-bottom: .55rem;
  color: var(--ec2-navy);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
  font-weight: 800;
}

.ec2-card-content h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3.4rem;
  height: 2px;
  background: var(--ec2-red-strong);
}

.ec2-card-content h3 span {
  color: var(--ec2-blue);
}

.ec2-card-content ul {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--ec2-ink);
  line-height: 1.55;
}

.ec2-card-content li::marker {
  color: var(--ec2-blue);
}

.ec2-partners {
  position: relative;
}

.ec2-partners::before {
  content: "";
  position: absolute;
  inset: 8% -15% auto auto;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  background: rgba(105, 186, 213, 0.13);
  z-index: -1;
}

.ec2-partners-panel {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid var(--ec2-border);
  border-radius: 1.25rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(207, 234, 244, 0.42));
  box-shadow: var(--ec2-shadow);
}

.ec2-logo-card {
  min-height: 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid rgba(5, 120, 188, 0.16);
  border-radius: 1rem;
  color: var(--ec2-navy);
  background: #fff;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(6, 36, 76, 0.08);
  transition: transform .2s ease, box-shadow .2s ease;
}

.ec2-logo-card:hover,
.ec2-logo-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(6, 36, 76, 0.14);
}

.ec2-logo-card img {
  max-width: 10rem;
  max-height: 5rem;
  object-fit: contain;
}

.ec2-logo-card span {
  color: var(--ec2-blue);
  font-weight: 800;
  letter-spacing: .04em;
}

.ec2-funding {
  padding: 1.25rem 0 clamp(2.5rem, 5vw, 4rem);
}

.ec2-funding-card {
  overflow: hidden;
  border-radius: 1rem;
  background: #e7f0f4;
  box-shadow: 0 10px 28px rgba(6, 36, 76, 0.08);
  text-align: center;
}

.ec2-funding-card img {
  width: 100%;
  max-height: 16rem;
  object-fit: cover;
  object-position: center;
}

.ec2-funding-card p {
  max-width: 62rem;
  margin: 0 auto;
  padding: 0 1rem 1.25rem;
  color: var(--ec2-ink);
  font-size: .92rem;
}

.ec2-footer {
  position: relative;
  padding: clamp(3rem, 5vw, 4.5rem) 0 1.25rem;
  color: #fff;
  background:
    radial-gradient(circle at 86% 0%, rgba(105, 186, 213, 0.22), transparent 18rem),
    linear-gradient(180deg, var(--ec2-footer) 0%, var(--ec2-footer-deep) 100%);
}

.ec2-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -2.7rem;
  height: 3rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%23003d63' d='M0,48 C160,14 285,82 452,52 C615,23 718,22 870,46 C1038,72 1210,28 1440,44 L1440,80 L0,80 Z'/%3E%3C/svg%3E") center/100% 100% no-repeat;
}

.ec2-footer a {
  color: #fff;
  text-decoration: none;
}

.ec2-footer a:hover,
.ec2-footer a:focus-visible {
  text-decoration: underline;
}

.ec2-footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ec2-footer-brand img {
  width: 6rem;
  height: 6rem;
  object-fit: contain;
  padding: .5rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.95);
}

.ec2-footer-brand strong {
  display: block;
  margin-bottom: .25rem;
  font-size: 1.1rem;
}

.ec2-footer h2 {
  color: #eaf7fb;
  font-weight: 800;
  letter-spacing: .02em;
}

.ec2-footer-list {
  display: grid;
  gap: .45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ec2-footer-list i {
  width: 1.5rem;
  color: var(--ec2-blue-soft);
}

.ec2-footer hr {
  margin: 2rem 0 1rem;
  border-color: rgba(255, 255, 255, 0.22);
  opacity: 1;
}

.ec2-footer-bottom,
.ec2-footer-bottom a {
  color: rgba(255, 255, 255, 0.86);
  font-size: .92rem;
}

.ec2-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.25rem;
}

.ec2-legal-links a:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: .85em;
  margin-left: 1.25rem;
  background: rgba(255, 255, 255, 0.35);
  vertical-align: -0.12em;
}

@media (max-width: 991.98px) {
  .ec2-hero-brand {
    min-height: 3.5rem;
  }

  .ec2-kicker::before,
  .ec2-kicker::after {
    width: 1.5rem;
    margin-inline: .5rem;
  }
}

@media (max-width: 767.98px) {
  .ec2-work-card {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .ec2-card-icon {
    justify-content: start;
  }

  .ec2-card-icon img {
    max-width: 7rem;
  }

  .ec2-copy-card {
    padding-left: 1.25rem;
  }

  .ec2-footer-brand {
    align-items: flex-start;
  }
}

@media (max-width: 575.98px) {
  .ec2-scroll-cue {
    width: 3rem;
    height: 3rem;
  }

  .ec2-kicker::before,
  .ec2-kicker::after {
    display: none;
  }

  .ec2-logo-card {
    min-height: 10rem;
  }

  .ec2-footer-brand {
    flex-direction: column;
  }

  .ec2-legal-links a:not(:last-child)::after {
    display: none;
  }
}
