:root {
  --navy: #0b2438;
  --deep-navy: #071925;
  --blue: #0078a8;
  --blue-soft: #d8eef7;
  --steel: #60727d;
  --ink: #10202b;
  --muted: #60727d;
  --line: #d9e3e8;
  --light: #f4f8fa;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(11, 36, 56, 0.12);
  --soft-shadow: 0 10px 28px rgba(11, 36, 56, 0.06);
  --radius: 22px;
}

/* GLOBAL */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto Condensed", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  width: 172px;
  max-height: 74px;
  object-fit: contain;
  display: block;
}

.header-tagline {
  max-width: 290px;
  margin: 0 auto 0 2px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: 0.01em;
}

.header-tagline span { display: block; }

.nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-weight: 650;
}

.nav a {
  text-decoration: none;
  color: var(--navy);
  position: relative;
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--blue);
}

.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.nav a:not(.nav-cta):hover::after,
.nav a:not(.nav-cta):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav a:not(.nav-cta)[aria-current="page"] {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: white !important;
}

.menu-toggle {
  display: none;
}

/* TYPE */
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--blue);
}

.eyebrow.light {
  color: var(--blue-soft);
}

h1,
h2,
h3 {
  line-height: 1.12;
  margin: 0;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.35rem, 5vw, 5rem);
  letter-spacing: -0.055em;
}

.page-hero h1 {
  font-size: clamp(1.85rem, 3vw, 3.2rem);
  max-width: 980px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.25rem;
}

p {
  margin-top: 0;
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  color: var(--steel);
  max-width: 720px;
  margin: 24px 0 0;
}

/* BUTTONS */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 10px 24px rgba(0, 120, 168, 0.24);
}

.button.primary:hover {
  background: #006f9a;
}

.button.secondary {
  background: white;
  color: var(--navy);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.button.light {
  background: white;
  color: var(--navy);
  margin-top: 24px;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 44px;
  padding: clamp(28px, 4vw, 54px) clamp(20px, 5vw, 72px) clamp(56px, 7vw, 92px);
  background: linear-gradient(135deg, #f7fbfd 0%, #ffffff 46%, #eaf6fb 100%);
  overflow: hidden;
}

.hero-content {
  max-width: 760px;
}

.brand-hero-title {
  grid-column: 1 / -1;
  width: 100%;
  text-align: center;
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0.08em;
  color: var(--navy);
  font-weight: 800;
  margin: 0 0 26px;
  text-transform: uppercase;
  position: relative;
}

.brand-hero-title::after {
  content: "";
  display: block;
  width: min(420px, 70%);
  height: 4px;
  background: var(--blue);
  margin: 18px auto 0;
  border-radius: 999px;
}

.hero-main-title {
  font-size: clamp(2.25rem, 4.8vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: -0.055em;
  color: var(--navy);
  max-width: 780px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-visual {
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: var(--navy);
  padding: 8px;
  min-height: 390px;
  border: 6px solid var(--navy);
  overflow: hidden;
  transform: translateZ(0);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 370px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1);
  animation: hero-drift 14s ease-in-out infinite alternate;
}

.hero-visual:hover img {
  transform: scale(1.035);
}

/* PAGE HERO */
.page-hero {
  padding: clamp(58px, 7vw, 105px) clamp(20px, 5vw, 72px);
  background: linear-gradient(135deg, #f4f8fa 0%, #ffffff 60%, #eaf6fb 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero p {
  max-width: 800px;
  color: var(--muted);
  font-size: 1.16rem;
  margin-top: 20px;
}

/* COURSES PAGE TOP HERO IMAGE */
.course-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 48px;
  align-items: center;
}

.course-hero-text {
  max-width: 760px;
}

.course-hero-text p {
  max-width: 760px;
}

.course-hero-image {
  width: 100%;
  max-width: 520px;
  justify-self: end;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: var(--navy);
  padding: 8px;
  border: 6px solid var(--navy);
}

.course-hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* SECTIONS */
.section {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
}

.intro-section,
.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.section-heading {
  max-width: 780px;
}

.section-heading.centered {
  text-align: center;
  margin: 0 auto 36px;
}

.section-heading.centered p {
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
}

.section-copy p,
.section p {
  color: var(--muted);
}

.services-intro { grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(28px, 4vw, 64px); align-items: center; background: linear-gradient(135deg, #f4f8fa 0%, #ffffff 62%, #eaf6fb 100%); border-bottom: 1px solid var(--line); }
.services-intro .section-heading { max-width: 760px; }
.services-intro h1 { font-size: clamp(2.6rem, 5vw, 5rem); }
.services-intro-copy { max-width: 560px; justify-self: start; }
.services-intro-copy p { margin: 0; font-size: 1.16rem; line-height: 1.7; }
.merged-experience-intro { scroll-margin-top: 110px; background: var(--light); border-top: 1px solid var(--line); }

.section-action {
  text-align: center;
  margin-top: 34px;
}

/* SIMPLE HOME ACTION SECTION */
.simple-home-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
  background: #ffffff;
  padding-top: 34px;
  padding-bottom: 42px;
}

.simple-action-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 12px 20px 24px;
  border-radius: 18px;
  transition: transform 0.32s cubic-bezier(0.2, 0.75, 0.25, 1),
    background-color 0.32s ease, box-shadow 0.32s ease;
}

.simple-action-box:hover {
  background: var(--light);
  box-shadow: var(--soft-shadow);
}

.simple-action-box h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.35rem);
  max-width: 430px;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-align: left;
}

.simple-action-box .button {
  white-space: nowrap;
}

/* CARDS */
.cards-section {
  background: var(--light);
}

.cards {
  display: grid;
  gap: 22px;
}

.cards.four {
  grid-template-columns: repeat(4, 1fr);
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--soft-shadow);
  transition: transform 0.32s cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 0.32s ease, border-color 0.32s ease;
}

