:root {
  --bg: #f7f7f8;
  --surface: #ffffff;
  --surface-soft: #eef2f7;
  --surface-muted: #e5e7eb;
  --ink: #1e2b3d;
  --ink-soft: #66738a;
  --line: rgba(34, 50, 77, 0.14);
  --primary: #233a66;
  --primary-deep: #162641;
  --accent: #f2dd49;
  --accent-soft: rgba(242, 221, 73, 0.36);
  --shadow-lg: 0 28px 60px rgba(18, 31, 55, 0.12);
  --shadow-md: 0 18px 40px rgba(17, 28, 48, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: min(1120px, calc(100% - 48px));
  --transition: 220ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top right, rgba(241, 242, 245, 0.92), transparent 24%),
    linear-gradient(180deg, #f8f8f9 0%, #ffffff 50%, #f4f6f9 100%);
  color: var(--ink);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page-shell {
  min-height: 100vh;
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(248, 248, 249, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24, 37, 60, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 14px;
}

.brand__mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  color: #111723;
}

.brand__copy {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #526077;
}

.site-nav a,
.site-nav__meta {
  position: relative;
  padding: 6px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a[aria-current="page"] {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(35, 58, 102, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--primary);
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  position: relative;
  min-height: 780px;
  padding: 20px 0 90px;
  background:
    linear-gradient(180deg, rgba(244, 244, 246, 0.98) 0%, rgba(248, 248, 250, 0.92) 46%, #ffffff 100%);
}

.hero__halo {
  position: absolute;
  top: 18px;
  right: -160px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(228, 229, 234, 0.84) 0%, rgba(242, 243, 246, 0.38) 62%, transparent 68%);
  pointer-events: none;
}

.hero__steps {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(42vw, 560px);
  height: 76%;
  pointer-events: none;
}

.hero__step {
  position: absolute;
  right: 0;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(229, 233, 239, 0.92));
  box-shadow:
    -24px 28px 40px rgba(187, 194, 207, 0.2),
    inset 1px 1px 0 rgba(255, 255, 255, 0.8);
}

.hero__step--1 {
  width: 72%;
  height: 36%;
  bottom: 0;
  border-radius: 42px 0 0 0;
}

.hero__step--2 {
  width: 56%;
  height: 26%;
  bottom: 22%;
  border-radius: 36px 0 0 0;
}

.hero__step--3 {
  width: 40%;
  height: 18%;
  bottom: 40%;
  border-radius: 30px 0 0 0;
}

.hero__lamps {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.lamp {
  position: absolute;
  top: 0;
  left: var(--lamp-left);
  transform: translateX(-50%);
}

.lamp__body {
  display: grid;
  justify-items: center;
  transition: transform 320ms ease;
}

.lamp__wire {
  width: 2px;
  height: var(--lamp-drop);
  background: linear-gradient(180deg, #474d59, #9aa0aa);
}

.lamp__cap {
  width: 28px;
  height: 18px;
  border-radius: 4px 4px 12px 12px;
  margin-top: -2px;
  background: linear-gradient(180deg, #3f434d 0%, #6c7482 100%);
}

.lamp__shade {
  position: relative;
  width: 76px;
  height: 76px;
  margin-top: 8px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.18) 0 10px, #7f8084 11px 17px, transparent 18px),
    linear-gradient(180deg, #d9d9dc 0%, #bdbfc5 100%);
  box-shadow: 0 18px 30px rgba(17, 29, 47, 0.1);
}

.lamp--sm .lamp__shade {
  width: 62px;
  height: 62px;
}

.lamp--accent .lamp__shade {
  width: 74px;
  height: 74px;
  background:
    linear-gradient(180deg, #ffe96b 0%, #f2dd49 100%);
  box-shadow:
    0 18px 30px rgba(242, 221, 73, 0.36),
    0 0 0 10px rgba(242, 221, 73, 0.08);
}

.lamp--accent .lamp__shade::after {
  content: "+";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.9rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.96);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 680px;
  text-align: center;
}

.hero__copy {
  max-width: 560px;
  padding-top: 120px;
}

.hero__kicker {
  margin: 0 0 18px;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.hero h1 {
  margin: 0;
  font-family: "Caveat", cursive;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 700;
  line-height: 1;
  color: #5f6f92;
}

.hero__summary {
  margin: 24px auto 0;
  max-width: 440px;
  color: #59667d;
  font-size: 0.98rem;
}

.site-header--compact {
  background: rgba(255, 255, 255, 0.94);
}

.page-products {
  background:
    linear-gradient(180deg, #f9fafc 0%, #ffffff 42%, #f3f5f9 100%);
}

.product-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fafbfe 0%, #ffffff 100%);
}

.product-hero__panel {
  position: relative;
  min-height: 420px;
  background:
    linear-gradient(90deg, rgba(12, 20, 35, 0.88), rgba(18, 33, 60, 0.3) 32%, rgba(60, 102, 183, 0.14) 100%),
    linear-gradient(135deg, #0f1830 0%, #173562 48%, #4b77ce 100%);
}

.product-hero__mesh {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0.95;
}

.product-hero__mesh::before,
.product-hero__mesh::after {
  content: "";
  position: absolute;
  inset: 0;
}

.product-hero__mesh::before {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.08), transparent 38%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 30px);
}

.product-hero__mesh::after {
  background:
    radial-gradient(circle at 76% 34%, rgba(182, 211, 255, 0.4), transparent 18%),
    radial-gradient(circle at 22% 42%, rgba(118, 164, 255, 0.34), transparent 22%),
    linear-gradient(135deg, transparent 44%, rgba(140, 179, 255, 0.24) 48%, transparent 54%);
  mix-blend-mode: screen;
}

.mesh-line,
.mesh-dot {
  position: absolute;
  display: block;
}

.mesh-line {
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(173, 206, 255, 0.82), transparent);
  box-shadow: 0 0 18px rgba(111, 164, 255, 0.34);
}

.mesh-line--1 {
  top: 26%;
  left: -6%;
  width: 42%;
  transform: rotate(18deg);
}

.mesh-line--2 {
  top: 56%;
  left: 18%;
  width: 38%;
  transform: rotate(-15deg);
}

.mesh-line--3 {
  top: 8%;
  right: 18%;
  width: 32%;
  transform: rotate(28deg);
}

.mesh-line--4 {
  top: 64%;
  right: -8%;
  width: 46%;
  transform: rotate(-14deg);
}

.mesh-dot {
  width: 150px;
  height: 150px;
  border: 1px solid rgba(205, 224, 255, 0.18);
  background:
    radial-gradient(circle, rgba(235, 244, 255, 0.78) 0 1px, transparent 1.6px);
  background-size: 16px 16px;
  box-shadow: inset 0 0 36px rgba(147, 182, 255, 0.14);
}

.mesh-dot--1 {
  top: 0;
  right: 11%;
  width: 320px;
  height: 220px;
  transform: skew(-18deg);
}

.mesh-dot--2 {
  top: 18%;
  left: 18%;
  width: 260px;
  height: 190px;
  transform: rotate(18deg);
}

.mesh-dot--3 {
  right: 37%;
  bottom: -12%;
  width: 240px;
  height: 180px;
  transform: rotate(-12deg);
}

.product-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 420px;
}

.product-hero__copy {
  max-width: 460px;
  color: #f5f8ff;
}

.product-hero__eyebrow {
  margin: 0 0 16px;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(234, 241, 255, 0.8);
}

.product-hero__copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.12em;
}

.product-hero__copy p:last-child {
  margin: 0;
  max-width: 420px;
  font-size: 0.98rem;
  color: rgba(231, 239, 255, 0.88);
}

.product-breadcrumb {
  border-bottom: 1px solid rgba(33, 55, 96, 0.08);
  background: rgba(255, 255, 255, 0.92);
}

.product-breadcrumb__inner {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7b869b;
}

.product-breadcrumb strong {
  color: var(--primary);
  font-weight: 600;
}

.product-directory {
  padding: 42px 0 24px;
}

.product-directory__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 44px;
}

.product-entry {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.product-entry__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background:
    linear-gradient(180deg, #2f4e84 0%, #223b69 100%);
  box-shadow: 0 14px 26px rgba(33, 56, 96, 0.18);
}

.product-entry__icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: rgba(244, 248, 255, 0.96);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-entry__body h2 {
  margin: 2px 0 4px;
  font-size: 1rem;
  font-weight: 600;
  color: #30486f;
}

.product-entry__body h3 {
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #66a0d0;
}

.product-entry__body p {
  margin: 0;
  font-size: 0.92rem;
  color: #67758b;
}

.product-signoff {
  padding: 18px 0 48px;
}

.product-signoff__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.product-signoff__badge {
  margin: 0;
}

.product-signoff__inner p {
  margin: 0;
  font-family: "Caveat", cursive;
  font-size: 2.3rem;
  color: #61739a;
}

.site-footer--product {
  background: linear-gradient(180deg, #e6e7ea, #dfe1e6);
}

.site-footer__inner--product {
  grid-template-columns: 1fr 1fr 1fr 1.3fr;
}

.section-heading--left {
  text-align: left;
}

.page-section {
  padding: 64px 0;
}

.page-section--soft {
  background: linear-gradient(180deg, rgba(239, 242, 247, 0.72), rgba(246, 248, 251, 0.96));
}

.subpage-hero {
  position: relative;
  overflow: hidden;
  color: #eff4ff;
}

.subpage-hero::before,
.subpage-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.subpage-hero::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 42px);
  opacity: 0.56;
}

.subpage-hero::after {
  background:
    radial-gradient(circle at 78% 24%, rgba(174, 209, 255, 0.26), transparent 18%),
    radial-gradient(circle at 18% 58%, rgba(116, 154, 233, 0.22), transparent 24%);
  mix-blend-mode: screen;
}

.subpage-hero--business {
  background: linear-gradient(135deg, #0d1b33 0%, #213d69 54%, #5a7fc5 100%);
}

.subpage-hero--news {
  background: linear-gradient(135deg, #15233e 0%, #334c79 48%, #8da1c5 100%);
}

.subpage-hero--about {
  background: linear-gradient(135deg, #1a2234 0%, #44506c 52%, #8792aa 100%);
}

.subpage-hero--contact {
  background: linear-gradient(135deg, #162239 0%, #2e557f 52%, #7cb1d4 100%);
}

.subpage-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  min-height: 340px;
  padding: 42px 0;
}

.subpage-hero__copy {
  max-width: 620px;
}

.subpage-hero__eyebrow {
  margin: 0 0 16px;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(235, 242, 255, 0.78);
}

.subpage-hero__copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.subpage-hero__copy p:last-child {
  margin: 0;
  max-width: 560px;
  font-size: 1rem;
  color: rgba(235, 242, 255, 0.88);
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 34px;
}

.metric-strip article {
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 50, 81, 0.08);
  box-shadow: 0 18px 34px rgba(17, 28, 48, 0.08);
}

.metric-strip strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: var(--primary);
}

.metric-strip span {
  font-size: 0.88rem;
  color: #6d7c91;
}

.business-capability-grid,
.industry-grid,
.profile-grid,
.office-grid,
.contact-grid,
.news-grid {
  display: grid;
  gap: 22px;
}

.business-capability-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.capability-card,
.industry-card,
.profile-card,
.office-card,
.contact-card,
.news-card {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31, 50, 81, 0.08);
  box-shadow: 0 20px 38px rgba(17, 28, 48, 0.08);
}

.capability-card {
  padding: 28px;
}

.capability-card__eyebrow {
  margin: 0 0 14px;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #83a8d2;
}

.capability-card h3,
.industry-card h3,
.profile-card h3,
.office-card h3,
.contact-card h3,
.news-card h3,
.process-card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
  color: #253a61;
}

