:root {
  color-scheme: light;
}

.si-app-shell.site-shell {
  width: 100%;
  max-width: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--si-page-bg);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: var(--si-space-4);
}

.si-button {
  background: linear-gradient(135deg, #ffd65c, #f4b400);
  border: 1px solid var(--si-primary-strong);
  color: #0d111b;
  padding: 0.85rem 1.6rem;
  border-radius: 14px;
  font-weight: var(--si-weight-bold);
  box-shadow: 0 18px 38px rgba(244, 180, 0, 0.32);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.si-button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #e6e8f0;
  color: var(--si-ink);
  padding: 0.85rem 1.3rem;
  border-radius: 14px;
  font-weight: var(--si-weight-bold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 44px rgba(15, 17, 29, 0.1);
}

.si-button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 20px 46px rgba(244, 180, 0, 0.42);
}

.si-button-secondary:hover:not(:disabled) {
  transform: translateY(-1px);
  border-color: var(--si-primary-strong);
}

.home-hero-header {
  position: relative;
  overflow: hidden;
  background: #020617;
  color: #ffffff;
}

.home-hero-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(253, 186, 18, 0.22), transparent 45%);
  pointer-events: none;
}

.home-hero-shell {
  position: relative;
  z-index: 1;
  padding-top: 3rem;
  padding-bottom: 5rem;
  gap: 3.5rem;
}

.home-hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.home-hero-brand {
  display: inline-flex;
  align-items: center;
}

.home-hero-logo {
  width: clamp(7rem, 8vw, 9rem);
  height: auto;
  display: block;
}

.home-hero-top-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(253, 186, 18, 0.6);
  background: rgba(253, 186, 18, 0.2);
  color: #fdbA12;
  color: #fdbA12;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-hero-top-cta:hover {
  background: rgba(253, 186, 18, 0.3);
  transform: translateY(-1px);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.home-hero-copy {
  max-width: 42rem;
}

.home-hero-pill {
  display: inline-flex;
  margin: 0;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(253, 186, 18, 0.4);
  background: rgba(253, 186, 18, 0.1);
  color: #fdbA12;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-hero-title {
  margin: 1.5rem 0 0;
  color: #ffffff;
  font-size: clamp(2.8rem, 4vw, 4.5rem);
  line-height: 1.05;
  font-weight: 800;
}

.home-hero-title-highlight {
  color: #fdbA12;
}

.home-hero-text {
  margin: 1.5rem 0 0;
  max-width: 38rem;
  color: #e2e8f0;
  font-size: 1rem;
  line-height: 1.75;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 2.25rem;
}

.home-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.75rem;
  border-radius: 1rem;
  background: #fdbA12;
  color: #020617;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 18px 38px rgba(253, 186, 18, 0.2);
  transition: background 0.2s ease, transform 0.2s ease;
}

.home-hero-primary:hover {
  background: #d99000;
  transform: translateY(-1px);
}

.home-hero-secondary {
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(253, 186, 18, 0.7);
  text-underline-offset: 0.25rem;
}

.home-hero-secondary:hover {
  color: #ffffff;
}

.home-hero-panel {
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
}

.home-hero-panel-title {
  margin: 0;
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 600;
}

.home-hero-panel-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home-hero-panel-item {
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.7);
  padding: 1rem;
}

.home-hero-panel-kicker {
  margin: 0;
  color: #fdbA12;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-hero-panel-heading {
  margin: 0.35rem 0 0;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
}

.home-hero-panel-copy {
  margin: 0.6rem 0 0;
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.6;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(13, 19, 36, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--si-space-5);
  padding: 1.05rem 1.5rem;
}

.site-logo img {
  height: 42px;
  width: auto;
  display: block;
}

.site-nav-links {
  display: flex;
  align-items: center;
  gap: var(--si-space-4);
  flex-wrap: wrap;
}

.site-nav-links a {
  color: #eef1f7;
  text-decoration: none;
  font-weight: var(--si-weight-bold);
}

.site-nav-links a:hover {
  color: #ffd24a;
}

.nav-cta {
  white-space: nowrap;
}

