:root {
  --bg: #f5f7fb;
  --ink: #101318;
  --muted: #667085;
  --soft: rgba(255, 255, 255, 0.68);
  --glass: rgba(255, 255, 255, 0.56);
  --glass-strong: rgba(255, 255, 255, 0.76);
  --line: rgba(16, 19, 24, 0.1);
  --line-light: rgba(255, 255, 255, 0.68);
  --cyan: #17c7d2;
  --blue: #4f7cff;
  --lime: #a8ffcf;
  --radius: 28px;
  --shadow: 0 30px 90px rgba(29, 45, 73, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 10%, rgba(23, 199, 210, 0.28), transparent 28rem),
    radial-gradient(circle at 86% 6%, rgba(79, 124, 255, 0.22), transparent 30rem),
    linear-gradient(135deg, #fbfcff 0%, #edf3fb 50%, #f7fbff 100%);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.page-progress {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  height: 3px;
  left: 0;
  position: fixed;
  top: 0;
  transform: scaleX(0);
  transform-origin: left;
  width: 100%;
  z-index: 30;
}

.ambient {
  border-radius: 999px;
  filter: blur(12px);
  opacity: 0.72;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

.ambient-a {
  background: rgba(23, 199, 210, 0.18);
  height: 420px;
  left: -160px;
  top: 180px;
  width: 420px;
}

.ambient-b {
  background: rgba(79, 124, 255, 0.14);
  bottom: 120px;
  height: 460px;
  right: -180px;
  width: 460px;
}

.cursor-glow {
  background: radial-gradient(circle, rgba(23, 199, 210, 0.22), transparent 62%);
  height: 340px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 180ms ease;
  width: 340px;
  z-index: 0;
}

.glass {
  backdrop-filter: blur(28px) saturate(135%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.38));
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.site-header {
  align-items: center;
  border-radius: 999px;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  left: clamp(16px, 4vw, 64px);
  padding: 12px 14px 12px 16px;
  position: fixed;
  right: clamp(16px, 4vw, 64px);
  top: 18px;
  z-index: 20;
}

.brand {
  align-items: center;
  background: #050607;
  border-radius: 999px;
  display: inline-flex;
  height: 54px;
  justify-content: center;
  overflow: hidden;
  width: 160px;
}

.brand img,
.site-footer img {
  height: 100%;
  object-fit: contain;
  padding: 8px 13px;
  width: 100%;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 8px;
}

.site-nav a {
  border-radius: 999px;
  color: rgba(16, 19, 24, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 11px 15px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  background: rgba(16, 19, 24, 0.07);
  color: var(--ink);
  transform: translateY(-1px);
}

.menu-toggle {
  background: rgba(16, 19, 24, 0.08);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: none;
  height: 44px;
  padding: 0;
  width: 44px;
}

.menu-toggle span {
  background: var(--ink);
  display: block;
  height: 2px;
  margin: 7px auto;
  transition: transform 180ms ease;
  width: 20px;
}

.nav-open .menu-toggle span:first-child {
  transform: translateY(4.5px) rotate(45deg);
}

.nav-open .menu-toggle span:last-child {
  transform: translateY(-4.5px) rotate(-45deg);
}

.section-shell {
  padding: clamp(94px, 10vw, 150px) clamp(18px, 5vw, 72px);
}

.section-content {
  margin: 0 auto;
  max-width: 1180px;
  padding: clamp(74px, 9vw, 118px) 24px;
}

.hero {
  min-height: 100vh;
  padding-top: 132px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 86px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  margin: 0 auto;
  max-width: 1220px;
}

.eyebrow {
  color: #087f88;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

h1 {
  font-size: clamp(4rem, 12vw, 9.8rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2.25rem, 5.2vw, 5rem);
  font-weight: 900;
  max-width: 920px;
}

h3 {
  font-size: clamp(1.24rem, 2vw, 1.7rem);
  font-weight: 850;
}

.hero-lede {
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.34rem);
  margin: 26px 0 0;
  max-width: 680px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  transition: box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: #101318;
  box-shadow: 0 18px 42px rgba(16, 19, 24, 0.18);
  color: #fff;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line-light);
  color: var(--ink);
}

.hero-card {
  border-radius: 36px;
  min-height: clamp(420px, 46vw, 610px);
  overflow: hidden;
  padding: 26px;
  position: relative;
  transform-style: preserve-3d;
}

.hero-card::before {
  background:
    linear-gradient(135deg, rgba(23, 199, 210, 0.22), transparent 34%),
    linear-gradient(315deg, rgba(79, 124, 255, 0.18), transparent 44%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero-card-top,
.metric-strip {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-card-top span,
.metric-strip div {
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: rgba(16, 19, 24, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 10px 13px;
}

.hero-card-media {
  border-radius: 30px;
  box-shadow: 0 26px 80px rgba(16, 19, 24, 0.18);
  height: clamp(260px, 30vw, 390px);
  left: 50%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate3d(-50%, -50%, 36px);
  width: min(86%, 520px);
  z-index: 1;
}

.metric-strip {
  bottom: 26px;
  left: 26px;
  position: absolute;
  right: 26px;
}

.metric-strip div {
  align-items: center;
  border-radius: 24px;
  display: grid;
  gap: 0;
  min-width: 0;
  padding: 14px 16px;
}

.metric-strip strong {
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
}

.metric-strip span {
  color: var(--muted);
  font-size: 0.76rem;
}

.intro {
  align-items: center;
  display: grid;
  gap: 38px;
  grid-template-columns: minmax(360px, 1.05fr) minmax(340px, 0.95fr);
}

.intro-copy,
.intro-copy > div {
  display: grid;
  gap: 0;
}

.intro-copy h2 {
  font-size: clamp(2.1rem, 4.7vw, 4.6rem);
  max-width: 9ch;
}

.intro-copy p {
  max-width: 34rem;
}

.intro > p,
.section-heading p,
.coverage-copy p,
.contact-inner p {
  color: var(--muted);
  font-size: 1.08rem;
  margin: 20px 0 0;
}

.intro-media {
  aspect-ratio: 16 / 10;
  border-radius: 34px;
  overflow: hidden;
  padding: 14px;
}

.intro-media img {
  border-radius: 24px;
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.section-heading {
  margin-bottom: 34px;
}

.training-feature {
  align-items: center;
  border-radius: 34px;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(260px, 0.46fr) minmax(0, 1fr);
  margin-bottom: 26px;
  overflow: hidden;
  padding: 18px;
}

.training-feature-copy {
  padding: 16px 14px 16px 10px;
}

.training-feature-label {
  color: #087f88;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.training-feature-copy h3 {
  max-width: 420px;
}

.training-feature-copy p {
  color: var(--muted);
  margin: 18px 0 0;
  max-width: 440px;
}

.training-feature-media {
  border-radius: 26px;
  min-height: 420px;
  overflow: hidden;
  position: relative;
}

.training-feature-media img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.cards-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  border-radius: var(--radius);
  min-height: 318px;
  padding: 24px;
  position: relative;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card::after {
  background: linear-gradient(135deg, rgba(23, 199, 210, 0.2), transparent 54%);
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 220ms ease;
}

.service-card:hover::after {
  opacity: 1;
}

.service-card p {
  color: var(--muted);
  margin: 18px 0 0;
  position: relative;
  z-index: 1;
}

.service-card h3,
.card-index {
  position: relative;
  z-index: 1;
}

.card-index {
  color: #087f88;
  display: block;
  font-size: 0.9rem;
  font-weight: 900;
  margin-bottom: 72px;
}

.consultancy {
  max-width: 1180px;
}

.service-showcase {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.showcase-card {
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 180ms ease;
}

.showcase-card:hover {
  transform: translateY(-6px);
}

.showcase-card span {
  color: #087f88;
  display: block;
  font-weight: 900;
  margin-bottom: 58px;
}

.showcase-card p {
  color: var(--muted);
  margin: 16px 0 0;
}

.coverage {
  align-items: start;
  display: grid;
  gap: 42px;
  grid-template-columns: minmax(280px, 0.62fr) minmax(440px, 0.96fr);
}

.coverage-stack {
  display: grid;
  gap: 18px;
}

.coverage-panel {
  border-radius: var(--radius);
  overflow: hidden;
}

.coverage-map-card {
  border-radius: var(--radius);
  overflow: hidden;
  padding: 18px;
}

.coverage-map-head {
  align-items: end;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.coverage-map-head strong {
  font-size: 1.08rem;
  font-weight: 900;
}

.coverage-map-head span {
  color: var(--muted);
  font-size: 0.9rem;
}

.coverage-map-frame {
  aspect-ratio: 16 / 10;
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.coverage-map-frame iframe {
  border: 0;
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.coverage-row {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(16, 19, 24, 0.08);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  font: inherit;
  gap: 8px;
  grid-template-columns: 0.8fr 1fr;
  padding: 24px;
  text-align: left;
  transition: background 180ms ease;
  width: 100%;
}

.coverage-row:last-child {
  border-bottom: 0;
}

.coverage-row:hover {
  background: rgba(255, 255, 255, 0.52);
}

.coverage-row strong {
  font-size: 1.08rem;
  font-weight: 900;
}

.coverage-row span {
  color: var(--muted);
}

.contact-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  margin: 0 auto;
  max-width: 1180px;
}

.contact-inner,
.contact-social {
  border-radius: 36px;
  padding: clamp(34px, 6vw, 56px);
}

.contact-inner {
  text-align: center;
}

.contact-inner h2 {
  margin: 0 auto;
}

.contact-email-button {
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  justify-self: center;
  margin-top: 30px;
  min-height: 56px;
  padding-inline: 24px;
}

.contact-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 14px 0 0;
}

.contact-social {
  align-content: start;
  display: grid;
  gap: 16px;
  text-align: left;
}

.contact-social h3 {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.contact-social-copy {
  color: var(--muted);
  margin: 0;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}

.social-link {
  align-items: center;
  background: rgba(16, 19, 24, 0.9);
  border: 1px solid rgba(16, 19, 24, 0.92);
  border-radius: 14px;
  color: #fff;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.social-link:hover {
  background: linear-gradient(135deg, #0f1720, #1d3348);
  box-shadow: 0 16px 34px rgba(29, 45, 73, 0.18);
  transform: translateY(-2px);
}

.social-link-button {
  appearance: none;
  cursor: pointer;
  font: inherit;
}

.social-link-button:hover {
  background: linear-gradient(135deg, #0f1720, #1d3348);
  box-shadow: 0 16px 34px rgba(29, 45, 73, 0.18);
  transform: translateY(-2px);
}

.social-link svg {
  fill: currentColor;
  flex: 0 0 auto;
  height: 15px;
  width: 15px;
}

.social-link span {
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1;
}

.site-footer {
  align-items: center;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 30px clamp(20px, 5vw, 72px) 42px;
}

.site-footer img {
  background: #050607;
  border-radius: 999px;
  height: 46px;
  width: 132px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  font-weight: 900;
}

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .cursor-glow {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .intro,
  .coverage {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .service-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .training-feature {
    grid-template-columns: 1fr;
  }

  .intro-copy h2 {
    max-width: none;
  }

  .intro-media {
    aspect-ratio: auto;
    min-height: 360px;
  }

  .training-feature-media {
    min-height: 360px;
  }
}

@media (max-width: 720px) {
  .site-header {
    left: 14px;
    padding: 10px 10px 10px 12px;
    right: 14px;
    top: 12px;
  }

  .brand {
    height: 46px;
    width: 138px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line-light);
    border-radius: 24px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 4px;
    left: 14px;
    opacity: 0;
    padding: 12px;
    pointer-events: none;
    position: fixed;
    right: 14px;
    top: 78px;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    font-size: 1rem;
    padding: 14px 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 110px;
  }

  .hero-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: auto;
    padding: 18px;
  }

  .hero-card-media {
    align-self: center;
    left: auto;
    height: 240px;
    margin-top: 0;
    position: relative;
    top: auto;
    transform: none;
    width: 100%;
  }

  .hero-card-top {
    display: grid;
  }

  .metric-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    left: auto;
    position: relative;
    right: auto;
    bottom: auto;
  }

  .cards-grid,
  .service-showcase {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-social {
    text-align: center;
  }

  .social-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .training-feature {
    padding: 14px;
  }

  .training-feature-copy {
    padding: 10px 6px 0;
  }

  .intro-media {
    aspect-ratio: auto;
    min-height: 280px;
    padding: 10px;
  }

  .service-card {
    min-height: auto;
  }

  .card-index,
  .showcase-card span {
    margin-bottom: 46px;
  }

  .coverage-row {
    grid-template-columns: 1fr;
  }

  .coverage-map-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: 3.55rem;
  }

  .button {
    width: 100%;
  }

  .hero-card {
    min-height: auto;
  }

  .hero-card-media {
    height: 220px;
    width: 100%;
  }

  .training-feature-media {
    min-height: 280px;
  }

  .metric-strip {
    display: grid;
  }
}