.capability-card p,
.industry-card p,
.profile-card p,
.office-card p,
.contact-card p,
.news-card p,
.process-card p {
  margin: 0;
  color: #68778d;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.inline-list li {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(35, 58, 102, 0.07);
  color: #37527f;
  font-size: 0.82rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(31, 50, 81, 0.07);
}

.process-card span {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6d96c3;
}

.industry-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-card,
.profile-card,
.office-card,
.contact-card,
.news-card {
  padding: 24px;
}

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 32px;
  padding: 28px 30px;
  background: linear-gradient(135deg, #1a2a49, #395f98);
  color: #f2f6ff;
  box-shadow: 0 24px 50px rgba(18, 31, 55, 0.18);
}

.cta-banner__eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 246, 255, 0.72);
}

.cta-banner h3 {
  margin: 0;
  max-width: 640px;
  font-size: 1.18rem;
  font-weight: 500;
}

.cta-banner a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 14px 20px;
  background: var(--accent);
  color: #1d2f51;
  font-weight: 600;
}

.featured-news {
  padding: 30px;
  margin-bottom: 26px;
  background: linear-gradient(135deg, rgba(23, 39, 68, 0.98), rgba(59, 90, 137, 0.96));
  color: #eff4ff;
  box-shadow: 0 28px 50px rgba(17, 28, 48, 0.16);
}

