:root {
  --navy: #172a73;
  --ink: #111827;
  --muted: #5e6678;
  --line: #d8deea;
  --paper: #f7f8fb;
  --white: #ffffff;
  --orange: #f47a22;
  --teal: #0f8a9d;
  --soft-blue: #eef3ff;
  --shadow: 0 22px 60px rgba(23, 42, 115, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 14px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(240px, 54vw);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  row-gap: 6px;
  gap: clamp(14px, 3vw, 34px);
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: clamp(430px, 68vh, 690px);
  overflow: hidden;
  background: linear-gradient(105deg, rgba(255, 255, 255, 0.93) 0%, rgba(247, 248, 251, 0.9) 58%, rgba(238, 243, 255, 0.86) 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--navy), var(--teal), var(--orange));
}

.hero-inner {
  position: relative;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 92px);
  padding: clamp(54px, 8vw, 96px) 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(3.6rem, 11vw, 8.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: 40px;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 630px;
  margin-bottom: 30px;
  color: #293145;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--navy);
  box-shadow: 0 12px 30px rgba(23, 42, 115, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: #20358d;
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.section {
  padding: clamp(68px, 9vw, 118px) clamp(20px, 5vw, 72px);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.two-column,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

.about-section {
  background: var(--white);
}

.section-copy {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-copy p:last-child,
.contact-intro:last-child {
  margin-bottom: 0;
}


.timeline-section {
  background: var(--paper);
}

.timeline-inner-nodes-wrap {
  position: relative;
  display: grid;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.timeline-inner-nodes-wrap::before {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 138px;
  width: 2px;
  content: "";
  background: linear-gradient(180deg, var(--navy), var(--teal), var(--orange));
}

.video-timeline-node {
  position: relative;
  display: grid;
  grid-template-columns: 108px 64px minmax(0, 1fr);
  gap: 0 18px;
  align-items: start;
}

.video-node-year {
  padding-top: 14px;
  color: var(--navy);
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
  font-weight: 900;
  line-height: 1.1;
  text-align: right;
}

.video-node-year.text-orange {
  color: var(--orange);
}

.video-node-year.text-gradient {
  color: var(--teal);
  font-size: clamp(1rem, 2vw, 1.25rem);
}

.video-node-marker {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  margin: 18px auto 0;
  background: var(--white);
  border: 5px solid var(--teal);
  border-radius: 999px;
  box-shadow: 0 0 0 7px var(--paper);
}

.video-node-marker.orange-dot {
  border-color: var(--orange);
}

.video-node-marker.glow-dot {
  border-color: var(--navy);
  box-shadow:
    0 0 0 7px var(--paper),
    0 0 24px rgba(15, 138, 157, 0.35);
}

.video-node-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.video-node-card.highlighted-orange-border {
  border-color: rgba(244, 122, 34, 0.72);
}

.video-node-card.future-themed-card {
  border-color: rgba(15, 138, 157, 0.55);
}

.video-card-header {
  padding: 12px 18px;
  color: var(--white);
}

.video-card-header h4 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
}

.color-deep {
  background: var(--navy);
}

.color-primary {
  background: var(--teal);
}

.color-orange {
  background: var(--orange);
}

.color-dark {
  background: #111827;
}

.video-card-body {
  padding: 18px;
  color: var(--muted);
  font-size: 0.98rem;
}

.video-card-body p,
.inline-bullet-split:last-child {
  margin-bottom: 0;
}

.inline-bullet-split b {
  color: var(--navy);
}

.inline-bullet-divider {
  height: 1px;
  margin: 14px 0;
  background: var(--line);
}
.sites-section {
  background:
    linear-gradient(180deg, rgba(238, 243, 255, 0.9), rgba(255, 255, 255, 0.96));
}

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

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

.site-card {
  display: grid;
  gap: 8px;
  min-height: 150px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition:
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.site-card:hover,
.site-card:focus-visible {
  border-color: rgba(244, 122, 34, 0.65);
  box-shadow: 0 28px 70px rgba(23, 42, 115, 0.17);
  transform: translateY(-3px);
}

.site-name {
  color: var(--navy);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  font-weight: 900;
  line-height: 1.15;
}

.site-status {
  color: var(--teal);
  font-size: 0.98rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.site-card:hover .site-status,
.site-card:focus-visible .site-status {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-section {
  background: var(--navy);
  color: var(--white);
}

.contact-section h2,
.contact-section .section-kicker {
  color: var(--white);
}

.contact-section .section-kicker {
  color: #ffb071;
}

.contact-intro {
  max-width: 560px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd6e6;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font: inherit;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 134px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(15, 138, 157, 0.14);
}

.contact-form button {
  min-height: 50px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--orange);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.contact-form button:hover,
.contact-form button:focus-visible {
  background: #dc6613;
  transform: translateY(-2px);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 24px clamp(20px, 5vw, 72px);
  color: #4d566d;
  background: var(--white);
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .brand {
    width: min(220px, 72vw);
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
  }

  .hero {
    min-height: 540px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 243, 255, 0.9));
  }

  .hero-inner {
    width: min(100% - 40px, 680px);
    margin: 0 auto;
    padding: 84px 0;
  }

  .two-column,
  .contact-layout,
  .rnd-layout,
  .event-grid,
  .site-grid {
    grid-template-columns: 1fr;
  }


  .site-card {
    min-height: 128px;
  }
}

@media (max-width: 520px) {
  .site-header {
    position: static;
  }

  .nav-links {
    gap: 12px;
    font-size: 20px;
  }

  .hero {
    min-height: 480px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(3.05rem, 17vw, 4.3rem);
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 820px) {
  .timeline-inner-nodes-wrap::before {
    left: 91px;
  }

  .video-timeline-node {
    grid-template-columns: 74px 34px minmax(0, 1fr);
    gap: 0 10px;
  }

  .video-node-year {
    font-size: 1.05rem;
  }

  .video-node-marker {
    width: 16px;
    height: 16px;
    border-width: 4px;
  }
}

@media (max-width: 520px) {
  .timeline-inner-nodes-wrap {
    gap: 20px;
  }

  .timeline-inner-nodes-wrap::before {
    left: 8px;
  }

  .video-timeline-node {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 34px;
  }

  .video-node-year {
    padding-top: 0;
    text-align: left;
  }

  .video-node-marker {
    position: absolute;
    top: 4px;
    left: 0;
    margin: 0;
  }

  .video-card-header,
  .video-card-body {
    padding-right: 14px;
    padding-left: 14px;
  }
}
/* 3D journey motion */
.timeline-inner-nodes-wrap {
  perspective: 1300px;
  transform-style: preserve-3d;
}

.timeline-inner-nodes-wrap::before {
  transform-origin: top;
  animation: timeline-line-draw 1100ms ease both;
}

.journey-motion-ready .video-timeline-node {
  opacity: 0;
  transform: translate3d(0, 42px, -90px) rotateX(14deg) rotateY(-6deg);
  transform-style: preserve-3d;
  transition:
    opacity 680ms ease,
    transform 820ms cubic-bezier(0.19, 1, 0.22, 1);
  transition-delay: calc(var(--stagger, 0) * 70ms);
  will-change: opacity, transform;
}

.journey-motion-ready .video-timeline-node.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateX(0deg) rotateY(0deg);
}

.video-node-card {
  position: relative;
  transform: translateY(var(--card-lift, 0)) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg));
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.video-node-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(
    circle at var(--pointer-x, 50%) var(--pointer-y, 50%),
    rgba(255, 255, 255, 0.46),
    rgba(255, 255, 255, 0) 42%
  );
  opacity: 0;
  transition: opacity 180ms ease;
}

.video-node-card:hover,
.video-node-card:focus-within,
.video-node-card.is-tilting {
  --card-lift: -6px;
  border-color: rgba(244, 122, 34, 0.55);
  box-shadow: 0 30px 72px rgba(23, 42, 115, 0.2);
}

.video-node-card:hover::after,
.video-node-card:focus-within::after,
.video-node-card.is-tilting::after {
  opacity: 1;
}

.journey-motion-ready .video-timeline-node.is-visible .video-node-marker {
  animation: marker-pop 720ms cubic-bezier(0.19, 1, 0.22, 1) both;
  animation-delay: calc(var(--stagger, 0) * 70ms + 120ms);
}

@keyframes timeline-line-draw {
  from {
    transform: scaleY(0);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes marker-pop {
  0% {
    transform: scale(0.72) translateZ(0);
  }

  65% {
    transform: scale(1.2) translateZ(18px);
  }

  100% {
    transform: scale(1) translateZ(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .timeline-inner-nodes-wrap::before,
  .journey-motion-ready .video-timeline-node,
  .journey-motion-ready .video-timeline-node.is-visible .video-node-marker,
  .video-node-card,
  .video-node-card::after {
    animation: none;
    transition: none;
  }

  .journey-motion-ready .video-timeline-node,
  .journey-motion-ready .video-timeline-node.is-visible,
  .video-node-card {
    opacity: 1;
    transform: none;
  }
}
/* Journey visual polish */
.timeline-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 248, 251, 0.96), rgba(238, 243, 255, 0.72) 48%, rgba(255, 255, 255, 0.98)),
    repeating-linear-gradient(90deg, rgba(23, 42, 115, 0.045) 0 1px, transparent 1px 76px),
    repeating-linear-gradient(0deg, rgba(15, 138, 157, 0.038) 0 1px, transparent 1px 76px);
}

.timeline-section::before,
.timeline-section::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.timeline-section::before {
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--navy), var(--teal), var(--orange));
}

.timeline-section::after {
  top: 92px;
  right: clamp(18px, 6vw, 86px);
  width: min(330px, 42vw);
  height: 180px;
  border-top: 1px solid rgba(15, 138, 157, 0.18);
  border-right: 1px solid rgba(244, 122, 34, 0.2);
  transform: skewX(-16deg);
}

.timeline-section .section-inner {
  position: relative;
  z-index: 1;
}

.timeline-section .section-heading {
  position: relative;
  max-width: 860px;
  margin-bottom: clamp(38px, 6vw, 64px);
  padding-bottom: 20px;
}

.timeline-section .section-heading::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(280px, 68vw);
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--teal), transparent);
  border-radius: 999px;
}

