
:root {
  --bg: #06101f;
  --bg-soft: #0b1630;
  --surface: rgba(15, 24, 43, 0.86);
  --surface-2: rgba(17, 28, 51, 0.96);
  --text: #eef4ff;
  --muted: #9db2d3;
  --line: rgba(98, 126, 180, 0.28);
  --teal: #18f0d0;
  --orange: #ff8a1d;
  --shadow: 0 30px 80px rgba(0,0,0,.35);
  --radius: 24px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 15% 15%, rgba(24,240,208,.16), transparent 20%),
    radial-gradient(circle at 85% 12%, rgba(255,138,29,.16), transparent 24%),
    linear-gradient(180deg, #071122 0%, #09142a 35%, #07101f 100%);
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(6, 16, 31, 0.78); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 88px; }
.brand { display: inline-flex; align-items: center; gap: 1rem; min-width: 0; }
.brand-logo {
  width: 84px; height: 46px; object-fit: cover; object-position: center;
  border-radius: 14px; border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 16px 32px rgba(0,0,0,.25);
  background: rgba(255,255,255,.04);
}
.brand-text { display: inline-flex; flex-direction: column; gap: .18rem; font-weight: 800; line-height: 1; letter-spacing: .01em; }
.brand-text small { font-size: .78rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 1.15rem; }
.primary-nav a { color: #d7e2f6; font-weight: 600; font-size: .98rem; }
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--teal); }
.nav-cta { padding: .78rem 1.05rem; border-radius: 999px; background: linear-gradient(135deg, var(--teal), var(--orange)); color: #09101a !important; font-weight: 800; }
.menu-toggle {
  display: none; appearance: none; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.04);
  color: #fff; border-radius: 14px; width: 48px; height: 48px; font-size: 1.2rem;
}
.hero, .page-hero { padding: 4.25rem 0 2rem; }
.hero-grid, .split-grid, .contact-grid, .footer-grid, .team-grid { display: grid; gap: 1.8rem; }
.hero-grid { grid-template-columns: 1.1fr .95fr; align-items: center; }
.page-hero-inner { max-width: 860px; }
.kicker {
  display: inline-flex; align-items: center; gap: .45rem; padding: .5rem .9rem; border-radius: 999px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: var(--teal);
  font-size: .84rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em;
}
.hero h1, .page-hero h1, .section-title { margin: 1rem 0 .8rem; line-height: 1.02; letter-spacing: -.04em; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 5.3rem); max-width: 12ch; }
.page-hero h1 { font-size: clamp(2.35rem, 5vw, 4.15rem); max-width: 13ch; }
.section-title { font-size: clamp(2rem, 4vw, 3.1rem); max-width: 14ch; }
.hero p, .page-hero p, .section-intro, .card p, .timeline-item span, .footer small, .muted, .feature-list div, .form-note, .contact-list, .slide-content p {
  color: var(--muted); line-height: 1.75; font-size: 1.03rem;
}
.section { padding: 2rem 0 3rem; }
.cta-row, .badge-row, .hero-stats, .team-highlights, .event-meta { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 52px; padding: .95rem 1.25rem; border-radius: 999px; font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--teal), var(--orange)); color: #081018; box-shadow: 0 20px 40px rgba(255,138,29,.2); }
.btn-secondary { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); }
.hero-stats { margin-top: 1.5rem; }
.stat-card, .card, .form-shell, .notice-bar {
  background: linear-gradient(180deg, rgba(16,27,49,.95), rgba(11,20,37,.95));
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow);
}
.stat-card { padding: 1rem 1.1rem; flex: 1 1 180px; }
.stat-card strong { display: block; margin-bottom: .35rem; font-size: 1.05rem; }
.stat-card span { color: var(--muted); font-size: .94rem; line-height: 1.55; }
.slider { position: relative; min-height: 610px; border-radius: 30px; overflow: hidden; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow); }
.slide {
  position: absolute; inset: 0; opacity: 0; pointer-events: none; transition: opacity .45s ease;
}
.slide.active { opacity: 1; pointer-events: auto; }
.slide > img, .slide > video { width: 100%; height: 100%; object-fit: cover; }
.slide::after {
  content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4,8,15,.08) 0%, rgba(4,8,15,.26) 40%, rgba(4,8,15,.86) 100%);
}
.slide-content { position: absolute; left: 2rem; right: 2rem; bottom: 2rem; z-index: 2; }
.slide-content h2 { margin: 0 0 .55rem; font-size: clamp(1.65rem, 3vw, 2.45rem); }
.slide-controls {
  position: absolute; left: 1.4rem; right: 1.4rem; bottom: 1.2rem; display: flex; justify-content: space-between; align-items: center; z-index: 3;
}
.slide-dots { display: flex; gap: .6rem; }
.slide-dots button, .slide-arrow {
  appearance: none; border: none; background: rgba(255,255,255,.12); color: white; cursor: pointer;
}
.slide-dots button { width: 12px; height: 12px; border-radius: 999px; }
.slide-dots button.active { background: linear-gradient(135deg, var(--teal), var(--orange)); }
.slide-arrow { width: 44px; height: 44px; border-radius: 999px; font-size: 1rem; margin-left: .5rem; }
.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.card { padding: 1.45rem; }
.card h3, .card h2 { margin-top: .4rem; }
.icon-pill, .event-tag, .role, .badge, .timeline-date {
  display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; font-weight: 800;
}
.icon-pill { width: 54px; height: 54px; background: linear-gradient(135deg, rgba(24,240,208,.2), rgba(255,138,29,.2)); border: 1px solid rgba(255,255,255,.09); font-size: 1.35rem; }
.split-grid { grid-template-columns: 1fr 1fr; align-items: center; }
.media-frame {
  position: relative; overflow: hidden; border-radius: 30px; border: 1px solid rgba(255,255,255,.08); box-shadow: var(--shadow);
}
.media-frame img { width: 100%; min-height: 100%; object-fit: cover; }
.media-caption {
  position: absolute; left: 1rem; right: 1rem; bottom: 1rem; display: flex; justify-content: space-between; gap: 1rem;
  padding: .9rem 1rem; border-radius: 18px; background: rgba(6,12,24,.68); backdrop-filter: blur(10px); font-size: .95rem;
}
.feature-list { list-style: none; padding: 0; margin: 1.2rem 0 0; display: grid; gap: 1rem; }
.feature-list li { display: grid; grid-template-columns: 50px 1fr; gap: .95rem; align-items: start; }
.feature-list span {
  width: 42px; height: 42px; border-radius: 14px; background: linear-gradient(135deg, var(--teal), var(--orange)); color: #07101f; font-weight: 900; display: inline-flex; align-items: center; justify-content: center;
}
.badge { padding: .7rem .95rem; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); color: #dce7fb; }
.notice-bar { padding: 1rem 1.15rem; margin-bottom: 1.4rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem; }
.event-card img { aspect-ratio: 16/10; object-fit: cover; }
.event-meta { margin-bottom: .75rem; }
.event-tag, .role, .timeline-date { padding: .46rem .8rem; background: rgba(24,240,208,.11); color: var(--teal); border: 1px solid rgba(24,240,208,.22); }
.timeline { display: grid; gap: .8rem; }
.timeline-item { display: grid; grid-template-columns: auto 1fr; gap: .8rem; align-items: start; }
.timeline-date { min-width: 62px; justify-content: center; }
.team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.team-card { display: grid; grid-template-columns: 260px 1fr; gap: 1.3rem; align-items: center; }
.team-photo {
  border-radius: 28px; overflow: hidden; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-highlights span {
  padding: .68rem .88rem; border-radius: 999px; background: rgba(255,255,255,.05); color: #dce7fb; border: 1px solid rgba(255,255,255,.08);
}
.contact-grid { grid-template-columns: .95fr 1.15fr; align-items: start; }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.map-placeholder {
  min-height: 280px; display: grid; place-items: center; border-radius: 28px; background: linear-gradient(135deg, rgba(24,240,208,.08), rgba(255,138,29,.08)); border: 1px dashed rgba(255,255,255,.18); text-align: center; padding: 1rem;
}
.form-shell { padding: 1.4rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; margin: 1.2rem 0; }
.form-field { display: grid; gap: .55rem; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 700; font-size: .96rem; }
input, textarea, select {
  width: 100%; background: rgba(255,255,255,.04); color: var(--text); border: 1px solid rgba(255,255,255,.11); border-radius: 16px; padding: .95rem 1rem; font: inherit;
}
textarea { min-height: 180px; resize: vertical; }
input::placeholder, textarea::placeholder { color: #8ea5cb; }
.status-message { margin-top: 1rem; min-height: 1.4rem; font-weight: 600; }
.status-message.success { color: var(--teal); }
.status-message.error { color: #ff9588; }
.footer { padding: 2.4rem 0 1.4rem; border-top: 1px solid rgba(255,255,255,.08); background: rgba(4,9,18,.45); margin-top: 2rem; }
.footer-grid { grid-template-columns: 1.15fr .8fr .8fr; }
.footer-links { display: grid; gap: .72rem; margin-top: .8rem; }
.footer-links a:hover { color: var(--teal); }
.muted { color: var(--muted); }
@media (max-width: 980px) {
  .hero-grid, .split-grid, .contact-grid, .team-grid, .footer-grid, .card-grid { grid-template-columns: 1fr; }
  .hero h1, .page-hero h1, .section-title { max-width: unset; }
  .team-card { grid-template-columns: 1fr; }
  .slider { min-height: 540px; }
}
@media (max-width: 780px) {
  .nav-wrap { min-height: 78px; }
  .brand-logo { width: 72px; height: 40px; }
  .brand-text { font-size: .95rem; }
  .menu-toggle { display: inline-grid; place-items: center; }
  .primary-nav {
    position: absolute; top: calc(100% + .7rem); left: 1rem; right: 1rem; display: none; flex-direction: column; align-items: stretch;
    background: rgba(8,16,30,.96); border: 1px solid rgba(255,255,255,.08); border-radius: 22px; padding: 1rem; box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; }
  .nav-cta { text-align: center; }
  .hero, .page-hero { padding-top: 3rem; }
  .slider { min-height: 440px; }
  .slide-content { left: 1.2rem; right: 1.2rem; bottom: 3.8rem; }
  .slide-controls { left: 1rem; right: 1rem; }
  .form-grid { grid-template-columns: 1fr; }
  .notice-bar { align-items: stretch; }
}
@media (max-width: 560px) {
  .container { width: min(calc(100% - 1.15rem), var(--max)); }
  .brand-logo { width: 66px; height: 38px; }
  .brand-text small { display: none; }
  .hero h1 { font-size: clamp(2.3rem, 12vw, 3.8rem); }
  .page-hero h1, .section-title { font-size: clamp(2rem, 10vw, 3rem); }
  .media-caption { flex-direction: column; }
  .slide-arrow { width: 40px; height: 40px; }
}