.featured-news__meta {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.featured-news h2 {
  margin: 0 0 12px;
  font-size: 2rem;
}

.featured-news p {
  margin: 0;
  max-width: 680px;
  color: rgba(237, 242, 255, 0.86);
}

.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.news-filter button {
  padding: 10px 16px;
  border: 1px solid rgba(35, 58, 102, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: #405373;
  font: inherit;
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.news-filter button.is-active {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.news-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.news-card {
  transition:
    opacity var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.news-card__tag {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  background: rgba(35, 58, 102, 0.08);
  color: #46628f;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.news-card time {
  display: block;
  margin-bottom: 12px;
  font-size: 0.84rem;
  color: #77859a;
}

.news-card.is-hidden {
  display: none;
}

.about-intro {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 28px;
  margin-bottom: 28px;
}

.about-story {
  padding: 30px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31, 50, 81, 0.08);
  box-shadow: 0 20px 38px rgba(17, 28, 48, 0.08);
}

.about-story h2 {
  margin: 0 0 14px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.24;
  color: #263a5d;
}

.about-story p:last-child {
  margin: 0;
  color: #6a788e;
}

.about-facts {
  display: grid;
  gap: 16px;
}

.about-facts div {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 110px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31, 50, 81, 0.08);
  box-shadow: 0 20px 38px rgba(17, 28, 48, 0.08);
}

.about-facts span {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7a869a;
}

.about-facts strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  color: #21375c;
}

.profile-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(36, 57, 96, 0.12);
}

.timeline-item:first-child {
  border-top: 0;
}

.timeline-item > span {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  color: #29426e;
}

.timeline-item h3 {
  margin: 0 0 8px;
  font-size: 1.14rem;
  color: #273c63;
}

.timeline-item p {
  margin: 0;
  color: #68778c;
}

.office-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.office-card a,
.contact-card a {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  color: #2d5ca0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 28px;
}

.contact-layout__sidebar,
.contact-layout__form {
  min-width: 0;
}

.topic-list {
  display: grid;
  gap: 16px;
}

.topic-list article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31, 50, 81, 0.08);
  box-shadow: 0 20px 38px rgba(17, 28, 48, 0.08);
}