.timeline-section .section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(216, 222, 234, 0.96);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(23, 42, 115, 0.08);
}

.timeline-section h2 {
  max-width: 780px;
  text-wrap: balance;
}

.timeline-inner-nodes-wrap {
  padding: 10px 0 2px;
}

.video-timeline-node {
  isolation: isolate;
}

.video-timeline-node::before {
  position: absolute;
  top: 27px;
  left: 132px;
  z-index: 0;
  width: 34px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, rgba(15, 138, 157, 0.34), rgba(244, 122, 34, 0.22));
}

.video-node-year {
  position: relative;
  color: #122463;
  text-shadow: 0 10px 24px rgba(23, 42, 115, 0.13);
}

.video-node-year::after {
  display: block;
  width: 44px;
  height: 2px;
  margin: 8px 0 0 auto;
  content: "";
  background: currentColor;
  border-radius: 999px;
  opacity: 0.26;
}

.video-node-marker {
  outline: 1px solid rgba(255, 255, 255, 0.95);
  outline-offset: -7px;
}

.video-node-marker::before,
.video-node-marker::after {
  position: absolute;
  inset: 50%;
  width: 32px;
  height: 32px;
  content: "";
  border: 1px solid rgba(15, 138, 157, 0.18);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.video-node-marker::after {
  width: 48px;
  height: 48px;
  border-color: rgba(244, 122, 34, 0.13);
}

.video-node-card {
  border-color: rgba(216, 222, 234, 0.95);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 255, 0.8)),
    var(--white);
}

