:root {
  color-scheme: light;
  --bg: #0b0f14;
  --bg-ink: #f8fafc;
  --surface: #111c2e;
  --surface-alt: #0e1a2d;
  --ink-soft: #cbd5f5;
  --border: rgba(148, 163, 184, 0.18);
  --accent: #3b82f6;
  --accent-dark: #1d4ed8;
  --teal: #38bdf8;
  --teal-dark: #0ea5e9;
  --gold: #60a5fa;
  --shadow: 0 28px 60px rgba(2, 6, 23, 0.45);
  --box-alt: linear-gradient(160deg, rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.35));
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", sans-serif;
  background: radial-gradient(circle at top right, #1d4ed8 0%, #0b0f14 55%, #020617 100%);
  color: var(--bg-ink);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
}

.bg-layer.aurora {
  background: radial-gradient(circle at 10% 20%, rgba(59, 130, 246, 0.45), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(14, 165, 233, 0.35), transparent 50%),
    radial-gradient(circle at 30% 80%, rgba(96, 165, 250, 0.3), transparent 55%);
  filter: blur(10px);
}

.bg-layer.grid {
  background-image:
    linear-gradient(120deg, rgba(148, 163, 184, 0.18) 1px, transparent 1px),
    linear-gradient(0deg, rgba(148, 163, 184, 0.18) 1px, transparent 1px);
  background-size: 90px 90px;
  opacity: 0.22;
}

.bg-layer.glow {
  background: radial-gradient(circle at 60% 60%, rgba(59, 130, 246, 0.2), transparent 45%);
  z-index: -4;
}

.nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 64px;
  background: rgba(11, 15, 20, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0;
  gap: 20px;
  flex-wrap: nowrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.brand-word {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--bg-ink);
  letter-spacing: 0.6px;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  white-space: nowrap;
}

.brand-x {
  color: var(--accent);
  font-weight: 700;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.35);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: url("public/logo.png") center / cover no-repeat;
  box-shadow: 0 14px 30px rgba(2, 6, 23, 0.6);
  position: relative;
  overflow: hidden;
}

.mark-ai {
  position: relative;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #f8fafc;
  text-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

.brand-mark::before {
  content: none;
}

.brand-mark::after {
  content: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
}



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

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 16px 35px rgba(229, 107, 93, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(229, 107, 93, 0.32);
}

.btn-secondary {
  border-color: var(--border);
  background: rgba(15, 23, 42, 0.7);
  color: var(--bg-ink);
}

.hero {
  padding: 95px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: start;
}

.hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin: 18px 0;
  word-break: break-word;
}

.hero-copy p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.3);
  color: #e0f2fe;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.hero-illustration {
  margin-top: 28px;
  max-width: 520px;
}

.hero-illustration svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-panel {
  background: linear-gradient(160deg, #18243d 0%, #101b30 55%, #0b1220 100%);
  padding: 28px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 0 6px rgba(59, 130, 246, 0.2);
}

.panel-tag {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.2);
  color: #e0f2fe;
  font-weight: 600;
  font-size: 0.75rem;
}

.panel-body {
  display: grid;
  gap: 18px;
}

.panel-card {
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.28), rgba(15, 23, 42, 0.92));
  border-radius: var(--radius-md);
  padding: 40px 140px 16px 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  position: relative;
}

.panel-card::before {
  content: none;
}

.panel-card > * {
  position: relative;
  z-index: 1;
}

.panel-card > p {
  margin-top: 8px;
}


.panel-card strong {
  display: block;
  font-size: 1.05rem;
}

.panel-card span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.panel-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink-soft);
}

.panel-footer span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.7);
}

.section {
  padding: 90px 0;
}

.section-title {
  display: grid;
  gap: 12px;
  margin-bottom: 38px;
}

.section-title h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: #7dd3fc;
  font-weight: 600;
}

.eyebrow-highlight {
  color: #f8fafc;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: linear-gradient(160deg, rgba(30, 58, 138, 0.18), rgba(15, 23, 42, 0.95));
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(16, 20, 23, 0.08);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.card span {
  font-size: 0.85rem;
  color: var(--teal-dark);
  font-weight: 600;
}

.pillar-grid {
  display: grid;
  gap: 24px;
}

.pillar-card {
  background: linear-gradient(160deg, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.8));
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(2, 6, 23, 0.45);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 16px;
  align-items: center;
}

.pillar-card:nth-child(even) {
  background: var(--box-alt);
}

.pillar-card h3 {
  font-size: 1.2rem;
}

.pillar-card p {
  color: var(--ink-soft);
}

.pillar-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  color: var(--ink-soft);
}

.pillar-card li::marker {
  color: var(--accent);
}

.pillar-content {
  display: grid;
  gap: 16px;
}

.pillar-art {
  justify-self: end;
  align-self: end;
  opacity: 0.85;
  margin-top: auto;
}

.pillar-art svg {
  width: 110px;
  height: auto;
  display: block;
}

.section-dark {
  background: linear-gradient(130deg, #0b1120, #0f172a);
  color: #fff;
}

.section-dark .eyebrow,
.section-dark h2,
.section-dark strong {
  color: #fff;
}

.section-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.section-title.light .eyebrow {
  color: #7dd3fc;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.leadership-card {
  background: linear-gradient(160deg, rgba(59, 130, 246, 0.28), rgba(15, 23, 42, 0.92));
  padding: 20px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.leadership-card:nth-child(even) {
  background: var(--box-alt);
}

.leadership-card h3 {
  margin-bottom: 10px;
  font-size: 0.98rem;
  white-space: nowrap;
}

.leadership-card p {
  color: rgba(255, 255, 255, 0.72);
}

.cta-section {
  padding-bottom: 110px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  background: linear-gradient(160deg, rgba(2, 6, 23, 0.96), rgba(2, 6, 23, 0.85));
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.cta-card h2 {
  font-family: "Fraunces", serif;
  margin-bottom: 12px;
}

.contact-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(59, 130, 246, 0.5);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.75), rgba(29, 78, 216, 0.95));
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-link svg {
  width: 18px;
  height: 18px;
}

.contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(59, 130, 246, 0.35);
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-soft);
}


.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: reveal-up 0.8s ease forwards;
}

.delay-1 {
  animation-delay: 0.1s;
}

.delay-2 {
  animation-delay: 0.2s;
}

.delay-3 {
  animation-delay: 0.3s;
}

.delay-4 {
  animation-delay: 0.4s;
}

@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 90px;
  }


  .pillar-card {
    grid-template-columns: 1fr;
  }

  .pillar-art {
    justify-self: end;
    align-self: end;
  }

}

@media (min-width: 900px) {
  .leadership-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .container {
    width: 100%;
    padding: 0 18px;
    box-sizing: border-box;
  }

  .nav-inner {
    flex-direction: row;
    align-items: center;
  }

  .section-title {
    text-align: center;
    padding: 0 12px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .cta-card {
    padding: 28px;
  }

  .panel-card {
    padding: 36px 16px 16px;
  }

  .panel-tag-inline {
    font-size: 0.65rem;
    letter-spacing: 0.8px;
    left: 12px;
    right: auto;
  }

}
.panel-tag-inline {
  position: absolute;
  top: 10px;
  right: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.25);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--bg-ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.panel-tag-inline::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #e0f2fe, #3b82f6 55%, #1d4ed8 100%);
  box-shadow: 0 0 6px rgba(59, 130, 246, 0.55);
}
