*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: #FFFFFF;
  background-color: #0A0A0A;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

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

ul, ol {
  list-style: none;
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 169, 97, 0.1);
}
.nav .nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav .nav-brand {
  font-size: 24px;
  font-weight: 700;
  color: #C9A961;
  letter-spacing: -0.02em;
}
.nav .nav-links {
  display: flex;
  gap: 48px;
  align-items: center;
}
.nav .nav-links a {
  color: #B8B8B8;
  transition: all 0.3s ease;
  font-size: 16px;
}
.nav .nav-links a.btn-primary {
  color: #0A0A0A;
}
.nav .nav-links a:hover {
  color: #C9A961;
}
.nav .nav-links a.active {
  color: #FFFFFF;
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 48px;
  margin-top: 80px;
  overflow: hidden;
}
.hero.hero-with-bg .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.3;
  z-index: 0;
}
.hero.hero-with-bg .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.6) 50%, rgba(10, 10, 10, 0.95) 100%);
}
.hero.hero-with-bg .hero-content {
  position: relative;
  z-index: 1;
}
.hero .hero-content {
  max-width: 1024px;
  text-align: center;
}
.hero h1 {
  font-size: 64px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero h1 em {
  font-style: italic;
  color: #C9A961;
}
.hero .hero-subtitle {
  font-size: 24px;
  color: #B8B8B8;
  margin-bottom: 72px;
  line-height: 1.5;
}
.hero .hero-accent {
  display: inline-block;
  position: relative;
}
.hero .hero-accent::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #C9A961 0%, #D4B876 100%);
}

.btn {
  display: inline-block;
  padding: 16px 48px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 16px;
}
.btn.btn-primary {
  background: linear-gradient(135deg, #C9A961 0%, #B39549 100%);
  color: #0A0A0A;
}
.btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 97, 0.3);
}
.btn.btn-secondary {
  background: transparent;
  border: 2px solid #C9A961;
  color: #C9A961;
}
.btn.btn-secondary:hover {
  background: #C9A961;
  color: #0A0A0A;
}
.btn.btn-lg {
  padding: 24px 72px;
  font-size: 18px;
}

.section {
  padding: 120px 48px;
  max-width: 1280px;
  margin: 0 auto;
}
.section.section-dark {
  background-color: #1A1A1A;
}
.section .section-header {
  margin-bottom: 72px;
  text-align: center;
}
.section .section-header h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.section .section-header p {
  font-size: 18px;
  color: #B8B8B8;
  max-width: 700px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 48px;
}
.grid.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.grid.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  background: #1A1A1A;
  border: 1px solid rgba(201, 169, 97, 0.1);
  border-radius: 16px;
  padding: 48px;
  transition: all 0.3s ease;
}
.card:hover {
  border-color: rgba(201, 169, 97, 0.3);
  transform: translateY(-4px);
}
.card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #C9A961 0%, #B39549 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 24px;
}
.card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 600;
}
.card p {
  color: #B8B8B8;
  line-height: 1.7;
}

.code-block {
  background: #000000;
  border: 1px solid rgba(201, 169, 97, 0.1);
  border-radius: 8px;
  padding: 24px;
  font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Code", "Droid Sans Mono", "Source Code Pro", monospace;
  font-size: 14px;
  overflow-x: auto;
  margin: 24px 0;
}
.code-block .command {
  color: #50E3C2;
}
.code-block .command::before {
  content: "$ ";
  color: #808080;
}

.footer {
  background: #000000;
  border-top: 1px solid rgba(201, 169, 97, 0.1);
  padding: 72px 48px;
}
.footer .footer-content {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
}
.footer .footer-section h4 {
  color: #C9A961;
  margin-bottom: 24px;
  font-size: 18px;
}
.footer .footer-section ul li {
  margin-bottom: 8px;
}
.footer .footer-section ul li a {
  color: #B8B8B8;
  transition: all 0.3s ease;
}
.footer .footer-section ul li a:hover {
  color: #C9A961;
}
.footer .footer-bottom {
  max-width: 1280px;
  margin: 48px auto 0;
  padding-top: 48px;
  border-top: 1px solid rgba(201, 169, 97, 0.1);
  text-align: center;
  color: #808080;
  font-size: 14px;
}

.job-card {
  background: #1A1A1A;
  border-left: 4px solid #C9A961;
  padding: 48px;
  margin-bottom: 48px;
  border-radius: 8px;
}
.job-card .job-header {
  margin-bottom: 24px;
}
.job-card .job-header h3 {
  font-size: 32px;
  margin-bottom: 8px;
}
.job-card .job-header .job-meta {
  display: flex;
  gap: 24px;
  color: #808080;
  font-size: 14px;
}
.job-card .job-description {
  margin-bottom: 24px;
  color: #B8B8B8;
  line-height: 1.7;
}
.job-card .job-description ul {
  list-style: disc;
  margin-left: 24px;
  margin-top: 16px;
}
.job-card .job-description ul li {
  margin-bottom: 8px;
}
.job-card .job-description h4 {
  color: #C9A961;
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 18px;
}

.hero-eyebrow {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #C9A961;
  margin-bottom: 24px;
}

.section-with-bg {
  position: relative;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
.section-with-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #0A0A0A;
  opacity: 0.92;
  z-index: 0;
}
.section-with-bg > * {
  position: relative;
  z-index: 1;
}