.topic-list h3 {
  margin: 0 0 8px;
  color: #273d64;
}

.topic-list p {
  margin: 0;
  color: #68788e;
}

.contact-form {
  padding: 28px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(31, 50, 81, 0.08);
  box-shadow: 0 24px 42px rgba(17, 28, 48, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 0.92rem;
  color: #455570;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 14px;
  border: 1px solid rgba(35, 58, 102, 0.14);
  background: #fbfcff;
  color: #21355a;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 22px;
  border: 0;
  background: linear-gradient(135deg, #19345d, #315d9d);
  color: #ffffff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.form-note,
.form-success {
  margin: 14px 0 0;
  font-size: 0.88rem;
}

.form-note {
  color: #728097;
}

.form-success {
  color: #2b7a49;
}

.section {
  position: relative;
  padding: 56px 0;
}

.section--showcase {
  padding-top: 14px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  background: var(--primary-deep);
  box-shadow: var(--shadow-lg);
}

.showcase-tile {
  position: relative;
  min-height: 240px;
  padding: 28px 28px 26px;
  color: #f2f6ff;
  isolation: isolate;
  overflow: hidden;
}

.showcase-tile::before,
.showcase-tile::after {
  content: "";
  position: absolute;
  inset: 0;
}

.showcase-tile::before {
  opacity: 0.94;
}

.showcase-tile::after {
  background: linear-gradient(135deg, rgba(13, 23, 44, 0.18), rgba(13, 23, 44, 0.74));
  z-index: -1;
}

.showcase-tile--products::before {
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.1), transparent 44%),
    linear-gradient(180deg, rgba(82, 112, 166, 0.35), rgba(22, 38, 65, 0.9)),
    radial-gradient(circle at 24% 26%, rgba(255, 255, 255, 0.18) 0 16%, transparent 17%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 24px);
}

.showcase-tile--news::before {
  background:
    linear-gradient(90deg, rgba(245, 245, 255, 0.08), transparent 30%),
    radial-gradient(circle at 72% 28%, rgba(255, 255, 255, 0.32) 0 12%, transparent 13%),
    linear-gradient(180deg, rgba(112, 137, 186, 0.5), rgba(18, 34, 59, 0.88));
}

.showcase-tile--greetings::before {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(134, 149, 178, 0.44), rgba(33, 49, 79, 0.9));
}

