:root {
  --bg: #05070b;
  --bg-alt: #0d1117;
  --text: #f5f7ff;
  --muted: #b6c0d9;
  --accent: #5ce1ff;
  --accent-strong: #7b7dff;
  --card: rgba(13, 17, 23, 0.8);
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  --radius: 20px;
  --font-display: "Fraunces", serif;
  --font-body: "Space Grotesk", sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(circle at top, #111827 0%, #05070b 60%);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  opacity: 0.5;
  animation: float 16s ease-in-out infinite;
}

.orb-a {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(92, 225, 255, 0.5), transparent 70%);
  top: -120px;
  right: -120px;
}

.orb-b {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(123, 125, 255, 0.45), transparent 70%);
  bottom: -180px;
  left: -140px;
  animation-delay: 2s;
}

.orb-c {
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 70%);
  top: 35%;
  left: 55%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-24px);
  }
}

.container {
  width: min(1140px, 90%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(16px);
  background: rgba(5, 7, 11, 0.8);
  border-bottom: 1px solid var(--border);
  z-index: 10;
}

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

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

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-logo {
  width: 64px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(92, 225, 255, 0.2));
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.02em;
}

.brand-sub {
  color: var(--muted);
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-aviator {
  width: 64px;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  object-fit: contain;
}

.btn {
  background: linear-gradient(120deg, var(--accent), var(--accent-strong));
  color: #05070b;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(92, 225, 255, 0.2);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

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

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.75rem;
  color: var(--accent);
  margin-bottom: 18px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4.2rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.lead {
  color: var(--muted);
  font-size: 1.1rem;
}

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

.hero-meta {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.meta-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.meta-value {
  font-size: 0.95rem;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.hero-card h3 {
  margin-bottom: 16px;
}

.hero-card-title {
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.01em;
}

.card-foot {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--muted);
}


.pill-link {
  text-decoration: none;
  color: var(--muted);
}

.pill-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.service-link,
.panel-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-link:hover,
.panel-link:hover {
  border-color: var(--accent);
}

.section {
  padding: 80px 0;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 18px;
}

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

.panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.bio-panel {
  display: grid;
  gap: 18px;
  align-items: start;
}

.headshot {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  height: auto;
  object-fit: contain;
}

.about-bio p {
  margin-bottom: 16px;
}

.about-bio p:last-of-type {
  margin-bottom: 0;
}

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

.service-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.list-star,
.list-check {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.list-star li,
.list-check li {
  display: grid;
  grid-template-columns: 16px 1fr;
  column-gap: 10px;
  align-items: start;
}

.list-star li::before {
  content: "✦";
  color: var(--accent);
}

.list-check li::before {
  content: "✓";
  color: var(--accent);
}

.embed.placeholder {
  border: 1px dashed var(--border);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}

.embed.placeholder a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 18px 0;
}

.embed iframe {
  width: 100%;
  height: 260px;
  border-radius: 14px;
}

.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 14px;
  margin: 20px 0;
}

.center-btn {
  display: inline-flex;
  margin: 12px auto 0;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.cta-line {
  text-align: center;
  color: var(--muted);
  margin: 6px 0 12px;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.center-actions .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.contact-split {
  align-items: stretch;
}

.contact-left {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-note-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.archive-box {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.archive-box h4 {
  font-size: 1.1rem;
}

.archive-list {
  list-style: none;
  display: grid;
  gap: 8px;
  margin: 6px 0 10px;
  padding: 0;
}

.archive-list li a {
  color: var(--text);
  text-decoration: none;
}

.archive-list li a:hover {
  color: var(--accent);
}

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

.site-footer {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
  background: rgba(5, 7, 11, 0.9);
}

.footer-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  color: var(--muted);
  align-items: start;
}

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

.footer-left .brand-title {
  font-size: 1.35rem;
}

.footer-left p {
  font-size: 1rem;
}

.footer-nav {
  justify-content: center;
  text-align: center;
}

.footer-right {
  text-align: right;
  font-size: 0.95rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-center {
  text-align: center;
}

.footer-mark {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}

.footer-wings {
  width: min(280px, 70vw);
  height: auto;
  opacity: 0.8;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55));
}

.meta-value a {
  color: var(--text);
  text-decoration: none;
}

.meta-value a:hover {
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  text-decoration: none;
  margin-left: 6px;
}

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

  .hero {
    padding-top: 70px;
  }
}

@media (max-width: 640px) {
  .btn {
    width: 100%;
  }

  .hero-actions,
  .cta-row {
    flex-direction: column;
  }

  .brand-logo {
    width: 48px;
  }

  .header-aviator {
    width: 48px;
  }
}


/* Force card and pill links to look like buttons/cards on all domains */
.service-link,
.panel-link,
.pill-link {
  text-decoration: none;
}

.service-link *,
.panel-link *,
.pill-link {
  color: inherit;
  text-decoration: none;
}

.service-link h3,
.panel-link h3 {
  color: var(--text);
}

.service-link p,
.panel-link p {
  color: var(--muted);
}

.service-link:hover h3,
.panel-link:hover h3 {
  color: var(--accent);
}

.service-link:hover p,
.panel-link:hover p {
  color: var(--text);
}


.contact-note p {
  margin-bottom: 14px;
}

.contact-note p:last-child {
  margin-bottom: 0;
}


.panel p + p {
  margin-top: 14px;
}