.card:hover {
  border-color: rgba(0, 120, 168, 0.38);
  box-shadow: 0 20px 46px rgba(11, 36, 56, 0.13);
}

.interactive-card {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg)) translateY(0);
}

.interactive-card:hover {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg)) translateY(-5px);
}

.card p {
  color: var(--muted);
  margin-bottom: 0;
}

/* SERVICE CARDS WITH INSIDE-RIGHT IMAGE */
.service-card-with-image {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(280px, 28vw, 360px);
  gap: 28px;
  align-items: start;
}

.service-card-content {
  min-width: 0;
}

.service-card-content h2 {
  font-size: 1.25rem;
  letter-spacing: 0;
}

.service-card-image {
  align-self: start;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.service-card-image {
  align-self: center;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
}

.service-card-image img {
  width: 150%;
  height: 230px;
  object-fit: contain;
  display: block;
  background: #ffffff;
}
/* LISTS */
.tool-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 10px;
}

.tool-list li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
}

.tool-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
}

.plain-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.plain-list li {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.plain-list li::before {
  display: none;
  content: none;
}

/* INDUSTRIES PREVIEW */
.industries-preview {
  background: white;
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 980px;
  margin: 0 auto 28px;
}

.industry-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--light);
  border: 1px solid var(--line);
  color: var(--navy);
  font-weight: 800;
}

.wide-copy {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  color: var(--muted);
  font-size: 1.06rem;
}

/* INDUSTRY SHOWCASE PAGE */
.industry-showcase {
  background: #ffffff;
}

.industry-block {
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.industry-block:nth-child(odd) {
  background: var(--light);
}

.industry-block:nth-child(even) {
  background: #ffffff;
}

.industry-block h2 {
  text-align: center;
  font-size: clamp(2rem, 3.6vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 clamp(30px, 5vw, 56px);
}

.industry-gallery {
  display: grid;
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  margin: 0 auto clamp(34px, 5vw, 58px);
  max-width: 1500px;
}

.industry-gallery.three-images {
  grid-template-columns: repeat(3, 1fr);
}

.industry-gallery.single-image {
  grid-template-columns: minmax(280px, 720px);
  justify-content: center;
}

.industry-gallery img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  box-shadow: var(--soft-shadow);
  cursor: zoom-in;
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1),
    box-shadow 0.45s ease, filter 0.45s ease;
}

.industry-gallery img:hover,
.industry-gallery img:focus-visible {
  transform: translateY(-7px) scale(1.018);
  box-shadow: 0 24px 54px rgba(11, 36, 56, 0.18);
  filter: saturate(1.06);
  outline: none;
}

.industry-block p {
  max-width: 1180px;
  margin: 0 auto;
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
  line-height: 1.55;
  color: var(--muted);
}

