:root {
  --bg-light: #ffffff;
  --bg-dark: #050505;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.78);
  --blue: #2c569e;
  --blue-soft: #4a7ad0;
  --charcoal: #1e2e35;
  --container: 1180px;
  --content: min(65%, 760px);
  --radius-panel: 32px;
  --radius-card: 24px;
  --radius-image: 16px;
  --section-gap: 42rem;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-light);
  color: var(--text);
  line-height: 1.45;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.section-light { background: var(--bg-light); }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }
.content-width { width: var(--content); max-width: var(--content); margin: 0 auto; }
.site-shell { overflow: clip; position: relative; }

.hero-stage {
  min-height: 100vh;
  display: grid;
  align-items: center;
  background: #fff;
  position: relative;
  overflow: hidden;
  z-index: 4;
}
.hero-inner {
  min-height: calc(100vh - 56px);
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2.25rem;
}
.hero-logo { width: min(70vw, 950px); }
.hero-tagline {
  margin: 1.35rem 0 0;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  letter-spacing: 0.04em;
  color: #111;
}
.summit-peek {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.summit-peek__label {
  transform: translateY(40%);
  background: linear-gradient(180deg, rgba(5,5,5,0.96), rgba(5,5,5,1));
  color: #fff;
  border-radius: 24px 24px 0 0;
  width: min(calc(100% - 2rem), var(--container));
  padding: 1.35rem 2rem 2rem;
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 -10px 26px rgba(10,16,28,0.08);
}

.panel-wrap {
  position: relative;
  padding: 0;
  margin: 0 0 calc(var(--section-gap) * 0.9);
  z-index: 4;
}
.panel-wrap--overlap {
  margin-top: -3.5rem;
  padding-top: 0;
}
.panel {
  background: var(--bg-dark);
  border-radius: var(--radius-panel);
  padding: 7rem 0 7.25rem;
}
.panel--dark { box-shadow: none; }
.summit-panel,
.services-panel {
  min-height: min(132vh, 1480px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
  background: #ffffff;
}

.services-backdrop__inner {
  display: grid;
  place-items: center;
  min-height: 100vh;
}
.display-title {
  margin: 0;
  position: relative;
  display: inline-block;
  color: transparent;
  background-image: url('../images/dynamic-background-our-solutions-effect.svg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100vw 100vh;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(4.2rem, 10vw, 8.2rem);
  line-height: 0.9;
  font-weight: 680;
  letter-spacing: -0.05em;
  text-shadow: none;
  animation: services-shimmer 22s linear infinite alternate;
  background-attachment: fixed;
  filter: saturate(1.02) contrast(1.02);
  padding-right: 0.12em;
  overflow: visible;
}


@keyframes services-shimmer {
  0% { background-position: 48% 50%; filter: saturate(1); }
  50% { background-position: 55% 48%; filter: saturate(1.06); }
  100% { background-position: 45% 52%; filter: saturate(1); }
}

.section-header { margin-bottom: 2rem; }
.section-header--center { text-align: center; }
.section-header--narrow,
.product-header-width { width: min(100%, 860px); max-width: min(100%, 860px); margin-left: auto; margin-right: auto; }
.section-title { margin: 0 0 .5rem; font-size: clamp(2rem, 4vw, 3rem); }
.section-kicker { margin: 0; color: var(--muted); font-size: 1rem; }
.section-tagline { margin: 1.25rem 0 0; font-size: 1.1rem; }
.section-intro { margin: 1.5rem auto 0; max-width: 46rem; color: var(--muted); font-size: 1.05rem; }

.feature-image {
  width: 100%;
  border-radius: var(--radius-image);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}
.feature-image--wide { width: var(--content); max-width: var(--content); margin: 0 auto 1.25rem; }
.feature-image--small { width: min(440px, 100%); margin: 0 auto 2rem; }

.lead, .info-grid, .product-copy, .cta-row, .consulting-grid, .product-grid {
  width: var(--content);
  max-width: var(--content);
  margin-inline: auto;
}
.lead { color: var(--muted); margin: 0 auto 1.5rem; font-size: 1.05rem; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.info-grid--single { grid-template-columns: 1fr; margin-top: 1rem; }
.info-grid h3, .subheading { margin: 0 0 .5rem; font-size: 1.15rem; }
.info-grid p, .product-copy p, .cta-copy p, .feature-list { color: var(--muted); }

.consulting-grid { display: grid; gap: clamp(2.8rem, 8vh, 5.5rem); }
.card-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }
.glass-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.022));
  border: 1px solid rgba(225, 229, 234, 0.10);
  border-radius: var(--radius-card);
  padding: 2rem;
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 4px 10px rgba(9, 16, 30, 0.03),
    inset 0 1px 0 rgba(255,255,255,0.035);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.glass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 34%, rgba(255,255,255,0) 58%);
}
.glass-card--wide { min-height: 170px; display: grid; place-items: center; }
.glass-card--glow::before {
  content: "";
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 540px;
  height: 220px;
  background: radial-gradient(circle, rgba(44,86,158,.11) 0%, rgba(30,46,53,.03) 35%, rgba(44,86,158,0) 72%);
  filter: blur(18px);
  pointer-events: none;
}
.glass-card h3 { position: relative; z-index: 1; margin: .25rem 0 .75rem; font-size: 1.1rem; }
.glass-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); }
.eyebrow {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: .6rem;
}
.eyebrow--left { margin-bottom: .5rem; }