.site-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(4.8rem, 5vw + 1rem, 6rem) 0 clamp(4rem, 4vw + 1rem, 5.4rem);
  background:
    radial-gradient(circle at 18% 24%, rgba(244, 180, 0, 0.18), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(92, 114, 205, 0.18), transparent 30%),
    linear-gradient(140deg, var(--si-hero-start), var(--si-hero-end));
  color: #f7f9fc;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: var(--si-space-4);
}

.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 var(--si-space-1);
}

.hero-logo {
  height: 82px;
  width: auto;
  filter: drop-shadow(0 12px 34px rgba(0, 0, 0, 0.32));
}

.hero-surface {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: clamp(2.4rem, 3vw + 1rem, 3.3rem);
  box-shadow: 0 34px 120px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.hero-surface::before {
  content: '';
  position: absolute;
  inset: 1.3rem 1.6rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  opacity: 0.65;
  pointer-events: none;
}

.site-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--si-space-7);
  align-items: start;
}

.site-hero-title {
  margin: 0 0 var(--si-space-3);
  font-size: clamp(2.7rem, 2.9vw + 1.6rem, 3.8rem);
  line-height: 1.05;
  color: #f7f9fc;
}

.hero-title-highlight {
  color: #ffd65c;
  text-shadow: 0 18px 44px rgba(244, 180, 0, 0.25);
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 0.9rem;
  margin: 0 0 var(--si-space-3);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f7f9fc;
  font-weight: var(--si-weight-bold);
  font-size: 0.86rem;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(4px);
}

.hero-location::before {
  content: '';
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--si-primary);
  box-shadow: 0 0 0 8px rgba(244, 180, 0, 0.18);
}

.site-hero .site-lede {
  color: rgba(247, 249, 252, 0.85);
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}

.site-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--si-space-3);
  margin-top: var(--si-space-3);
}

.hero-panel {
  border-radius: 18px;
  padding: var(--si-space-5);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.32);
  color: #f7f9fc;
  backdrop-filter: blur(6px);
}

.hero-panel-label {
  margin: 0 0 var(--si-space-3);
  font-weight: var(--si-weight-bold);
  letter-spacing: 0.01em;
}

.hero-panel-list {
  display: flex;
  flex-direction: column;
  gap: var(--si-space-3);
}

.panel-item {
  display: flex;
  gap: var(--si-space-3);
  align-items: flex-start;
}

.panel-dot {
  margin-top: 0.35rem;
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background: var(--si-primary);
  box-shadow: 0 0 0 6px rgba(244, 180, 0, 0.16);
}

.panel-title {
  margin: 0;
  font-weight: var(--si-weight-bold);
  color: #f7f9fc;
}

.panel-copy {
  margin: 0.25rem 0 0;
  color: rgba(247, 249, 252, 0.78);
}

.site-section {
  padding: clamp(3rem, 4vw + 1rem, 4.2rem) 0;
  background: transparent;
}

.section-light {
  background: #ffffff;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: var(--si-space-2);
}

.section-title {
  margin: 0;
  font-size: 2rem;
  font-weight: var(--si-weight-bold);
  color: var(--si-ink);
  text-wrap: balance;
}

.site-lede {
  margin: 0;
  color: var(--si-muted);
  font-size: 1.02rem;
}

.site-grid,
.site-grid-tight {
  display: grid;
  gap: var(--si-space-4);
}

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

.site-grid-tight {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.site-block {
  background: #fff;
  border: 1px solid #e8eaf2;
  border-radius: 18px;
  padding: var(--si-space-5);
  box-shadow: 0 22px 60px rgba(12, 15, 24, 0.08);
}

.site-block-muted {
  background: #edf2f7;
  border: 1px solid #e0e6ef;
}

.site-card-title {
  margin: 0;
  color: var(--si-ink);
  font-size: 1.18rem;
  font-weight: var(--si-weight-bold);
}


.site-card-title a {
  color: #8f6500;
  text-decoration: none;
}

.site-card-title a:hover {
  color: var(--si-primary-strong);
}

.site-card-text {
  margin: 0.6rem 0 0;
  color: var(--si-muted);
}

.section-contrast {
  background: linear-gradient(130deg, #0d1324, #0c111f);
  color: #f7f9fc;
}

.section-contrast .section-title,
.section-contrast .site-card-title {
  color: #f7f9fc;
}

.section-contrast .site-lede,
.section-contrast .site-card-text {
  color: rgba(247, 249, 252, 0.82);
}

.section-contrast .site-block {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
}

.site-bullet-list,
.site-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--si-space-2);
}