.showcase-tile--company::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 35%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 36px),
    linear-gradient(180deg, rgba(111, 133, 170, 0.34), rgba(21, 37, 63, 0.94));
}

.showcase-tile__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.showcase-tile h2 {
  position: relative;
  z-index: 1;
  max-width: 320px;
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.05;
}

.section-badge {
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}

.section-badge span {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f7e760, #f2dd49);
  box-shadow: 0 12px 24px rgba(242, 221, 73, 0.28);
}

.section-badge span::before {
  content: "";
  position: absolute;
  top: -20px;
  width: 2px;
  height: 22px;
  background: #787d87;
}

.section-badge span::after {
  content: "+";
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.2rem;
  line-height: 1;
}

.section-heading {
  text-align: center;
  margin-bottom: 32px;
}

.section-heading--compact {
  margin-bottom: 24px;
}

.section-heading__label {
  margin: 0 0 10px;
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.section-heading h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pickup-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(31, 50, 81, 0.06);
  box-shadow: var(--shadow-md);
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(18, 31, 55, 0.14);
  border-color: rgba(35, 58, 102, 0.12);
}

.product-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.product-card__media::before,
.product-card__media::after {
  content: "";
  position: absolute;
}

.product-card__media--nge {
  background:
    linear-gradient(180deg, #edf1f7, #d9dfeb);
}

.product-card__media--nge::before {
  inset: 18% 16%;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent),
    repeating-linear-gradient(90deg, #182845 0 18px, #2f4d7b 18px 30px, #0f1b31 30px 38px);
  box-shadow: 0 24px 26px rgba(18, 31, 55, 0.16);
}

.product-card__media--nge::after {
  inset: auto 22% 12% auto;
  width: 28%;
  height: 10%;
  border-radius: 999px;
  background: rgba(33, 56, 96, 0.12);
}

.product-card__media--simpleries {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.72), transparent 24%),
    linear-gradient(140deg, #dff4ff 0%, #cbe3f2 52%, #eef6fb 100%);
}

.product-card__media--simpleries::before {
  inset: 24% 18%;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(194, 223, 239, 0.96));
  transform: rotate(-9deg);
  box-shadow: 0 26px 28px rgba(79, 122, 150, 0.14);
}

.product-card__media--simpleries::after {
  inset: 34% 28%;
  border-radius: 14px;
  border: 2px solid rgba(126, 157, 181, 0.56);
}