.video-node-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: linear-gradient(180deg, var(--navy), var(--teal));
}

.video-timeline-node:nth-child(even) .video-node-card::before {
  background: linear-gradient(180deg, var(--teal), var(--orange));
}

.video-node-card.highlighted-orange-border::before {
  background: var(--orange);
}

.video-node-card.future-themed-card::before {
  background: linear-gradient(180deg, var(--navy), var(--orange));
}

.video-card-header {
  position: relative;
  overflow: hidden;
}

.video-card-header::after {
  position: absolute;
  top: 0;
  right: -46px;
  width: 110px;
  height: 100%;
  content: "";
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-24deg);
}

.video-card-header h4 {
  position: relative;
  z-index: 1;
}

.video-card-body {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0));
}

.inline-bullet-split {
  padding-left: 12px;
  border-left: 3px solid rgba(15, 138, 157, 0.24);
}

.inline-bullet-divider {
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

@media (max-width: 820px) {
  .timeline-section::after {
    top: 68px;
    right: 20px;
    width: 180px;
    height: 110px;
  }

  .video-timeline-node::before {
    left: 86px;
    width: 22px;
  }
}

@media (max-width: 520px) {
  .timeline-section::after {
    display: none;
  }

  .timeline-section .section-heading {
    padding-bottom: 16px;
  }

  .timeline-section .section-heading::after {
    width: 150px;
  }

  .video-timeline-node::before {
    top: 12px;
    left: 8px;
    width: 24px;
  }

  .video-node-year::after {
    margin-left: 0;
  }

  .video-card-header h4 {
    font-size: 0.86rem;
  }
}
/* Journey final upgrade */
.timeline-section {
  padding-top: clamp(78px, 10vw, 132px);
  padding-bottom: clamp(78px, 10vw, 132px);
}

.timeline-section .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: end;
  max-width: 1080px;
}

