:root {
  --brand-primary: #0b3c5d;
  --brand-action: #328cc1;
  --brand-accent: #98d7c2;
  --text-primary: #1d2731;
  --surface-base: #f4f7fb;
  --surface-elevated: #ffffff;
  --surface-contrast: #dce8f2;
  --border-muted: rgba(11, 60, 93, 0.18);
  --shadow-soft: 0 24px 60px rgba(8, 26, 45, 0.16);
  --shadow-card: 0 18px 38px rgba(8, 26, 45, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
  --hero-card-padding: 3rem;
  --hero-card-gap: 1.2rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'IBM Plex Sans', 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top right, rgba(50, 140, 193, 0.2), transparent 32%),
    linear-gradient(180deg, #eff5fa 0%, #f8fbfd 32%, #eef6fb 100%);
}

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

a {
  color: inherit;
}

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  background: rgba(11, 60, 93, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.site-header__inner,
.site-footer__inner,
.page-section,
.hero,
.governance,
.matrix,
.contact-panel,
.services-overview {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
}

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

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  text-decoration: none;
  color: #fff;
}

.brand-lockup img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.brand-lockup__text {
  display: grid;
  gap: 0.15rem;
}

.brand-lockup__eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.brand-lockup__title {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-lockup__title span {
  color: var(--brand-accent);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
  color: #fff;
  transform: translateY(-1px);
}

.site-nav__cta {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(152, 215, 194, 0.45);
  background: rgba(50, 140, 193, 0.18);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.75fr);
  gap: 2rem;
  padding: 4.5rem 0 2rem;
  align-items: stretch;
}

.hero__content,
.hero__panel,
.governance,
.matrix__card,
.services-overview__card,
.contact-card,
.contact-brief,
.stat-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
}

.hero__content {
  padding: var(--hero-card-padding);
  position: relative;
  overflow: hidden;
}

.hero__content::before {
  content: '';
  position: absolute;
  inset: auto -10% -40% auto;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(50, 140, 193, 0.32), transparent 68%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: rgba(11, 60, 93, 0.08);
  color: var(--brand-primary);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.hero h1,
.page-title,
.section-title {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  color: var(--brand-primary);
  line-height: 1.04;
  margin: 1rem 0;
}

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  max-width: 12ch;
}

.hero p,
.section-copy,
.service-copy,
.contact-copy,
.field-note,
.page-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(29, 39, 49, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.cloud-slider {
  --slider-bg-gradient:
    linear-gradient(165deg, rgba(11, 60, 93, 0.98), rgba(11, 60, 93, 0.84)),
    radial-gradient(circle at top right, rgba(152, 215, 194, 0.18), transparent 34%);
  --slider-card-bg: rgba(255, 255, 255, 0.08);
  --slider-card-border: rgba(255, 255, 255, 0.12);
  --slider-text-primary: #ffffff;
  --slider-text-secondary: rgba(255, 255, 255, 0.72);
  --slider-accent: var(--brand-accent);
  --slider-accent-strong: var(--brand-action);
  position: relative;
  width: min(100%, 610px);
  max-width: 610px;
  height: 690px;
  margin-top: 2rem;
  padding: 36px 36px 30px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background: var(--slider-bg-gradient);
  box-shadow: 0 26px 54px rgba(8, 26, 45, 0.26);
}

.cloud-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(152, 215, 194, 0.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(50, 140, 193, 0.2), transparent 32%);
  pointer-events: none;
}

.slides-wrapper {
  position: relative;
  flex: 1 1 0;
  min-height: 0;
  width: 100%;
  z-index: 1;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  gap: 1rem;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: flex;
  flex-direction: column;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  position: relative;
}

