@import url('https://fonts.googleapis.com/css2?family=Afacad:wght@400;500;600;700&family=Barlow+Condensed:wght@500;600;700;800&family=Space+Mono:wght@400;700&display=swap');

:root {
  --brand-950: #07142d;
  --brand-900: #0c2450;
  --brand-800: #12366f;
  --brand-700: #17488c;
  --brand-600: #1eaad5;
  --brand-500: #28aed1;
  --brand-400: #08bde8;
  --brand-300: #6dcce9;
  --surface: #f4fbff;
  --surface-alt: #e8f5fd;
  --surface-card: #ffffff;
  --ink: #0d2347;
  --body: #27476d;
  --muted: #5f7da0;
  --line: rgba(23, 72, 140, 0.14);
  --line-strong: rgba(23, 72, 140, 0.24);
  --shadow-soft: 0 18px 48px rgba(12, 36, 80, 0.08);
  --shadow-card: 0 24px 60px rgba(12, 36, 80, 0.12);
  --white: #ffffff;
  --font-display: "Tanker", "Barlow Condensed", sans-serif;
  --font-body: "Tw Cen MT", "Afacad", sans-serif;
  --font-mono: "Space Mono", monospace;
  --nav-h: 76px;

  /* Compatibility aliases for older inline styles */
  --ocean-deep: var(--brand-950);
  --ocean-mid: var(--brand-800);
  --ocean-bright: var(--brand-700);
  --teal: var(--brand-500);
  --seafoam: var(--brand-300);
  --sand: var(--surface-alt);
  --sand-light: var(--surface);
  --coral: var(--brand-600);
  --gold: var(--brand-400);
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--body);
  background:
    radial-gradient(circle at top right, rgba(109, 204, 233, 0.26), transparent 32%),
    radial-gradient(circle at left 15%, rgba(40, 174, 209, 0.12), transparent 28%),
    linear-gradient(180deg, #fbfeff 0%, var(--surface) 52%, #edf8fe 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--brand-700);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

a:hover {
  color: var(--brand-500);
}

h1,
h2 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.96;
}

h3,
h4 {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(3.8rem, 10vw, 8.25rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2.45rem, 5vw, 4.2rem);
  font-weight: 800;
}

h3 {
  font-size: clamp(1.32rem, 2.4vw, 1.8rem);
  font-weight: 700;
}

h4 {
  font-size: 1.12rem;
  font-weight: 700;
}

p {
  max-width: 72ch;
}

p + p {
  margin-top: 1em;
}

strong {
  color: var(--ink);
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 92px 0;
  position: relative;
}

.section--sand {
  background:
    linear-gradient(180deg, rgba(109, 204, 233, 0.08), rgba(109, 204, 233, 0.03)),
    var(--surface-alt);
}

.section--white {
  background: rgba(255, 255, 255, 0.8);
}

.section--dark {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(8, 189, 232, 0.3), transparent 26%),
    radial-gradient(circle at left center, rgba(40, 174, 209, 0.14), transparent 30%),
    linear-gradient(140deg, var(--brand-950) 0%, var(--brand-900) 48%, var(--brand-800) 100%);
  overflow: hidden;
}

.section--dark::before,
.hero::before,
.page-header::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.05) 1px, transparent 1px);
  background-size: 88px 88px;
  opacity: 0.12;
  pointer-events: none;
}

.section--dark::after,
.hero::after,
.page-header::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -12%;
  width: min(48vw, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 204, 233, 0.28), rgba(109, 204, 233, 0));
  pointer-events: none;
}

.section--dark > .container,
.hero__inner,
.page-header .container {
  position: relative;
  z-index: 1;
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark p,
.section--dark li {
  color: rgba(255, 255, 255, 0.84);
}

.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(7, 20, 45, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(109, 204, 233, 0.16);
}

.nav__inner {
  max-width: 1160px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav__brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}

.nav__brand-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav__brand-text {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1;
}

.nav__links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.nav__links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--white);
  border-color: rgba(109, 204, 233, 0.26);
  background: rgba(109, 204, 233, 0.12);
}

.nav__toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero,
.page-header {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(8, 189, 232, 0.2), transparent 24%),
    radial-gradient(circle at 84% 14%, rgba(109, 204, 233, 0.24), transparent 24%),
    linear-gradient(145deg, var(--brand-950) 0%, var(--brand-900) 44%, var(--brand-800) 100%);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 48px) 0 92px;
}