.site-bullet,
.site-list li {
  display: flex;
  gap: var(--si-space-2);
  align-items: flex-start;
  color: var(--si-muted);
}

.site-bullet-dot {
  width: 0.55rem;
  height: 0.55rem;
  margin-top: 0.35rem;
  border-radius: 999px;
  background: var(--si-primary);
  box-shadow: 0 0 0 6px rgba(244, 180, 0, 0.16);
  flex-shrink: 0;
}

.site-bullet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--si-space-3);
}

.site-section-carded .section-inner {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
  border: 1px solid #dde4ef;
  border-radius: 24px;
  padding: clamp(1.5rem, 2vw + 1rem, 2.1rem);
  box-shadow: 0 18px 48px rgba(12, 17, 30, 0.08);
}

.site-cta {
  padding-bottom: clamp(3rem, 4vw + 1rem, 4.4rem);
}

.cta-card {
  background: #0d1324;
  color: #f7f9fc;
  border-radius: 18px;
  padding: clamp(2rem, 3vw + 1rem, 2.8rem);
  box-shadow: 0 26px 70px rgba(12, 15, 24, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-card .section-title {
  color: #f7f9fc;
}

.cta-card .site-lede {
  color: rgba(247, 249, 252, 0.82);
}

.site-footer {
  border-top: 1px solid var(--si-border);
  color: var(--si-muted);
  font-size: 0.95rem;
  padding: var(--si-space-5) 0 var(--si-space-6);
  background: #ffffff;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--si-space-3);
  text-align: center;
}

.footer-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--si-space-3);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.footer-handle {
  color: var(--si-muted);
  font-size: 0.95rem;
  font-weight: var(--si-weight-regular);
  letter-spacing: 0.02em;
}


.footer-copy {
  color: var(--si-muted);
  font-size: 0.95rem;
  font-weight: var(--si-weight-regular);
}

.footer-location-banner {
  width: 100%;
  margin-bottom: var(--si-space-3);
  color: #8f6500;
  font-size: 0.98rem;
  font-weight: var(--si-weight-bold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.footer-logo {
  height: 32px;
  width: auto;
}

.footer-links {
  display: flex;
  gap: var(--si-space-4);
  flex-wrap: wrap;
  justify-content: center;
}

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

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

.site-article-shell {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: var(--si-space-5);
}

.site-article-hero {
  display: flex;
  flex-direction: column;
  gap: var(--si-space-2);
}

.site-article-grid,
.site-articles-grid {
  display: grid;
  gap: var(--si-space-4);
}

.site-article-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.site-articles-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.site-article-panel,
.site-article-card {
  background: #fff;
  border: 1px solid #e8eaf2;
  border-radius: 16px;
  padding: var(--si-space-5);
  box-shadow: 0 18px 50px rgba(12, 15, 24, 0.08);
}

.site-article-card a {
  color: #8f6500;
  font-weight: var(--si-weight-bold);
  text-decoration: none;
}

.site-article-card a:hover {
  color: var(--si-primary-strong);
}

.site-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--si-space-4);
}

.site-article-shell .site-footer {
  border-top: 1px solid #e8eaf2;
  padding-top: var(--si-space-4);
}


.site-article-shell .section-light > .section-inner {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid #dde4ef;
  border-radius: 20px;
  padding: 1.2rem 1.25rem;
  box-shadow: 0 16px 42px rgba(12, 17, 30, 0.08);
}

.site-library-shell .site-article-hero {
  gap: var(--si-space-3);
}

.site-library-shell .site-article-hero .site-actions {
  margin-top: var(--si-space-2);
}

.site-library-shell .site-articles-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.site-library-shell .site-article-card {
  flex: 0 1 calc((100% - 2rem) / 3);
  max-width: calc((100% - 2rem) / 3);
  min-width: 250px;
}

.site-library-shell .site-article-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-height: 100%;
}

.site-library-shell .site-article-card .site-card-text {
  flex: 1;
}

.site-library-shell .site-columns {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 1rem;
}

.site-library-shell .site-block,
.site-library-shell .site-article-card {
  background: rgba(255, 255, 255, 0.78);
}

