:root {
  --ink: #2f2a2e;
  --text: #4d4950;
  --surface: #ffffff;
  --line: rgba(47, 42, 46, 0.08);
  --accent: #1f6db5;
  --accent-soft: rgba(31, 109, 181, 0.12);
  --shadow-soft: 0 22px 56px rgba(15, 23, 42, 0.045);
  --shadow-lift: 0 26px 64px rgba(15, 23, 42, 0.09);
  --shadow-press: 0 16px 36px rgba(15, 23, 42, 0.1);
  --max-width: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(31, 109, 181, 0.08), transparent 22%),
    radial-gradient(circle at 100% 0, rgba(47, 42, 46, 0.05), transparent 18%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 14%, #ffffff 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.page-shell {
  min-height: 100vh;
}

.site-container {
  width: min(calc(100% - clamp(1.5rem, 5vw, 4rem)), var(--max-width));
  margin-inline: auto;
}

.glass-nav {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.brand-mark {
  background: linear-gradient(135deg, var(--accent) 0%, #4d92d2 100%);
  box-shadow: 0 14px 28px rgba(16, 35, 63, 0.14);
}

.brand-lockup {
  min-width: 0;
}

.brand-logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.brand-logo {
  display: block;
  height: 2.5rem;
  width: auto;
}

.brand-meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.nav-link {
  position: relative;
  color: #475569;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--ink);
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.65rem;
  height: 2px;
  border-radius: 9999px;
  background: linear-gradient(90deg, var(--accent), rgba(31, 109, 181, 0));
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-link:hover::after,
.nav-link.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.cta-button,
.ghost-button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.125rem;
  padding-inline: 1.5rem;
  padding-block: 0.85rem;
  border-radius: 9999px;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.cta-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.cta-button {
  color: #ffffff;
  background: linear-gradient(135deg, #1f6db5 0%, #3f8fd8 100%);
  box-shadow: 0 16px 34px rgba(31, 109, 181, 0.18);
}

.cta-button:hover {
  box-shadow: 0 20px 42px rgba(31, 109, 181, 0.22);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: var(--shadow-press);
}

.ghost-button {
  color: var(--ink);
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.ghost-button:hover {
  border-color: rgba(31, 109, 181, 0.2);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

.cta-button:focus-visible,
.ghost-button:focus-visible,
.contact-input:focus-visible,
.nav-toggle:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(31, 109, 181, 0.14);
}

.section-label {
  letter-spacing: 0.18em;
  color: var(--accent);
  font-size: 0.72rem;
}

.hero-panel,
.content-card,
.nav-panel,
.footer-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.hero-panel {
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.055);
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 14rem;
  height: 14rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(31, 109, 181, 0.14), transparent 68%);
}

.hero-grid {
  position: relative;
  z-index: 1;
}

.content-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
}

.accent-line {
  background: linear-gradient(90deg, var(--accent) 0%, rgba(31, 109, 181, 0.08) 100%);
}

.placeholder-block {
  border: 1px dashed rgba(15, 23, 42, 0.14);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 0.9));
}

.eyebrow-chip {
  border: 1px solid rgba(31, 109, 181, 0.16);
  background: rgba(31, 109, 181, 0.08);
  color: var(--accent);
}

.hero-kicker {
  color: #0f172a;
  text-wrap: balance;
  line-height: 0.95;
}

.hero-copy {
  color: #475569;
  text-wrap: pretty;
  max-width: 64ch;
}

.hero-metric {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.92));
}

.hero-metric strong,
.stat-panel strong {
  color: var(--ink);
}

.signal-card {
  position: relative;
  overflow: hidden;
}

.signal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(31, 109, 181, 0));
}

.icon-badge {
  background: var(--accent-soft);
  color: var(--accent);
}

.service-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-between;
}

.service-index {
  color: rgba(16, 35, 63, 0.32);
}

.service-link {
  color: var(--ink);
}

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