.hero__inner {
  width: 100%;
  max-width: 760px;
}

.hero__sub,
.section__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(109, 204, 233, 0.22);
  background: rgba(109, 204, 233, 0.08);
  color: var(--brand-300);
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero h1,
.page-header h1 {
  color: var(--white);
}

.hero__tagline {
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--brand-300);
  line-height: 1.15;
  max-width: 24ch;
}

.hero__desc,
.page-header__sub {
  margin-top: 24px;
  font-size: 1.16rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 58ch;
}

.page-header {
  padding: 156px 0 76px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: linear-gradient(135deg, var(--brand-400), var(--brand-500));
  color: var(--brand-950);
  box-shadow: 0 16px 32px rgba(8, 189, 232, 0.22);
}

.btn--primary:hover {
  color: var(--brand-950);
  box-shadow: 0 22px 38px rgba(8, 189, 232, 0.28);
}

.btn--outline,
.btn--dark-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--white);
}

.btn--outline:hover,
.btn--dark-outline:hover {
  color: var(--brand-300);
  border-color: rgba(109, 204, 233, 0.42);
}

.stats-bar,
.cards,
.eval-grid,
.specs-grid,
.domain-cards,
.team-grid {
  display: grid;
  gap: 24px;
}

.stats-bar {
  margin-top: 52px;
  grid-template-columns: repeat(auto-fit, minmax(188px, 1fr));
}

.stat-card,
.card,
.spec,
.eval-card,
.team-card,
.pub,
.info-box,
.rq-box {
  border-radius: 24px;
}

.stat-card {
  padding: 26px 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(109, 204, 233, 0.14);
  backdrop-filter: blur(8px);
}

.stat-card__num {
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 3.2rem);
  line-height: 1;
  color: var(--brand-300);
  letter-spacing: 0.04em;
}

.stat-card__label {
  margin-top: 10px;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.74);
}

.section__heading {
  margin-bottom: 16px;
}

.section__intro {
  margin-bottom: 42px;
  font-size: 1.08rem;
  color: var(--muted);
}

.section--dark .section__intro,
.section--dark .section__label {
  color: var(--brand-300);
}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  padding: 30px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(23, 72, 140, 0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.card::before,
.spec::before,
.team-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, var(--brand-700), var(--brand-500), var(--brand-300));
}

.card:hover,
.spec:hover,
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
  border-color: rgba(23, 72, 140, 0.14);
}

.card__icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(23, 72, 140, 0.12), rgba(40, 174, 209, 0.12));
}

.card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand-700);
}

.card h3 {
  margin: 20px 0 10px;
}

.card p {
  color: var(--muted);
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.card__link::after {
  content: "\2192";
}

.big-stat {
  padding: 38px 28px;
  text-align: center;
}

.big-stat__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--brand-600);
}

.big-stat__text {
  max-width: 26ch;
  margin: 14px auto 0;
  color: var(--muted);
}

.tpack-wrap {
  max-width: 440px;
  margin: 0 auto;
  padding: 22px;
  border-radius: 28px;
  background: rgba(232, 245, 253, 0.96);
  border: 1px solid rgba(109, 204, 233, 0.28);
  box-shadow: 0 24px 60px rgba(3, 12, 30, 0.28);
}

.tpack-wrap img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

.domain-cards {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.domain-card {
  padding: 28px;
  border: 1px solid rgba(109, 204, 233, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.domain-card--tk {
  background: rgba(23, 72, 140, 0.16);
  border-color: rgba(109, 204, 233, 0.24);
}

.domain-card--tk h4 {
  color: #6dcce9;
}

.domain-card--pk {
  background: rgba(40, 174, 209, 0.14);
  border-color: rgba(109, 204, 233, 0.24);
}

.domain-card--pk h4 {
  color: #28aed1;
}

.domain-card--ck {
  background: rgba(8, 189, 232, 0.14);
  border-color: rgba(109, 204, 233, 0.24);
}

.domain-card--ck h4 {
  color: #08bde8;
}

.domain-card p {
  color: rgba(255, 255, 255, 0.82);
}

.bar-chart {
  margin: 28px 0;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.bar-label {
  min-width: 190px;
  text-align: right;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--ink);
}

.bar-track {
  flex: 1;
  height: 40px;
  border-radius: 999px;
  background: rgba(23, 72, 140, 0.08);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 16px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 700;
}

.eval-grid,
.specs-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.eval-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(109, 204, 233, 0.14);
}

.eval-card__crit {
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-300);
}

.eval-card__score {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--white);
}

