:root {
  --bg: #eef3fb;
  --surface: #ffffff;
  --surface-alt: #dce7fb;
  --text: #102a68;
  --text-soft: #4d5f88;
  --primary: #1a47b8;
  --primary-deep: #0f2f88;
  --accent: #83d83f;
  --accent-strong: #6ab92f;
  --line: rgba(16, 42, 104, 0.1);
  --shadow: 0 20px 55px rgba(16, 42, 104, 0.14);
  --radius-xl: 38px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(131, 216, 63, 0.18), transparent 24%),
    linear-gradient(180deg, #f5f8ff 0%, var(--bg) 38%, #f8fbff 100%);
  color: var(--text);
}

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

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

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto auto 18% -4rem;
  width: 9rem;
  height: 9rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  border-radius: 2rem;
  transform: rotate(45deg);
  opacity: 0.95;
  pointer-events: none;
  z-index: 0;
}

.page-shell::after {
  inset: 30% -4rem auto auto;
  background: linear-gradient(135deg, var(--accent) 0%, #b7f06d 100%);
}

.site-header,
.hero,
.section,
.site-footer {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--content-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 0 1rem;
}

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

.brand img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 0.6rem;
  box-shadow: 0 10px 30px rgba(16, 42, 104, 0.12);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-kicker,
.eyebrow {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.brand-kicker {
  color: var(--accent-strong);
}

.brand strong {
  font-size: 1rem;
  line-height: 1.15;
}

.site-nav {
  display: flex;
  gap: 1.4rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
}

.site-nav a {
  position: relative;
  color: var(--text-soft);
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 180ms ease;
}

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

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

.section {
  padding: 4.75rem 0;
}

.section-angle {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.section-angle::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -110px;
  height: 180px;
  background: var(--bg);
  transform: rotate(-6deg);
  z-index: 0;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  align-items: center;
  gap: 2rem;
  min-height: 860px;
  margin-top: 0.4rem;
  padding: 3.2rem 3rem 3rem;
  border-radius: calc(var(--radius-xl) + 8px);
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 16%, rgba(131, 216, 63, 0.2), transparent 18%),
    radial-gradient(circle at 83% 18%, rgba(255, 255, 255, 0.14), transparent 20%),
    linear-gradient(135deg, #0d2c7d 0%, #14399b 34%, #1948b9 64%, #10348f 100%);
  box-shadow: 0 28px 80px rgba(12, 33, 92, 0.22);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 24, 68, 0.22) 0%, rgba(8, 24, 68, 0.08) 42%, rgba(8, 24, 68, 0) 100%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.05) 0,
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px,
      transparent 112px
    );
  opacity: 0.38;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: 48%;
  height: 42%;
  background: radial-gradient(circle, rgba(131, 216, 63, 0.34), rgba(131, 216, 63, 0) 68%);
  pointer-events: none;
}

.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 24%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.04), transparent 20%);
  z-index: 0;
}

.hero-grid {
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 1) 18%, rgba(0, 0, 0, 0.08) 90%);
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem 0 1rem 0.4rem;
  color: #ffffff;
}

.hero-topline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-rule {
  width: 6rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(131, 216, 63, 0.9), rgba(131, 216, 63, 0));
}

.eyebrow {
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 0.98;
}

.hero h1 {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  max-width: 8.8ch;
  letter-spacing: -0.04em;
}

.hero h1 span {
  color: var(--accent);
  text-shadow: 0 0 24px rgba(131, 216, 63, 0.18);
}

.hero-lead {
  max-width: 36rem;
  margin: 1.4rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(16, 42, 104, 0.22);
}

.button-primary {
  background: var(--accent);
  color: var(--primary-deep);
}

.button-primary:hover {
  background: #9ae64f;
}

.button-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
}

.button-inline {
  align-self: flex-start;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
}

.hero-visual-frame {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 0.88;
  border-radius: 34px;
  overflow: visible;
}

.hero-visual-frame::before {
  content: "";
  position: absolute;
  inset: 1rem -1rem -1rem 1rem;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(131, 216, 63, 0.9), rgba(131, 216, 63, 0.22));
  z-index: 0;
  filter: blur(0.5px);
}

.hero-visual-frame::after {
  content: "";
  position: absolute;
  top: -1.3rem;
  right: -1rem;
  width: 32%;
  height: 32%;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  z-index: 1;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 34px;
  clip-path: polygon(16% 0, 100% 0, 100% 84%, 84% 100%, 0 100%, 0 16%);
  box-shadow: 0 28px 70px rgba(8, 17, 44, 0.32);
}

