* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --bg: #020617;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(15, 23, 42, 0.75);
  --border: rgba(255, 255, 255, 0.1);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
  --radius: 28px;
}

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

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

.page-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.blur {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
}

.blur-1 {
  top: -120px;
  left: -8%;
  width: 320px;
  height: 320px;
  background: rgba(6, 182, 212, 0.18);
}

.blur-2 {
  top: 100px;
  right: -8%;
  width: 380px;
  height: 380px;
  background: rgba(139, 92, 246, 0.18);
}

.blur-3 {
  bottom: 40px;
  left: 20%;
  width: 280px;
  height: 280px;
  background: rgba(56, 189, 248, 0.1);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.76);
  backdrop-filter: blur(20px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, #22d3ee, #0ea5e9, #8b5cf6);
  box-shadow: 0 16px 30px rgba(34, 211, 238, 0.18);
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.1;
}

.brand-subtitle {
  font-size: 0.78rem;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--white);
}

.section-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  padding: 72px 0 48px;
}

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: rgba(34, 211, 238, 0.1);
  padding: 8px 14px;
  font-size: 0.94rem;
  color: #c7f9ff;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #67e8f9;
}

.hero h1, h1 {
  font-size: clamp(2.4rem, 4.7vw, 4.35rem);
  line-height: 1.02;
  margin: 18px 0;
  letter-spacing: -0.03em;
}

.hero-text {
  max-width: 760px;
  font-size: 1.08rem;
  color: #cbd5e1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 18px;
}

.hero-entry {
  margin: 18px 0 14px;
  padding: 12px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.94rem;
  color: #cbd5e1;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 18px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.18s ease, background 0.18s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(90deg, #22d3ee, #0ea5e9, #8b5cf6);
  color: var(--white);
  box-shadow: 0 18px 35px rgba(34, 211, 238, 0.16);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
}

.btn-light {
  background: var(--white);
  color: #0f172a;
  border: none;
  cursor: pointer;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 12px;
}

.mini-card,
.card,
.feature-shell,
.article-card,
.article-full {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mini-card { padding: 20px; }

.mini-card h3,
.card h3,
.article-card h3,
.article-full h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  color: #c7f9ff;
}

.mini-card p,
.card p,
.article-card p,
.article-full p {
  margin: 0;
  color: #cbd5e1;
  font-size: 0.95rem;
}

.feature-shell {
  padding: 16px;
  align-self: start;
}

.feature-card {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.9);
}

.feature-top {
  padding: 28px 24px;
  background: linear-gradient(135deg, #06b6d4, #0284c7, #7c3aed);
}

.feature-tag,
.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-tag {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.95);
}

.feature-top h2 {
  font-size: 2rem;
  margin: 16px 0 8px;
  line-height: 1.1;
}

.feature-top p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.feature-subtext {
  margin-top: 12px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.feature-bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 20px;
}

.feature-box {
  border: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.55);
  border-radius: 20px;
  padding: 16px;
}

.label,
.section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #7dd3fc;
}

.section-tag.small { font-size: 0.72rem; }

.feature-box p {
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.section { padding: 30px 0 24px; }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.section-head h2,
.card h2,
.contact-copy h2,
.article-full h2 {
  margin: 10px 0 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.section-head p {
  max-width: 640px;
  color: var(--muted);
  margin: 0;
}

.cards-grid,
.article-grid {
  display: grid;
  gap: 18px;
}

.cards-grid.three {
  grid-template-columns: repeat(3, 1fr);
}

.article-grid.two {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1200px) {
  .article-grid.two {
    grid-template-columns: repeat(4, 1fr);
  }
}
.card,
.article-card,
.article-full {
  padding: 24px;
}

.card-link,
.article-card {
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.card-link:hover,
.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 211, 238, 0.3);
  background: rgba(255, 255, 255, 0.07);
}

.card-topline,
.article-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.badge {
  border: 1px solid rgba(34, 211, 238, 0.2);
  background: rgba(34, 211, 238, 0.1);
  color: #c7f9ff;
}

.status {
  font-size: 0.8rem;
  color: var(--muted);
}

.card h3,
.article-card h3 {
  margin-top: 20px;
  font-size: 1.6rem;
  color: var(--white);
}

.card p,
.article-card p,
.article-full p {
  margin-top: 12px;
  line-height: 1.75;
  color: #cbd5e1;
}

.card-cta,
.article-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  margin-top: 20px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}

.carousel-wrap { position: relative; }

.carousel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.carousel-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: #e2e8f0;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.18s ease, opacity 0.18s ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.carousel-btn:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar { display: none; }

.carousel-track > * {
  scroll-snap-align: start;
}

.leadership-card {
  min-width: 88%;
  background: linear-gradient(to bottom, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
}

.about-single {
  width: 100%;
}

.article-full {
  background: var(--panel-strong);
}

.article-full .meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 8px;
}

.article-full .article-body {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.article-full ul {
  margin: 0;
  padding-left: 20px;
  color: #cbd5e1;
}

.article-full li {
  margin: 8px 0;
}

.article-page {
  max-width: 900px;
  margin: 20px auto 40px;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  border-radius: 32px;
  border: 1px solid rgba(34, 211, 238, 0.18);
  background: linear-gradient(90deg, rgba(6, 182, 212, 0.1), rgba(14, 165, 233, 0.1), rgba(139, 92, 246, 0.1));
  padding: 32px;
}

.contact-copy p {
  max-width: 720px;
  color: #e2e8f0;
}

.contact-form {
  border-radius: 24px;
  border: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.58);
  padding: 24px;
  display: grid;
  gap: 16px;
}

.contact-form label { display: block; }

.contact-form span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #e2e8f0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  padding: 14px 16px;
  color: var(--white);
  font: inherit;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #64748b;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(34, 211, 238, 0.38);
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.8);
  margin-top: 32px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 18px;
}

@media (min-width: 1024px) {
  .leadership-card { min-width: calc(50% - 10px); }
}

@media (max-width: 1080px) {
  .section-grid,
  .contact-wrap,
  .cards-grid.three,
  .pillars,
  .article-grid.two {
    grid-template-columns: 1fr;
  }

  .feature-bottom {
    grid-template-columns: 1fr;
  }

  .section-head {
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 760px) {
  .desktop-nav { display: none; }

  .container {
    width: min(100% - 24px, 1180px);
  }

  .section-grid {
    padding-top: 48px;
  }

  .hero h1,
  h1,
  .feature-top h2,
  .card h2,
  .contact-copy h2,
  .section-head h2,
  .article-full h2 {
    font-size: 1.9rem;
  }

  .feature-top,
  .card,
  .mini-card,
  .feature-shell,
  .contact-wrap,
  .contact-form,
  .article-card,
  .article-full {
    border-radius: 22px;
  }

  .carousel-top {
    align-items: start;
    flex-direction: column;
  }

  .footer-wrap {
    flex-direction: column;
    align-items: start;
  }
}