.mining-gallery img {
  aspect-ratio: 3 / 4;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* PANELS */
.navy-panel {
  background: var(--navy);
  color: white;
  position: relative;
  overflow: hidden;
}

.navy-panel::before {
  content: "";
  position: absolute;
  inset: 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: 34px 34px;
  opacity: 0.5;
}

.navy-panel > * {
  position: relative;
}

.navy-panel h2,
.navy-panel p {
  color: white;
}

.navy-panel p {
  opacity: 0.88;
}

.light-panel {
  background: white;
}

/* ABOUT PAGE */
.about-experience-section {
  background: var(--light);
}

/* COURSES PAGE TRAINING TOPICS */
.training-topics-section {
  background: #ffffff;
}

/* COURSES PAGE IMAGE INTRO */
.course-intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 48px;
  align-items: start;
  background: var(--light);
}

.course-intro-text {
  align-self: start;
}

.course-intro-text p {
  color: var(--muted);
}

.course-intro-text h2 {
  margin-bottom: 22px;
}

.course-intro-image {
  align-self: start;
  border-radius: 18px;
  box-shadow: var(--shadow);
  background: var(--navy);
  padding: 8px;
  border: 6px solid var(--navy);
}

.course-intro-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

/* CTA */
.cta {
  text-align: center;
  background: linear-gradient(135deg, #eaf6fb, #ffffff);
  padding-block: clamp(68px, 8vw, 108px);
}

.cta h2 {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2.15rem, 4vw, 3.75rem);
  line-height: 1.08;
}

.cta p {
  max-width: 760px;
  margin: 22px auto 34px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.45vw, 1.22rem);
  line-height: 1.65;
}

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  background: var(--light);
}

.contact-card,
.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--soft-shadow);
}

.contact-email {
  color: var(--blue);
  font-weight: 800;
}

.course-intro-copy-only { grid-template-columns: minmax(0, 900px); justify-content: center; text-align: center; }
.course-intro-copy-only .course-intro-text { max-width: 900px; }
.course-intro-copy-only .course-intro-text p { max-width: 780px; margin-left: auto; margin-right: auto; }
.engagement-section { background: white; }
.engagement-section .section-heading > p:last-child { max-width: 720px; margin: 18px auto 0; }
.kickoff-card { position: relative; padding-top: 64px; }
.kickoff-card > span { position: absolute; top: 22px; left: 28px; color: var(--blue); font-size: .78rem; font-weight: 800; letter-spacing: .12em; }

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  font-weight: 750;
  color: var(--navy);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px;
  font: inherit;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 2px solid rgba(0, 120, 168, 0.18);
  border-color: var(--blue);
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-notice {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-form button {
  justify-self: start;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 1.5em;
  margin: 0;
  font-weight: 700;
}

.form-status.success {
  color: #17643a;
}

.form-status.error {
  color: #a12a2a;
}

/* MOTION AND IMAGE VIEWER */
.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s ease var(--reveal-delay, 0ms),
    transform 0.72s cubic-bezier(0.2, 0.75, 0.25, 1) var(--reveal-delay, 0ms);
}

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

@keyframes hero-drift {
  from {
    object-position: 48% 50%;
    scale: 1;
  }
  to {
    object-position: 53% 50%;
    scale: 1.035;
  }
}

.image-lightbox {
  width: min(94vw, 1400px);
  max-width: none;
  height: min(92vh, 980px);
  max-height: none;
  margin: auto;
  padding: 52px 68px 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  background: #061722;
  color: white;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.image-lightbox::backdrop {
  background: rgba(3, 13, 20, 0.84);
  backdrop-filter: blur(8px);
}

.image-lightbox figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 14px;
  width: 100%;
  height: 100%;
  margin: 0;
}

.image-lightbox figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}

.image-lightbox figcaption {
  color: #bed3dc;
  text-align: center;
  font-size: 0.92rem;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
}

.lightbox-close {
  top: 12px;
  right: 14px;
  padding: 8px 13px;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
}