.timeline-section .section-kicker,
.timeline-section h2,
.journey-intro {
  grid-column: 1;
}

.journey-intro {
  max-width: 650px;
  margin: 16px 0 0;
  color: #475268;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.journey-stats {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.journey-stats span {
  display: grid;
  align-content: center;
  min-height: 92px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(216, 222, 234, 0.96);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(23, 42, 115, 0.09);
}

.journey-stats strong {
  color: var(--navy);
  font-size: clamp(1.05rem, 2.4vw, 1.48rem);
  font-weight: 900;
  line-height: 1.05;
}

.journey-stats small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.timeline-inner-nodes-wrap {
  max-width: 1060px;
  gap: 26px;
}

.timeline-inner-nodes-wrap::before {
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--navy), var(--teal) 46%, var(--orange));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.88),
    0 0 28px rgba(15, 138, 157, 0.22);
}

.video-timeline-node {
  grid-template-columns: 118px 70px minmax(0, 1fr);
  gap: 0 20px;
}

.video-timeline-node::before {
  top: 32px;
  left: 145px;
}

.video-node-year {
  padding-top: 12px;
  color: #12205c;
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
}

.video-node-year.text-gradient {
  color: var(--navy);
}

.video-node-year.text-gradient::before {
  display: block;
  width: max-content;
  max-width: 100%;
  padding: 6px 8px;
  color: var(--white);
  background: linear-gradient(90deg, var(--navy), var(--teal));
  border-radius: 8px;
  content: "Next";
  font-size: 0.68rem;
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 8px auto;
}

.video-node-marker {
  width: 22px;
  height: 22px;
  margin-top: 21px;
  background: radial-gradient(circle, var(--white) 0 36%, var(--teal) 37% 100%);
  border: 0;
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.94),
    0 0 0 10px rgba(15, 138, 157, 0.12),
    0 12px 24px rgba(23, 42, 115, 0.16);
}

.video-node-marker.orange-dot {
  background: radial-gradient(circle, var(--white) 0 36%, var(--orange) 37% 100%);
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.94),
    0 0 0 10px rgba(244, 122, 34, 0.16),
    0 12px 24px rgba(23, 42, 115, 0.16);
}

.video-node-marker.glow-dot {
  background: radial-gradient(circle, var(--white) 0 34%, var(--navy) 35% 100%);
  box-shadow:
    0 0 0 7px rgba(255, 255, 255, 0.94),
    0 0 0 11px rgba(23, 42, 115, 0.13),
    0 0 30px rgba(244, 122, 34, 0.32);
}

.video-node-card {
  min-height: 132px;
  border: 1px solid rgba(198, 207, 226, 0.96);
  box-shadow:
    0 18px 42px rgba(23, 42, 115, 0.11),
    0 2px 0 rgba(255, 255, 255, 0.82) inset;
}

.video-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 48px;
  padding: 13px 20px 13px 22px;
}

.video-card-header::before {
  flex: 0 0 auto;
  order: 2;
  min-width: 68px;
  padding: 5px 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  content: "Milestone";
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.video-card-header h4 {
  min-width: 0;
  font-size: clamp(0.9rem, 1.8vw, 1.02rem);
}

.video-card-body {
  padding: 20px 22px 22px;
  color: #4f5b71;
}

.video-card-body p,
.inline-bullet-split {
  font-size: clamp(0.96rem, 1.7vw, 1.04rem);
}

.video-timeline-node:hover .video-node-year,
.video-timeline-node:focus-within .video-node-year {
  color: var(--orange);
}

.video-timeline-node:hover .video-node-marker,
.video-timeline-node:focus-within .video-node-marker {
  transform: scale(1.08) translateZ(18px);
}

.video-node-card:hover,
.video-node-card:focus-within,
.video-node-card.is-tilting {
  --card-lift: -8px;
  border-color: rgba(244, 122, 34, 0.72);
  box-shadow:
    0 34px 82px rgba(23, 42, 115, 0.2),
    0 0 0 1px rgba(244, 122, 34, 0.18) inset;
}

.video-node-card.highlighted-orange-border {
  box-shadow:
    0 22px 58px rgba(244, 122, 34, 0.18),
    0 0 0 1px rgba(244, 122, 34, 0.22) inset;
}

.video-node-card.future-themed-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(232, 244, 247, 0.84)),
    var(--white);
}