.section-dark-full {
  background-color: #1A1A1A;
  padding: 120px 48px;
}
.section-dark-full .section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.mission-statement {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.mission-statement blockquote {
  font-size: 24px;
  color: #B8B8B8;
  line-height: 1.7;
  font-style: italic;
  border-left: 4px solid #C9A961;
  padding-left: 48px;
  text-align: left;
  margin: 0;
}

.circles-section {
  max-width: 1280px;
}

.circles-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
  margin-bottom: 72px;
}
@media (max-width: 768px) {
  .circles-container {
    grid-template-columns: 1fr;
  }
}

.circles-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
}
.circle.circle-outer {
  width: 440px;
  height: 440px;
  border: 2px solid rgba(201, 169, 97, 0.5);
  background: rgba(201, 169, 97, 0.04);
}
.circle.circle-middle {
  width: 310px;
  height: 310px;
  border: 2px solid rgba(201, 169, 97, 0.35);
  background: rgba(201, 169, 97, 0.07);
}
.circle.circle-inner {
  width: 190px;
  height: 190px;
  border: 2px solid rgba(201, 169, 97, 0.6);
  background: rgba(201, 169, 97, 0.12);
}

.circle-label {
  position: absolute;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.circle-label .circle-title {
  font-weight: 700;
  color: #FFFFFF;
}
.circle-label .circle-desc {
  font-size: 12px;
  color: #808080;
}
.circle-label.circle-label-inner .circle-title {
  font-size: 13px;
}
.circle-label.circle-label-inner .circle-desc {
  display: none;
}
.circle-label.circle-label-middle {
  top: 16px;
}
.circle-label.circle-label-middle .circle-title {
  font-size: 13px;
  color: #B8B8B8;
}
.circle-label.circle-label-middle .circle-desc {
  font-size: 11px;
}
.circle-label.circle-label-outer {
  top: 16px;
}
.circle-label.circle-label-outer .circle-title {
  font-size: 14px;
  color: #C9A961;
}
.circle-label.circle-label-outer .circle-desc {
  font-size: 11px;
}

.circles-explanation {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.care-tier {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.care-tier h3 {
  font-size: 18px;
  margin-bottom: 8px;
}
.care-tier p {
  color: #B8B8B8;
  line-height: 1.6;
  font-size: 15px;
}

.care-tier-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}
.care-tier-dot.dot-inner {
  background: rgba(201, 169, 97, 0.4);
  border: 2px solid rgba(201, 169, 97, 0.6);
}
.care-tier-dot.dot-middle {
  background: rgba(201, 169, 97, 0.6);
  border: 2px solid rgba(201, 169, 97, 0.8);
}
.care-tier-dot.dot-outer {
  background: #C9A961;
  border: 2px solid #D4B876;
}

.circles-outcome {
  background: rgba(201, 169, 97, 0.06);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 16px;
  padding: 48px 72px;
  text-align: center;
}
.circles-outcome p {
  font-size: 18px;
  color: #B8B8B8;
  line-height: 1.7;
  margin: 0;
}
.circles-outcome p strong {
  color: #C9A961;
}

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

.pillar-card {
  background: #1A1A1A;
  border: 1px solid rgba(201, 169, 97, 0.1);
  border-radius: 16px;
  padding: 48px;
  transition: all 0.3s ease;
  position: relative;
}
.pillar-card:hover {
  border-color: rgba(201, 169, 97, 0.35);
  transform: translateY(-4px);
}
.pillar-card .pillar-number {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #C9A961;
  margin-bottom: 16px;
  font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Code", "Droid Sans Mono", "Source Code Pro", monospace;
}
.pillar-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
.pillar-card p {
  color: #B8B8B8;
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 15px;
}
.pillar-card .pillar-tech {
  font-size: 12px;
  color: #808080;
  font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Code", "Droid Sans Mono", "Source Code Pro", monospace;
  border-top: 1px solid rgba(201, 169, 97, 0.1);
  padding-top: 16px;
  line-height: 1.6;
}

.knowledge-flow {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  justify-content: center;
}
@media (max-width: 768px) {
  .knowledge-flow {
    flex-direction: column;
    align-items: center;
  }
}

.knowledge-step {
  flex: 1;
  max-width: 300px;
  text-align: center;
}
.knowledge-step .knowledge-icon {
  font-size: 28px;
  color: #C9A961;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}
.knowledge-step .knowledge-icon svg {
  width: 40px;
  height: 40px;
}
.knowledge-step h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.knowledge-step p {
  color: #B8B8B8;
  line-height: 1.6;
  font-size: 15px;
}

.knowledge-arrow {
  font-size: 24px;
  color: rgba(201, 169, 97, 0.4);
  margin-top: 8px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .knowledge-arrow {
    transform: rotate(90deg);
  }
}

.outcome-card {
  background: #1A1A1A;
  border: 1px solid rgba(201, 169, 97, 0.1);
  border-radius: 16px;
  padding: 48px;
  transition: all 0.3s ease;
}
.outcome-card:hover {
  border-color: rgba(201, 169, 97, 0.3);
}
.outcome-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #C9A961;
}
.outcome-card p {
  color: #B8B8B8;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 48px;
  }
  .section {
    padding: 72px 24px;
  }
  .nav .nav-links {
    gap: 24px;
  }
  .grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=main.css.map */