.dark-banner,
.dark-stats,
.dark-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(31, 109, 181, 0.18), transparent 28%),
    linear-gradient(145deg, #171518 0%, #2f2a2e 52%, #1f6db5 100%);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}

.dark-banner::after,
.dark-stats::after,
.dark-cta::after {
  content: "";
  position: absolute;
  inset: auto auto -4rem -4rem;
  width: 12rem;
  height: 12rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
}

.stat-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.stat-panel strong {
  color: #ffffff;
}

.section-copy {
  text-wrap: pretty;
}

.section-heading {
  text-wrap: balance;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.divider-soft {
  border-color: rgba(15, 23, 42, 0.08);
}

.home-orb {
  position: absolute;
  border-radius: 9999px;
  filter: blur(8px);
  pointer-events: none;
}

.home-orb.orb-one {
  top: 10%;
  right: 4%;
  height: 8rem;
  width: 8rem;
  background: radial-gradient(circle, rgba(31, 109, 181, 0.16), transparent 68%);
}

.home-orb.orb-two {
  bottom: 18%;
  right: 28%;
  height: 5rem;
  width: 5rem;
  background: radial-gradient(circle, rgba(47, 42, 46, 0.08), transparent 68%);
}

.profile-portrait {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04)),
    linear-gradient(145deg, #232024 0%, #2f2a2e 58%, #1f6db5 100%);
  border-color: rgba(255, 255, 255, 0.08);
}

.portrait-frame {
  background:
    radial-gradient(circle at top center, rgba(255, 255, 255, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-row {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  column-gap: 1rem;
  padding-left: 1.25rem;
}

.trust-row::before {
  content: "";
  position: relative;
  top: 0.35rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--accent), #63a0db);
  box-shadow: 0 0 0 6px rgba(31, 109, 181, 0.1);
}

.trust-row > * {
  min-width: 0;
  margin: 0;
}

.gaia-visual {
  overflow: hidden;
}

.gaia-visual-inner {
  background:
    radial-gradient(circle at top, rgba(31, 109, 181, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.9), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.gaia-image {
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.gaia-detail {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gaia-detail:hover {
  transform: translateY(-2px);
}

.gaia-detail summary::-webkit-details-marker {
  display: none;
}

.gaia-summary {
  position: relative;
  padding-right: 3rem;
}

.gaia-summary::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(31, 109, 181, 0.08);
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 600;
}

.gaia-detail[open] .gaia-summary::after {
  content: "\2212";
}

.gaia-letter {
  background: linear-gradient(135deg, rgba(31, 109, 181, 0.16), rgba(31, 109, 181, 0.06));
  color: var(--accent);
}

.gaia-timeline {
  position: relative;
  display: grid;
  gap: 1.25rem;
}

.gaia-timeline::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(31, 109, 181, 0.24), rgba(47, 42, 46, 0.08));
}

.gaia-step {
  position: relative;
  margin-left: 2.5rem;
}

.gaia-step::before {
  content: "";
  position: absolute;
  left: -2.35rem;
  top: 1.5rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--accent), #63a0db);
  box-shadow: 0 0 0 6px rgba(31, 109, 181, 0.1);
}

.gaia-step-number {
  color: rgba(16, 35, 63, 0.3);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.service-panel {
  position: relative;
  overflow: hidden;
}

.service-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent), rgba(31, 109, 181, 0));
}

.service-panel-number {
  color: rgba(16, 35, 63, 0.22);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.06em;
}

.service-panel-aside {
  display: flex;
  flex-direction: column;
}

.service-modalities {
  border: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(255, 255, 255, 0.92));
}

.bootcamp-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(31, 109, 181, 0.18), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(145deg, #171518 0%, #232024 40%, #1f6db5 100%);
  box-shadow: 0 34px 70px rgba(15, 23, 42, 0.16);
}

.bootcamp-hero::after {
  content: "";
  position: absolute;
  inset: auto -3rem -4rem auto;
  width: 14rem;
  height: 14rem;
  border-radius: 9999px;
  background: radial-gradient(circle, rgba(31, 109, 181, 0.14), transparent 72%);
}

.bootcamp-metric {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.bootcamp-metric strong {
  color: #ffffff;
}

.bootcamp-timeline {
  position: relative;
  display: grid;
  gap: 1.25rem;
}

.bootcamp-timeline::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(31, 109, 181, 0.28), rgba(47, 42, 46, 0.08));
}

.bootcamp-step {
  position: relative;
  margin-left: 2.75rem;
}