@media (max-width: 820px) {
  .timeline-section .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .timeline-section .section-kicker,
  .timeline-section h2,
  .journey-intro,
  .journey-stats {
    grid-column: 1;
  }

  .journey-stats {
    grid-row: auto;
  }

  .video-timeline-node {
    grid-template-columns: 78px 40px minmax(0, 1fr);
    gap: 0 12px;
  }

  .timeline-inner-nodes-wrap::before {
    left: 96px;
  }

  .video-timeline-node::before {
    left: 89px;
  }
}

@media (max-width: 520px) {
  .timeline-section {
    padding-top: 74px;
    padding-bottom: 80px;
  }

  .timeline-section .section-kicker {
    width: fit-content;
  }

  .journey-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .journey-stats span {
    min-height: 84px;
    padding: 13px 12px;
  }

  .journey-stats strong {
    font-size: 1rem;
  }

  .journey-stats small {
    font-size: 0.68rem;
  }

  .timeline-inner-nodes-wrap::before {
    left: 9px;
  }

  .video-timeline-node {
    padding-left: 38px;
  }

  .video-timeline-node::before {
    left: 9px;
  }

  .video-node-marker {
    top: 2px;
    width: 19px;
    height: 19px;
  }

  .video-node-year {
    font-size: 1.12rem;
  }

  .video-node-year.text-gradient::before {
    margin-left: 0;
    margin-right: 0;
  }

  .video-card-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
  }

  .video-card-header::before {
    order: -1;
    min-width: 0;
  }

  .video-card-body {
    padding: 16px;
  }
}
/* Journey mobile repair */
@media (max-width: 520px) {
  .timeline-inner-nodes-wrap {
    gap: 22px;
  }

  .timeline-inner-nodes-wrap::before {
    left: 9px;
  }

  .video-timeline-node {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 38px;
  }

  .video-timeline-node::before {
    top: 12px;
    left: 9px;
    width: 24px;
  }

  .video-node-marker {
    position: absolute;
    top: 2px;
    left: 0;
    margin: 0;
  }

  .video-node-card {
    width: 100%;
    min-width: 0;
  }
}
/* Capabilities section */
.capabilities-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white), rgba(238, 243, 255, 0.92)),
    repeating-linear-gradient(90deg, rgba(23, 42, 115, 0.04) 0 1px, transparent 1px 82px);
}

.capabilities-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--teal), var(--navy));
}

.capabilities-section .section-inner {
  position: relative;
  z-index: 1;
}

.capabilities-heading {
  max-width: 880px;
}

.capabilities-intro {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.capability-card {
  position: relative;
  overflow: hidden;
  min-height: 210px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 255, 0.82)),
    var(--white);
  border: 1px solid rgba(216, 222, 234, 0.96);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(23, 42, 115, 0.11);
  height: 100%;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.capability-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--navy), var(--teal));
}

.capability-card::after {
  position: absolute;
  right: -44px;
  bottom: -54px;
  width: 150px;
  height: 150px;
  content: "";
  background: rgba(15, 138, 157, 0.08);
  border-radius: 999px;
}

.capability-card:hover,
.capability-card:focus-within {
  border-color: rgba(244, 122, 34, 0.58);
  box-shadow: 0 30px 70px rgba(23, 42, 115, 0.17);
  transform: translateY(-5px);
}

.capability-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
}

.capability-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.18rem, 2.2vw, 1.55rem);
  line-height: 1.1;
}

.capability-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
}



@media (max-width: 920px) {
  .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: 0;
    padding: 22px;
  }
}

/* File content update sections */
.rnd-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(23, 42, 115, 0.96), rgba(15, 138, 157, 0.92)),
    var(--navy);
  color: var(--white);
}