.slide-tag {
  align-self: flex-start;
  margin-bottom: 4px;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(152, 215, 194, 0.22);
  background: rgba(152, 215, 194, 0.08);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.slide-title {
  max-width: 16ch;
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: clamp(2rem, 2vw + 1.25rem, 2.8rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: var(--slider-text-primary);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 4px;
}

.grid-item,
.feature-item {
  border: 1px solid var(--slider-card-border);
  background: var(--slider-card-bg);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.grid-item {
  border-radius: 16px;
  padding: 15px 14px;
  min-height: 110px;
}

.grid-label {
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.grid-desc {
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--slider-text-secondary);
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-item {
  position: relative;
  border-radius: 16px;
  padding: 13px 16px 13px 20px;
  font-size: 0.95rem;
  line-height: 1.58;
  color: var(--slider-text-primary);
}

.feature-item::before {
  content: '';
  position: absolute;
  inset: 12px auto 12px 0;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--slider-accent), var(--slider-accent-strong));
}

.controls-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  z-index: 1;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.dots-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dot {
  width: 11px;
  height: 11px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.dot.active {
  background: var(--slider-accent);
  box-shadow: 0 0 0 4px rgba(152, 215, 194, 0.18);
  transform: scale(1.05);
}

.button,
button,
input,
textarea {
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 60, 93, 0.15);
}

.button--primary {
  background: linear-gradient(135deg, var(--brand-action), #49bbd9);
  color: #fff;
}

.button--secondary {
  color: var(--brand-primary);
  border-color: rgba(11, 60, 93, 0.2);
  background: rgba(255, 255, 255, 0.85);
}

.hero__panel {
  padding: var(--hero-card-padding);
  display: grid;
  gap: var(--hero-card-gap);
  background:
    linear-gradient(165deg, rgba(11, 60, 93, 0.98), rgba(11, 60, 93, 0.84)),
    radial-gradient(circle at top right, rgba(152, 215, 194, 0.2), transparent 34%);
  color: #fff;
}

.hero__logo-frame {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: calc(var(--radius-lg) - 8px);
  padding: 1rem;
}

.hero__logo-frame img {
  width: 100%;
  border-radius: calc(var(--radius-lg) - 10px);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--hero-card-gap);
}

.stat-card {
  min-width: 0;
  min-height: 100%;
  padding: 1.35rem 1.4rem;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.stat-card strong {
  display: block;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  font-size: clamp(1.2rem, 1.6vw + 0.8rem, 1.65rem);
  line-height: 1.12;
  word-break: normal;
  overflow-wrap: anywhere;
  hyphens: auto;
  text-wrap: pretty;
}

.stat-card span {
  display: block;
  margin-top: 0.4rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.governance {
  margin-bottom: 4rem;
  padding: 1.7rem;
}

.governance__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.5rem;
}

.color-grid,
.matrix,
.services-overview,
.contact-layout {
  display: grid;
  gap: 1.25rem;
}

.color-grid {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.color-chip {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-muted);
  background: var(--surface-base);
}

.color-chip__swatch {
  width: 100%;
  height: 82px;
  border-radius: 14px;
  margin-bottom: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.color-chip code {
  display: inline-block;
  margin-bottom: 0.5rem;
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  background: rgba(11, 60, 93, 0.08);
  color: var(--brand-primary);
  font-size: 0.9rem;
}

.page-section {
  padding-bottom: 5rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 2rem;
}

.matrix {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.matrix__card,
.services-overview__card,
.contact-card,
.contact-brief {
  padding: 1.8rem;
}

.matrix__card {
  position: relative;
  overflow: hidden;
}

.matrix__card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: var(--card-accent, var(--brand-primary));
}

.matrix__card h3,
.services-overview__card h3,
.contact-card h2,
.contact-brief h2 {
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  margin-top: 0;
  color: var(--brand-primary);
}

.capability-list,
.contact-points {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.capability-list li,
.contact-points li {
  padding-left: 1rem;
  border-left: 3px solid rgba(50, 140, 193, 0.32);
  line-height: 1.6;
}

.page-hero {
  padding: 4rem 0 2rem;
}

.page-hero--image {
  padding-top: 3rem;
  overflow: hidden;
}

.page-hero__image {
  width: 100%;
  height: auto;
  max-height: min(78vh, 860px);
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.page-title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.page-intro {
  max-width: 70ch;
}

.services-overview {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.contact-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: start;
}

.contact-card form {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.6rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brand-primary);
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(11, 60, 93, 0.18);
  border-radius: 10px;
  padding: 0.9rem 1rem;
  background: #fff;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.button--contact {
  align-self: flex-start;
  min-height: 3.45rem;
  padding: 0 1.75rem;
  border-radius: 10px;
}

.contact-card .eyebrow {
  color: var(--brand-action);
  background: rgba(50, 140, 193, 0.1);
}

.contact-card {
  border-color: rgba(11, 60, 93, 0.08);
  box-shadow: 0 4px 20px rgba(11, 60, 93, 0.05);
}

.contact-card .page-note {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(29, 39, 49, 0.8);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand-action);
  box-shadow: 0 0 0 4px rgba(50, 140, 193, 0.14);
}

.status-banner {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
}

.status-banner[data-state='success'] {
  background: rgba(152, 215, 194, 0.18);
  border-color: rgba(152, 215, 194, 0.48);
  color: var(--brand-primary);
}

.status-banner[data-state='error'] {
  background: rgba(190, 49, 68, 0.08);
  border-color: rgba(190, 49, 68, 0.24);
  color: #8a2231;
}

.contact-brief {
  background:
    linear-gradient(160deg, rgba(11, 60, 93, 0.98), rgba(29, 39, 49, 0.98)),
    linear-gradient(180deg, rgba(50, 140, 193, 0.25), transparent);
  color: #fff;
}

.contact-brief p,
.contact-points li,
.contact-brief .field-note {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  margin-top: 4rem;
  background: #14202d;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.6rem 0 2.4rem;
  align-items: center;
}

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

@media (max-width: 900px) {
  .hero,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    grid-template-columns: 1fr;
  }

  .section-head,
  .governance__header,
  .site-footer__inner,
  .site-header__inner {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --hero-card-padding: 1.35rem;
  }

  .hero__content,
  .hero__panel,
  .governance,
  .matrix__card,
  .services-overview__card,
  .contact-card,
  .contact-brief {
    padding: 1.35rem;
    border-radius: 22px;
  }

  .hero {
    padding-top: 3rem;
  }

  .cloud-slider {
    height: auto;
    min-height: 0;
    padding: 24px 22px 20px;
  }

  .slide-title {
    font-size: clamp(1.95rem, 7vw, 2.4rem);
    max-width: none;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .controls-wrapper {
    margin-top: 16px;
    padding-top: 14px;
  }

  .site-nav {
    gap: 0.65rem;
  }
}