.bootcamp-step::before {
  content: "";
  position: absolute;
  left: -2.55rem;
  top: 1.5rem;
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--accent), #63a0db);
  box-shadow: 0 0 0 7px rgba(31, 109, 181, 0.1);
}

.bootcamp-step-number {
  color: rgba(16, 35, 63, 0.34);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-field {
  display: grid;
  gap: 0.625rem;
}

.contact-label {
  color: #0f172a;
  font-size: 0.875rem;
  font-weight: 600;
}

.contact-input {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 1rem;
  background: rgba(248, 250, 252, 0.86);
  color: #0f172a;
  padding: 0.95rem 1rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.contact-input:focus {
  border-color: rgba(31, 109, 181, 0.45);
  box-shadow: 0 0 0 4px rgba(31, 109, 181, 0.12);
  background: #ffffff;
}

.contact-input::placeholder {
  color: #94a3b8;
}

.contact-textarea {
  min-height: 9rem;
  resize: vertical;
}

main > section.site-container {
  padding-top: clamp(3.5rem, 7vw, 6rem);
  padding-bottom: clamp(3.5rem, 7vw, 6rem);
}

main > section.site-container:first-child {
  padding-top: clamp(2.25rem, 5vw, 3.5rem);
}

footer .footer-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

footer .footer-card:hover {
  transform: translateY(-2px);
  box-shadow: none;
}

footer .footer-card p,
footer .footer-card li,
footer .footer-card span {
  color: inherit;
}

footer .footer-card .text-slate-500 {
  color: rgba(255, 255, 255, 0.58) !important;
}

footer .footer-card .text-slate-600 {
  color: rgba(255, 255, 255, 0.82) !important;
}

.fade-up {
  animation: fadeUp 700ms ease both;
}

.fade-in {
  animation: fadeIn 700ms ease both;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 220ms;
}

.delay-3 {
  animation-delay: 320ms;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1023px) {
  .nav-link::after {
    display: none;
  }

  .service-panel-number {
    font-size: 2.7rem;
  }
}

@media (max-width: 767px) {
  body {
    background:
      radial-gradient(circle at top left, rgba(31, 109, 181, 0.07), transparent 28%),
      linear-gradient(180deg, #f8fafc 0%, #ffffff 16%, #ffffff 100%);
  }

  .site-container {
    width: min(calc(100% - 1.25rem), var(--max-width));
  }

  .glass-nav {
    backdrop-filter: blur(16px);
  }

  .hero-panel,
  .dark-banner,
  .dark-stats,
  .dark-cta,
  .bootcamp-hero {
    border-radius: 1.6rem;
  }

  .content-card,
  .nav-panel,
  .footer-card,
  .gaia-detail,
  .service-panel {
    border-radius: 1.35rem;
  }

  .hero-kicker,
  .section-heading {
    letter-spacing: -0.045em;
  }

  .hero-kicker {
    font-size: clamp(2.25rem, 10vw, 3.25rem) !important;
  }

  .section-heading {
    font-size: clamp(2rem, 8vw, 2.75rem) !important;
  }

  .hero-copy,
  .section-copy,
  .bootcamp-step p,
  .gaia-step p {
    font-size: 0.98rem !important;
    line-height: 1.8 !important;
  }

  .content-card:hover,
  .footer-card:hover {
    transform: none;
  }

  .gaia-step,
  .bootcamp-step {
    margin-left: 2.15rem;
  }

  .gaia-timeline::before,
  .bootcamp-timeline::before {
    left: 1rem;
  }

  .gaia-step::before,
  .bootcamp-step::before {
    left: -1.9rem;
  }

  .service-panel::before {
    width: 100%;
    height: 4px;
    inset: 0 0 auto 0;
  }

  .service-panel-number {
    font-size: 2.3rem;
    letter-spacing: -0.04em;
  }

  .contact-input,
  .cta-button,
  .ghost-button {
    min-height: 3.1rem;
  }

  .nav-toggle {
    border-color: rgba(15, 23, 42, 0.08);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up,
  .fade-in,
  .delay-1,
  .delay-2,
  .delay-3 {
    animation: none;
  }

  .cta-button,
  .ghost-button,
  .content-card,
  .gaia-detail,
  .contact-input,
  .footer-card,
  .nav-link::after {
    transition: none;
  }

  .home-orb {
    display: none;
  }
}