.eval-card__of,
.eval-card__note {
  color: rgba(255, 255, 255, 0.72);
}

.eval-card__note {
  margin-top: 10px;
}

.quote {
  margin: 34px 0;
  padding: 22px 0 22px 24px;
  border-left: 4px solid var(--brand-500);
}

.quote p {
  font-family: var(--font-body);
  font-size: 1.22rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--ink);
}

.quote .quote-src {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.96rem;
}

.section--dark .quote {
  border-left-color: var(--brand-300);
}

.section--dark .quote p {
  color: var(--white);
}

.section--dark .quote .quote-src {
  color: rgba(255, 255, 255, 0.68);
}

.spec {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 72, 140, 0.08);
  box-shadow: var(--shadow-soft);
}

.spec__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--brand-700), var(--brand-500));
}

.spec__icon svg {
  width: 22px;
  height: 22px;
}

.spec__label {
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.spec__val {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 0.94rem;
  color: var(--ink);
}

.team-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.team-card {
  position: relative;
  overflow: hidden;
  padding: 28px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 72, 140, 0.08);
  box-shadow: var(--shadow-soft);
}

.team-card__avatar {
  width: 104px;
  height: 104px;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 34px rgba(12, 36, 80, 0.2);
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__name {
  font-size: 1.16rem;
  color: var(--ink);
}

.team-card__role,
.team-card__inst {
  color: var(--muted);
}

.team-card__domain {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-600);
}

.prog {
  display: flex;
  gap: 28px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}

.prog:last-child,
.pub:last-child {
  border-bottom: none;
}

.prog__time {
  min-width: 132px;
  padding-top: 2px;
  font-family: var(--font-mono);
  font-size: 0.94rem;
  color: var(--brand-600);
}

.prog__body p {
  color: var(--muted);
}

.pub {
  position: relative;
  padding: 28px 0 28px 26px;
  border-bottom: 1px solid var(--line);
}

.pub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 38px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-500);
  box-shadow: 0 0 0 8px rgba(40, 174, 209, 0.12);
}

.pub__tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(23, 72, 140, 0.1);
  background: rgba(23, 72, 140, 0.05);
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-700);
}

.pub__tag--journal,
.pub__tag--media,
.pub__tag--chapter {
  color: var(--brand-600);
}

.pub h4 {
  margin-top: 12px;
}

.pub__meta {
  margin-top: 8px;
  color: var(--muted);
}

.event-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 38px 40px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(109, 204, 233, 0.28), transparent 26%),
    linear-gradient(135deg, var(--brand-800), var(--brand-600));
  color: var(--white);
  box-shadow: var(--shadow-card);
}

.event-banner h3 {
  color: var(--white);
}

.event-banner p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
}

.event-banner .btn--primary {
  background: var(--white);
  color: var(--brand-900);
  box-shadow: none;
}

.logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  padding: 32px 0;
}

.logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.logo-item svg {
  height: 42px;
  width: auto;
}

.logo-item__image {
  max-height: 72px;
  width: auto;
  object-fit: contain;
}

.logo-item__label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

