﻿:root {
  --color-bg: #f3f4f6;
  --color-surface: #ffffff;
  --color-ink: #111827;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-header: #e5e7eb;
  --color-dark: #111111;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-card: 0 20px 40px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--color-bg);
  color: var(--color-ink);
  line-height: 1.6;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.15;
  font-weight: 700;
  color: var(--color-ink);
}

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

.container_box {
  min-height: 100vh;
}

.container_content {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--color-header);
  border-bottom: 1px solid var(--color-border);
}

.main_menu {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand_title {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-ink);
}

.main_menu_right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main_menu_link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color 0.2s ease;
}

.main_menu_link.active,
.main_menu_link:hover {
  color: var(--color-ink);
}

.nav_cta {
  background: var(--color-dark);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9rem;
  border: 1px solid transparent;
}

.nav_cta:hover {
  filter: brightness(1.05);
}

.hamburger_button {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: #ffffff;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.hamburger_line {
  width: 18px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 999px;
}

section.splash_header {
  position: relative;
  min-height: 60vh;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url('/images/Blue_B_splash_c.jpg');
  background-size: cover;
  background-position: center;
}

section.splash_header #content {
  position: absolute;
  inset: 0;
  z-index: 1;
  user-select: none;
  cursor: pointer;
}

.gradient_overlay {
  position: absolute;
  inset: 0;
  background-image: url('/images/Blue_B_splash_c.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  mix-blend-mode: plus-lighter;
  pointer-events: none;
  z-index: 3;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.55));
  z-index: 2;
  pointer-events: none;
}

div.dg.ac {
  display: none;
}

.splash_logo {
  position: relative;
  z-index: 5;
  max-width: 360px;
  margin: 0 auto;
}

.hero_content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}

.hero_title {
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-top: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.hero_lede {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 760px;
  margin: 0 0 22px;
}

.hero_buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 18px;
}

.hero_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero_btn_primary {
  background: #ffffff;
  color: #111111;
}

.hero_btn_secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.6);
}

.hero_btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.hero_note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  margin: 0;
}

.section {
  padding: 96px 0;
  background: var(--color-surface);
}

.section-muted {
  background: #f8f9fb;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  margin-bottom: 40px;
}

.section-title {
  font-size: clamp(2rem, 3vw, 2.75rem);
  margin-bottom: 12px;
}

.section-lede {
  font-size: 1.05rem;
  max-width: 720px;
}

.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-inner.text-center .section-lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-inner.text-center .link-row {
  justify-content: center;
  text-align: center;
}

.section-inner.text-center .section-link {
  justify-content: center;
}

.feature-grid,
.team-grid,
.partners-grid,
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.feature-card,
.team-card,
.partner-card,
.news-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.news-card a {
  display: block;
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-ink);
}

.feature-title {
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.feature-text {
  font-size: 0.95rem;
  margin: 0;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--color-dark);
  color: #ffffff;
}

.btn-outline {
  background: #ffffff;
  color: var(--color-dark);
  border-color: var(--color-border);
}

.btn-invert {
  background: #ffffff;
  color: var(--color-dark);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.split-grid.reverse .split-media {
  order: -1;
}

.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-ink);
  margin-top: 16px;
}

.link-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.link-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.cta-band {
  background: #0f0f10;
  color: #ffffff;
}

.cta-band h2,
.cta-band p {
  color: #ffffff;
}

.cta-band .section-lede,
.cta-band .cta-note {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 12px;
}

.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 40px 0 48px;
}

.footer_inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer_nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--color-muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.footer_social {
  display: flex;
  gap: 12px;
}

.footer_social img {
  width: 20px;
  height: 20px;
}

.footer_copy {
  color: var(--color-muted);
  font-size: 0.9rem;
}

.page_title {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  text-align: center;
  margin: 16px 0 12px;
}

.page_subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 1.05rem;
}

.team-card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 16px;
}

.team-card-name {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-card-title {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.team-card-bio {
  font-size: 0.95rem;
  color: var(--color-muted);
}

.partner-card img {
  max-width: 160px;
  margin-bottom: 12px;
}

.news-card-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--color-ink);
}

.news-card-meta {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 10px;
}

.article_content {
  display: block;
}

.article_sidebar {
  display: none;
}

.article_main {
  width: 100%;
}

.news_article {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  max-width: 840px;
  margin: 0 auto;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.breadcrumb_item {
  color: var(--color-muted);
}

.breadcrumb_separator {
  color: var(--color-border);
}

.news_article_release_tag {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 8px;
}

.news_article_meta {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.news_article_big_title {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.news_article_content h2 {
  font-size: 1.4rem;
  margin: 24px 0 12px;
}

.news_article_content p {
  margin-bottom: 16px;
}

.news_article_content a {
  color: var(--color-ink);
  text-decoration: underline;
}

.news_quote {
  margin: 24px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--color-dark);
  background: #f8f9fb;
}

.news_quote p {
  color: var(--color-ink);
}

.media_contact_box {
  margin-top: 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  background: #f8f9fb;
}

.media_contact_title {
  font-size: 1rem;
  margin-bottom: 8px;
}

.media_contact_email {
  color: var(--color-ink);
  font-weight: 600;
}

.back_to_news {
  margin-top: 24px;
  text-align: center;
}

.back_to_news a {
  font-weight: 600;
  color: var(--color-ink);
}

@media (max-width: 960px) {
  .main_menu_right {
    position: absolute;
    top: 100%;
    right: 16px;
    margin-top: 12px;
    background: var(--color-header);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    display: none;
  }

  .main_menu_right.open {
    display: flex;
  }

  .hamburger_button {
    display: inline-flex;
  }

  .feature-grid,
  .team-grid,
  .partners-grid,
  .news-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  section.splash_header {
    height: 50vh;
  }
}