.cta-row {
  display: grid;
  grid-template-columns: 1.6fr auto;
  gap: 1.5rem;
  align-items: center;
  margin-top: 2.5rem;
}
.cta-row--matched { width: 100%; max-width: 100%; margin-left: 0; margin-right: 0; }
.cta-copy { text-align: left; }
.cta-copy h3 { margin: 0 0 .5rem; font-size: 1.75rem; }
.cta-copy p { text-align: left; }
.cta-copy p:last-child { margin: 0; }
.cta-action { display: flex; justify-content: flex-end; }
.cta-action--form { align-items: flex-start; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: .95rem 1.5rem;
  border-radius: 18px;
  border: 1px solid rgba(225,229,234,.18);
  color: #fff;
  font-weight: 600;
}
.button--primary {
  background: linear-gradient(135deg, #2c569e 0%, #244a88 55%, #1e2e35 100%);
  box-shadow: 0 10px 24px rgba(14,27,42,.35), inset 0 1px 0 rgba(255,255,255,.1);
}
.button--accent { background: linear-gradient(135deg, #2c569e 0%, #1e2e35 100%); }

.product-section {
  text-align: center;
  width: var(--content);
  max-width: var(--content);
  margin: 0 auto;
}
.product-section--single,
.product-card--app {
  background: linear-gradient(180deg, rgba(255,255,255,.052), rgba(255,255,255,.022));
  border: 1px solid rgba(225, 229, 234, 0.10);
  border-radius: var(--radius-card);
  padding: clamp(2rem, 3vw, 2.75rem);
  box-shadow:
    0 4px 10px rgba(9, 16, 30, 0.03),
    inset 0 1px 0 rgba(255,255,255,0.035);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.product-brand {
  display: inline-flex;
  align-items: center;
  gap: .875rem;
  margin-bottom: .5rem;
  justify-content: center;
}
.product-brand--single { margin-top: .25rem; }
.product-brand h3 { margin: 0; font-size: 1.15rem; }
.product-logo { width: 52px; height: 52px; object-fit: contain; }
.feature-image--app { aspect-ratio: 1 / 1; object-fit: cover; border-radius: var(--radius-image); }
.product-logo--boxed { width: 72px; height: 72px; border-radius: 10px; background: #fff; padding: 6px; }
.product-link { display: block; margin-bottom: 1.5rem; color: #09b8ff; }
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: start;
}
.product-grid--apps { width: min(100%, 980px); max-width: min(100%, 980px); gap: 1.5rem; margin-top: 2rem; margin-bottom: 2rem; }
.product-grid--single-app { grid-template-columns: minmax(340px, 460px); justify-content: center; }
.product-card { text-align: center; }
.product-card--app { height: 100%; }
.product-copy { margin-top: 1rem; text-align: left; }
.product-copy--matched { width: 100%; max-width: 100%; margin-inline: auto; }
.feature-list { margin: 0; padding-left: 1.25rem; text-align: left; }
.feature-list li { margin-bottom: .6rem; }

.subscribe-card { width: min(440px, 100%); text-align: left; margin-left: auto; }
.subscribe-row { display: flex; gap: 0; margin-bottom: .75rem; }
.input {
  flex: 1;
  height: 46px;
  padding: .75rem .9rem;
  border: none;
  outline: none;
  border-radius: 0;
}
.subscribe-row .input { border-radius: 6px 0 0 6px; }
.subscribe-row .button { border-radius: 0 6px 6px 0; min-width: 140px; border: none; }
.choice { display: block; color: var(--muted); font-size: .95rem; margin-bottom: .45rem; }
.choice input { margin-right: .45rem; }

.footer_component {
  background: #fff;
  color: #111;
  padding: 3.5rem 0 4rem;
}
.footer_container { width: min(calc(100% - 2rem), var(--container)); }
.footer_grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}
.footer_block { display: flex; flex-direction: column; gap: .6rem; }
.footer_block--center { align-items: center; }
.footer_block--right { align-items: flex-end; }
.footer_heading {
  margin: 0 0 .15rem;
  font-size: 1rem;
  font-weight: 700;
}
.footer_link { color: #2c569e; }
.footer_logo { width: min(240px, 52vw); }

@media (max-width: 991px) {
  :root { --content: min(86%, 760px); }
  .hero-inner { min-height: calc(100vh - 86px); }
  .summit-peek__label { width: min(calc(100% - 1.25rem), var(--container)); }
  .info-grid, .card-row, .product-grid, .cta-row, .footer_grid { grid-template-columns: 1fr; }
  .product-section { width: min(92%, 760px); max-width: min(92%, 760px); }
  .product-grid--apps { width: 100%; max-width: 100%; }
  .cta-action, .footer_block--right, .footer_block--center { justify-content: flex-start; align-items: flex-start; }
  .footer_grid { text-align: left; }
}

@media (max-width: 767px) {
  .panel { padding: 2.6rem 0; border-radius: 24px; }
  .panel-wrap--overlap { margin-top: -2rem; padding-top: 0; }
  .summit-panel, .services-panel { min-height: auto; }
  .hero-logo { width: min(84vw, 950px); }
  .hero-tagline { font-size: .96rem; }
  .summit-peek__label { font-size: 1.35rem; padding: 1rem 1rem 1.5rem; }
  .display-title { font-size: clamp(2.4rem, 13vw, 4.6rem); }
  .glass-card, .button { width: 100%; }
}

.panel-wrap--last { margin-bottom: 0; }
.footer_component--flush { position: relative; z-index: 4; margin-top: 0; }


/* Final polish fixes */
.product-grid--apps .product-card--app {
  width: min(100%, 420px);
  margin-inline: auto;
}

.product-grid--apps .feature-image,
.product-grid--apps .feature-image--app {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-image);
}

.product-grid--single-app {
  grid-template-columns: minmax(0, 420px);
}

.summit-panel .section-header {
  margin-bottom: 1.4rem;
}


/* Final surgical fixes */
.summit-peek,
.summit-peek__label {
  display: none;
}

.panel-wrap--overlap {
  margin-top: -6.25rem;
  padding-top: 0;
}

.summit-panel {
  position: relative;
  z-index: 5;
}

.feature-image--wide,
.descriptionimage {
  width: min(62vw, 1536px);
  max-width: 100%;
  margin: 0 auto 1.5rem;
  border-radius: var(--radius-image);
  aspect-ratio: auto;
  object-fit: cover;
}

.glass-card--glow::before {
  width: 620px;
  height: 240px;
  background: radial-gradient(circle, rgba(44,86,158,.18) 0%, rgba(44,86,158,.08) 34%, rgba(44,86,158,0) 72%);
  filter: blur(20px);
  opacity: 1;
}

.product-grid--apps .product-card--app {
  width: min(100%, 360px);
  margin-inline: auto;
}

.product-grid--single-app {
  grid-template-columns: minmax(0, 360px);
}

.product-grid--apps .feature-image,
.product-grid--apps .feature-image--app {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-image);
}

.product-grid--apps .product-card--app .feature-image,
.product-grid--apps .product-card--app .feature-image--app {
  display: block;
}