.hero-card {
  position: absolute;
  z-index: 3;
  max-width: 270px;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(10, 31, 87, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 45px rgba(8, 17, 44, 0.24);
  transition: transform 180ms ease, background-color 180ms ease;
}

.hero-card:hover {
  transform: translateY(-4px);
  background: rgba(13, 44, 125, 0.88);
}

.hero-card-top {
  top: 1.5rem;
  left: -2.25rem;
}

.hero-card-bottom {
  right: -1.5rem;
  bottom: 1.75rem;
}

.hero-card-label {
  display: inline-flex;
  margin-bottom: 0.7rem;
  color: var(--accent);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card strong {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
  line-height: 1.45;
}

.hero-card-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-card-stats div {
  padding-top: 0.15rem;
}

.hero-card-stats span {
  display: block;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
}

.intro-band {
  padding-top: 3rem;
}

.section-heading h2,
.split-heading h2,
.feature-copy h2,
.cta-strip h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  color: var(--text);
}

.intro-grid,
.split-heading,
.cta-strip,
.footer-bottom,
.footer-top {
  display: grid;
  gap: 2rem;
}

.intro-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.6rem;
}

.intro-grid p,
.split-heading p,
.feature-copy p,
.project-card p,
.info-card p,
.cta-strip p,
.footer-bottom p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.split-heading {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  margin-bottom: 2.1rem;
}

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

.info-card,
.project-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-lg);
  padding: 1.65rem;
  box-shadow: 0 18px 40px rgba(17, 48, 135, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.info-card:hover,
.project-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 54px rgba(17, 48, 135, 0.14);
  border-color: rgba(131, 216, 63, 0.55);
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-deep) 100%);
}

.info-card:hover h3,
.project-card:hover h3,
.info-card:hover p,
.project-card:hover p,
.info-card:hover .card-icon,
.project-card:hover .project-tag {
  color: #ffffff;
}

.card-icon,
.project-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: rgba(131, 216, 63, 0.14);
  color: var(--accent-strong);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  margin-bottom: 1.1rem;
  transition: background-color 180ms ease, color 180ms ease;
}

.info-card:hover .card-icon,
.project-card:hover .project-tag {
  background: rgba(255, 255, 255, 0.12);
}

.info-card h3,
.project-card h3 {
  margin: 0 0 0.8rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
}

.feature-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
  background: linear-gradient(125deg, #fdfefe 0%, #f5f8ff 100%);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.feature-image,
.feature-copy {
  position: relative;
  z-index: 1;
}

.feature-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.feature-copy {
  padding: 4rem 3.2rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
}

.feature-copy h2,
.feature-copy p,
.feature-copy strong,
.feature-copy span {
  color: #ffffff;
}

.feature-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.approach-points {
  display: grid;
  gap: 1rem;
  margin-top: 1.75rem;
}

.mini-point {
  padding: 1rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background-color 180ms ease;
}

.mini-point:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.12);
}

.mini-point strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Space Grotesk", sans-serif;
}

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

.cta-strip {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 2rem 2.2rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(120deg, rgba(131, 216, 63, 0.12), rgba(131, 216, 63, 0)),
    rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 16px 40px rgba(17, 48, 135, 0.08);
}

.site-footer {
  margin-top: 2rem;
  padding: 2rem 0 2.6rem;
}

.footer-top {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  color: var(--text-soft);
}

.footer-links a,
.brand,
.button,
.info-card,
.project-card {
  will-change: transform;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-top: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}

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

@media (max-width: 1080px) {
  .hero,
  .feature-panel,
  .split-heading,
  .cta-strip,
  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: unset;
    padding: 2rem 1.75rem 2.5rem;
  }

  .hero-content {
    padding: 0;
  }

  .hero-visual {
    justify-content: center;
    padding-top: 1rem;
  }

  .hero-visual-frame {
    max-width: 620px;
    aspect-ratio: 1.12;
  }

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

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero-content,
  .feature-copy {
    padding: 3rem 1.5rem 6rem;
  }

  .hero {
    padding: 2rem 1rem 2rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .capability-grid,
  .project-grid,
  .intro-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual-frame {
    max-width: 100%;
    aspect-ratio: 0.98;
  }

  .hero-card {
    position: static;
    max-width: none;
  }

  .hero-visual-frame {
    display: grid;
    gap: 1rem;
  }

  .hero-visual-frame::before,
  .hero-visual-frame::after {
    display: none;
  }

  .hero-visual img {
    min-height: 340px;
    clip-path: none;
  }

  .hero-card {
    border-radius: 20px;
  }

  .brand {
    gap: 0.8rem;
  }

  .brand img {
    width: 62px;
    height: 62px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 4.2rem);
  }

  .section-heading h2,
  .split-heading h2,
  .feature-copy h2,
  .cta-strip h2 {
    font-size: clamp(1.7rem, 9vw, 2.7rem);
  }

  .footer-bottom {
    gap: 0.7rem;
  }
}