.site-library-shell .site-section {
  padding: 0.55rem 0;
}

@media (max-width: 920px) {
  .site-library-shell .site-columns {
    grid-template-columns: 1fr;
  }

  .site-library-shell .site-article-card {
    flex-basis: calc((100% - 1rem) / 2);
    max-width: calc((100% - 1rem) / 2);
  }
}

@media (max-width: 640px) {
  .site-library-shell .site-article-card {
    flex-basis: 100%;
    max-width: 100%;
  }
}


.site-article-shell {
  max-width: none;
  margin: 0;
  padding: 0 0 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background:
    radial-gradient(circle at top right, rgba(244, 180, 0, 0.08), transparent 22%),
    linear-gradient(180deg, #eef2f8 0%, #f5f7fb 36%, #edf2f7 100%);
}

.site-article-shell > .site-nav {
  width: 100%;
  margin: 0 0 0.35rem;
}

.site-article-shell > .site-nav .section-inner {
  max-width: 1080px;
}

.site-article-shell > section,
.site-article-shell > footer {
  width: min(1080px, calc(100% - 2.4rem));
  margin-left: auto;
  margin-right: auto;
}

.site-article-shell > section > .section-inner,
.site-article-shell > footer > .section-inner {
  max-width: none;
  padding: 0;
}

.site-article-shell .site-section {
  padding: 0.4rem 0;
}

.site-article-shell .site-article-hero {
  margin-top: 0 !important;
  padding: clamp(1.8rem, 2vw + 1rem, 2.5rem);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(244, 180, 0, 0.14), transparent 24%),
    linear-gradient(145deg, #131b31, #19233f);
  box-shadow: 0 30px 90px rgba(12, 17, 30, 0.24);
}

.site-article-shell .site-article-hero h1 {
  margin: 0.2rem 0 0.4rem;
  color: #f8fafc;
  font-size: clamp(2.35rem, 2vw + 1.6rem, 3.45rem);
  line-height: 1.08;
}

.site-article-shell .site-article-hero .site-lede {
  color: rgba(248, 250, 252, 0.82);
  font-size: 1.04rem;
}

.site-article-shell .site-article-grid,
.site-article-shell .site-grid,
.site-article-shell .site-columns,
.site-article-shell .site-bullet-grid,
.site-article-shell .site-articles-grid {
  gap: 1rem;
}

.site-article-shell .section-light {
  background: transparent;
}

.site-article-shell .site-article-panel,
.site-article-shell .site-article-card,
.site-article-shell .site-block {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px);
  border: 1px solid #dde4ef;
  border-radius: 20px;
  padding: 1.2rem 1.25rem;
  box-shadow: 0 16px 42px rgba(12, 17, 30, 0.08);
}

.site-article-shell .site-card-text,
.site-article-shell .site-bullet,
.site-article-shell .site-list li,
.site-article-shell .site-lede {
  color: #475569;
}

.site-article-shell .site-cta {
  padding: 1.7rem 1.5rem;
  border-radius: 24px;
  background:
    radial-gradient(circle at top center, rgba(244, 180, 0, 0.16), transparent 34%),
    linear-gradient(145deg, #121a2f, #1a2442);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 90px rgba(12, 17, 30, 0.22);
  text-align: center;
}

.site-article-shell .site-cta .si-title,
.site-article-shell .site-cta .section-title {
  color: #f8fafc;
}

.site-article-shell .site-cta .site-lede {
  color: rgba(248, 250, 252, 0.82);
}

.site-article-shell .site-actions {
  justify-content: center;
}

.site-article-shell .site-footer {
  border-top: 0;
  padding-top: 0.9rem;
  background: transparent;
}

@media (max-width: 1080px) {
  .site-hero-grid,
  .home-hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    order: 2;
  }

  .nav-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  .site-hero {
    padding: var(--si-space-6) 0 var(--si-space-6);
  }

  .hero-logo {
    height: 72px;
  }

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

  .nav-inner {
    padding: 0.9rem 1.25rem;
  }

  .home-hero-shell {
    padding-top: 2rem;
    padding-bottom: 3.5rem;
    gap: 2.25rem;
  }

  .home-hero-nav {
    align-items: flex-start;
    flex-direction: column;
  }

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