.product-card__media--ipals {
  background:
    linear-gradient(0deg, rgba(71, 144, 78, 0.92) 0 38%, rgba(182, 220, 121, 0.84) 38% 64%, rgba(182, 223, 251, 0.74) 64% 100%),
    linear-gradient(140deg, #d6f3ba, #85c27d);
}

.product-card__media--ipals::before {
  inset: 24% 24%;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 30px rgba(46, 96, 48, 0.18);
}

.product-card__media--ipals::after {
  content: "i-PALS";
  inset: 36% 34% auto;
  height: auto;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #3c7bb7;
}

.product-card__media--greenseal {
  background:
    radial-gradient(circle at 70% 26%, rgba(121, 255, 173, 0.24), transparent 18%),
    linear-gradient(180deg, #0b1215, #111317);
}

.product-card__media--greenseal::before {
  left: -8%;
  right: -8%;
  top: 54%;
  height: 4px;
  background: linear-gradient(90deg, transparent, #6dff82 15%, #befb58 44%, #46f1c5 70%, transparent);
  transform: rotate(-14deg);
  box-shadow: 0 0 24px rgba(109, 255, 130, 0.58);
}

.product-card__media--greenseal::after {
  inset: 18% 14% auto auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(190, 251, 88, 0.82);
  box-shadow: 0 0 28px rgba(190, 251, 88, 0.72);
}

.product-card__media--lumicalc {
  background:
    radial-gradient(circle at center, rgba(82, 219, 173, 0.22) 0 12%, transparent 12.5%),
    radial-gradient(circle at center, rgba(82, 219, 173, 0.26) 0 26%, transparent 26.5%),
    radial-gradient(circle at center, rgba(82, 219, 173, 0.2) 0 40%, transparent 40.5%),
    linear-gradient(180deg, #edf4f4, #d8ece6);
}

.product-card__media--lumicalc::before {
  inset: 18% 18%;
  border-radius: 50%;
  border: 2px solid rgba(89, 173, 145, 0.54);
}

.product-card__media--lumicalc::after {
  inset: 50% 12%;
  height: 1px;
  background: rgba(89, 173, 145, 0.34);
}

.product-card__media--dmu {
  background: linear-gradient(180deg, #f3f4f5, #e4e5e8);
}

.product-card__media--dmu::before {
  inset: 30% 12% 22%;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(210, 213, 218, 0.98));
  box-shadow:
    0 12px 18px rgba(38, 45, 58, 0.14),
    inset -1px -1px 0 rgba(164, 169, 176, 0.42);
}

.product-card__media--dmu::after {
  inset: 42% 18% 32%;
  background:
    radial-gradient(circle at 12% 50%, #272f3c 0 4px, transparent 4.5px),
    repeating-linear-gradient(90deg, transparent 0 13%, rgba(61, 67, 77, 0.85) 13% 14.5%, transparent 14.5% 21%),
    linear-gradient(90deg, rgba(31, 38, 50, 0.94), rgba(91, 96, 104, 0.18));
}

.product-card__body {
  padding: 18px 18px 20px;
}

.product-card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
  letter-spacing: 0.02em;
}

.product-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #607089;
}

.text-link {
  display: block;
  width: fit-content;
  margin: 28px auto 0;
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.text-link::after {
  content: " ->";
}

.section--news {
  background: linear-gradient(180deg, rgba(239, 242, 247, 0.9), rgba(245, 247, 251, 0.96));
}

.news-board {
  background: rgba(255, 255, 255, 0.65);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.news-row {
  display: grid;
  grid-template-columns: 130px 100px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 16px 10px;
  border-top: 1px solid var(--line);
  color: #4d5a70;
}

.news-row:first-child {
  border-top: 0;
}

.news-row time,
.news-row span {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-row p {
  margin: 0;
  font-size: 0.95rem;
}

.section--sites {
  padding-bottom: 88px;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.logo-chip {
  display: grid;
  gap: 6px;
  align-content: center;
  min-height: 94px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(26, 41, 67, 0.08);
  box-shadow: 0 14px 28px rgba(19, 31, 53, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.logo-chip strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.34rem;
  font-weight: 700;
}

.logo-chip span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #65748c;
}

.logo-chip:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(19, 31, 53, 0.12);
}

.logo-chip--night {
  border-top: 4px solid #1a2950;
}

.logo-chip--green {
  border-top: 4px solid #5fa864;
}

.logo-chip--aqua {
  border-top: 4px solid #63c5d1;
}

.logo-chip--sky {
  border-top: 4px solid #5ea5dd;
}

.logo-chip--blue {
  border-top: 4px solid #2a5fb8;
}

.site-footer {
  background: linear-gradient(180deg, #e5e7eb, #dcdfe5);
  color: #526076;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding: 42px 0 32px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h3 {
  margin: 0 0 8px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #3e4a5e;
}

.footer-column a,
.footer-column p {
  margin: 0;
  font-size: 0.9rem;
  color: inherit;
}

.footer-column--brand p {
  max-width: 320px;
}

.brand__mark--footer {
  margin-bottom: 12px;
}

.site-footer__bottom {
  padding: 16px 0 26px;
  border-top: 1px solid rgba(29, 44, 68, 0.1);
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero {
    min-height: 720px;
  }

  .pickup-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-directory__grid {
    gap: 28px 28px;
  }

  .metric-strip,
  .process-grid,
  .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .industry-grid,
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-flex;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 24px;
    display: grid;
    gap: 14px;
    min-width: 220px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(35, 58, 102, 0.08);
    box-shadow: 0 22px 42px rgba(18, 31, 55, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition:
      opacity var(--transition),
      transform var(--transition),
      visibility var(--transition);
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-header.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero__steps {
    opacity: 0.72;
    width: 48vw;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .showcase-tile {
    min-height: 200px;
  }

  .news-row {
    grid-template-columns: 118px 90px minmax(0, 1fr);
  }

  .product-hero__panel,
  .product-hero__inner {
    min-height: 360px;
  }

  .product-directory__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__inner--product {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-intro,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .office-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .brand {
    gap: 10px;
  }

  .brand__copy {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-bottom: 56px;
  }

  .hero__halo {
    top: 76px;
    right: -240px;
    width: 460px;
    height: 460px;
  }

  .hero__steps {
    width: 66vw;
    height: 48%;
    opacity: 0.54;
  }

  .hero__inner {
    min-height: 580px;
    align-items: flex-end;
  }

  .hero__copy {
    padding-top: 180px;
    padding-bottom: 26px;
  }

  .lamp--sm .lamp__shade {
    width: 54px;
    height: 54px;
  }

  .lamp--accent .lamp__shade {
    width: 66px;
    height: 66px;
  }

  .pickup-grid,
  .logo-grid,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .product-hero__panel,
  .product-hero__inner {
    min-height: 320px;
  }

  .product-hero__copy {
    max-width: 100%;
    padding: 24px 0;
  }

  .product-entry {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .product-entry__icon {
    width: 54px;
    height: 54px;
  }

  .site-footer__inner--product {
    grid-template-columns: 1fr;
  }

  .subpage-hero__inner {
    min-height: 280px;
  }

  .metric-strip,
  .business-capability-grid,
  .industry-grid,
  .profile-grid,
  .news-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .news-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .news-row time,
  .news-row span {
    font-size: 0.76rem;
  }
}

@media (max-width: 520px) {
  .container {
    width: calc(100% - 24px);
  }

  .site-nav {
    right: 12px;
    min-width: calc(100% - 24px);
  }

  .hero__lamps {
    transform: scale(0.88);
    transform-origin: top center;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .hero__summary {
    font-size: 0.92rem;
  }

  .product-hero__copy h1 {
    letter-spacing: 0.08em;
  }

  .product-breadcrumb__inner {
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 0;
  }

  .page-section {
    padding: 48px 0;
  }

  .subpage-hero__copy h1 {
    font-size: 2.2rem;
  }

  .featured-news {
    padding: 24px;
  }

  .featured-news h2 {
    font-size: 1.6rem;
  }

  .showcase-tile {
    min-height: 180px;
    padding: 24px 20px;
  }

  .showcase-tile h2 {
    max-width: 260px;
  }
}