.rnd-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--white), var(--teal));
  opacity: 0.84;
}

.rnd-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.rnd-section h2,
.rnd-section .section-kicker {
  color: var(--white);
}

.rnd-section .section-kicker {
  color: #ffbf8b;
}

.rnd-copy {
  max-width: 760px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
}

.rnd-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.18);
}

.rnd-panel p {
  margin: 0;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 800;
  line-height: 1.35;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.feature-list span {
  display: grid;
  align-items: center;
  min-height: 58px;
  padding: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 900;
}

.news-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white), rgba(238, 243, 255, 0.78)),
    repeating-linear-gradient(90deg, rgba(15, 138, 157, 0.035) 0 1px, transparent 1px 76px);
}

.news-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--orange), var(--navy));
}

.news-section .section-inner {
  position: relative;
  z-index: 1;
}

.event-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.event-card,
.solution-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  border: 1px solid rgba(216, 222, 234, 0.96);
  border-radius: 8px;
  box-shadow: 0 20px 52px rgba(23, 42, 115, 0.11);
}

.event-card::before,
.solution-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--navy), var(--teal));
}

.event-date {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 6px 10px;
  color: var(--white);
  background: var(--orange);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.event-card h3,
.solution-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.12;
}

.event-card p,
.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

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

.solution-card {
  min-height: 190px;
}

@media (max-width: 920px) {
  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .rnd-layout,
  .event-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .feature-list,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .event-card,
  .solution-card {
    min-height: 0;
  }
}
/* Light polish pass */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow: hidden;
}

.site-header {
  box-shadow: 0 10px 30px rgba(23, 42, 115, 0.06);
}

.brand,
.nav-links a,
.button,
.site-card,
.contact-form button {
  outline-offset: 4px;
}

.brand:focus-visible,
.nav-links a:focus-visible,
.button:focus-visible,
.site-card:focus-visible,
.contact-form button:focus-visible {
  outline: 3px solid rgba(244, 122, 34, 0.32);
}

.hero {
  min-height: clamp(520px, 72vh, 720px);
}

.hero-inner {
  width: min(860px, calc(100% - 40px));
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin-top: 30px;
}

.hero-proof span {
  display: grid;
  gap: 5px;
  min-height: 86px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(216, 222, 234, 0.9);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(23, 42, 115, 0.08);
}

.hero-proof strong {
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.1;
}

.hero-proof small {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.28;
}

.section-heading h2,
.about-section h2,
.contact-section h2 {
  text-wrap: balance;
}

.capability-card,
.event-card,
.solution-card,
.site-card,
.rnd-panel,
.contact-form {
  box-shadow:
    0 18px 44px rgba(23, 42, 115, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.78) inset;
}

.capability-card,
.event-card,
.solution-card {
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.event-card:hover,
.event-card:focus-within,
.solution-card:hover,
.solution-card:focus-within {
  border-color: rgba(244, 122, 34, 0.58);
  box-shadow: 0 28px 68px rgba(23, 42, 115, 0.16);
  transform: translateY(-4px);
}

.capability-number,
.event-date {
  box-shadow: 0 10px 22px rgba(23, 42, 115, 0.14);
}

.contact-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(23, 42, 115, 0.98), rgba(18, 62, 111, 0.96) 58%, rgba(15, 138, 157, 0.88)),
    var(--navy);
}

.contact-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--orange), var(--teal), var(--white));
  opacity: 0.88;
}

.contact-layout {
  position: relative;
  z-index: 1;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 560px;
  margin-top: 22px;
}

.contact-points span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 900;
}

@media (max-width: 620px) {
  .site-header {
    gap: 12px;
  }

  .nav-links {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding: 70px 0;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    min-height: 0;
  }
}
/* Header redirect links update */
.nav-links {
  gap: clamp(10px, 2vw, 24px);
}

.site-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.site-card {
  scroll-margin-top: 110px;
}

@media (max-width: 1120px) {
  .site-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .site-grid {
    grid-template-columns: 1fr;
  }
}
/* Hero logo replacement */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-title-logo {
  display: block;
  width: min(920px, 100%);
  height: auto;
  margin: 0 0 24px;
  transform: translateX(-40px);
}

@media (max-width: 620px) {
  .hero-title-logo {
    width: min(100%, 560px);
    margin-bottom: 22px;
  }
}