:root {
  --nx-bg: #f5f6f8; --nx-surface: #ffffff; --nx-surface-soft: #eceef2; --nx-text: #161a20; --nx-muted: #5d6772; --nx-border: #d8dce2; --nx-dark: #0d1117; --nx-accent: #e0b100; --nx-radius: 22px; --nx-container: 1440px;
}
* { box-sizing: border-box;
}
body { margin: 0; font-family: Inter, Arial, Helvetica, sans-serif; background: var(--nx-bg); color: var(--nx-text);
}
.container { width: min(100% - 48px, var(--nx-container)); margin: 0 auto;
}
.hero { min-height: 78vh; display: flex; align-items: center; padding: 120px 0; background: linear-gradient(135deg, rgba(224,177,0,0.14), transparent 34%), radial-gradient(circle at 80% 20%, rgba(13,17,23,0.08), transparent 28%), 
    var(--nx-bg);
  border-bottom: 1px solid var(--nx-border);
}
.hero h1 { max-width: 980px; margin: 0; font-size: clamp(48px, 7vw, 96px); line-height: 0.95; letter-spacing: -0.055em; font-weight: 760;
}
.hero p { max-width: 720px; margin: 32px 0 0; font-size: clamp(18px, 2vw, 24px); line-height: 1.5; color: var(--nx-muted);
}
.content { padding: 96px 0;
}
.content .container { display: grid; gap: 32px;
}
.nexos-card { background: var(--nx-surface); border: 1px solid var(--nx-border); border-radius: var(--nx-radius); padding: 32px; box-shadow: 0 18px 50px rgba(13, 17, 23, 0.06);
}
.nexos-kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 20px; font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--nx-muted);
}
.nexos-kicker::before { content: ""; width: 28px; height: 2px; background: var(--nx-accent);
}
.nexos-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(245, 246, 248, 0.82);
  border-bottom: 1px solid rgba(216, 220, 226, 0.7);
}

.nexos-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 40px;
}

.nexos-logo {
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: var(--nx-text);
}

.nexos-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nexos-nav a {
  position: relative;
  text-decoration: none;
  color: var(--nx-muted);
  font-size: 15px;
  font-weight: 520;
  transition: color 0.2s ease;
}

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

.nexos-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--nx-dark);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}

.nexos-button:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

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

  .nexos-header-inner {
    min-height: 72px;
  }
}






a { color: inherit;
}
@media (max-width: 768px) { .container { width: min(100% - 28px, var(--nx-container));
  }
  .hero { min-height: auto; padding: 88px 0;
  }
  .content { padding: 56px 0;
  }
}