.lightbox-nav {
  top: 50%;
  width: 44px;
  height: 58px;
  border-radius: 12px;
  font-size: 2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.lightbox-previous {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  background: var(--blue);
  outline: 2px solid white;
  outline-offset: 2px;
}

/* FOOTER */
.site-footer {
  padding: 0 clamp(20px, 5vw, 72px);
  background: var(--deep-navy);
  color: white;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(150px, .6fr) minmax(260px, 1fr);
  gap: clamp(36px, 7vw, 110px);
  padding: clamp(54px, 7vw, 88px) 0;
}

.footer-brand img { width: 190px; padding: 10px; border-radius: 10px; background: white; }
.footer-brand p { max-width: 430px; margin: 22px 0 0; color: #a8c0ca; }
.footer-nav, .footer-contact { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.footer-label { margin: 0 0 8px; color: #7898a4; font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-nav a, .footer-contact a { color: white; }
.footer-cta { display: inline-flex; align-items: center; gap: 10px; margin-top: 16px; padding-bottom: 5px; border-bottom: 2px solid var(--blue); font-weight: 800; }
.footer-cta span { transition: transform .25s ease; }
.footer-cta:hover span { transform: translateX(4px); }

.footer-boundary { padding: 22px 0; border-top: 1px solid rgba(183, 214, 225, 0.18); color: #7898a4; font-size: .78rem; line-height: 1.6; }
.service-boundary { margin-top: 22px; padding: 16px; border-left: 3px solid var(--blue); background: var(--light); font-size: .9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.confirmation { display: grid !important; grid-template-columns: auto 1fr; gap: 12px; align-items: start; font-weight: 500 !important; }
.confirmation input { width: 18px !important; height: 18px; margin: 3px 0 0 !important; }
.contact-note { margin-top: 28px; padding: 18px; border-left: 3px solid var(--blue); background: var(--light); }
.contact-note p { margin: 6px 0 0; font-size: .9rem; }

/* ABOUT CAREER TIMELINE */
.career-section { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: clamp(48px, 8vw, 120px); background: var(--navy); color: white; position: relative; overflow: hidden; }
.career-section::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 42px 42px; pointer-events: none; }
.career-intro { position: sticky; top: 145px; align-self: start; z-index: 1; }
.career-intro h2, .career-intro p { color: white; }
.career-intro > p:last-child { color: #b7cbd3; margin-top: 24px; }
.career-timeline { list-style: none; margin: 0; padding: 0; position: relative; z-index: 1; }
.career-timeline::before { content: ""; position: absolute; top: 26px; bottom: 26px; left: 31px; width: 1px; background: linear-gradient(var(--blue-soft), rgba(216,238,247,.18)); }
.career-entry { display: grid; grid-template-columns: 64px 112px minmax(0, 1fr); gap: 22px; align-items: start; padding: 0 0 52px; }
.career-entry:last-child { padding-bottom: 0; }
.career-marker { display: grid; place-items: center; width: 64px; height: 64px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; background: var(--navy); color: white; font-weight: 800; box-shadow: 0 0 0 8px rgba(7,25,37,.85); }
.career-period { padding-top: 20px; color: #81d6f5; font-size: .82rem; font-weight: 800; letter-spacing: .08em; }
.career-content { padding: 25px 28px 28px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.065); backdrop-filter: blur(8px); transition: transform .3s ease, background .3s ease, border-color .3s ease; }
.career-content:hover { transform: translateX(6px); background: rgba(255,255,255,.1); border-color: rgba(129,214,245,.55); }
.career-content h3, .career-content p { color: white; }
.career-content h3 { font-size: clamp(1.45rem, 2vw, 2rem); margin-bottom: 16px; }
.career-content p:not(.eyebrow) { color: #bed0d7; }
.career-content p:last-child { margin-bottom: 0; }

.site-footer a {
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 64px;
  border-top: 1px solid rgba(183, 214, 225, 0.24);
  color: #7898a4;
  font-size: 0.78rem;
}

.footer-bottom a {
  color: #7898a4;
}

.site-footer a:hover {
  color: white;
}

.privacy-content {
  background: #ffffff;
}

.privacy-content > div {
  max-width: 880px;
  margin: 0 auto;
}

.privacy-content h2 {
  margin: 48px 0 12px;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.privacy-content a {
  color: var(--blue);
}

.privacy-updated {
  margin-top: 56px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem !important;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .service-card-with-image {
    grid-template-columns: 1fr;
  }

  .service-card-image {
    max-width: 520px;
  }

  .service-card-image img {
    height: auto;
    max-height: 420px;
  }
}

@media (max-width: 980px) {
  .hero,
  .intro-section,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards.four,
  .cards.three,
  .cards.two {
    grid-template-columns: 1fr 1fr;
  }

  .nav {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 78px;
    background: white;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    background: var(--navy);
    color: white;
    border: 0;
    border-radius: 999px;
    padding: 10px 14px;
    font-weight: 800;
    cursor: pointer;
  }

  .site-footer {
    padding-inline: 24px;
  }

}

@media (max-width: 620px) {
  .footer-bottom {
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
  }
}

@media (max-width: 900px) {
  .simple-home-actions {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .course-hero {
    grid-template-columns: 1fr;
  }

  .course-hero-image {
    justify-self: start;
    max-width: 100%;
  }

  .course-hero-image img {
    height: auto;
  }

  .course-intro-section {
    grid-template-columns: 1fr;
  }

  .course-intro-image img {
    height: auto;
  }

  .industry-gallery.three-images {
    grid-template-columns: 1fr;
  }

  .industry-gallery img {
    height: auto;
  }

  .industry-block h2 {
    font-size: clamp(1.9rem, 8vw, 3rem);
    letter-spacing: -0.03em;
  }
}

@media (max-width: 520px) {
  .header-tagline {
    display: none;
  }
}

@media (max-width: 720px) {
  .service-card-image {
    max-width: 100%;
  }

  .service-card-image img {
    width: 100%;
    height: auto;
    max-height: none;
  }
}

@media (max-width: 620px) {
  .cards.four,
  .cards.three,
  .cards.two {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-visual {
    min-height: 260px;
  }

  .hero-visual img {
    min-height: 250px;
  }

  .site-logo {
    width: 138px;
    max-height: 60px;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .brand-hero-title {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
    letter-spacing: 0.055em;
  }

  .hero-main-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .industry-list {
    justify-content: flex-start;
  }

  .wide-copy {
    text-align: left;
  }

  .simple-action-box {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .simple-action-box .button {
    justify-self: start;
  }
}
/* BORDER FOR INDUSTRY PAGE IMAGES */
.industry-gallery img {
  border: 3px solid #9fb3bd;
  padding: 4px;
  background: #ffffff;
}

@media (max-width: 620px) {
  .image-lightbox {
    width: 96vw;
    height: 88vh;
    padding: 52px 42px 28px;
  }

  .lightbox-nav {
    width: 34px;
    height: 50px;
  }
}

/* INTERACTIVE HOME EXPERIENCE */
body::selection { background: var(--blue); color: white; }
.scroll-progress { position: fixed; inset: 0 auto auto 0; z-index: 100; width: 0; height: 3px; background: var(--blue); }
.site-header.is-scrolled { box-shadow: 0 8px 30px rgba(7, 25, 37, 0.1); background: rgba(255,255,255,.97); }
.button span, .text-link span { transition: transform .25s ease; }
.button:hover span, .text-link:hover span { transform: translateX(4px); }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 800; text-decoration: none; }
.home-hero { min-height: calc(100vh - 111px); padding-top: clamp(54px, 7vw, 110px); position: relative; }
.home-hero::before { content:""; position:absolute; width:520px; height:520px; left:-280px; top:15%; border:1px solid rgba(0,120,168,.14); border-radius:50%; box-shadow:0 0 0 70px rgba(0,120,168,.025),0 0 0 140px rgba(0,120,168,.02); }
.hero-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:22px; margin:48px 0 0; padding-top:24px; border-top:1px solid var(--line); }
.hero-stats div { min-width:0; }
.hero-stats dt { color:var(--navy); font-size:clamp(1.45rem,2.6vw,2.25rem); font-weight:800; line-height:1; }
.hero-stats dd { margin:8px 0 0; color:var(--muted); font-size:.8rem; line-height:1.35; }
.interactive-hero { position:relative; isolation:isolate; transition:transform .18s ease-out; }
.interactive-hero::after { content:""; position:absolute; inset:0; z-index:2; background:radial-gradient(circle at var(--pointer-x,50%) var(--pointer-y,50%),transparent 0,rgba(7,25,37,.08) 48%,rgba(7,25,37,.3) 100%); pointer-events:none; }
.hero-blueprint { position:absolute; inset:8%; z-index:3; border:1px solid rgba(255,255,255,.28); background-image:linear-gradient(rgba(255,255,255,.11) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.11) 1px,transparent 1px); background-size:36px 36px; mix-blend-mode:screen; pointer-events:none; }
.hero-coordinate { position:absolute; z-index:4; top:26px; right:26px; color:white; font-size:.72rem; letter-spacing:.1em; text-shadow:0 1px 4px #000; }
.capability-ticker { overflow:hidden; padding:17px 0; color:white; background:var(--navy); }
.ticker-track { display:flex; align-items:center; gap:26px; width:max-content; animation:ticker 28s linear infinite; text-transform:uppercase; letter-spacing:.11em; font-size:.8rem; font-weight:800; }
.ticker-track i { color:#3fc5f5; font-style:normal; font-size:1.2rem; }
@keyframes ticker { to { transform:translateX(-50%); } }
.service-explorer { background:var(--light); }
.service-heading { display:grid; grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr); gap:clamp(40px,7vw,110px); align-items:end; width:100%; max-width:none; margin:0 0 42px; }
.service-heading > p { max-width:560px; margin:0; justify-self:end; }
.service-tabs { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--line); }
.service-tabs button { display:flex; gap:14px; padding:22px 12px; border:0; border-bottom:3px solid transparent; background:transparent; color:var(--muted); font:inherit; text-align:left; cursor:pointer; }
.service-tabs button span { color:var(--navy); font-weight:800; }
.service-tabs button[aria-selected="true"] { color:var(--blue); border-color:var(--blue); background:white; }
.service-panel { display:grid; grid-template-columns:.85fr 1.15fr; min-height:440px; background:white; box-shadow:var(--soft-shadow); outline:none; }
.service-panel-copy { display:flex; flex-direction:column; justify-content:center; padding:clamp(32px,5vw,72px); }
.service-panel-copy h3 { font-size:clamp(1.8rem,3vw,3rem); margin-bottom:20px; }
.service-panel-copy p:not(.eyebrow) { color:var(--muted); }
.service-panel-copy .text-link { margin-top:22px; }
.service-panel-image { overflow:hidden; }
.service-panel-image img { width:100%; height:100%; min-height:440px; object-fit:cover; display:block; transition:opacity .25s ease,transform .7s ease; }
.service-panel:hover .service-panel-image img { transform:scale(1.035); }
.service-panel.is-changing img { opacity:.15; }
.project-feature { display:grid; grid-template-columns:1.15fr .85fr; padding:0; background:var(--navy); }
.project-image { min-height:620px; overflow:hidden; }
.project-image img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 1s ease; }
.project-feature:hover .project-image img { transform:scale(1.025); }
.project-copy { display:flex; flex-direction:column; justify-content:center; padding:clamp(44px,7vw,100px); color:white; }
.project-copy h2,.project-copy p { color:white; }
.project-copy p { opacity:.82; }
.project-tags { display:flex; flex-wrap:wrap; gap:8px; margin:20px 0 6px; }
.project-tags span { padding:8px 12px; border:1px solid rgba(255,255,255,.24); border-radius:999px; font-size:.78rem; }
.project-copy .button { align-self:flex-start; }
.process-list { list-style:none; padding:0; margin:44px auto 0; max-width:1100px; border-top:1px solid var(--line); }
.process-list li { display:grid; grid-template-columns:90px 1fr; gap:20px; padding:28px 8px; border-bottom:1px solid var(--line); transition:padding .3s ease,background .3s ease; }
.process-list li:hover { padding-left:22px; background:var(--light); }
.process-list li > span { color:var(--blue); font-weight:800; }
.process-list h3 { font-size:1.5rem; }
.process-list p { margin:6px 0 0; }

@media (max-width: 980px) {
  .service-panel,.project-feature,.service-heading { grid-template-columns:1fr; }
  .service-tabs { grid-template-columns:1fr 1fr; }
  .project-image { min-height:420px; }
}
@media (max-width: 620px) {
  .home-hero { min-height:0; }
  .hero-stats { gap:12px; }
  .service-tabs { grid-template-columns:1fr; }
  .service-tabs button { padding:16px 10px; }
  .service-panel-image img { min-height:280px; }
  .project-image { min-height:320px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 980px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 980px) {
  .career-section { grid-template-columns: 1fr; }
  .career-intro { position: relative; top: auto; max-width: 760px; }
}

@media (max-width: 620px) {
  .career-entry { grid-template-columns: 50px minmax(0, 1fr); gap: 14px; padding-bottom: 38px; }
  .career-marker { width: 50px; height: 50px; }
  .career-timeline::before { left: 24px; }
  .career-period { grid-column: 2; grid-row: 1; padding-top: 4px; }
  .career-content { grid-column: 2; padding: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