.footer {
  background:
    radial-gradient(circle at top right, rgba(109, 204, 233, 0.14), transparent 26%),
    linear-gradient(180deg, var(--brand-950), #050f22 100%);
  color: rgba(255, 255, 255, 0.72);
  padding: 58px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer h4 {
  margin-bottom: 16px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer a {
  color: rgba(255, 255, 255, 0.72);
}

.footer a:hover {
  color: var(--brand-300);
}

.footer__links {
  list-style: none;
}

.footer__links li + li {
  margin-top: 10px;
}

.footer__bottom {
  margin-top: 36px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
}

.footer__bottom .grant {
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.5);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.rq-box,
.info-box {
  padding: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.9));
  border: 1px solid rgba(23, 72, 140, 0.1);
  box-shadow: var(--shadow-soft);
}

.rq-box {
  border-left: 4px solid var(--brand-600);
}

.rq-box + .rq-box {
  margin-top: 18px;
}

.rq-box--teal {
  border-left-color: var(--brand-400);
}

.rq-box p,
.info-box p {
  color: var(--body);
}

.info-box h4 {
  margin-bottom: 10px;
}

.pipeline-wrap {
  max-width: 100%;
  overflow-x: auto;
  margin: 40px 0;
  padding-bottom: 8px;
}

.pipeline-wrap svg {
  width: 100%;
  min-width: 640px;
  height: auto;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 1rem;
}

#news-preview,
#news-full {
  display: grid;
  gap: 18px;
}

.news-preview,
.news-article {
  border-radius: 28px;
  border: 1px solid rgba(23, 72, 140, 0.08);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.news-preview {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 24px;
}

.news-preview__icon,
.news-article__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(23, 72, 140, 0.12), rgba(40, 174, 209, 0.16));
  color: var(--brand-700);
}

.news-preview__date,
.news-article__date,
.news-article__author {
  color: var(--muted);
}

.news-preview__title,
.news-article__title {
  margin-top: 6px;
}

.news-preview__excerpt {
  margin-top: 10px;
  color: var(--muted);
}

.news-article {
  padding: 32px;
}

.news-article--latest {
  border-color: rgba(40, 174, 209, 0.18);
  box-shadow: var(--shadow-card);
}

.news-article__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.news-article__author {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(23, 72, 140, 0.05);
}

.news-article__body {
  margin-top: 18px;
}

.news-article__body h4 {
  margin: 24px 0 10px;
}

.news-article__body p {
  color: var(--body);
}

.news-article__body a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.article-figure {
  margin: 28px 0;
  text-align: center;
}

.article-img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.article-figure__caption {
  margin-top: 8px;
  font-size: 0.875rem;
  color: var(--ink-muted, var(--body));
  font-style: italic;
}

.news-article-page {
  max-width: 860px;
  margin: 0 auto;
}

.news-article-page .news-article__title {
  margin-top: 0;
}

.news-backlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: var(--body);
  border-color: rgba(0, 0, 0, 0.18);
  transition: color 0.2s, border-color 0.2s;
}

.news-backlink:hover {
  color: var(--ocean-bright);
  border-color: rgba(8, 189, 232, 0.5);
}

#news-article-page {
  display: block;
}

#article-page-title {
  font-size: clamp(2.3rem, 4.2vw, 3.8rem);
}

.section__intro--center {
  margin-left: auto;
  margin-right: auto;
}

.section__intro--narrow {
  max-width: 660px;
  margin-bottom: 36px;
}

.section--tight-top {
  padding-top: 44px;
}

.stack-narrow {
  max-width: 740px;
}

.cards--compact {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.stats-note {
  color: var(--muted);
}

.specs-grid--single {
  grid-template-columns: 1fr;
}

.team-grid--wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .team-grid--wide {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .team-grid--wide {
    grid-template-columns: 1fr;
  }
}

.logo-row--card {
  margin-top: 44px;
  padding: 36px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(11, 37, 69, 0.06);
}

.logo-divider {
  width: 1px;
  height: 52px;
  background: rgba(11, 37, 69, 0.1);
}

.news-state {
  color: var(--muted);
}

.news-cta {
  display: inline-flex;
  border-width: 2px;
  border-color: var(--ocean-bright);
  color: var(--ocean-bright);
}

.event-hero {
  padding: 140px 0 80px;
}

.event-hero__title {
  color: var(--white);
}

.event-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin: 28px 0 24px;
}

.event-hero__meta .contact-link span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 600;
}

.event-hero__desc {
  max-width: 620px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.64);
}

.qr-block {
  text-align: center;
}

.qr-block__label {
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--muted);
}

.qr-block__image {
  width: 140px;
  height: 140px;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(11, 37, 69, 0.1);
}

.tl-wrap {
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
  padding: 18px 0 14px;
  background: var(--sand-light);
  border-bottom: 1px solid rgba(11, 37, 69, 0.06);
  transition: box-shadow 0.3s ease;
}

