:root {
  --site-shell-bg: #0a0a0c;
  --site-shell-bg2: #111116;
  --site-shell-card: #1a1a24;
  --site-shell-border: rgba(255,255,255,0.07);
  --site-shell-border2: rgba(255,255,255,0.12);
  --site-shell-accent: #ff4500;
  --site-shell-accent2: #ff6b35;
  --site-shell-glow: rgba(255,69,0,0.25);
  --site-shell-text: #f0ede8;
  --site-shell-muted: #8a8694;
  --site-shell-dim: #5a5668;
}

.site-shell-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 68px;
  background: rgba(10,10,12,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--site-shell-border);
}

.site-shell-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--site-shell-text);
}

.site-shell-logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.site-shell-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-shell-logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 2px;
  color: var(--site-shell-text);
}

.site-shell-logo-text span {
  color: var(--site-shell-accent);
}

.site-shell-nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.site-shell-nav-links a {
  color: var(--site-shell-muted);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.site-shell-nav-links a:hover,
.site-shell-mobile a:hover {
  color: var(--site-shell-text);
}

.site-shell-nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

.site-shell-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.site-shell-btn-ghost {
  background: transparent;
  border: 1px solid var(--site-shell-border2);
  color: var(--site-shell-text);
}

.site-shell-btn-ghost:hover {
  border-color: var(--site-shell-accent);
  color: var(--site-shell-accent);
}

.site-shell-btn-primary {
  background: linear-gradient(135deg, var(--site-shell-accent), var(--site-shell-accent2));
  color: #fff;
  box-shadow: 0 4px 20px var(--site-shell-glow);
}

.site-shell-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(255,69,0,0.4);
}

.site-shell-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.site-shell-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--site-shell-text);
  border-radius: 2px;
  transition: all 0.3s;
}

.site-shell-mobile {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10,10,12,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--site-shell-border);
  padding: 24px 5%;
  flex-direction: column;
  gap: 16px;
}

.site-shell-mobile.open {
  display: flex;
}

.site-shell-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--site-shell-muted);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--site-shell-border);
}

.site-shell-mobile .site-shell-btn {
  margin-top: 8px;
  text-align: center;
}

.site-shell-footer {
  margin-top: 56px;
  background: var(--site-shell-bg2);
  border-top: 1px solid var(--site-shell-border);
  padding: 56px 5% 28px;
}

.site-shell-footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.site-shell-footer-brand p {
  font-size: 13px;
  color: var(--site-shell-muted);
  margin-top: 14px;
  line-height: 1.7;
  max-width: 320px;
}

.site-shell-footer-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--site-shell-text);
  margin-bottom: 16px;
}

.site-shell-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-shell-footer-links a {
  font-size: 13px;
  color: var(--site-shell-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.site-shell-footer-links a:hover {
  color: var(--site-shell-accent);
}

.site-shell-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid var(--site-shell-border);
  padding-top: 22px;
}

.site-shell-footer-bottom p {
  font-size: 12px;
  color: var(--site-shell-dim);
}

.site-shell-footer-disclaimer {
  max-width: 760px;
  line-height: 1.6;
}

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

  .site-shell-hamburger {
    display: flex;
  }

  .site-shell-footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .site-shell-footer {
    margin-top: 44px;
    padding: 44px 5% 24px;
  }
}