.tl-wrap.scrolled {
  box-shadow: 0 4px 20px rgba(11, 37, 69, 0.06);
}

.tl-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.tl-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}

.tl-range {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
}

.tl-date {
  padding: 3px 12px;
  border-radius: 20px;
  background: rgba(40, 174, 209, 0.1);
  color: var(--ocean-deep);
  font-size: 13px;
  font-weight: 600;
}

.tl {
  position: relative;
  height: 36px;
  user-select: none;
}

.tl__track,
.tl__fill {
  position: absolute;
  top: 14px;
  height: 3px;
  border-radius: 2px;
}

.tl__track {
  left: 0;
  right: 0;
  background: rgba(11, 37, 69, 0.07);
}

.tl__fill {
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--teal), var(--seafoam));
  transition: width 0.2s ease-out;
}

.tl__cursor {
  position: absolute;
  top: 7px;
  left: calc(100% - 8px);
  z-index: 5;
  width: 16px;
  height: 16px;
  border: 3px solid var(--sand-light);
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 2px 8px rgba(40, 174, 209, 0.35);
  transition: left 0.2s ease-out;
}

.tl__tick {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
}

.tl__tick-line {
  width: 1px;
  height: 8px;
  background: rgba(11, 37, 69, 0.1);
}

.tl__tick-lbl {
  margin-top: 14px;
  white-space: nowrap;
  font-family: var(--font-mono);
  font-size: 9px;
  color: var(--muted);
}

.tl__tick--maj .tl__tick-line {
  height: 12px;
  background: rgba(11, 37, 69, 0.18);
}

.tl__tick--maj .tl__tick-lbl {
  font-size: 10px;
  font-weight: 500;
  color: var(--ocean-deep);
}

.tl__dot {
  position: absolute;
  top: 11px;
  z-index: 3;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translateX(-50%);
  cursor: default;
}

.tl__dot[data-t="d"] {
  background: var(--coral);
}

.tl__dot[data-t="m"] {
  background: var(--gold);
}

.tl__dot[data-t="w"] {
  background: var(--ocean-bright);
}

.tl__tip {
  position: absolute;
  bottom: 20px;
  left: 50%;
  display: none;
  padding: 5px 10px;
  border-radius: 5px;
  transform: translateX(-50%);
  background: var(--ocean-deep);
  color: #fff;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(11, 37, 69, 0.2);
  pointer-events: none;
  z-index: 10;
}

.tl__tip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--ocean-deep);
}

.tl__dot:hover .tl__tip {
  display: block;
}

.tl-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.tl-legend span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.tl-legend i {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

.fade-up-d1 { animation-delay: 0.15s; }
.fade-up-d2 { animation-delay: 0.3s; }
.fade-up-d3 { animation-delay: 0.45s; }
.fade-up-d4 { animation-delay: 0.6s; }

@media (max-width: 920px) {
  .nav__toggle {
    display: block;
  }

  .nav__links {
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 18px 28px 24px;
    background: rgba(7, 20, 45, 0.96);
    border-bottom: 1px solid rgba(109, 204, 233, 0.14);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__links a {
    justify-content: center;
  }

  .two-col,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .prog {
    flex-direction: column;
    gap: 10px;
  }

  .prog__time,
  .bar-label {
    min-width: 0;
    text-align: left;
  }

  .news-preview {
    grid-template-columns: 1fr;
  }

  .tl__tick-lbl {
    display: none;
  }

  .tl__tick--maj .tl__tick-lbl {
    display: block;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 17px;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 76px 0;
  }

  .hero {
    min-height: auto;
    padding: calc(var(--nav-h) + 36px) 0 72px;
  }

  .page-header {
    padding: 132px 0 60px;
  }

  .btn-group,
  .event-banner,
  .stats-bar {
    gap: 14px;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
  }

  .event-banner,
  .news-article {
    padding: 24px;
  }

  .bar-row {
    flex-direction: column;
    align-items: stretch;
  }

  .team-card,
  .card,
  .spec {
    padding-left: 22px;
    padding-right: 22px;
  }
}

@media (max-width: 520px) {
  .stats-bar {
    grid-template-columns: 1fr;
  }

  .nav__brand-text {
    font-size: 1.5rem;
  }

  .hero__sub,
  .section__label {
    font-size: 0.78rem;
  }
}
